Compare commits
No commits in common. "main" and "v7.0" have entirely different histories.
19 changed files with 585 additions and 7595 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
|
@ -6,9 +6,9 @@ __pycache__/
|
||||||
.uv/
|
.uv/
|
||||||
|
|
||||||
# Local SQLite Databases
|
# Local SQLite Databases
|
||||||
# *.db
|
*.db
|
||||||
# *.db-journal
|
*.db-journal
|
||||||
# *.db-wal
|
*.db-wal
|
||||||
|
|
||||||
# Multimedia Storage Directories
|
# Multimedia Storage Directories
|
||||||
# (Keeps the media folder in your workspace structure, but ignores the generated files)
|
# (Keeps the media folder in your workspace structure, but ignores the generated files)
|
||||||
|
|
|
||||||
|
|
@ -1,84 +1,121 @@
|
||||||
# core/bulk_importer.py
|
# core/bulk_importer.py
|
||||||
import os
|
|
||||||
import re
|
import re
|
||||||
from docling.document_converter import DocumentConverter
|
|
||||||
from database.connection import get_connection
|
from database.connection import get_connection
|
||||||
|
from docling.document_converter import DocumentConverter
|
||||||
|
|
||||||
class BulkImporter:
|
class BulkImporter:
|
||||||
def import_pdf_glossary(self, pdf_path: str, textbook_name: str):
|
def __init__(self):
|
||||||
"""Uses Docling layout extraction engine to parse tables out of multi-column glossary PDFs."""
|
self.converter = DocumentConverter()
|
||||||
print(f"🔄 Analyzing structural layout for '{pdf_path}'...")
|
self.unit_regex = re.compile(r'U([0-9]+)')
|
||||||
|
|
||||||
|
def clean_field(self, text: str) -> str:
|
||||||
|
"""Removes layout spacing, structural artifacts, and noise."""
|
||||||
|
if not text:
|
||||||
|
return ""
|
||||||
|
# Remove markdown bold/italics markers if any, and compress spaces
|
||||||
|
cleaned = text.replace('*', '').replace('_', '').replace('\\', '')
|
||||||
|
cleaned = re.sub(r'\s+', ' ', cleaned)
|
||||||
|
return cleaned.strip()
|
||||||
|
|
||||||
|
def parse_unit(self, context_str: str) -> int:
|
||||||
|
"""Extracts the integer unit ID out of strings like 'U3_8B' or 'U7'."""
|
||||||
|
match = self.unit_regex.search(context_str)
|
||||||
|
if match:
|
||||||
|
return int(match.group(1))
|
||||||
|
return None
|
||||||
|
|
||||||
|
def insert_pair(self, cursor, es_text, en_text, context_tag, textbook_name):
|
||||||
|
"""Helper to cleanly insert a single Spanish-English translation pair."""
|
||||||
|
es_clean = self.clean_field(es_text)
|
||||||
|
en_clean = self.clean_field(en_text)
|
||||||
|
tag_clean = self.clean_field(context_tag)
|
||||||
|
|
||||||
if not os.path.exists(pdf_path):
|
# Guard clause against column headers or empty layout cells
|
||||||
print(f"❌ Target document path could not be found: {pdf_path}")
|
if not es_clean or not en_clean:
|
||||||
return
|
return False
|
||||||
|
if es_clean.lower() in ["spanish", "word", "alphabetical glossary", "es", "en"] or len(es_clean) <= 1:
|
||||||
|
return False
|
||||||
|
|
||||||
|
unit_number = self.parse_unit(tag_clean)
|
||||||
|
|
||||||
|
try:
|
||||||
|
# 1. Insert Spanish Phrase
|
||||||
|
cursor.execute("""
|
||||||
|
INSERT INTO phrases (text, language, textbook, unit, source_context)
|
||||||
|
VALUES (?, 'es', ?, ?, ?)
|
||||||
|
""", (es_clean, textbook_name, unit_number, tag_clean))
|
||||||
|
es_id = cursor.lastrowid
|
||||||
|
|
||||||
|
# 2. Insert English Translation
|
||||||
|
cursor.execute("""
|
||||||
|
INSERT INTO phrases (text, language, textbook, unit, source_context)
|
||||||
|
VALUES (?, 'en', ?, ?, ?)
|
||||||
|
""", (en_clean, textbook_name, unit_number, tag_clean))
|
||||||
|
en_id = cursor.lastrowid
|
||||||
|
|
||||||
|
# 3. Create Bidirectional Cross-Reference Entries
|
||||||
|
cursor.execute("INSERT INTO translations (source_phrase_id, target_phrase_id) VALUES (?, ?)", (es_id, en_id))
|
||||||
|
cursor.execute("INSERT INTO translations (source_phrase_id, target_phrase_id) VALUES (?, ?)", (en_id, es_id))
|
||||||
|
return True
|
||||||
|
except Exception:
|
||||||
|
return False
|
||||||
|
|
||||||
|
def import_pdf_glossary(self, file_path: str, textbook_name: str):
|
||||||
|
print(f"🔄 Docling is analyzing structural layout for '{file_path}'...")
|
||||||
|
|
||||||
|
try:
|
||||||
|
result = self.converter.convert(file_path)
|
||||||
|
document_text = result.document.export_to_markdown()
|
||||||
|
except Exception as e:
|
||||||
|
print(f"❌ Docling processing failed: {e}")
|
||||||
|
return 0
|
||||||
|
|
||||||
conn = get_connection()
|
conn = get_connection()
|
||||||
cursor = conn.cursor()
|
cursor = conn.cursor()
|
||||||
|
|
||||||
# Reset staging tables to guarantee fresh data state
|
print("📥 Parsing 6-column text grid structure and writing to database...")
|
||||||
cursor.execute("DELETE FROM translations")
|
count = 0
|
||||||
cursor.execute("DELETE FROM phrases")
|
|
||||||
conn.commit()
|
|
||||||
|
|
||||||
print("📥 Initializing Docling layout analysis engine...")
|
|
||||||
try:
|
|
||||||
# 1. Initialize Docling converter
|
|
||||||
converter = DocumentConverter()
|
|
||||||
result = converter.convert(pdf_path)
|
|
||||||
|
|
||||||
print("📥 Parsing extracted text tables and tabular structures...")
|
|
||||||
raw_inserts_count = 0
|
|
||||||
|
|
||||||
# 2. Iterate through extracted tables found inside the layout structure
|
# Process the markdown line-by-line
|
||||||
for table_idx, table_element in enumerate(result.document.tables):
|
lines = document_text.split('\n')
|
||||||
# Convert Docling table data framework back to standard pandas-like dictionary arrays
|
for line in lines:
|
||||||
table_data = table_element.export_to_dataframe()
|
line_str = line.strip()
|
||||||
|
|
||||||
|
# Target lines containing table formatting row data
|
||||||
|
if not line_str.startswith('|') or not line_str.endswith('|'):
|
||||||
|
continue
|
||||||
|
|
||||||
# Iterate rows while ensuring it's not looking at headers or broken table pieces
|
# Split by markdown table pipes
|
||||||
for row_idx, row in table_data.iterrows():
|
# e.g., "| años60 m | 1960s | U8_7A | bañ osmpl | bath | U1_1A |"
|
||||||
row_list = list(row)
|
parts = [p.strip() for p in line_str.split('|')]
|
||||||
|
|
||||||
# Ensure we have enough columns to look at your glossary structure (expecting 4-6 columns)
|
|
||||||
if len(row_list) < 3:
|
|
||||||
continue
|
|
||||||
|
|
||||||
# Extract positions out of the 6-column structure:
|
|
||||||
# Usually: Col 0 = Spanish, Col 1 = English, Col 2 or 3 = Context/Unit tag
|
|
||||||
es_raw = str(row_list[0]).strip() if row_list[0] else ""
|
|
||||||
en_raw = str(row_list[1]).strip() if row_list[1] else ""
|
|
||||||
context_raw = str(row_list[2]).strip() if row_list[2] else ""
|
|
||||||
|
|
||||||
# Ignore empty lines or column labels (like "Spanish", "Español", "English")
|
|
||||||
if not es_raw or not en_raw or "español" in es_raw.lower() or "english" in en_raw.lower():
|
|
||||||
continue
|
|
||||||
|
|
||||||
# Parse out unit identifiers from context strings (e.g. "U2_3A" gives unit = 2)
|
|
||||||
unit_num = 1
|
|
||||||
unit_match = re.search(r'U(\d+)', context_raw, re.IGNORECASE)
|
|
||||||
if unit_match:
|
|
||||||
unit_num = int(unit_match.group(1))
|
|
||||||
|
|
||||||
# 3. Stage Spanish item row
|
|
||||||
cursor.execute("""
|
|
||||||
INSERT INTO phrases (text, language, textbook, unit, source_context, word_type)
|
|
||||||
VALUES (?, 'es', ?, ?, ?, 'phrase')
|
|
||||||
""", (es_raw, textbook_name, unit_num, context_raw))
|
|
||||||
|
|
||||||
# 4. Stage English item row (immediately adjacent)
|
|
||||||
cursor.execute("""
|
|
||||||
INSERT INTO phrases (text, language, textbook, unit, source_context, word_type)
|
|
||||||
VALUES (?, 'en', ?, ?, ?, 'phrase')
|
|
||||||
""", (en_raw, textbook_name, unit_num, context_raw))
|
|
||||||
|
|
||||||
raw_inserts_count += 2
|
|
||||||
|
|
||||||
conn.commit()
|
|
||||||
print(f"🎉 Bulk ingestion staging complete! Staged {raw_inserts_count} entries.")
|
|
||||||
|
|
||||||
except Exception as docling_error:
|
# A valid row split will include empty items at the ends due to leading/trailing pipes
|
||||||
print(f"❌ Docling encountered a processing failure: {docling_error}")
|
# For a 6-column table, len(parts) should be at least 8 elements
|
||||||
import traceback
|
if len(parts) < 7:
|
||||||
traceback.print_exc()
|
continue
|
||||||
finally:
|
|
||||||
conn.close()
|
# Skip Markdown table header separator rows: |---|---|...
|
||||||
|
if '---' in parts[1]:
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Extract Left-Hand Column Group (Columns 1, 2, 3)
|
||||||
|
es_left = parts[1]
|
||||||
|
en_left = parts[2]
|
||||||
|
unit_left = parts[3] if len(parts) >= 4 else ""
|
||||||
|
|
||||||
|
if self.insert_pair(cursor, es_left, en_left, unit_left, textbook_name):
|
||||||
|
count += 1
|
||||||
|
|
||||||
|
# Extract Right-Hand Column Group (Columns 4, 5, 6)
|
||||||
|
if len(parts) >= 7:
|
||||||
|
es_right = parts[4]
|
||||||
|
en_right = parts[5]
|
||||||
|
unit_right = parts[6]
|
||||||
|
|
||||||
|
if self.insert_pair(cursor, es_right, en_right, unit_right, textbook_name):
|
||||||
|
count += 1
|
||||||
|
|
||||||
|
conn.commit()
|
||||||
|
conn.close()
|
||||||
|
print(f"🎉 Bulk ingestion complete! Registered {count} matched glossary items.")
|
||||||
|
return count
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# core/clean_glossary.py
|
|
||||||
import re
|
|
||||||
from database.connection import get_connection
|
|
||||||
|
|
||||||
class GlossaryCleaner:
|
|
||||||
def __init__(self):
|
|
||||||
self.verb_pattern = re.compile(r'\s*\(([a-z\s]+)\)')
|
|
||||||
|
|
||||||
def clean_and_expand_spanish(self, text: str) -> list[tuple[str, str, str]]:
|
|
||||||
word_type = "phrase"
|
|
||||||
grammar_note = None
|
|
||||||
clean_text = str(text).strip()
|
|
||||||
|
|
||||||
verb_match = self.verb_pattern.search(clean_text)
|
|
||||||
if verb_match:
|
|
||||||
word_type = "verb"
|
|
||||||
grammar_note = verb_match.group(1).strip()
|
|
||||||
clean_text = self.verb_pattern.sub('', clean_text).strip()
|
|
||||||
|
|
||||||
lower_text = clean_text.lower()
|
|
||||||
if lower_text.endswith(('mpl', 'fpl', 'smpl', 'osmpl')):
|
|
||||||
word_type = "noun"
|
|
||||||
grammar_note = "f, pl" if 'f' in lower_text else "m, pl"
|
|
||||||
if lower_text.endswith('osmpl'):
|
|
||||||
clean_text = clean_text[:-5] + "os"
|
|
||||||
else:
|
|
||||||
clean_text = re.sub(r'\s*[a-zA-Z\s]*$', '', clean_text)
|
|
||||||
elif re.search(r'\s+\b(m|f|pl|m,\s*pl|f,\s*pl)\b\s*$', clean_text):
|
|
||||||
word_type = "noun"
|
|
||||||
match = re.search(r'\b(m|f|pl|m,\s*pl|f,\s*pl)\b\s*$', clean_text)
|
|
||||||
if match:
|
|
||||||
grammar_note = match.group(1).strip()
|
|
||||||
clean_text = re.sub(r'\s+\b(m|f|pl|m,\s*pl|f,\s*pl)\b\s*$', '', clean_text).strip()
|
|
||||||
|
|
||||||
return [(clean_text.strip(), word_type, grammar_note)]
|
|
||||||
|
|
||||||
def clean_english_text(self, text: str) -> str:
|
|
||||||
cleaned = str(text).strip()
|
|
||||||
cleaned = re.sub(r'\s+', ' ', cleaned)
|
|
||||||
if cleaned.startswith("to") and len(cleaned) > 2 and not cleaned.startswith("to "):
|
|
||||||
cleaned = re.sub(r'^to([a-z])', r'to \1', cleaned)
|
|
||||||
return cleaned
|
|
||||||
|
|
||||||
def process_database_clean(self):
|
|
||||||
"""Processes raw entries from the source tables and builds translation row connections."""
|
|
||||||
conn = get_connection()
|
|
||||||
cursor = conn.cursor()
|
|
||||||
|
|
||||||
# Pull raw rows populated during BulkImporter phase
|
|
||||||
# Ensuring we look at your base uncleaned layout records
|
|
||||||
try:
|
|
||||||
cursor.execute("SELECT id, text, language, textbook, unit, source_context FROM phrases")
|
|
||||||
raw_rows = cursor.fetchall()
|
|
||||||
except Exception as e:
|
|
||||||
print(f"⚠️ Error reading raw phrases: {e}")
|
|
||||||
conn.close()
|
|
||||||
return
|
|
||||||
|
|
||||||
# Separate them logically to reconstruct pairing matrices safely
|
|
||||||
# We find adjacent lines assuming index N is Spanish and N+1 is its English partner
|
|
||||||
paired_rows = []
|
|
||||||
for i in range(0, len(raw_rows) - 1, 2):
|
|
||||||
if raw_rows[i][2] == 'es':
|
|
||||||
paired_rows.append((
|
|
||||||
raw_rows[i][1], # Spanish raw text
|
|
||||||
raw_rows[i+1][1], # English raw text
|
|
||||||
raw_rows[i][3], # Textbook name
|
|
||||||
raw_rows[i][4], # Unit Integer
|
|
||||||
raw_rows[i][5] # Context string (e.g. U2_3A)
|
|
||||||
))
|
|
||||||
|
|
||||||
# Clear down active runtime tables to map fresh structural pairs
|
|
||||||
cursor.execute("DELETE FROM translations")
|
|
||||||
cursor.execute("DELETE FROM phrases")
|
|
||||||
|
|
||||||
print(f"⚙️ Migrating {len(paired_rows)} raw rows into translation pairs...")
|
|
||||||
inserted_count = 0
|
|
||||||
|
|
||||||
for es_raw, en_raw, textbook, unit, context in paired_rows:
|
|
||||||
# Explicitly keep underscore formatting (e.g., U2_3A) intact
|
|
||||||
safe_context = str(context).strip() if context else f"U{unit}"
|
|
||||||
|
|
||||||
# Clean both sides through individual language filters
|
|
||||||
es_variants = self.clean_and_expand_spanish(es_raw)
|
|
||||||
en_clean = self.clean_english_text(en_raw)
|
|
||||||
|
|
||||||
for es_clean, w_type, g_note in es_variants:
|
|
||||||
# 1. Store Spanish Text Item Node
|
|
||||||
cursor.execute("""
|
|
||||||
INSERT INTO phrases (text, language, textbook, unit, source_context, word_type, grammar_note)
|
|
||||||
VALUES (?, 'es', ?, ?, ?, ?, ?)
|
|
||||||
""", (es_clean, textbook, unit, safe_context, w_type, g_note))
|
|
||||||
es_id = cursor.lastrowid
|
|
||||||
|
|
||||||
# 2. Store English Text Item Node
|
|
||||||
cursor.execute("""
|
|
||||||
INSERT INTO phrases (text, language, textbook, unit, source_context, word_type, grammar_note)
|
|
||||||
VALUES (?, 'en', ?, ?, ?, ?, NULL)
|
|
||||||
""", (en_clean, textbook, unit, safe_context, w_type))
|
|
||||||
en_id = cursor.lastrowid
|
|
||||||
|
|
||||||
# 3. Form unique single translation row mapping bond
|
|
||||||
cursor.execute("""
|
|
||||||
INSERT INTO translations (source_phrase_id, target_phrase_id, deck_name)
|
|
||||||
VALUES (?, ?, 'General')
|
|
||||||
""", (es_id, en_id))
|
|
||||||
|
|
||||||
inserted_count += 1
|
|
||||||
|
|
||||||
conn.commit()
|
|
||||||
conn.close()
|
|
||||||
print(f"🎉 Schema extraction pipeline completed! Saved {inserted_count} pristine translation pairs.")
|
|
||||||
|
|
@ -2,64 +2,58 @@
|
||||||
import sqlite3
|
import sqlite3
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
DB_NAME = "spanish_trainer.db"
|
||||||
|
|
||||||
def get_connection():
|
def get_connection():
|
||||||
# Force the path to be absolute relative to the project folder
|
"""Returns a standard connection object to the SQLite database."""
|
||||||
db_path = os.path.abspath("spanish_trainer.db")
|
return sqlite3.connect(DB_NAME)
|
||||||
return sqlite3.connect(db_path)
|
|
||||||
|
|
||||||
def init_db():
|
def init_db():
|
||||||
print("🛠️ Constructing relational database schema...")
|
"""
|
||||||
|
Initializes the SQLite database tables if they do not exist.
|
||||||
|
This safely runs on every boot without wiping your existing data.
|
||||||
|
"""
|
||||||
|
print(f"🗄️ Checking database status for '{DB_NAME}'...")
|
||||||
|
|
||||||
|
# The SQL schema we designed for your glossary, cross-references, and tracks
|
||||||
|
schema = """
|
||||||
|
CREATE TABLE IF NOT EXISTS phrases (
|
||||||
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||||
|
text TEXT NOT NULL,
|
||||||
|
language TEXT NOT NULL,
|
||||||
|
textbook TEXT DEFAULT NULL,
|
||||||
|
unit INTEGER DEFAULT NULL,
|
||||||
|
source_context TEXT DEFAULT NULL,
|
||||||
|
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS translations (
|
||||||
|
source_phrase_id INTEGER,
|
||||||
|
target_phrase_id INTEGER,
|
||||||
|
PRIMARY KEY (source_phrase_id, target_phrase_id),
|
||||||
|
FOREIGN KEY (source_phrase_id) REFERENCES phrases(id) ON DELETE CASCADE,
|
||||||
|
FOREIGN KEY (target_phrase_id) REFERENCES phrases(id) ON DELETE CASCADE
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS audio_tracks (
|
||||||
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||||
|
phrase_id INTEGER NOT NULL,
|
||||||
|
voice_gender TEXT NOT NULL,
|
||||||
|
voice_name TEXT NOT NULL,
|
||||||
|
file_path TEXT NOT NULL,
|
||||||
|
is_reference INTEGER DEFAULT 1,
|
||||||
|
FOREIGN KEY (phrase_id) REFERENCES phrases(id) ON DELETE CASCADE
|
||||||
|
);
|
||||||
|
"""
|
||||||
|
|
||||||
conn = get_connection()
|
conn = get_connection()
|
||||||
cursor = conn.cursor()
|
try:
|
||||||
|
cursor = conn.cursor()
|
||||||
# Enable foreign keys explicitly for this connection instance
|
# executescript allows running multiple CREATE TABLE statements at once
|
||||||
cursor.execute("PRAGMA foreign_keys = ON;")
|
cursor.executescript(schema)
|
||||||
|
conn.commit()
|
||||||
# 1. Phrases Table (Holds individual localized text strings)
|
print("✅ Database tables verified and initialized successfully.")
|
||||||
cursor.execute("""
|
except sqlite3.Error as e:
|
||||||
CREATE TABLE IF NOT EXISTS phrases (
|
print(f"❌ Database initialization failed: {e}")
|
||||||
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
finally:
|
||||||
text TEXT NOT NULL,
|
conn.close()
|
||||||
language TEXT NOT NULL,
|
|
||||||
textbook TEXT,
|
|
||||||
unit INTEGER,
|
|
||||||
source_context TEXT,
|
|
||||||
word_type TEXT,
|
|
||||||
grammar_note TEXT,
|
|
||||||
voice_gender TEXT DEFAULT 'female',
|
|
||||||
base_speed REAL DEFAULT 1.0,
|
|
||||||
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
|
||||||
);
|
|
||||||
""")
|
|
||||||
|
|
||||||
# 2. Translations Table (The relational tie binding English and Spanish IDs together)
|
|
||||||
cursor.execute("""
|
|
||||||
CREATE TABLE IF NOT EXISTS translations (
|
|
||||||
translation_id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
||||||
source_phrase_id INTEGER,
|
|
||||||
target_phrase_id INTEGER,
|
|
||||||
deck_name TEXT DEFAULT 'General',
|
|
||||||
FOREIGN KEY (source_phrase_id) REFERENCES phrases(id) ON DELETE CASCADE,
|
|
||||||
FOREIGN KEY (target_phrase_id) REFERENCES phrases(id) ON DELETE CASCADE
|
|
||||||
);
|
|
||||||
""")
|
|
||||||
|
|
||||||
# 3. Audio Tracks Table (Links phrase items to local disk storage clips)
|
|
||||||
cursor.execute("""
|
|
||||||
CREATE TABLE IF NOT EXISTS audio_tracks (
|
|
||||||
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
||||||
phrase_id INTEGER,
|
|
||||||
file_path TEXT NOT NULL,
|
|
||||||
FOREIGN KEY (phrase_id) REFERENCES phrases(id) ON DELETE CASCADE
|
|
||||||
);
|
|
||||||
""")
|
|
||||||
|
|
||||||
# CRITICAL: Force SQLite to physically commit the table architectures to disk
|
|
||||||
conn.commit()
|
|
||||||
|
|
||||||
# Verification Sweep: Double-check that tables actually exist before we hand over control
|
|
||||||
cursor.execute("SELECT name FROM sqlite_master WHERE type='table';")
|
|
||||||
tables = [row[0] for row in cursor.fetchall()]
|
|
||||||
conn.close()
|
|
||||||
|
|
||||||
print(f"✅ Database tables physically confirmed on disk: {tables}")
|
|
||||||
Binary file not shown.
Binary file not shown.
1542
doc/Notes.md
1542
doc/Notes.md
File diff suppressed because it is too large
Load diff
BIN
doc/Notes.pdf
BIN
doc/Notes.pdf
Binary file not shown.
|
|
@ -1,707 +0,0 @@
|
||||||
1,aparecer,"to appear",verb,U3_6A,General
|
|
||||||
2,apasionada,passionate,phrase,U5_15C,General
|
|
||||||
3,apellido,surname,noun,U1_4A,General
|
|
||||||
4,aprender,"to learn",phrase,U2_2C,General
|
|
||||||
5,aproximadamente,approximately,phrase,U3_2A,General
|
|
||||||
6,apuntar,"to note down",phrase,U9_5A,General
|
|
||||||
7,"aquí",here,phrase,U3_2A,General
|
|
||||||
8,"aquí tiene","here you go",phrase,U4_GyC,General
|
|
||||||
9,"árabe",Arabic,noun,U2_LEX,General
|
|
||||||
10,archivo,file,noun,U9_7A,General
|
|
||||||
11,"área",area,noun,U3_2A,General
|
|
||||||
12,arena,sand,noun,U3_4A,General
|
|
||||||
13,arepa,arepa,noun,U7_9A,General
|
|
||||||
14,argentina,Argentinian,phrase,U1_3A,General
|
|
||||||
15,"árido/a",arid,phrase,U3_LEX,General
|
|
||||||
16,arma,weapon,noun,U3_2A,General
|
|
||||||
17,arroz,rice,noun,U7_LEX,General
|
|
||||||
18,arquitecta,architect,phrase,U1_6,General
|
|
||||||
19,arquitectura,architecture,noun,U1_3A,General
|
|
||||||
20,arte,art,noun,U1_1A,General
|
|
||||||
21,artesanal,artisanal,phrase,U4_1A,General
|
|
||||||
22,"artesanía f artista","crafts artist",phrase,U4_1A,General
|
|
||||||
23,asado/a,roasted,phrase,U7_7A,General
|
|
||||||
24,Asia,Asia,phrase,U3_LEX,General
|
|
||||||
25,"aspecto físico","physical feature",noun,U5_14A,General
|
|
||||||
26,aspecto,aspect,noun,U3_11B,General
|
|
||||||
27,"Asunción",Asuncion,phrase,U3_13A,General
|
|
||||||
28,"atención",takenote,phrase,U4_14A,General
|
|
||||||
29,atender,"to lookafter",verb,U9_3A,General
|
|
||||||
30,atento/a,attentive,phrase,U9_5A,General
|
|
||||||
31,"atlántico/a",Atlantic,phrase,U3_6A,General
|
|
||||||
32,atractivo/a,attractive,phrase,U8_7A,General
|
|
||||||
33,"atraído/a",attracted,phrase,U9_3A,General
|
|
||||||
34,"atún",tuna,noun,U7_2A,General
|
|
||||||
35,"autobús",bus,noun,U3_4A,General
|
|
||||||
36,"automático/a",automatic,phrase,U8_2A,General
|
|
||||||
37,"autónomo/a",self-employed,phrase,U3_2A,General
|
|
||||||
38,avenida,avenue,noun,U8_3A,General
|
|
||||||
39,aventurero/a,adventurous,phrase,U5_3C,General
|
|
||||||
40,"avión",plane,noun,U6_GyC,General
|
|
||||||
41,"azúcar m azul","sugar blue",phrase,"U7_6A U4_2A",General
|
|
||||||
42,"azul claro","light blue",phrase,U4_13A,General
|
|
||||||
43,bailar,"to dance",phrase,U2_2C,General
|
|
||||||
44,"bailarín/ina",dancer,phrase,U5_LEX,General
|
|
||||||
45,baile,dance,noun,U6_10A,General
|
|
||||||
46,bajito/a,short,phrase,U5_9A,General
|
|
||||||
47,bajo,groundfloor,noun,U9_1A,General
|
|
||||||
48,balalaica,balalaika,noun,U1_7A,General
|
|
||||||
49,banco,bank,noun,U1_LEX,General
|
|
||||||
50,bandera,flag,noun,U2_10B,General
|
|
||||||
51,"bañador",swimsuit,noun,U4_3A,General
|
|
||||||
52,"bañarse","to goforaswim",phrase,U9_GyC,General
|
|
||||||
53,"Cádiz",Cadiz,phrase,U3_11B,General
|
|
||||||
54,"café",coffee,noun,U3_2A,General
|
|
||||||
55,"café con leche",coffeewithmilk,noun,U7_6A,General
|
|
||||||
56,"café solo",espresso,noun,U7_4C,General
|
|
||||||
57,cafetal,"coffee plantation",noun,U3_2A,General
|
|
||||||
58,"cajero automático",cashmachine,noun,U8_2A,General
|
|
||||||
59,"calabacín",courgette,noun,U7_LEX,General
|
|
||||||
60,calabaza,pumpkin,noun,U7_LEX,General
|
|
||||||
61,calamar,squid,noun,U7_2A,General
|
|
||||||
62,"calcetín",sock,noun,U4_13B,General
|
|
||||||
63,calidad,quality,noun,U3_2A,General
|
|
||||||
64,"cálido/a",warm,phrase,U3_LEX,General
|
|
||||||
65,caliente,hot,phrase,U6_11B,General
|
|
||||||
66,calle,street,noun,U1_1A,General
|
|
||||||
67,"calle peatonal","pedestrian street",noun,U8_3A,General
|
|
||||||
68,calmado/a,calm,phrase,U5_15C,General
|
|
||||||
69,calor,hot,noun,U3_4A,General
|
|
||||||
70,calvo/a,bald,phrase,U5_LEX,General
|
|
||||||
71,camarera,waitress,phrase,U1_4A,General
|
|
||||||
72,camello,camel,noun,U3_9,General
|
|
||||||
73,camino,road/journey,noun,U3_1,General
|
|
||||||
74,Caminode,"Way of Saint James",phrase,U1,General
|
|
||||||
75,"Santiago m camisa",shirt,noun,"U3_2A U4_2A",General
|
|
||||||
76,camiseta,t-shirt,noun,U4_2A,General
|
|
||||||
77,campamento,camping,noun,U5_8A,General
|
|
||||||
78,campo,countryside,noun,U3_2A,General
|
|
||||||
79,"Canadá",Canada,phrase,U1_3B,General
|
|
||||||
80,canadiense,Canadian,phrase,U1_3A,General
|
|
||||||
81,"canal de televisión","television channel",noun,U1_3C,General
|
|
||||||
82,"canción",song,noun,U2_11B,General
|
|
||||||
83,canela,cinnamon,noun,U7_8A,General
|
|
||||||
84,cansado/a,tired,phrase,U6_2A,General
|
|
||||||
85,cantante,singer,phrase,U5_4A,General
|
|
||||||
86,cantar,"to sing",phrase,U5_5A,General
|
|
||||||
87,cantidad,amount,noun,U3_6C,General
|
|
||||||
88,canto,song,noun,U6_LEX,General
|
|
||||||
89,"caña",smalldraughtbeer,noun,U2_13A,General
|
|
||||||
90,capital,capital,noun,U3_1,General
|
|
||||||
91,Caracas,Caracas,phrase,U3_GyC,General
|
|
||||||
92,"carácter",personality,noun,U5_14A,General
|
|
||||||
93,"característica",characteristics,noun,U7_12A,General
|
|
||||||
94,"cargador de móvil",phonecharger,noun,U4_3A,General
|
|
||||||
95,Caribe,Caribbean,phrase,U3_8C,General
|
|
||||||
96,"cariñoso/a",caring,phrase,U9_12C,General
|
|
||||||
97,carnaval,carnival,noun,U3_11B,General
|
|
||||||
98,carne,meat,noun,U3_5C,General
|
|
||||||
99,"carné de conducir","driving license",noun,U4_4A,General
|
|
||||||
100,"carné deidentidad",IDcard,noun,U4_3A,General
|
|
||||||
101,caro/a,expensive,phrase,U4_6A,General
|
|
||||||
102,carta,menu,noun,U7_GyC,General
|
|
||||||
103,"Cartagena de Indias",CartagenadeIndias,phrase,U2_10B,General
|
|
||||||
104,"casa f casa rural","house houseinthecountry",noun,U1_8C,General
|
|
||||||
105,"casado/a casarse","married togetmarried",phrase,"U5_7C U9_GyC",General
|
|
||||||
106,"casco antiguo",oldtown,noun,U3_2A,General
|
|
||||||
107,"clásico/a",classic,phrase,U4_6C,General
|
|
||||||
108,clave,key,noun,U6_12A,General
|
|
||||||
109,cliente/a,customer,phrase,U4_9A,General
|
|
||||||
110,clima,climate,noun,U3_3B,General
|
|
||||||
111,cobre,copper,noun,U3_3B,General
|
|
||||||
112,coche,car,noun,U2_4A,General
|
|
||||||
113,cocido,stew,noun,U7_10A,General
|
|
||||||
114,cocido/a,baked,phrase,U7_7A,General
|
|
||||||
115,"cocido madrileño",Madridstew,noun,U7_12A,General
|
|
||||||
116,"cocidomontañés",Cantabrianbeanstew,noun,U7_10A,General
|
|
||||||
117,cocinar,"to cook",phrase,U2_2A,General
|
|
||||||
118,cocinero/a,chef,phrase,U1_3A,General
|
|
||||||
119,colocar,"to place",phrase,U4_14A,General
|
|
||||||
120,Colombia,Colombia,phrase,U2_10B,General
|
|
||||||
121,colombiano/a,Colombian,phrase,U1_5A,General
|
|
||||||
122,colonia,colony,noun,U3_11B,General
|
|
||||||
123,ColoniaTovar,ColoniaTovar,phrase,U3_11B,General
|
|
||||||
124,colonial,colonial,phrase,U3_2A,General
|
|
||||||
125,color,colour,noun,U2_10B,General
|
|
||||||
126,comer,"to eat",phrase,U3_5C,General
|
|
||||||
127,comercial,"sales representative",phrase,U1_LEX,General
|
|
||||||
128,comerciante,shopkeeper,phrase,U9_11A,General
|
|
||||||
129,"comilón/ona",foodlover,phrase,U6_13A,General
|
|
||||||
130,como,like,phrase,U3_2A,General
|
|
||||||
131,"cómo",how,phrase,U3_6A,General
|
|
||||||
132,"¿cómo andas?","how are you doing?",phrase,U1_2A,General
|
|
||||||
133,"¿cómoeres?",whatareyoulike?,phrase,U6_2A,General
|
|
||||||
134,"¿cómoestás?",howareyou?,phrase,U0_3,General
|
|
||||||
135,"¿cómolotomas?",howdoyoutakeit?,phrase,U7_6B,General
|
|
||||||
136,"¿cómosedice...?",howdoyousay...?,phrase,U0_5A,General
|
|
||||||
137,"¿cómoseescribe ...?",howdoyouspell...?,phrase,U0_6,General
|
|
||||||
138,"¿cómose pronuncia...?",howdoyoupronounce...?,phrase,U0_5A,General
|
|
||||||
139,"¿cómotellamas?",whatisyourname?,phrase,U0_1A,General
|
|
||||||
140,comodidad,comfort,noun,U1,General
|
|
||||||
141,"cómodo/a",comfortable,phrase,"U9_3A U4_2A",General
|
|
||||||
142,"compañero/a",flatmate,phrase,U1,General
|
|
||||||
143,"compañero/a de trabajo",workcolleague,phrase,U1,General
|
|
||||||
144,compartir,"to share",phrase,"U2_3A U6_12A",General
|
|
||||||
145,"competición",competition,noun,U9_10B,General
|
|
||||||
146,compi,"flatmate (colloq.)",phrase,U9_7A,General
|
|
||||||
147,completamente,completely,noun,U3_11B,General
|
|
||||||
148,"composición compositor/a",composition,phrase,U9_6B,General
|
|
||||||
149,comprar,composer,phrase,"U5_LEX U4_9A",General
|
|
||||||
150,compras,shopping,noun,U2_2A,General
|
|
||||||
151,comprender,"to understand engagement",phrase,U2_6A,General
|
|
||||||
152,"compromiso m común",common,phrase,"U6_2A U2_3A",General
|
|
||||||
153,"comunicado/a comunicarse",communicated,phrase,U8_1A,General
|
|
||||||
154,comunicativo/a,talkative,phrase,U9_12C,General
|
|
||||||
155,comunidad,autonomouscommunity,phrase,U1,General
|
|
||||||
156,"¿cuánto cuesta?",howmuchdoesitcost?,phrase,U4_9A,General
|
|
||||||
157,"¿cuánto es?",howmuchisit?,phrase,U7_4A,General
|
|
||||||
158,"¿cuánto/a/os/as?",howmuch/howmany?,phrase,U3_6A,General
|
|
||||||
159,"¿cuántos años",howoldareyou?,phrase,U1,General
|
|
||||||
160,"tienes? cuatro",four,phrase,"U1_4B U6_11B",General
|
|
||||||
161,Cuba,Cuba,phrase,U0_4A,General
|
|
||||||
162,cubano/a,Cuban,phrase,U1_6,General
|
|
||||||
163,cuchara,spoon,noun,U7_LEX,General
|
|
||||||
164,cucharilla,teaspoon,noun,U7_LEX,General
|
|
||||||
165,cuchillo,knife,noun,U7_LEX,General
|
|
||||||
166,cuenta,bill,noun,U7_4A,General
|
|
||||||
167,cuidar,"to takecareof",phrase,U6_3A,General
|
|
||||||
168,cultural,cultural,phrase,U8_LEX,General
|
|
||||||
169,"cumpleaños",birthday,noun,U4_4C,General
|
|
||||||
170,curso,course,noun,U2_2A,General
|
|
||||||
171,cuy,Guineapig,noun,U3_GyC,General
|
|
||||||
172,"dar clases","to giveclasses",phrase,U9_11C,General
|
|
||||||
173,"darse cuenta","to realise",phrase,U9_5A,General
|
|
||||||
174,de,of,phrase,U1_1A,General
|
|
||||||
175,"de acuerdo","all right",phrase,U7_6B,General
|
|
||||||
176,"de cuadros",check,phrase,U4_5A,General
|
|
||||||
177,"¿de dóndeeres?","where are you from?",phrase,U1_4B,General
|
|
||||||
178,"de estilo colonial","Colonial style",phrase,U8_11D,General
|
|
||||||
179,"de fuera",fromoutside/foreign,phrase,U9_11A,General
|
|
||||||
180,"de primero","for firstcourse",phrase,U7_4A,General
|
|
||||||
181,"de rayas",stripy,phrase,U4_2A,General
|
|
||||||
182,"de segundo",forsecondcourse,phrase,U7_4A,General
|
|
||||||
183,"de todas partes","from everywhere",phrase,U3_2A,General
|
|
||||||
184,"de valor",valuable,phrase,U9_8A,General
|
|
||||||
185,decidir,"to decide",phrase,U4_14A,General
|
|
||||||
186,decir,"to say",verb,U2_3A,General
|
|
||||||
187,"decisión",decision,noun,U9_3A,General
|
|
||||||
188,declarado/a,declared,phrase,U3_14A,General
|
|
||||||
189,"dedicar tiempo","to spendtime(onsomething)",phrase,U6_2A,General
|
|
||||||
190,defecto,weakness/defect,noun,U9_4A,General
|
|
||||||
191,definir,"to define",phrase,U9_5A,General
|
|
||||||
192,dejar,"to leave",phrase,U9_3A,General
|
|
||||||
193,"dejarse algo","to forgetsomething",phrase,U9_5A,General
|
|
||||||
194,"del tiempo",atroomtemperature,phrase,U7_6A,General
|
|
||||||
195,delgado/a,thin,phrase,U5_LEX,General
|
|
||||||
196,demasiado/a,"to omuch",phrase,U8_3A,General
|
|
||||||
197,"deporte m deportista","sport athlete",phrase,U3_11B,General
|
|
||||||
198,derecha,right,noun,U8_5A,General
|
|
||||||
199,desayunar,"to havebreakfast",phrase,U6_2A,General
|
|
||||||
200,"descendiente desconectar","descendent todisconnect",phrase,"U3_11B U6_12A",General
|
|
||||||
201,desde,since/from,phrase,U3_2A,General
|
|
||||||
202,"desde hace",since,phrase,U9_3A,General
|
|
||||||
203,desear,"to wantsomething",phrase,U4_9A,General
|
|
||||||
204,desfile,parade,noun,U6_8A,General
|
|
||||||
205,elegante,elegant,phrase,U4_2A,General
|
|
||||||
206,elegido/a,chosen,phrase,U5_14A,General
|
|
||||||
207,elegir,"to choose",verb,U9_2B,General
|
|
||||||
208,"emblemático/a",iconic,phrase,U8_7A,General
|
|
||||||
209,embutido,curedmeat,noun,U7_2A,General
|
|
||||||
210,empanada,empanada,noun,U3_3B,General
|
|
||||||
211,empezar,"to start",phrase,U6_5B,General
|
|
||||||
212,empleado/a,employee,phrase,U4_13A,General
|
|
||||||
213,emprendedor/a,enterprising,phrase,U9_4A,General
|
|
||||||
214,empresa,company,noun,U1_LEX,General
|
|
||||||
215,empresade,telecommunicationscompany,phrase,U1_LEX,General
|
|
||||||
216,empresade,transportcompany,phrase,U1_LEX,General
|
|
||||||
217,en,in/on,phrase,U0_6,General
|
|
||||||
218,encambio,ontheotherhand,phrase,U8_9C,General
|
|
||||||
219,enforma,inshape,phrase,U6_2A,General
|
|
||||||
220,enpunto,"o'clock",phrase,U6_GyC,General
|
|
||||||
221,"¿en quétrabajas?",whatdoyoudoforaliving?,phrase,U1_4B,General
|
|
||||||
222,entodo,entirely,phrase,U3_5A,General
|
|
||||||
223,enventa,"for sale",phrase,U9_3A,General
|
|
||||||
224,enamorarsea,"to fall in love at first sight",phrase,U9_8A,General
|
|
||||||
225,encantar,"to love",phrase,U5_3A,General
|
|
||||||
226,encanto,charm,noun,U8_LEX,General
|
|
||||||
227,enchilada,enchilada,noun,U3_6A,General
|
|
||||||
228,"energía",energy,noun,U6_2A,General
|
|
||||||
229,"enfermería",nursing,noun,U9_12B,General
|
|
||||||
230,enfermero/a,nurse,phrase,U1_LEX,General
|
|
||||||
231,enfermo/a,ill,phrase,U9_11A,General
|
|
||||||
232,ensalada,salad,noun,U7_1A,General
|
|
||||||
233,"ensalada mixta",mixedsalad,noun,U7_3A,General
|
|
||||||
234,enseguida,comingrightup,phrase,U1,General
|
|
||||||
235,entrante,starter,noun,U7_12C,General
|
|
||||||
236,entresemana,duringtheweek,phrase,U6_2A,General
|
|
||||||
237,equipaje,luggage,noun,U9_7C,General
|
|
||||||
238,equipo,team,noun,U3_5A,General
|
|
||||||
239,equivocarse,"to bewrongabout",phrase,U9_5A,General
|
|
||||||
240,escolar,school,phrase,U4_13A,General
|
|
||||||
241,escribir,"to write",phrase,U5_3A,General
|
|
||||||
242,escuchar,"to listento",phrase,U2_2A,General
|
|
||||||
243,escuela,school,noun,U1_1A,General
|
|
||||||
244,escultura,sculpture,noun,U2_10B,General
|
|
||||||
245,ese/a,this,phrase,U0_4C,General
|
|
||||||
246,"España",Spain,phrase,U0_4A,General
|
|
||||||
247,especial,special,phrase,U4_15B,General
|
|
||||||
248,especializado/a,specialised,phrase,U7_6A,General
|
|
||||||
249,espectacular,spectacular,phrase,U9_3A,General
|
|
||||||
250,esperar,"to wait",phrase,U5_3A,General
|
|
||||||
251,espinaca,spinach,noun,U7_3A,General
|
|
||||||
252,"esquí",skiing,noun,U1_1A,General
|
|
||||||
253,esquiar,"to ski",phrase,U9_6C,General
|
|
||||||
254,esquina,corner,noun,U8_5A,General
|
|
||||||
255,establecimiento,establishment,noun,U7_GyC,General
|
|
||||||
256,"estación de metro",metrostation,phrase,U8_2A,General
|
|
||||||
257,final,end,noun,U3_2A,General
|
|
||||||
258,"físico/a",physical,phrase,U5_14A,General
|
|
||||||
259,flamenco,flamenco,noun,U1_7A,General
|
|
||||||
260,flan,eggcustard,noun,U7_3A,General
|
|
||||||
261,flor,flower,noun,U6_8A,General
|
|
||||||
262,forma,shape,noun,U3_11B,General
|
|
||||||
263,foto,photo,noun,U2_LEX,General
|
|
||||||
264,"fotografía",photography,noun,U5_3A,General
|
|
||||||
265,"fotógrafo/a",photographer,phrase,U9_LEX,General
|
|
||||||
266,"francés/esa",French,phrase,U1_3A,General
|
|
||||||
267,frecuencia,frequency,noun,U6_2A,General
|
|
||||||
268,fresa,strawberry,noun,U7_5C,General
|
|
||||||
269,fresco/a,fresh,phrase,U7_2A,General
|
|
||||||
270,frijoles,beans,noun,U7_LEX,General
|
|
||||||
271,"frío/a",cold,phrase,U3_3B,General
|
|
||||||
272,frito/a,fried,phrase,U7_3A,General
|
|
||||||
273,fruta,fruit,noun,U7_3A,General
|
|
||||||
274,frutadetemporada,"seasonal fruit",phrase,U7_3A,General
|
|
||||||
275,"frutos secos",nuts,noun,U7_5C,General
|
|
||||||
276,fuera,outside,phrase,U6_9D,General
|
|
||||||
277,fumar,"to smoke",phrase,U6_3A,General
|
|
||||||
278,fundado/a,founded,phrase,U3_2A,General
|
|
||||||
279,fundamental,fundamental,phrase,U7_7A,General
|
|
||||||
280,"fútbol",football,noun,U2_LEX,General
|
|
||||||
281,futuro,future,noun,U2_12A,General
|
|
||||||
282,"gafas de sol",sunglasses,noun,U4_3A,General
|
|
||||||
283,"galería",shoppingcentre,noun,U4_1A,General
|
|
||||||
284,Galicia,Galicia,phrase,U3_2A,General
|
|
||||||
285,galleta,biscuit,noun,U6_11B,General
|
|
||||||
286,gamba,prawn,noun,U7_1A,General
|
|
||||||
287,ganar,"to win",phrase,U3_6A,General
|
|
||||||
288,ganarunpremio,"to winaprize",phrase,U9_8A,General
|
|
||||||
289,garbanzos,chickpeas,noun,U7_LEX,General
|
|
||||||
290,gas,petrol,noun,U7_4A,General
|
|
||||||
291,gasolinera,"petrol station",noun,U8_LEX,General
|
|
||||||
292,gasto,expense,noun,U9_2B,General
|
|
||||||
293,"gastronómico/a",culinary,phrase,U4_12A,General
|
|
||||||
294,"gazpacho m",gazpacho,noun,U7_4A,General
|
|
||||||
295,"geldebaño",showergel,phrase,U4_3A,General
|
|
||||||
296,generoso/a,generous,phrase,U9_4A,General
|
|
||||||
297,gente,people,noun,U2_13B,General
|
|
||||||
298,"geográfico/a",geographical,phrase,U8_9A,General
|
|
||||||
299,"geólogo/a",geology,phrase,U9_2B,General
|
|
||||||
300,gimnasio,gym,noun,U1_LEX,General
|
|
||||||
301,"ginecólogo/a",gynaecologist,phrase,U1_6,General
|
|
||||||
302,girar,"to turn",phrase,U8_6C,General
|
|
||||||
303,girasol,sunflower,noun,U7_LEX,General
|
|
||||||
304,golf,golf,noun,U5_GyC,General
|
|
||||||
305,gordo/a,fat,phrase,U5_LEX,General
|
|
||||||
306,gorra,cap,noun,U4_5A,General
|
|
||||||
307,"gorro m Gotemburgo","hat Gothenburg",phrase,"U4_LEX U3_8B",General
|
|
||||||
308,gracias,thankyou,phrase,U0_6,General
|
|
||||||
309,horario,schedule,phrase,U6_2A,General
|
|
||||||
310,horno,oven,noun,U7_3A,General
|
|
||||||
311,hortaliza,vegetable,noun,U7_2A,General
|
|
||||||
312,hospital,hospital,noun,U1_LEX,General
|
|
||||||
313,hospitalidad,hospitality,noun,U8_9A,General
|
|
||||||
314,hostelero/a,hotelier,phrase,U9_11A,General
|
|
||||||
315,hotel,hotel,noun,U1_1A,General
|
|
||||||
316,hoy,"to day",phrase,U3_4A,General
|
|
||||||
317,huerto,vegetablegarden,noun,U9_3A,General
|
|
||||||
318,huevo,egg,noun,U7_2A,General
|
|
||||||
319,humanidad,humanity,noun,U3_2A,General
|
|
||||||
320,"húmedo/a",humid,phrase,U3_4A,General
|
|
||||||
321,humor,mood,noun,U6_2A,General
|
|
||||||
322,humus,hummus,noun,U7_2C,General
|
|
||||||
323,idea,Iberian,noun,U3_2A,General
|
|
||||||
324,ideal,"idea ideal",phrase,"U2_5A U1_1A",General
|
|
||||||
325,"infusión",tea,noun,U3_GyC,General
|
|
||||||
326,ingeniero/a,engineer,phrase,U1_6,General
|
|
||||||
327,Inglaterra,England,phrase,U3_8C,General
|
|
||||||
328,insociable,unsociable,phrase,U9_LEX,General
|
|
||||||
329,instrumento,musicalinstrument,phrase,U1,General
|
|
||||||
330,intercambio,exchange,noun,U2_LEX,General
|
|
||||||
331,m,"to urist interest",phrase,U3_2A,General
|
|
||||||
332,interesante,interesting,phrase,U2_5A,General
|
|
||||||
333,interior,interior,noun,U4_3A,General
|
|
||||||
334,intermediario/a,intermediary,phrase,U9_11A,General
|
|
||||||
335,internacional,international,phrase,U1,General
|
|
||||||
336,internet,internet,phrase,U2_11A,General
|
|
||||||
337,invierno,winter,noun,U3_8B,General
|
|
||||||
338,invitado/a,guest,phrase,U5_14B,General
|
|
||||||
339,irdecompras,"to goshopping",phrase,U2_2A,General
|
|
||||||
340,"ir de viaje","to gotravelling",phrase,U4_4A,General
|
|
||||||
341,"idioma iglesia","important late incredible independent Indian infographic information",noun,U8_3A,General
|
|
||||||
342,"ibérico/a identidad","impatient independence",noun,"U9_4A U3_4A",General
|
|
||||||
343,"f impaciente",church,phrase,U1,General
|
|
||||||
344,levantarse,"to getup",phrase,U6_1A,General
|
|
||||||
345,libro,book,noun,U0_5A,General
|
|
||||||
346,lila,purple,phrase,U4_LEX,General
|
|
||||||
347,Lima,Lima,phrase,U8_7E,General
|
|
||||||
348,"limón",lemon,noun,U7_6A,General
|
|
||||||
349,limpieza,cleanliness,noun,U8_9A,General
|
|
||||||
350,limpio/a,clean,phrase,U8_LEX,General
|
|
||||||
351,lindo/a,cute,phrase,U3_6A,General
|
|
||||||
352,"lingüista",linguist,phrase,U1_6,General
|
|
||||||
353,liso/a,straight,phrase,U5_LEX,General
|
|
||||||
354,lista,list,noun,U9_5A,General
|
|
||||||
355,literatura,literature,noun,U2_1A,General
|
|
||||||
356,llamado/a,called,phrase,U3_2A,General
|
|
||||||
357,llamarse,"to becalled",phrase,U3_2A,General
|
|
||||||
358,llave,key,noun,U9_2B,General
|
|
||||||
359,llegar,"to arrive",phrase,U3_2A,General
|
|
||||||
360,llevar,"to wear",phrase,U4_2A,General
|
|
||||||
361,llevar,"to have",phrase,U7_2A,General
|
|
||||||
362,llevarse,"to take",phrase,U4_9A,General
|
|
||||||
363,llover,"to rain",verb,U3_4A,General
|
|
||||||
364,lluvioso/a,rainy,phrase,U3_6A,General
|
|
||||||
365,"loquemás",themost,phrase,U8_4D,General
|
|
||||||
366,loquemenos,theleast,phrase,U8_4D,General
|
|
||||||
367,"lo siento Londres","I'm sorry London",phrase,"U0_6 U5_2B",General
|
|
||||||
368,luego,later,phrase,U3_4A,General
|
|
||||||
369,lugar,place,noun,U1_4B,General
|
|
||||||
370,lunes,Monday,noun,U3_4A,General
|
|
||||||
371,luz,light,noun,U5_2A,General
|
|
||||||
372,macarrones,macaroni,noun,U7_GyC,General
|
|
||||||
373,madre,mother,noun,U5_2A,General
|
|
||||||
374,Madrid,Madrid,phrase,U2_6A,General
|
|
||||||
375,"madrileño/a",personfromMadrid,phrase,U7_12A,General
|
|
||||||
376,madrugar,"to getupearly",phrase,U6_2A,General
|
|
||||||
377,maestro/a,teacher,phrase,U9_4C,General
|
|
||||||
378,"mágico/a",magical,phrase,U2_10B,General
|
|
||||||
379,"maíz",corn,noun,U2_10B,General
|
|
||||||
380,malcomunicado,poorlyconnected,phrase,U8_1A,General
|
|
||||||
381,"Málaga",Malaga,phrase,U1_1A,General
|
|
||||||
382,maleta,"suitcase Majorca",noun,U4_6C,General
|
|
||||||
383,manera,way,phrase,U7_7A,General
|
|
||||||
384,mangacorta,"short sleeve",noun,U4_2A,General
|
|
||||||
385,"mangalarga f maniático/a",longsleeve,phrase,U4_2A,General
|
|
||||||
386,mano,hand,noun,U4_1B,General
|
|
||||||
387,manzana,apple,noun,U7_LEX,General
|
|
||||||
388,"mañana",morning,phrase,U3_4A,General
|
|
||||||
389,"mapa m","map worldmap",noun,U3_1,General
|
|
||||||
390,"mapamundi mar m,f",sea,phrase,"U3_1 U5_3A",General
|
|
||||||
391,"f marido","brand husband",noun,"U4_2A U5_7A",General
|
|
||||||
392,marinero/a,sailor,phrase,U1,General
|
|
||||||
393,miles,thousands,phrase,U3_2A,General
|
|
||||||
394,"millón",million,phrase,U3_2A,General
|
|
||||||
395,minuto,minute,noun,U6_2A,General
|
|
||||||
396,mire,look,phrase,U4_9A,General
|
|
||||||
397,mismo/a,same,phrase,U3_2A,General
|
|
||||||
398,mixto/a,mixed,phrase,U7_3A,General
|
|
||||||
399,mochila,backpack,noun,U0_5A,General
|
|
||||||
400,moda,fashion,noun,U1_3A,General
|
|
||||||
401,modelo,model,phrase,U1_GyC,General
|
|
||||||
402,moderno/a,modern,phrase,U4_6C,General
|
|
||||||
403,modo,way,noun,U3_6C,General
|
|
||||||
404,"molino de viento",windmill,noun,U3_9,General
|
|
||||||
405,momento,moment,noun,U6_1A,General
|
|
||||||
406,moneda,currency,noun,U3_2A,General
|
|
||||||
407,"montaña",mountain,noun,U3_1,General
|
|
||||||
408,"montañés/esa",mountain,phrase,U7_10A,General
|
|
||||||
409,montar,"to setup",phrase,U9_3A,General
|
|
||||||
410,Montevideo,Montevideo,phrase,U3_13A,General
|
|
||||||
411,monumento,landmark,noun,U3_2A,General
|
|
||||||
412,moreno/a,dark-haired,phrase,U5_9A,General
|
|
||||||
413,mostaza,mustard,noun,U7_2A,General
|
|
||||||
414,"móvil",mobile,noun,U1_4B,General
|
|
||||||
415,"mucho muchos/as","alot many/alotof",phrase,"U2_11B U2_7B",General
|
|
||||||
416,mueble,furniture,noun,U8_8A,General
|
|
||||||
417,mujer,woman,noun,U4_2A,General
|
|
||||||
418,mundo,world,noun,U2_3A,General
|
|
||||||
419,"unos pódcast","some podcasts",phrase,U2_9A-Extra,General
|
|
||||||
420,museo,museum,noun,U1_1A,General
|
|
||||||
421,"música",music,noun,U2_1A,General
|
|
||||||
422,"música clásica",classicalmusic,noun,U5_4A,General
|
|
||||||
423,"música electrónica",electronicmusic,noun,U5_4A,General
|
|
||||||
424,"música envivo",livemusic,noun,U5_6A,General
|
|
||||||
425,"música",indiemusic,phrase,U1,General
|
|
||||||
426,"músicapop",popmusic,noun,U4_10A,General
|
|
||||||
427,"música soul",soulmusic,noun,U5_4A,General
|
|
||||||
428,musical,musical,phrase,U3_GyC,General
|
|
||||||
429,"músico/a",musician,phrase,U5_2A,General
|
|
||||||
430,muy,very,phrase,U2_5A,General
|
|
||||||
431,O,O,phrase,O,General
|
|
||||||
432,N,N,phrase,N,General
|
|
||||||
433,nacer,"to beborn",verb,U3_GyC,General
|
|
||||||
434,nachos,nachos,noun,U7_1A,General
|
|
||||||
435,nacimiento,birth,noun,U5_2A,General
|
|
||||||
436,"nacional nacionalidad","national nationality",noun,"U2_10B U1_3D",General
|
|
||||||
437,nadar,"to swim",phrase,U1,General
|
|
||||||
438,naranja,orange,noun,U7_LEX,General
|
|
||||||
439,"naranja nativo/a","orange native",phrase,"U4_LEX U2_LEX",General
|
|
||||||
440,natural,natural,phrase,U2_3A,General
|
|
||||||
441,"naturaleza f Navarra","nature Navarre",phrase,"U2_1A U9_11A",General
|
|
||||||
442,Navidad,Christmas,noun,U6_11B,General
|
|
||||||
443,olvidar,"to forget",phrase,U9_5A,General
|
|
||||||
444,"ópera",opera,noun,U5_5A,General
|
|
||||||
445,opinar,"to haveanopinionon",phrase,U9_2B,General
|
|
||||||
446,orden,order,noun,U6_11A,General
|
|
||||||
447,ordenador,computer,noun,U0_5A,General
|
|
||||||
448,"ordenadorportátil",laptop,noun,U4_3B,General
|
|
||||||
449,organizado/a,organised,phrase,U6_9A,General
|
|
||||||
450,organizar,"to organise",phrase,U9_3A,General
|
|
||||||
451,origen,origin,noun,U1_4B,General
|
|
||||||
452,original,original,phrase,U4_6C,General
|
|
||||||
453,oso,bear,noun,U3_9,General
|
|
||||||
454,Otavalo,Otavalo,phrase,U4_1A,General
|
|
||||||
455,"otoño",autumn,noun,U3_8B,General
|
|
||||||
456,otro/a,other,phrase,U0_2A,General
|
|
||||||
457,paciente,patient,phrase,U9_4A,General
|
|
||||||
458,"Pacífico",Pacific,noun,U3_4A,General
|
|
||||||
459,padre,father,noun,U5_1A,General
|
|
||||||
460,paella,paella,noun,U2_13A,General
|
|
||||||
461,"página",page,noun,U0_6,General
|
|
||||||
462,"páginaweb",website,noun,U2_7B,General
|
|
||||||
463,"país","country countryside",noun,U2_3A,General
|
|
||||||
464,paisaje,word,noun,U9_3A,General
|
|
||||||
465,palacio,"palace PalmadeMallorca",noun,U3_2A,General
|
|
||||||
466,"PalmadeMallorca palmera",palmtree,noun,"U4_1A U3_9",General
|
|
||||||
467,pan,bread,noun,U7_1A,General
|
|
||||||
468,panblanco,whitebread,noun,U7_LEX,General
|
|
||||||
469,"Estoy subiendo las escaleras","I am going up the stairs",phrase,M1-phrase,General
|
|
||||||
470,"Panamá",Panama,phrase,U7_9A,General
|
|
||||||
471,"pantalón",trousers,noun,U4_3A,General
|
|
||||||
472,pantalones,shorts,noun,U4_3A,General
|
|
||||||
473,papelera,bin,noun,U0_5A,General
|
|
||||||
474,para,for/inorderto,phrase,U2_9A,General
|
|
||||||
475,paraempezar,"to start",phrase,U7_3A,General
|
|
||||||
476,"paramí",forme,phrase,U4_2B,General
|
|
||||||
477,"parada de autobús",busstop,noun,U8_2A,General
|
|
||||||
478,paraguas,umbrella,noun,U9_5A,General
|
|
||||||
479,Paraguay,Paraguay,phrase,U3_GyC,General
|
|
||||||
480,"pareja f París","partner Paris",phrase,"U5_LEX U1_GyC",General
|
|
||||||
481,parking,carpark,noun,U8_2A,General
|
|
||||||
482,parque,park,noun,U2_10B,General
|
|
||||||
483,"parque nacional",nationalpark,noun,U2_10B,General
|
|
||||||
484,participar,"to participate",phrase,U6_8A,General
|
|
||||||
485,particular,particular,phrase,U6_8A,General
|
|
||||||
486,pasaporte,passport,noun,U4_4A,General
|
|
||||||
487,pasar,"to spend",phrase,U2_8A,General
|
|
||||||
488,"pasar de largo","to goby",phrase,U9_5A,General
|
|
||||||
489,"paseo m",walk,noun,U4_12A,General
|
|
||||||
490,"paseo acaballo pasión","horseriding passion",noun,"U4_12A U5_3A",General
|
|
||||||
491,pasta,pasta,noun,U7_1C,General
|
|
||||||
492,plato,dish,noun,U2_11A,General
|
|
||||||
493,"plato principal",maincourse,noun,U7_3A,General
|
|
||||||
494,"plato único",singlecourse,phrase,U7_12A,General
|
|
||||||
495,playa,beach,noun,U0_6,General
|
|
||||||
496,plaza,square,noun,U3_2A,General
|
|
||||||
497,pleno/a,full,phrase,U6_2A,General
|
|
||||||
498,"plurilingüe",plurilingual,phrase,U2_3A,General
|
|
||||||
499,"población",population,noun,U3_2A,General
|
|
||||||
500,poblado/a,populated,phrase,U3_2A,General
|
|
||||||
501,poco,little,phrase,U3_8C,General
|
|
||||||
502,poco/a/os/as,"little,few",phrase,U3_2A,General
|
|
||||||
503,podcast,podcast,noun,U2_LEX,General
|
|
||||||
504,poder,"to can",verb,U0_6,General
|
|
||||||
505,"podríamos",wecould,phrase,U0_6,General
|
|
||||||
506,poema,poem,noun,U5_10A,General
|
|
||||||
507,"poesía",poetry,noun,U9_2B,General
|
|
||||||
508,"policía",police,phrase,U1_GyC,General
|
|
||||||
509,polideportivo,"sports centre",noun,U8_2A,General
|
|
||||||
510,"polifacético/a",well-rounded,phrase,U9_12C,General
|
|
||||||
511,pollo,chicken,noun,U7_2A,General
|
|
||||||
512,poner,"to put",verb,U7_4A,General
|
|
||||||
513,poplatino,Latinpop,noun,U5_4A,General
|
|
||||||
514,pop-rock,poprock,noun,U5_4A,General
|
|
||||||
515,popular,popular,phrase,U3_6A,General
|
|
||||||
516,"por eso",forthatreason,phrase,U3_11B,General
|
|
||||||
517,"por favor",please,phrase,U0_6,General
|
|
||||||
518,"por fin",finally,phrase,U3_1,General
|
|
||||||
519,"porlamañana/",inthemorning/atnight,phrase,U1,General
|
|
||||||
520,"¿por qué?",why?,phrase,U2_12A,General
|
|
||||||
521,porque,because,phrase,U2_9C,General
|
|
||||||
522,"portátil",laptop,phrase,U4_3B,General
|
|
||||||
523,"portugués/esa",Portuguese,phrase,U1_GyC,General
|
|
||||||
524,postal,postcard,noun,U2_11A,General
|
|
||||||
525,postre,dessert,noun,U7_3A,General
|
|
||||||
526,"práctica",practice,noun,U6_12A,General
|
|
||||||
527,practicar,"to practice",phrase,U2_6A,General
|
|
||||||
528,"práctico/a",practical,phrase,U4_6C,General
|
|
||||||
529,precio,price,noun,U4_9A,General
|
|
||||||
530,precioso/a,beautiful,phrase,U3_4A,General
|
|
||||||
531,preferencia,preference,noun,U6_2A,General
|
|
||||||
532,preferido/a,favourite,phrase,U5_2A,General
|
|
||||||
533,preferir,"to prefer",verb,U4_GyC,General
|
|
||||||
534,pregunta,question,noun,U3_6A,General
|
|
||||||
535,preguntar,"to ask",phrase,U1_4B,General
|
|
||||||
536,premio,prize,noun,U6_13A,General
|
|
||||||
537,prenda,itemofclothing,noun,U4_15B,General
|
|
||||||
538,preparar,"to prepare",phrase,U6_8A,General
|
|
||||||
539,primavera,spring,noun,U3_8B,General
|
|
||||||
540,primero/a,first,phrase,U3_2A,General
|
|
||||||
541,primo/a,cousin,phrase,U5_1A,General
|
|
||||||
542,principal,main,phrase,U7_3A,General
|
|
||||||
543,probar,"to try",phrase,U7_12C,General
|
|
||||||
544,"producción",production,noun,U3_2A,General
|
|
||||||
545,producto,product,noun,U3_3B,General
|
|
||||||
546,productor,producer,noun,U3_7A,General
|
|
||||||
547,"profesión",profession,noun,U1,General
|
|
||||||
548,reparar,"to repair",phrase,U9_7A,General
|
|
||||||
549,repetir,"to repeat",verb,U0_6,General
|
|
||||||
550,repoblar,"to repopulate",verb,U9_3A,General
|
|
||||||
551,"República",DominicanRepublic,phrase,U1,General
|
|
||||||
552,res,beef,noun,U7_LEX,General
|
|
||||||
553,"reserva natural",naturereserve,noun,U3_11B,General
|
|
||||||
554,residencia,residence,noun,U2_12A,General
|
|
||||||
555,residencial,residential,phrase,U8_11D,General
|
|
||||||
556,responsable,responsible,phrase,U9_4A,General
|
|
||||||
557,respuesta,answer,noun,U6_2A,General
|
|
||||||
558,restaurante,restaurant,noun,U1_1A,General
|
|
||||||
559,restos,remains,noun,U3_2A,General
|
|
||||||
560,resultado,result,noun,U6_2A,General
|
|
||||||
561,reunirse,"to gettogether",phrase,U6_8A,General
|
|
||||||
562,"revisión médica",medicalcheck-up,noun,U9_11A,General
|
|
||||||
563,revista,magazine,noun,U2_4A,General
|
|
||||||
564,ribera,riverbed,noun,U8_3A,General
|
|
||||||
565,"río",river,noun,U3_LEX,General
|
|
||||||
566,"Río de Janeiro",RiodeJaneiro,phrase,U5_14B,General
|
|
||||||
567,rizado/a,curly,phrase,U5_9A,General
|
|
||||||
568,robar,"to steal",phrase,U5_2A,General
|
|
||||||
569,rojo/a,red,phrase,U1,General
|
|
||||||
570,"romántico/a",romantic,phrase,U4_6A,General
|
|
||||||
571,ropa,clothes,noun,"U5_15C U1_10B",General
|
|
||||||
572,"ropa interior",underwear,noun,U4_3A,General
|
|
||||||
573,rosa,pink,phrase,U4_2A,General
|
|
||||||
574,rosario,rosary,noun,U3_11B,General
|
|
||||||
575,rubio/a,fair-haired,phrase,U5_9A,General
|
|
||||||
576,ruidoso/a,noisy,phrase,U8_1A,General
|
|
||||||
577,ruinas,ruins,noun,U3_4A,General
|
|
||||||
578,rural,rural,phrase,U9_3A,General
|
|
||||||
579,ruso,Russian,noun,U2_LEX,General
|
|
||||||
580,"ruta gastronómica",foodtour,noun,U4_12A,General
|
|
||||||
581,rutina,routine,noun,U6_12A,General
|
|
||||||
582,"sábado",Saturday,noun,U2_2C,General
|
|
||||||
583,saber,"to know",phrase,U5_2A,General
|
|
||||||
584,sabor,taste,noun,U7_8A,General
|
|
||||||
585,"Sáhara",Sahara,phrase,U3_8C,General
|
|
||||||
586,sal,salt,noun,U3_11B,General
|
|
||||||
587,salado/a,savoury,phrase,U7_9C,General
|
|
||||||
588,salar,"salt flat",noun,U3_11B,General
|
|
||||||
589,"salchichas f, Pl",sausages,phrase,U7_LEX,General
|
|
||||||
590,salir,"to goout",verb,U2_2A,General
|
|
||||||
591,"salir acenar salir con amigos","to gooutfordinner togooutwithfriends",phrase,"U2_2C U2_2C",General
|
|
||||||
592,"salir de noche","to gooutatnight",phrase,U2_2C,General
|
|
||||||
593,"salmón",salmon,phrase,U7_3A,General
|
|
||||||
594,"salsa f",sauce,noun,U7_LEX,General
|
|
||||||
595,"salsa brava salteado/a","spicysauce sautéed",phrase,"U7_12A U7_7A",General
|
|
||||||
596,salto,waterfall,noun,U3_14C,General
|
|
||||||
597,"sobre todo",aboveall,phrase,U7_6B,General
|
|
||||||
598,sobrino/a,nephew/niece,phrase,U1,General
|
|
||||||
599,sociable,sociable,phrase,"U5_1A U5_3C",General
|
|
||||||
600,sol,sun,noun,U1_1A,General
|
|
||||||
601,solar,sun,phrase,U4_3A,General
|
|
||||||
602,soledad,solitude,noun,U2_1A,General
|
|
||||||
603,solo,alone,phrase,U5_8A,General
|
|
||||||
604,soltero/a,single,phrase,U5_7C,General
|
|
||||||
605,sopa,soup,noun,U7_3A,General
|
|
||||||
606,sostenible,sustainable,phrase,U4_15B,General
|
|
||||||
607,soy,Iam,phrase,U1_3A,General
|
|
||||||
608,soyyo,"It'sme",phrase,U1_2A,General
|
|
||||||
609,su,its,phrase,U3_1,General
|
|
||||||
610,sucio/a,dirty,phrase,U8_4A,General
|
|
||||||
611,"sueño",sleepy,noun,U6_2A,General
|
|
||||||
612,suficiente,enough,phrase,U7_7A,General
|
|
||||||
613,suizo/a,Swiss,phrase,U1_6,General
|
|
||||||
614,supermercado,supermarket,noun,U1_LEX,General
|
|
||||||
615,sur,south,noun,U3_3B,General
|
|
||||||
616,sureste,southeast,noun,U3_2A,General
|
|
||||||
617,surf,surfing,noun,U4_12A,General
|
|
||||||
618,suroeste,southwest,noun,U3_LEX,General
|
|
||||||
619,sushi,sushi,noun,U1_7A,General
|
|
||||||
620,tableta,tablet,noun,U0_5A,General
|
|
||||||
621,taco,taco,noun,U7_9A,General
|
|
||||||
622,"Tacuarembó",Tacuarembo,phrase,U3_13A,General
|
|
||||||
623,Tailandia,Thailand,phrase,U3_12C,General
|
|
||||||
624,talla,size,noun,U4_2A,General
|
|
||||||
625,taller,workshop,noun,U1_3C,General
|
|
||||||
626,tamal,tamale,noun,U3_4A,General
|
|
||||||
627,"también","to o",phrase,U1_5A,General
|
|
||||||
628,tampoco,either,phrase,U5_5A,General
|
|
||||||
629,tango,tango,noun,U1_7,General
|
|
||||||
630,Tanzania,Tanzania,phrase,U3_10B,General
|
|
||||||
631,tapa,tapa,noun,U2_13A,General
|
|
||||||
632,"tapón",earplugs,noun,U4_3B,General
|
|
||||||
633,tarde,afternoon,phrase,U0_6,General
|
|
||||||
634,tarde-noche,evening,noun,U6_2A,General
|
|
||||||
635,Tarifa,Tarifa,phrase,U3_8A,General
|
|
||||||
636,tarjeta,card,noun,U4_3A,General
|
|
||||||
637,"tarjeta de crédito","credit card",phrase,U4_3A,General
|
|
||||||
638,tarta,cake,noun,U7_5C,General
|
|
||||||
639,taxi,taxi,noun,U1_1A,General
|
|
||||||
640,taza,mug,noun,U7_LEX,General
|
|
||||||
641,"té",tea,noun,U5_GyC,General
|
|
||||||
642,teatro,theatre,phrase,U2_2A,General
|
|
||||||
643,"m tejido",material/cloth,noun,U4_2A,General
|
|
||||||
644,tela,fabric,noun,U9_10B,General
|
|
||||||
645,"teleférico","cable car telephone",noun,"U3_14C U1_4A",General
|
|
||||||
646,"teléfono m templado/a",mild,phrase,U1,General
|
|
||||||
647,templo,temple,noun,U3_4A,General
|
|
||||||
648,"temporada f temprano","seasonal early",phrase,U7_3A,General
|
|
||||||
649,tropical,tropical,phrase,U3_5A,General
|
|
||||||
650,"tú",you,phrase,U4_14A,General
|
|
||||||
651,turismo,"to urism",noun,U2_3A,General
|
|
||||||
652,turista,"to urist",phrase,U2_6A,General
|
|
||||||
653,"turístico/a","to urist",phrase,U3_2A,General
|
|
||||||
654,"U ubicación",location,noun,U3_2A,General
|
|
||||||
655,"últimamente",recently,phrase,U5_4A,General
|
|
||||||
656,"último/a",last,phrase,"U2_5A U5_3A",General
|
|
||||||
657,"¡un abrazo!",ahug!,phrase,U5_3C,General
|
|
||||||
658,unpoco,alittle,phrase,U1,General
|
|
||||||
659,"único/a universidad","only university",noun,"U5_7C U1_3C",General
|
|
||||||
660,universitario/a,"Universitystudent universe",phrase,U3_2A,General
|
|
||||||
661,unos/as,some,phrase,U3_4A,General
|
|
||||||
662,Uruguay,Uruguay,phrase,U0_4A,General
|
|
||||||
663,usado/a,used,phrase,U4_2A,General
|
|
||||||
664,usar,"to use",phrase,U4_GyC,General
|
|
||||||
665,usted,you(formal),phrase,U1,General
|
|
||||||
666,vacaciones,holidays,noun,U1_10B,General
|
|
||||||
667,vainilla,vanilla,noun,U7_5A,General
|
|
||||||
668,vale,OK,phrase,U0_6,General
|
|
||||||
669,valer,"to beworth",verb,U9_3A,General
|
|
||||||
670,valle,valley,noun,U3_2A,General
|
|
||||||
671,vallenato,"Vallenato (popular",noun,U1,General
|
|
||||||
672,vapor,"Colombianfolkmusic) steam",noun,"U2_10B U7_3A",General
|
|
||||||
673,vaqueros,jeans,noun,U4_2A,General
|
|
||||||
674,varios/as,several,phrase,U1,General
|
|
||||||
675,vaso,cup,noun,U7_LEX,General
|
|
||||||
676,vegano/a,vegan,phrase,U7_3A,General
|
|
||||||
677,vegetal,vegetable,phrase,U7_2A,General
|
|
||||||
678,vendedor/a,salesperson,phrase,U9_4C,General
|
|
||||||
679,vender,"to sell",phrase,U4_1A,General
|
|
||||||
680,venezolano/a,Venezuelan,phrase,U1_6,General
|
|
||||||
681,"Venezuela venido/a","Venezuela comefrom",phrase,"U0_4A U8_7A",General
|
|
||||||
682,venir,"to come",verb,U1_5A,General
|
|
||||||
683,ventana,window,noun,U0_6,General
|
|
||||||
684,"ver ver la televisión","to see/watch towatchtelevision",phrase,U2_2A,General
|
|
||||||
685,verano,summer,noun,U3_8B,General
|
|
||||||
686,"¿verdad?",right?,phrase,U3_9,General
|
|
||||||
687,verdad,true,noun,U4_6A,General
|
|
||||||
688,"verde verdura","green vegetable",noun,U7_2A,General
|
|
||||||
689,vestido,dress,noun,U4_7C,General
|
|
||||||
690,vestirse,"to getdressed",verb,U6_8A,General
|
|
||||||
691,vez,time,noun,U2_3A,General
|
|
||||||
692,viajar,"to travel",phrase,U2_3A,General
|
|
||||||
693,apasionado,passionate,phrase,U5_15C,General
|
|
||||||
694,argentino,Argentinian,phrase,U1_3A,General
|
|
||||||
695,camarero,waiter,phrase,U1_4A,General
|
|
||||||
696,arquitecto,architect,phrase,U1_6,General
|
|
||||||
697,panintegral,"wholemeal bread",noun,U7_LEX,General
|
|
||||||
698,"escribir con lápiz","to write with a pencil",noun,M1-phrase,General
|
|
||||||
699,"Subo las escaleras.","I climb the stairs",phrase,M1-phrase,General
|
|
||||||
700,"mundo hispano","Hispanic world",phrase,U3_7A,General
|
|
||||||
701,hispanohablantes,"Spanish speakers",adjective,U2_9A-Extra,General
|
|
||||||
702,"Escucho un pódcast para practicar español.","I listen to a podcast to practice Spanish",phrase,U2_9A-Extra,General
|
|
||||||
703,"los museos de la ciudad","the city museums",phrase,U2_9-extra,General
|
|
||||||
704,"los pódcast","the podcasts",phrase,U2_9A-Extra,General
|
|
||||||
705,"un pódcast","a podcast",phrase,U2_9A-Extra,General
|
|
||||||
706,"el periódico","the newspaper",noun,U1_LEX,General
|
|
||||||
707,"cocinar platos hispanos","to cook Hispanic dishes",verb,U2_9-extra,General
|
|
||||||
|
138
requirements.txt
138
requirements.txt
|
|
@ -1,138 +0,0 @@
|
||||||
accelerate==1.14.0
|
|
||||||
aiohappyeyeballs==2.6.2
|
|
||||||
aiohttp==3.14.0
|
|
||||||
aiosignal==1.4.0
|
|
||||||
annotated-doc==0.0.4
|
|
||||||
annotated-types==0.7.0
|
|
||||||
antlr4-python3-runtime==4.9.3
|
|
||||||
anyio==4.13.0
|
|
||||||
attrs==26.1.0
|
|
||||||
audioop-lts==0.2.2
|
|
||||||
audioread==3.1.0
|
|
||||||
beautifulsoup4==4.15.0
|
|
||||||
cached-property==2.0.1
|
|
||||||
certifi==2026.5.20
|
|
||||||
cffi==2.0.0
|
|
||||||
charset-normalizer==3.4.7
|
|
||||||
chevron==0.14.0
|
|
||||||
click==8.4.1
|
|
||||||
colorlog==6.10.1
|
|
||||||
decorator==5.3.1
|
|
||||||
defusedxml==0.7.1
|
|
||||||
dill==0.4.1
|
|
||||||
docling==2.102.1
|
|
||||||
docling-core==2.82.0
|
|
||||||
docling-ibm-models==3.13.3
|
|
||||||
docling-parse==6.2.0
|
|
||||||
docling-slim==2.102.1
|
|
||||||
edge-tts==7.2.8
|
|
||||||
et-xmlfile==2.0.0
|
|
||||||
faker==40.23.0
|
|
||||||
fastdtw==0.3.4
|
|
||||||
filelock==3.29.3
|
|
||||||
filetype==1.2.0
|
|
||||||
frozendict==2.4.7
|
|
||||||
frozenlist==1.8.0
|
|
||||||
fsspec==2026.4.0
|
|
||||||
genanki==0.13.1
|
|
||||||
h11==0.16.0
|
|
||||||
hf-xet==1.5.1
|
|
||||||
httpcore==1.0.9
|
|
||||||
httpx==0.28.1
|
|
||||||
huggingface-hub==1.19.0
|
|
||||||
idna==3.18
|
|
||||||
jinja2==3.1.6
|
|
||||||
joblib==1.5.3
|
|
||||||
jsonlines==4.0.0
|
|
||||||
jsonref==1.1.0
|
|
||||||
jsonschema==4.26.0
|
|
||||||
jsonschema-specifications==2025.9.1
|
|
||||||
latex2mathml==3.81.0
|
|
||||||
lazy-loader==0.5
|
|
||||||
librosa==0.11.0
|
|
||||||
llvmlite==0.47.0
|
|
||||||
lxml==6.1.1
|
|
||||||
mail-parser==4.4.0
|
|
||||||
markdown-it-py==4.2.0
|
|
||||||
marko==2.2.3
|
|
||||||
markupsafe==3.0.3
|
|
||||||
mdurl==0.1.2
|
|
||||||
mpire==2.10.2
|
|
||||||
mpmath==1.3.0
|
|
||||||
msgpack==1.1.2
|
|
||||||
multidict==6.7.1
|
|
||||||
multiprocess==0.70.19
|
|
||||||
narwhals==2.22.1
|
|
||||||
networkx==3.6.1
|
|
||||||
numba==0.65.1
|
|
||||||
numpy==2.4.6
|
|
||||||
omegaconf==2.3.1
|
|
||||||
opencv-python==4.13.0.92
|
|
||||||
openpyxl==3.1.5
|
|
||||||
packaging==26.2
|
|
||||||
pandas==3.0.3
|
|
||||||
pillow==12.2.0
|
|
||||||
platformdirs==4.10.0
|
|
||||||
pluggy==1.6.0
|
|
||||||
polyfactory==3.3.0
|
|
||||||
pooch==1.9.0
|
|
||||||
propcache==0.5.2
|
|
||||||
psutil==7.2.2
|
|
||||||
pyclipper==1.4.0
|
|
||||||
pycparser==3.0
|
|
||||||
pydantic==2.13.4
|
|
||||||
pydantic-core==2.46.4
|
|
||||||
pydantic-settings==2.14.1
|
|
||||||
pygments==2.20.0
|
|
||||||
pylatexenc==2.10
|
|
||||||
pypdfium2==5.9.0
|
|
||||||
pyqt6==6.11.0
|
|
||||||
pyqt6-qt6==6.11.1
|
|
||||||
pyqt6-sip==13.11.1
|
|
||||||
python-dateutil==2.9.0.post0
|
|
||||||
python-docx==1.2.0
|
|
||||||
python-dotenv==1.2.2
|
|
||||||
python-pptx==1.0.2
|
|
||||||
pyyaml==6.0.3
|
|
||||||
rapidocr==3.8.3
|
|
||||||
referencing==0.37.0
|
|
||||||
regex==2026.5.9
|
|
||||||
requests==2.34.2
|
|
||||||
rich==15.0.0
|
|
||||||
rpds-py==2026.5.1
|
|
||||||
rtree==1.4.1
|
|
||||||
safetensors==0.8.0
|
|
||||||
scikit-learn==1.9.0
|
|
||||||
scipy==1.17.1
|
|
||||||
semchunk==3.2.5
|
|
||||||
setuptools==81.0.0
|
|
||||||
shapely==2.1.2
|
|
||||||
shellingham==1.5.4
|
|
||||||
six==1.17.0
|
|
||||||
sounddevice==0.5.5
|
|
||||||
soundfile==0.14.0
|
|
||||||
soupsieve==2.8.4
|
|
||||||
soxr==1.1.0
|
|
||||||
standard-aifc==3.13.0
|
|
||||||
standard-chunk==3.13.0
|
|
||||||
standard-sunau==3.13.0
|
|
||||||
sympy==1.14.0
|
|
||||||
tabulate==0.10.0
|
|
||||||
threadpoolctl==3.6.0
|
|
||||||
tokenizers==0.22.2
|
|
||||||
torch==2.12.0
|
|
||||||
torchvision==0.27.0
|
|
||||||
tqdm==4.68.2
|
|
||||||
transformers==5.8.1
|
|
||||||
tree-sitter==0.25.2
|
|
||||||
tree-sitter-c==0.24.2
|
|
||||||
tree-sitter-javascript==0.25.0
|
|
||||||
tree-sitter-python==0.25.0
|
|
||||||
tree-sitter-typescript==0.23.2
|
|
||||||
typer==0.21.2
|
|
||||||
typing-extensions==4.15.0
|
|
||||||
typing-inspection==0.4.2
|
|
||||||
urllib3==2.7.0
|
|
||||||
websockets==16.0
|
|
||||||
xlsxwriter==3.2.9
|
|
||||||
yarl==1.24.2
|
|
||||||
|
|
@ -1,707 +0,0 @@
|
||||||
aparecer
|
|
||||||
apasionada
|
|
||||||
apasionado
|
|
||||||
apellido
|
|
||||||
aprender
|
|
||||||
aproximadamente
|
|
||||||
apuntar
|
|
||||||
aquí
|
|
||||||
aquí tiene
|
|
||||||
archivo
|
|
||||||
arena
|
|
||||||
arepa
|
|
||||||
argentina
|
|
||||||
argentino
|
|
||||||
arma
|
|
||||||
arquitecta
|
|
||||||
arquitecto
|
|
||||||
arquitectura
|
|
||||||
arroz
|
|
||||||
arte
|
|
||||||
artesanal
|
|
||||||
artesanía f artista
|
|
||||||
asado/a
|
|
||||||
Asia
|
|
||||||
aspecto
|
|
||||||
aspecto físico
|
|
||||||
Asunción
|
|
||||||
atención
|
|
||||||
atender
|
|
||||||
atento/a
|
|
||||||
atlántico/a
|
|
||||||
atractivo/a
|
|
||||||
atraído/a
|
|
||||||
atún
|
|
||||||
autobús
|
|
||||||
automático/a
|
|
||||||
autónomo/a
|
|
||||||
avenida
|
|
||||||
aventurero/a
|
|
||||||
avión
|
|
||||||
azul claro
|
|
||||||
azúcar m azul
|
|
||||||
bailar
|
|
||||||
bailarín/ina
|
|
||||||
baile
|
|
||||||
bajito/a
|
|
||||||
bajo
|
|
||||||
balalaica
|
|
||||||
banco
|
|
||||||
bandera
|
|
||||||
bañador
|
|
||||||
bañarse
|
|
||||||
cafetal
|
|
||||||
café
|
|
||||||
café con leche
|
|
||||||
café solo
|
|
||||||
cajero automático
|
|
||||||
calabacín
|
|
||||||
calabaza
|
|
||||||
calamar
|
|
||||||
calcetín
|
|
||||||
calidad
|
|
||||||
caliente
|
|
||||||
calle
|
|
||||||
calle peatonal
|
|
||||||
calmado/a
|
|
||||||
calor
|
|
||||||
calvo/a
|
|
||||||
camarera
|
|
||||||
camarero
|
|
||||||
camello
|
|
||||||
camino
|
|
||||||
Caminode
|
|
||||||
camiseta
|
|
||||||
campamento
|
|
||||||
campo
|
|
||||||
canadiense
|
|
||||||
Canadá
|
|
||||||
canal de televisión
|
|
||||||
canción
|
|
||||||
canela
|
|
||||||
cansado/a
|
|
||||||
cantante
|
|
||||||
cantar
|
|
||||||
cantidad
|
|
||||||
canto
|
|
||||||
capital
|
|
||||||
Caracas
|
|
||||||
característica
|
|
||||||
cargador de móvil
|
|
||||||
Caribe
|
|
||||||
cariñoso/a
|
|
||||||
carnaval
|
|
||||||
carne
|
|
||||||
carné de conducir
|
|
||||||
carné deidentidad
|
|
||||||
caro/a
|
|
||||||
carta
|
|
||||||
Cartagena de Indias
|
|
||||||
carácter
|
|
||||||
casa f casa rural
|
|
||||||
casado/a casarse
|
|
||||||
casco antiguo
|
|
||||||
caña
|
|
||||||
clave
|
|
||||||
cliente/a
|
|
||||||
clima
|
|
||||||
clásico/a
|
|
||||||
cobre
|
|
||||||
coche
|
|
||||||
cocido
|
|
||||||
cocido madrileño
|
|
||||||
cocido/a
|
|
||||||
cocidomontañés
|
|
||||||
cocinar
|
|
||||||
cocinar platos hispanos
|
|
||||||
cocinero/a
|
|
||||||
colocar
|
|
||||||
Colombia
|
|
||||||
colombiano/a
|
|
||||||
colonia
|
|
||||||
colonial
|
|
||||||
ColoniaTovar
|
|
||||||
color
|
|
||||||
comer
|
|
||||||
comercial
|
|
||||||
comerciante
|
|
||||||
comilón/ona
|
|
||||||
como
|
|
||||||
comodidad
|
|
||||||
compartir
|
|
||||||
compañero/a
|
|
||||||
compañero/a de trabajo
|
|
||||||
competición
|
|
||||||
compi
|
|
||||||
completamente
|
|
||||||
composición compositor/a
|
|
||||||
comprar
|
|
||||||
compras
|
|
||||||
comprender
|
|
||||||
compromiso m común
|
|
||||||
comunicado/a comunicarse
|
|
||||||
comunicativo/a
|
|
||||||
comunidad
|
|
||||||
Cuba
|
|
||||||
cubano/a
|
|
||||||
cuchara
|
|
||||||
cucharilla
|
|
||||||
cuchillo
|
|
||||||
cuenta
|
|
||||||
cuidar
|
|
||||||
cultural
|
|
||||||
cumpleaños
|
|
||||||
curso
|
|
||||||
cuy
|
|
||||||
Cádiz
|
|
||||||
cálido/a
|
|
||||||
cómo
|
|
||||||
cómodo/a
|
|
||||||
dar clases
|
|
||||||
darse cuenta
|
|
||||||
de
|
|
||||||
de acuerdo
|
|
||||||
de cuadros
|
|
||||||
de estilo colonial
|
|
||||||
de fuera
|
|
||||||
de primero
|
|
||||||
de rayas
|
|
||||||
de segundo
|
|
||||||
de todas partes
|
|
||||||
de valor
|
|
||||||
decidir
|
|
||||||
decir
|
|
||||||
decisión
|
|
||||||
declarado/a
|
|
||||||
dedicar tiempo
|
|
||||||
defecto
|
|
||||||
definir
|
|
||||||
dejar
|
|
||||||
dejarse algo
|
|
||||||
del tiempo
|
|
||||||
delgado/a
|
|
||||||
demasiado/a
|
|
||||||
deporte m deportista
|
|
||||||
derecha
|
|
||||||
desayunar
|
|
||||||
descendiente desconectar
|
|
||||||
desde
|
|
||||||
desde hace
|
|
||||||
desear
|
|
||||||
desfile
|
|
||||||
el periódico
|
|
||||||
elegante
|
|
||||||
elegido/a
|
|
||||||
elegir
|
|
||||||
emblemático/a
|
|
||||||
embutido
|
|
||||||
empanada
|
|
||||||
empezar
|
|
||||||
empleado/a
|
|
||||||
emprendedor/a
|
|
||||||
empresa
|
|
||||||
empresade
|
|
||||||
empresade
|
|
||||||
en
|
|
||||||
enamorarsea
|
|
||||||
encambio
|
|
||||||
encantar
|
|
||||||
encanto
|
|
||||||
enchilada
|
|
||||||
energía
|
|
||||||
enfermero/a
|
|
||||||
enfermería
|
|
||||||
enfermo/a
|
|
||||||
enforma
|
|
||||||
enpunto
|
|
||||||
ensalada
|
|
||||||
ensalada mixta
|
|
||||||
enseguida
|
|
||||||
entodo
|
|
||||||
entrante
|
|
||||||
entresemana
|
|
||||||
enventa
|
|
||||||
equipaje
|
|
||||||
equipo
|
|
||||||
equivocarse
|
|
||||||
escolar
|
|
||||||
escribir
|
|
||||||
escribir con lápiz
|
|
||||||
escuchar
|
|
||||||
Escucho un pódcast para practicar español.
|
|
||||||
escuela
|
|
||||||
escultura
|
|
||||||
ese/a
|
|
||||||
España
|
|
||||||
especial
|
|
||||||
especializado/a
|
|
||||||
espectacular
|
|
||||||
esperar
|
|
||||||
espinaca
|
|
||||||
esquiar
|
|
||||||
esquina
|
|
||||||
esquí
|
|
||||||
establecimiento
|
|
||||||
estación de metro
|
|
||||||
Estoy subiendo las escaleras
|
|
||||||
f impaciente
|
|
||||||
final
|
|
||||||
flamenco
|
|
||||||
flan
|
|
||||||
flor
|
|
||||||
forma
|
|
||||||
foto
|
|
||||||
fotografía
|
|
||||||
fotógrafo/a
|
|
||||||
francés/esa
|
|
||||||
frecuencia
|
|
||||||
fresa
|
|
||||||
fresco/a
|
|
||||||
frijoles
|
|
||||||
frito/a
|
|
||||||
fruta
|
|
||||||
frutadetemporada
|
|
||||||
frutos secos
|
|
||||||
frío/a
|
|
||||||
fuera
|
|
||||||
fumar
|
|
||||||
fundado/a
|
|
||||||
fundamental
|
|
||||||
futuro
|
|
||||||
físico/a
|
|
||||||
fútbol
|
|
||||||
gafas de sol
|
|
||||||
galería
|
|
||||||
Galicia
|
|
||||||
galleta
|
|
||||||
gamba
|
|
||||||
ganar
|
|
||||||
ganarunpremio
|
|
||||||
garbanzos
|
|
||||||
gas
|
|
||||||
gasolinera
|
|
||||||
gasto
|
|
||||||
gastronómico/a
|
|
||||||
gazpacho m
|
|
||||||
geldebaño
|
|
||||||
generoso/a
|
|
||||||
gente
|
|
||||||
geográfico/a
|
|
||||||
geólogo/a
|
|
||||||
gimnasio
|
|
||||||
ginecólogo/a
|
|
||||||
girar
|
|
||||||
girasol
|
|
||||||
golf
|
|
||||||
gordo/a
|
|
||||||
gorra
|
|
||||||
gorro m Gotemburgo
|
|
||||||
gracias
|
|
||||||
hispanohablantes
|
|
||||||
horario
|
|
||||||
horno
|
|
||||||
hortaliza
|
|
||||||
hospital
|
|
||||||
hospitalidad
|
|
||||||
hostelero/a
|
|
||||||
hotel
|
|
||||||
hoy
|
|
||||||
huerto
|
|
||||||
huevo
|
|
||||||
humanidad
|
|
||||||
humor
|
|
||||||
humus
|
|
||||||
húmedo/a
|
|
||||||
ibérico/a identidad
|
|
||||||
idea
|
|
||||||
ideal
|
|
||||||
idioma iglesia
|
|
||||||
infusión
|
|
||||||
ingeniero/a
|
|
||||||
Inglaterra
|
|
||||||
insociable
|
|
||||||
instrumento
|
|
||||||
intercambio
|
|
||||||
interesante
|
|
||||||
interior
|
|
||||||
intermediario/a
|
|
||||||
internacional
|
|
||||||
internet
|
|
||||||
invierno
|
|
||||||
invitado/a
|
|
||||||
ir de viaje
|
|
||||||
irdecompras
|
|
||||||
levantarse
|
|
||||||
libro
|
|
||||||
lila
|
|
||||||
Lima
|
|
||||||
limpieza
|
|
||||||
limpio/a
|
|
||||||
limón
|
|
||||||
lindo/a
|
|
||||||
lingüista
|
|
||||||
liso/a
|
|
||||||
lista
|
|
||||||
literatura
|
|
||||||
llamado/a
|
|
||||||
llamarse
|
|
||||||
llave
|
|
||||||
llegar
|
|
||||||
llevar
|
|
||||||
llevar
|
|
||||||
llevarse
|
|
||||||
llover
|
|
||||||
lluvioso/a
|
|
||||||
lo siento Londres
|
|
||||||
loquemenos
|
|
||||||
loquemás
|
|
||||||
los museos de la ciudad
|
|
||||||
los pódcast
|
|
||||||
luego
|
|
||||||
lugar
|
|
||||||
lunes
|
|
||||||
luz
|
|
||||||
m
|
|
||||||
m tejido
|
|
||||||
macarrones
|
|
||||||
madre
|
|
||||||
Madrid
|
|
||||||
madrileño/a
|
|
||||||
madrugar
|
|
||||||
maestro/a
|
|
||||||
malcomunicado
|
|
||||||
maleta
|
|
||||||
manera
|
|
||||||
mangacorta
|
|
||||||
mangalarga f maniático/a
|
|
||||||
mano
|
|
||||||
manzana
|
|
||||||
mapa m
|
|
||||||
mapamundi mar m,f
|
|
||||||
marido
|
|
||||||
marinero/a
|
|
||||||
maíz
|
|
||||||
mañana
|
|
||||||
miles
|
|
||||||
millón
|
|
||||||
minuto
|
|
||||||
mire
|
|
||||||
mismo/a
|
|
||||||
mixto/a
|
|
||||||
mochila
|
|
||||||
moda
|
|
||||||
modelo
|
|
||||||
moderno/a
|
|
||||||
modo
|
|
||||||
molino de viento
|
|
||||||
momento
|
|
||||||
moneda
|
|
||||||
montar
|
|
||||||
montaña
|
|
||||||
montañés/esa
|
|
||||||
Montevideo
|
|
||||||
monumento
|
|
||||||
moreno/a
|
|
||||||
mostaza
|
|
||||||
mucho muchos/as
|
|
||||||
mueble
|
|
||||||
mujer
|
|
||||||
mundo
|
|
||||||
mundo hispano
|
|
||||||
museo
|
|
||||||
musical
|
|
||||||
muy
|
|
||||||
mágico/a
|
|
||||||
Málaga
|
|
||||||
móvil
|
|
||||||
música
|
|
||||||
música
|
|
||||||
música clásica
|
|
||||||
música electrónica
|
|
||||||
música envivo
|
|
||||||
música soul
|
|
||||||
músicapop
|
|
||||||
músico/a
|
|
||||||
N
|
|
||||||
nacer
|
|
||||||
nachos
|
|
||||||
nacimiento
|
|
||||||
nacional nacionalidad
|
|
||||||
nadar
|
|
||||||
naranja
|
|
||||||
naranja nativo/a
|
|
||||||
natural
|
|
||||||
naturaleza f Navarra
|
|
||||||
Navidad
|
|
||||||
O
|
|
||||||
olvidar
|
|
||||||
opinar
|
|
||||||
orden
|
|
||||||
ordenador
|
|
||||||
ordenadorportátil
|
|
||||||
organizado/a
|
|
||||||
organizar
|
|
||||||
origen
|
|
||||||
original
|
|
||||||
oso
|
|
||||||
Otavalo
|
|
||||||
otoño
|
|
||||||
otro/a
|
|
||||||
paciente
|
|
||||||
Pacífico
|
|
||||||
padre
|
|
||||||
paella
|
|
||||||
paisaje
|
|
||||||
palacio
|
|
||||||
PalmadeMallorca palmera
|
|
||||||
pan
|
|
||||||
Panamá
|
|
||||||
panblanco
|
|
||||||
panintegral
|
|
||||||
pantalones
|
|
||||||
pantalón
|
|
||||||
papelera
|
|
||||||
para
|
|
||||||
parada de autobús
|
|
||||||
paraempezar
|
|
||||||
paraguas
|
|
||||||
Paraguay
|
|
||||||
paramí
|
|
||||||
pareja f París
|
|
||||||
parking
|
|
||||||
parque
|
|
||||||
parque nacional
|
|
||||||
participar
|
|
||||||
particular
|
|
||||||
pasaporte
|
|
||||||
pasar
|
|
||||||
pasar de largo
|
|
||||||
paseo acaballo pasión
|
|
||||||
paseo m
|
|
||||||
pasta
|
|
||||||
país
|
|
||||||
plato
|
|
||||||
plato principal
|
|
||||||
plato único
|
|
||||||
playa
|
|
||||||
plaza
|
|
||||||
pleno/a
|
|
||||||
plurilingüe
|
|
||||||
población
|
|
||||||
poblado/a
|
|
||||||
poco
|
|
||||||
poco/a/os/as
|
|
||||||
podcast
|
|
||||||
poder
|
|
||||||
podríamos
|
|
||||||
poema
|
|
||||||
poesía
|
|
||||||
policía
|
|
||||||
polideportivo
|
|
||||||
polifacético/a
|
|
||||||
pollo
|
|
||||||
poner
|
|
||||||
pop-rock
|
|
||||||
poplatino
|
|
||||||
popular
|
|
||||||
por eso
|
|
||||||
por favor
|
|
||||||
por fin
|
|
||||||
porlamañana/
|
|
||||||
porque
|
|
||||||
portugués/esa
|
|
||||||
portátil
|
|
||||||
postal
|
|
||||||
postre
|
|
||||||
practicar
|
|
||||||
precio
|
|
||||||
precioso/a
|
|
||||||
preferencia
|
|
||||||
preferido/a
|
|
||||||
preferir
|
|
||||||
pregunta
|
|
||||||
preguntar
|
|
||||||
premio
|
|
||||||
prenda
|
|
||||||
preparar
|
|
||||||
primavera
|
|
||||||
primero/a
|
|
||||||
primo/a
|
|
||||||
principal
|
|
||||||
probar
|
|
||||||
producción
|
|
||||||
producto
|
|
||||||
productor
|
|
||||||
profesión
|
|
||||||
práctica
|
|
||||||
práctico/a
|
|
||||||
página
|
|
||||||
páginaweb
|
|
||||||
reparar
|
|
||||||
repetir
|
|
||||||
repoblar
|
|
||||||
República
|
|
||||||
res
|
|
||||||
reserva natural
|
|
||||||
residencia
|
|
||||||
residencial
|
|
||||||
responsable
|
|
||||||
respuesta
|
|
||||||
restaurante
|
|
||||||
restos
|
|
||||||
resultado
|
|
||||||
reunirse
|
|
||||||
revisión médica
|
|
||||||
revista
|
|
||||||
ribera
|
|
||||||
rizado/a
|
|
||||||
robar
|
|
||||||
rojo/a
|
|
||||||
romántico/a
|
|
||||||
ropa
|
|
||||||
ropa interior
|
|
||||||
rosa
|
|
||||||
rosario
|
|
||||||
rubio/a
|
|
||||||
ruidoso/a
|
|
||||||
ruinas
|
|
||||||
rural
|
|
||||||
ruso
|
|
||||||
ruta gastronómica
|
|
||||||
rutina
|
|
||||||
río
|
|
||||||
Río de Janeiro
|
|
||||||
saber
|
|
||||||
sabor
|
|
||||||
sal
|
|
||||||
salado/a
|
|
||||||
salar
|
|
||||||
salchichas f, Pl
|
|
||||||
salir
|
|
||||||
salir acenar salir con amigos
|
|
||||||
salir de noche
|
|
||||||
salmón
|
|
||||||
salsa brava salteado/a
|
|
||||||
salsa f
|
|
||||||
salto
|
|
||||||
Santiago m camisa
|
|
||||||
sobre todo
|
|
||||||
sobrino/a
|
|
||||||
sociable
|
|
||||||
sol
|
|
||||||
solar
|
|
||||||
soledad
|
|
||||||
solo
|
|
||||||
soltero/a
|
|
||||||
sopa
|
|
||||||
sostenible
|
|
||||||
soy
|
|
||||||
soyyo
|
|
||||||
su
|
|
||||||
Subo las escaleras.
|
|
||||||
sucio/a
|
|
||||||
sueño
|
|
||||||
suficiente
|
|
||||||
suizo/a
|
|
||||||
supermercado
|
|
||||||
sur
|
|
||||||
sureste
|
|
||||||
surf
|
|
||||||
suroeste
|
|
||||||
sushi
|
|
||||||
sábado
|
|
||||||
Sáhara
|
|
||||||
tableta
|
|
||||||
taco
|
|
||||||
Tacuarembó
|
|
||||||
Tailandia
|
|
||||||
talla
|
|
||||||
taller
|
|
||||||
tamal
|
|
||||||
también
|
|
||||||
tampoco
|
|
||||||
tango
|
|
||||||
Tanzania
|
|
||||||
tapa
|
|
||||||
tapón
|
|
||||||
tarde
|
|
||||||
tarde-noche
|
|
||||||
Tarifa
|
|
||||||
tarjeta
|
|
||||||
tarjeta de crédito
|
|
||||||
tarta
|
|
||||||
taxi
|
|
||||||
taza
|
|
||||||
teatro
|
|
||||||
tela
|
|
||||||
teleférico
|
|
||||||
teléfono m templado/a
|
|
||||||
templo
|
|
||||||
temporada f temprano
|
|
||||||
tienes? cuatro
|
|
||||||
tropical
|
|
||||||
turismo
|
|
||||||
turista
|
|
||||||
turístico/a
|
|
||||||
té
|
|
||||||
tú
|
|
||||||
U ubicación
|
|
||||||
un pódcast
|
|
||||||
universitario/a
|
|
||||||
unos pódcast
|
|
||||||
unos/as
|
|
||||||
unpoco
|
|
||||||
Uruguay
|
|
||||||
usado/a
|
|
||||||
usar
|
|
||||||
usted
|
|
||||||
vacaciones
|
|
||||||
vainilla
|
|
||||||
vale
|
|
||||||
valer
|
|
||||||
valle
|
|
||||||
vallenato
|
|
||||||
vapor
|
|
||||||
vaqueros
|
|
||||||
varios/as
|
|
||||||
vaso
|
|
||||||
vegano/a
|
|
||||||
vegetal
|
|
||||||
vendedor/a
|
|
||||||
vender
|
|
||||||
venezolano/a
|
|
||||||
Venezuela venido/a
|
|
||||||
venir
|
|
||||||
ventana
|
|
||||||
ver ver la televisión
|
|
||||||
verano
|
|
||||||
verdad
|
|
||||||
verde verdura
|
|
||||||
vestido
|
|
||||||
vestirse
|
|
||||||
vez
|
|
||||||
viajar
|
|
||||||
¡un abrazo!
|
|
||||||
¿cuánto cuesta?
|
|
||||||
¿cuánto es?
|
|
||||||
¿cuánto/a/os/as?
|
|
||||||
¿cuántos años
|
|
||||||
¿cómo andas?
|
|
||||||
¿cómoeres?
|
|
||||||
¿cómoestás?
|
|
||||||
¿cómolotomas?
|
|
||||||
¿cómose pronuncia...?
|
|
||||||
¿cómosedice...?
|
|
||||||
¿cómoseescribe ...?
|
|
||||||
¿cómotellamas?
|
|
||||||
¿de dóndeeres?
|
|
||||||
¿en quétrabajas?
|
|
||||||
¿por qué?
|
|
||||||
¿verdad?
|
|
||||||
árabe
|
|
||||||
área
|
|
||||||
árido/a
|
|
||||||
ópera
|
|
||||||
últimamente
|
|
||||||
último/a
|
|
||||||
único/a universidad
|
|
||||||
|
|
@ -1,707 +0,0 @@
|
||||||
aparecer|to appear
|
|
||||||
apasionada|passionate
|
|
||||||
apasionado|passionate
|
|
||||||
apellido|surname
|
|
||||||
aprender|to learn
|
|
||||||
aproximadamente|approximately
|
|
||||||
apuntar|to note down
|
|
||||||
aquí|here
|
|
||||||
aquí tiene|here you go
|
|
||||||
archivo|file
|
|
||||||
arena|sand
|
|
||||||
arepa|arepa
|
|
||||||
argentina|Argentinian
|
|
||||||
argentino|Argentinian
|
|
||||||
arma|weapon
|
|
||||||
arquitecta|architect
|
|
||||||
arquitecto|architect
|
|
||||||
arquitectura|architecture
|
|
||||||
arroz|rice
|
|
||||||
arte|art
|
|
||||||
artesanal|artisanal
|
|
||||||
artesanía f artista|crafts artist
|
|
||||||
asado/a|roasted
|
|
||||||
Asia|Asia
|
|
||||||
aspecto|aspect
|
|
||||||
aspecto físico|physical feature
|
|
||||||
Asunción|Asuncion
|
|
||||||
atención|takenote
|
|
||||||
atender|to lookafter
|
|
||||||
atento/a|attentive
|
|
||||||
atlántico/a|Atlantic
|
|
||||||
atractivo/a|attractive
|
|
||||||
atraído/a|attracted
|
|
||||||
atún|tuna
|
|
||||||
autobús|bus
|
|
||||||
automático/a|automatic
|
|
||||||
autónomo/a|self-employed
|
|
||||||
avenida|avenue
|
|
||||||
aventurero/a|adventurous
|
|
||||||
avión|plane
|
|
||||||
azul claro|light blue
|
|
||||||
azúcar m azul|sugar blue
|
|
||||||
bailar|to dance
|
|
||||||
bailarín/ina|dancer
|
|
||||||
baile|dance
|
|
||||||
bajito/a|short
|
|
||||||
bajo|groundfloor
|
|
||||||
balalaica|balalaika
|
|
||||||
banco|bank
|
|
||||||
bandera|flag
|
|
||||||
bañador|swimsuit
|
|
||||||
bañarse|to goforaswim
|
|
||||||
cafetal|coffee plantation
|
|
||||||
café|coffee
|
|
||||||
café con leche|coffeewithmilk
|
|
||||||
café solo|espresso
|
|
||||||
cajero automático|cashmachine
|
|
||||||
calabacín|courgette
|
|
||||||
calabaza|pumpkin
|
|
||||||
calamar|squid
|
|
||||||
calcetín|sock
|
|
||||||
calidad|quality
|
|
||||||
caliente|hot
|
|
||||||
calle|street
|
|
||||||
calle peatonal|pedestrian street
|
|
||||||
calmado/a|calm
|
|
||||||
calor|hot
|
|
||||||
calvo/a|bald
|
|
||||||
camarera|waitress
|
|
||||||
camarero|waiter
|
|
||||||
camello|camel
|
|
||||||
camino|road/journey
|
|
||||||
Caminode|Way of Saint James
|
|
||||||
camiseta|t-shirt
|
|
||||||
campamento|camping
|
|
||||||
campo|countryside
|
|
||||||
canadiense|Canadian
|
|
||||||
Canadá|Canada
|
|
||||||
canal de televisión|television channel
|
|
||||||
canción|song
|
|
||||||
canela|cinnamon
|
|
||||||
cansado/a|tired
|
|
||||||
cantante|singer
|
|
||||||
cantar|to sing
|
|
||||||
cantidad|amount
|
|
||||||
canto|song
|
|
||||||
capital|capital
|
|
||||||
Caracas|Caracas
|
|
||||||
característica|characteristics
|
|
||||||
cargador de móvil|phonecharger
|
|
||||||
Caribe|Caribbean
|
|
||||||
cariñoso/a|caring
|
|
||||||
carnaval|carnival
|
|
||||||
carne|meat
|
|
||||||
carné de conducir|driving license
|
|
||||||
carné deidentidad|IDcard
|
|
||||||
caro/a|expensive
|
|
||||||
carta|menu
|
|
||||||
Cartagena de Indias|CartagenadeIndias
|
|
||||||
carácter|personality
|
|
||||||
casa f casa rural|house houseinthecountry
|
|
||||||
casado/a casarse|married togetmarried
|
|
||||||
casco antiguo|oldtown
|
|
||||||
caña|smalldraughtbeer
|
|
||||||
clave|key
|
|
||||||
cliente/a|customer
|
|
||||||
clima|climate
|
|
||||||
clásico/a|classic
|
|
||||||
cobre|copper
|
|
||||||
coche|car
|
|
||||||
cocido|stew
|
|
||||||
cocido madrileño|Madridstew
|
|
||||||
cocido/a|baked
|
|
||||||
cocidomontañés|Cantabrianbeanstew
|
|
||||||
cocinar|to cook
|
|
||||||
cocinar platos hispanos|to cook Hispanic dishes
|
|
||||||
cocinero/a|chef
|
|
||||||
colocar|to place
|
|
||||||
Colombia|Colombia
|
|
||||||
colombiano/a|Colombian
|
|
||||||
colonia|colony
|
|
||||||
colonial|colonial
|
|
||||||
ColoniaTovar|ColoniaTovar
|
|
||||||
color|colour
|
|
||||||
comer|to eat
|
|
||||||
comercial|sales representative
|
|
||||||
comerciante|shopkeeper
|
|
||||||
comilón/ona|foodlover
|
|
||||||
como|like
|
|
||||||
comodidad|comfort
|
|
||||||
compartir|to share
|
|
||||||
compañero/a|flatmate
|
|
||||||
compañero/a de trabajo|workcolleague
|
|
||||||
competición|competition
|
|
||||||
compi|flatmate (colloq.)
|
|
||||||
completamente|completely
|
|
||||||
composición compositor/a|composition
|
|
||||||
comprar|composer
|
|
||||||
compras|shopping
|
|
||||||
comprender|to understand engagement
|
|
||||||
compromiso m común|common
|
|
||||||
comunicado/a comunicarse|communicated
|
|
||||||
comunicativo/a|talkative
|
|
||||||
comunidad|autonomouscommunity
|
|
||||||
Cuba|Cuba
|
|
||||||
cubano/a|Cuban
|
|
||||||
cuchara|spoon
|
|
||||||
cucharilla|teaspoon
|
|
||||||
cuchillo|knife
|
|
||||||
cuenta|bill
|
|
||||||
cuidar|to takecareof
|
|
||||||
cultural|cultural
|
|
||||||
cumpleaños|birthday
|
|
||||||
curso|course
|
|
||||||
cuy|Guineapig
|
|
||||||
Cádiz|Cadiz
|
|
||||||
cálido/a|warm
|
|
||||||
cómo|how
|
|
||||||
cómodo/a|comfortable
|
|
||||||
dar clases|to giveclasses
|
|
||||||
darse cuenta|to realise
|
|
||||||
de|of
|
|
||||||
de acuerdo|all right
|
|
||||||
de cuadros|check
|
|
||||||
de estilo colonial|Colonial style
|
|
||||||
de fuera|fromoutside/foreign
|
|
||||||
de primero|for firstcourse
|
|
||||||
de rayas|stripy
|
|
||||||
de segundo|forsecondcourse
|
|
||||||
de todas partes|from everywhere
|
|
||||||
de valor|valuable
|
|
||||||
decidir|to decide
|
|
||||||
decir|to say
|
|
||||||
decisión|decision
|
|
||||||
declarado/a|declared
|
|
||||||
dedicar tiempo|to spendtime(onsomething)
|
|
||||||
defecto|weakness/defect
|
|
||||||
definir|to define
|
|
||||||
dejar|to leave
|
|
||||||
dejarse algo|to forgetsomething
|
|
||||||
del tiempo|atroomtemperature
|
|
||||||
delgado/a|thin
|
|
||||||
demasiado/a|to omuch
|
|
||||||
deporte m deportista|sport athlete
|
|
||||||
derecha|right
|
|
||||||
desayunar|to havebreakfast
|
|
||||||
descendiente desconectar|descendent todisconnect
|
|
||||||
desde|since/from
|
|
||||||
desde hace|since
|
|
||||||
desear|to wantsomething
|
|
||||||
desfile|parade
|
|
||||||
el periódico|the newspaper
|
|
||||||
elegante|elegant
|
|
||||||
elegido/a|chosen
|
|
||||||
elegir|to choose
|
|
||||||
emblemático/a|iconic
|
|
||||||
embutido|curedmeat
|
|
||||||
empanada|empanada
|
|
||||||
empezar|to start
|
|
||||||
empleado/a|employee
|
|
||||||
emprendedor/a|enterprising
|
|
||||||
empresa|company
|
|
||||||
empresade|telecommunicationscompany
|
|
||||||
empresade|transportcompany
|
|
||||||
en|in/on
|
|
||||||
enamorarsea|to fall in love at first sight
|
|
||||||
encambio|ontheotherhand
|
|
||||||
encantar|to love
|
|
||||||
encanto|charm
|
|
||||||
enchilada|enchilada
|
|
||||||
energía|energy
|
|
||||||
enfermero/a|nurse
|
|
||||||
enfermería|nursing
|
|
||||||
enfermo/a|ill
|
|
||||||
enforma|inshape
|
|
||||||
enpunto|o'clock
|
|
||||||
ensalada|salad
|
|
||||||
ensalada mixta|mixedsalad
|
|
||||||
enseguida|comingrightup
|
|
||||||
entodo|entirely
|
|
||||||
entrante|starter
|
|
||||||
entresemana|duringtheweek
|
|
||||||
enventa|for sale
|
|
||||||
equipaje|luggage
|
|
||||||
equipo|team
|
|
||||||
equivocarse|to bewrongabout
|
|
||||||
escolar|school
|
|
||||||
escribir|to write
|
|
||||||
escribir con lápiz|to write with a pencil
|
|
||||||
escuchar|to listento
|
|
||||||
Escucho un pódcast para practicar español.|I listen to a podcast to practice Spanish
|
|
||||||
escuela|school
|
|
||||||
escultura|sculpture
|
|
||||||
ese/a|this
|
|
||||||
España|Spain
|
|
||||||
especial|special
|
|
||||||
especializado/a|specialised
|
|
||||||
espectacular|spectacular
|
|
||||||
esperar|to wait
|
|
||||||
espinaca|spinach
|
|
||||||
esquiar|to ski
|
|
||||||
esquina|corner
|
|
||||||
esquí|skiing
|
|
||||||
establecimiento|establishment
|
|
||||||
estación de metro|metrostation
|
|
||||||
Estoy subiendo las escaleras|I am going up the stairs
|
|
||||||
f impaciente|church
|
|
||||||
final|end
|
|
||||||
flamenco|flamenco
|
|
||||||
flan|eggcustard
|
|
||||||
flor|flower
|
|
||||||
forma|shape
|
|
||||||
foto|photo
|
|
||||||
fotografía|photography
|
|
||||||
fotógrafo/a|photographer
|
|
||||||
francés/esa|French
|
|
||||||
frecuencia|frequency
|
|
||||||
fresa|strawberry
|
|
||||||
fresco/a|fresh
|
|
||||||
frijoles|beans
|
|
||||||
frito/a|fried
|
|
||||||
fruta|fruit
|
|
||||||
frutadetemporada|seasonal fruit
|
|
||||||
frutos secos|nuts
|
|
||||||
frío/a|cold
|
|
||||||
fuera|outside
|
|
||||||
fumar|to smoke
|
|
||||||
fundado/a|founded
|
|
||||||
fundamental|fundamental
|
|
||||||
futuro|future
|
|
||||||
físico/a|physical
|
|
||||||
fútbol|football
|
|
||||||
gafas de sol|sunglasses
|
|
||||||
galería|shoppingcentre
|
|
||||||
Galicia|Galicia
|
|
||||||
galleta|biscuit
|
|
||||||
gamba|prawn
|
|
||||||
ganar|to win
|
|
||||||
ganarunpremio|to winaprize
|
|
||||||
garbanzos|chickpeas
|
|
||||||
gas|petrol
|
|
||||||
gasolinera|petrol station
|
|
||||||
gasto|expense
|
|
||||||
gastronómico/a|culinary
|
|
||||||
gazpacho m|gazpacho
|
|
||||||
geldebaño|showergel
|
|
||||||
generoso/a|generous
|
|
||||||
gente|people
|
|
||||||
geográfico/a|geographical
|
|
||||||
geólogo/a|geology
|
|
||||||
gimnasio|gym
|
|
||||||
ginecólogo/a|gynaecologist
|
|
||||||
girar|to turn
|
|
||||||
girasol|sunflower
|
|
||||||
golf|golf
|
|
||||||
gordo/a|fat
|
|
||||||
gorra|cap
|
|
||||||
gorro m Gotemburgo|hat Gothenburg
|
|
||||||
gracias|thankyou
|
|
||||||
hispanohablantes|Spanish speakers
|
|
||||||
horario|schedule
|
|
||||||
horno|oven
|
|
||||||
hortaliza|vegetable
|
|
||||||
hospital|hospital
|
|
||||||
hospitalidad|hospitality
|
|
||||||
hostelero/a|hotelier
|
|
||||||
hotel|hotel
|
|
||||||
hoy|to day
|
|
||||||
huerto|vegetablegarden
|
|
||||||
huevo|egg
|
|
||||||
humanidad|humanity
|
|
||||||
humor|mood
|
|
||||||
humus|hummus
|
|
||||||
húmedo/a|humid
|
|
||||||
ibérico/a identidad|impatient independence
|
|
||||||
idea|Iberian
|
|
||||||
ideal|idea ideal
|
|
||||||
idioma iglesia|important late incredible independent Indian infographic information
|
|
||||||
infusión|tea
|
|
||||||
ingeniero/a|engineer
|
|
||||||
Inglaterra|England
|
|
||||||
insociable|unsociable
|
|
||||||
instrumento|musicalinstrument
|
|
||||||
intercambio|exchange
|
|
||||||
interesante|interesting
|
|
||||||
interior|interior
|
|
||||||
intermediario/a|intermediary
|
|
||||||
internacional|international
|
|
||||||
internet|internet
|
|
||||||
invierno|winter
|
|
||||||
invitado/a|guest
|
|
||||||
ir de viaje|to gotravelling
|
|
||||||
irdecompras|to goshopping
|
|
||||||
levantarse|to getup
|
|
||||||
libro|book
|
|
||||||
lila|purple
|
|
||||||
Lima|Lima
|
|
||||||
limpieza|cleanliness
|
|
||||||
limpio/a|clean
|
|
||||||
limón|lemon
|
|
||||||
lindo/a|cute
|
|
||||||
lingüista|linguist
|
|
||||||
liso/a|straight
|
|
||||||
lista|list
|
|
||||||
literatura|literature
|
|
||||||
llamado/a|called
|
|
||||||
llamarse|to becalled
|
|
||||||
llave|key
|
|
||||||
llegar|to arrive
|
|
||||||
llevar|to wear
|
|
||||||
llevar|to have
|
|
||||||
llevarse|to take
|
|
||||||
llover|to rain
|
|
||||||
lluvioso/a|rainy
|
|
||||||
lo siento Londres|I'm sorry London
|
|
||||||
loquemenos|theleast
|
|
||||||
loquemás|themost
|
|
||||||
los museos de la ciudad|the city museums
|
|
||||||
los pódcast|the podcasts
|
|
||||||
luego|later
|
|
||||||
lugar|place
|
|
||||||
lunes|Monday
|
|
||||||
luz|light
|
|
||||||
m|to urist interest
|
|
||||||
m tejido|material/cloth
|
|
||||||
macarrones|macaroni
|
|
||||||
madre|mother
|
|
||||||
Madrid|Madrid
|
|
||||||
madrileño/a|personfromMadrid
|
|
||||||
madrugar|to getupearly
|
|
||||||
maestro/a|teacher
|
|
||||||
malcomunicado|poorlyconnected
|
|
||||||
maleta|suitcase Majorca
|
|
||||||
manera|way
|
|
||||||
mangacorta|short sleeve
|
|
||||||
mangalarga f maniático/a|longsleeve
|
|
||||||
mano|hand
|
|
||||||
manzana|apple
|
|
||||||
mapa m|map worldmap
|
|
||||||
mapamundi mar m,f|sea
|
|
||||||
marido|husband
|
|
||||||
marinero/a|sailor
|
|
||||||
maíz|corn
|
|
||||||
mañana|morning
|
|
||||||
miles|thousands
|
|
||||||
millón|million
|
|
||||||
minuto|minute
|
|
||||||
mire|look
|
|
||||||
mismo/a|same
|
|
||||||
mixto/a|mixed
|
|
||||||
mochila|backpack
|
|
||||||
moda|fashion
|
|
||||||
modelo|model
|
|
||||||
moderno/a|modern
|
|
||||||
modo|way
|
|
||||||
molino de viento|windmill
|
|
||||||
momento|moment
|
|
||||||
moneda|currency
|
|
||||||
montar|to setup
|
|
||||||
montaña|mountain
|
|
||||||
montañés/esa|mountain
|
|
||||||
Montevideo|Montevideo
|
|
||||||
monumento|landmark
|
|
||||||
moreno/a|dark-haired
|
|
||||||
mostaza|mustard
|
|
||||||
mucho muchos/as|alot many/alotof
|
|
||||||
mueble|furniture
|
|
||||||
mujer|woman
|
|
||||||
mundo|world
|
|
||||||
mundo hispano|Hispanic world
|
|
||||||
museo|museum
|
|
||||||
musical|musical
|
|
||||||
muy|very
|
|
||||||
mágico/a|magical
|
|
||||||
Málaga|Malaga
|
|
||||||
móvil|mobile
|
|
||||||
música|music
|
|
||||||
música|indiemusic
|
|
||||||
música clásica|classicalmusic
|
|
||||||
música electrónica|electronicmusic
|
|
||||||
música envivo|livemusic
|
|
||||||
música soul|soulmusic
|
|
||||||
músicapop|popmusic
|
|
||||||
músico/a|musician
|
|
||||||
N|N
|
|
||||||
nacer|to beborn
|
|
||||||
nachos|nachos
|
|
||||||
nacimiento|birth
|
|
||||||
nacional nacionalidad|national nationality
|
|
||||||
nadar|to swim
|
|
||||||
naranja|orange
|
|
||||||
naranja nativo/a|orange native
|
|
||||||
natural|natural
|
|
||||||
naturaleza f Navarra|nature Navarre
|
|
||||||
Navidad|Christmas
|
|
||||||
O|O
|
|
||||||
olvidar|to forget
|
|
||||||
opinar|to haveanopinionon
|
|
||||||
orden|order
|
|
||||||
ordenador|computer
|
|
||||||
ordenadorportátil|laptop
|
|
||||||
organizado/a|organised
|
|
||||||
organizar|to organise
|
|
||||||
origen|origin
|
|
||||||
original|original
|
|
||||||
oso|bear
|
|
||||||
Otavalo|Otavalo
|
|
||||||
otoño|autumn
|
|
||||||
otro/a|other
|
|
||||||
paciente|patient
|
|
||||||
Pacífico|Pacific
|
|
||||||
padre|father
|
|
||||||
paella|paella
|
|
||||||
paisaje|word
|
|
||||||
palacio|palace PalmadeMallorca
|
|
||||||
PalmadeMallorca palmera|palmtree
|
|
||||||
pan|bread
|
|
||||||
Panamá|Panama
|
|
||||||
panblanco|whitebread
|
|
||||||
panintegral|wholemeal bread
|
|
||||||
pantalones|shorts
|
|
||||||
pantalón|trousers
|
|
||||||
papelera|bin
|
|
||||||
para|for/inorderto
|
|
||||||
parada de autobús|busstop
|
|
||||||
paraempezar|to start
|
|
||||||
paraguas|umbrella
|
|
||||||
Paraguay|Paraguay
|
|
||||||
paramí|forme
|
|
||||||
pareja f París|partner Paris
|
|
||||||
parking|carpark
|
|
||||||
parque|park
|
|
||||||
parque nacional|nationalpark
|
|
||||||
participar|to participate
|
|
||||||
particular|particular
|
|
||||||
pasaporte|passport
|
|
||||||
pasar|to spend
|
|
||||||
pasar de largo|to goby
|
|
||||||
paseo acaballo pasión|horseriding passion
|
|
||||||
paseo m|walk
|
|
||||||
pasta|pasta
|
|
||||||
país|country countryside
|
|
||||||
plato|dish
|
|
||||||
plato principal|maincourse
|
|
||||||
plato único|singlecourse
|
|
||||||
playa|beach
|
|
||||||
plaza|square
|
|
||||||
pleno/a|full
|
|
||||||
plurilingüe|plurilingual
|
|
||||||
población|population
|
|
||||||
poblado/a|populated
|
|
||||||
poco|little
|
|
||||||
poco/a/os/as|little,few
|
|
||||||
podcast|podcast
|
|
||||||
poder|to can
|
|
||||||
podríamos|wecould
|
|
||||||
poema|poem
|
|
||||||
poesía|poetry
|
|
||||||
policía|police
|
|
||||||
polideportivo|sports centre
|
|
||||||
polifacético/a|well-rounded
|
|
||||||
pollo|chicken
|
|
||||||
poner|to put
|
|
||||||
pop-rock|poprock
|
|
||||||
poplatino|Latinpop
|
|
||||||
popular|popular
|
|
||||||
por eso|forthatreason
|
|
||||||
por favor|please
|
|
||||||
por fin|finally
|
|
||||||
porlamañana/|inthemorning/atnight
|
|
||||||
porque|because
|
|
||||||
portugués/esa|Portuguese
|
|
||||||
portátil|laptop
|
|
||||||
postal|postcard
|
|
||||||
postre|dessert
|
|
||||||
practicar|to practice
|
|
||||||
precio|price
|
|
||||||
precioso/a|beautiful
|
|
||||||
preferencia|preference
|
|
||||||
preferido/a|favourite
|
|
||||||
preferir|to prefer
|
|
||||||
pregunta|question
|
|
||||||
preguntar|to ask
|
|
||||||
premio|prize
|
|
||||||
prenda|itemofclothing
|
|
||||||
preparar|to prepare
|
|
||||||
primavera|spring
|
|
||||||
primero/a|first
|
|
||||||
primo/a|cousin
|
|
||||||
principal|main
|
|
||||||
probar|to try
|
|
||||||
producción|production
|
|
||||||
producto|product
|
|
||||||
productor|producer
|
|
||||||
profesión|profession
|
|
||||||
práctica|practice
|
|
||||||
práctico/a|practical
|
|
||||||
página|page
|
|
||||||
páginaweb|website
|
|
||||||
reparar|to repair
|
|
||||||
repetir|to repeat
|
|
||||||
repoblar|to repopulate
|
|
||||||
República|DominicanRepublic
|
|
||||||
res|beef
|
|
||||||
reserva natural|naturereserve
|
|
||||||
residencia|residence
|
|
||||||
residencial|residential
|
|
||||||
responsable|responsible
|
|
||||||
respuesta|answer
|
|
||||||
restaurante|restaurant
|
|
||||||
restos|remains
|
|
||||||
resultado|result
|
|
||||||
reunirse|to gettogether
|
|
||||||
revisión médica|medicalcheck-up
|
|
||||||
revista|magazine
|
|
||||||
ribera|riverbed
|
|
||||||
rizado/a|curly
|
|
||||||
robar|to steal
|
|
||||||
rojo/a|red
|
|
||||||
romántico/a|romantic
|
|
||||||
ropa|clothes
|
|
||||||
ropa interior|underwear
|
|
||||||
rosa|pink
|
|
||||||
rosario|rosary
|
|
||||||
rubio/a|fair-haired
|
|
||||||
ruidoso/a|noisy
|
|
||||||
ruinas|ruins
|
|
||||||
rural|rural
|
|
||||||
ruso|Russian
|
|
||||||
ruta gastronómica|foodtour
|
|
||||||
rutina|routine
|
|
||||||
río|river
|
|
||||||
Río de Janeiro|RiodeJaneiro
|
|
||||||
saber|to know
|
|
||||||
sabor|taste
|
|
||||||
sal|salt
|
|
||||||
salado/a|savoury
|
|
||||||
salar|salt flat
|
|
||||||
salchichas f, Pl|sausages
|
|
||||||
salir|to goout
|
|
||||||
salir acenar salir con amigos|to gooutfordinner togooutwithfriends
|
|
||||||
salir de noche|to gooutatnight
|
|
||||||
salmón|salmon
|
|
||||||
salsa brava salteado/a|spicysauce sautéed
|
|
||||||
salsa f|sauce
|
|
||||||
salto|waterfall
|
|
||||||
Santiago m camisa|shirt
|
|
||||||
sobre todo|aboveall
|
|
||||||
sobrino/a|nephew/niece
|
|
||||||
sociable|sociable
|
|
||||||
sol|sun
|
|
||||||
solar|sun
|
|
||||||
soledad|solitude
|
|
||||||
solo|alone
|
|
||||||
soltero/a|single
|
|
||||||
sopa|soup
|
|
||||||
sostenible|sustainable
|
|
||||||
soy|Iam
|
|
||||||
soyyo|It'sme
|
|
||||||
su|its
|
|
||||||
Subo las escaleras.|I climb the stairs
|
|
||||||
sucio/a|dirty
|
|
||||||
sueño|sleepy
|
|
||||||
suficiente|enough
|
|
||||||
suizo/a|Swiss
|
|
||||||
supermercado|supermarket
|
|
||||||
sur|south
|
|
||||||
sureste|southeast
|
|
||||||
surf|surfing
|
|
||||||
suroeste|southwest
|
|
||||||
sushi|sushi
|
|
||||||
sábado|Saturday
|
|
||||||
Sáhara|Sahara
|
|
||||||
tableta|tablet
|
|
||||||
taco|taco
|
|
||||||
Tacuarembó|Tacuarembo
|
|
||||||
Tailandia|Thailand
|
|
||||||
talla|size
|
|
||||||
taller|workshop
|
|
||||||
tamal|tamale
|
|
||||||
también|to o
|
|
||||||
tampoco|either
|
|
||||||
tango|tango
|
|
||||||
Tanzania|Tanzania
|
|
||||||
tapa|tapa
|
|
||||||
tapón|earplugs
|
|
||||||
tarde|afternoon
|
|
||||||
tarde-noche|evening
|
|
||||||
Tarifa|Tarifa
|
|
||||||
tarjeta|card
|
|
||||||
tarjeta de crédito|credit card
|
|
||||||
tarta|cake
|
|
||||||
taxi|taxi
|
|
||||||
taza|mug
|
|
||||||
teatro|theatre
|
|
||||||
tela|fabric
|
|
||||||
teleférico|cable car telephone
|
|
||||||
teléfono m templado/a|mild
|
|
||||||
templo|temple
|
|
||||||
temporada f temprano|seasonal early
|
|
||||||
tienes? cuatro|four
|
|
||||||
tropical|tropical
|
|
||||||
turismo|to urism
|
|
||||||
turista|to urist
|
|
||||||
turístico/a|to urist
|
|
||||||
té|tea
|
|
||||||
tú|you
|
|
||||||
U ubicación|location
|
|
||||||
un pódcast|a podcast
|
|
||||||
universitario/a|Universitystudent universe
|
|
||||||
unos pódcast|some podcasts
|
|
||||||
unos/as|some
|
|
||||||
unpoco|alittle
|
|
||||||
Uruguay|Uruguay
|
|
||||||
usado/a|used
|
|
||||||
usar|to use
|
|
||||||
usted|you(formal)
|
|
||||||
vacaciones|holidays
|
|
||||||
vainilla|vanilla
|
|
||||||
vale|OK
|
|
||||||
valer|to beworth
|
|
||||||
valle|valley
|
|
||||||
vallenato|Vallenato (popular
|
|
||||||
vapor|Colombianfolkmusic) steam
|
|
||||||
vaqueros|jeans
|
|
||||||
varios/as|several
|
|
||||||
vaso|cup
|
|
||||||
vegano/a|vegan
|
|
||||||
vegetal|vegetable
|
|
||||||
vendedor/a|salesperson
|
|
||||||
vender|to sell
|
|
||||||
venezolano/a|Venezuelan
|
|
||||||
Venezuela venido/a|Venezuela comefrom
|
|
||||||
venir|to come
|
|
||||||
ventana|window
|
|
||||||
ver ver la televisión|to see/watch towatchtelevision
|
|
||||||
verano|summer
|
|
||||||
verdad|true
|
|
||||||
verde verdura|green vegetable
|
|
||||||
vestido|dress
|
|
||||||
vestirse|to getdressed
|
|
||||||
vez|time
|
|
||||||
viajar|to travel
|
|
||||||
¡un abrazo!|ahug!
|
|
||||||
¿cuánto cuesta?|howmuchdoesitcost?
|
|
||||||
¿cuánto es?|howmuchisit?
|
|
||||||
¿cuánto/a/os/as?|howmuch/howmany?
|
|
||||||
¿cuántos años|howoldareyou?
|
|
||||||
¿cómo andas?|how are you doing?
|
|
||||||
¿cómoeres?|whatareyoulike?
|
|
||||||
¿cómoestás?|howareyou?
|
|
||||||
¿cómolotomas?|howdoyoutakeit?
|
|
||||||
¿cómose pronuncia...?|howdoyoupronounce...?
|
|
||||||
¿cómosedice...?|howdoyousay...?
|
|
||||||
¿cómoseescribe ...?|howdoyouspell...?
|
|
||||||
¿cómotellamas?|whatisyourname?
|
|
||||||
¿de dóndeeres?|where are you from?
|
|
||||||
¿en quétrabajas?|whatdoyoudoforaliving?
|
|
||||||
¿por qué?|why?
|
|
||||||
¿verdad?|right?
|
|
||||||
árabe|Arabic
|
|
||||||
área|area
|
|
||||||
árido/a|arid
|
|
||||||
ópera|opera
|
|
||||||
últimamente|recently
|
|
||||||
último/a|last
|
|
||||||
único/a universidad|only university
|
|
||||||
Binary file not shown.
Binary file not shown.
|
|
@ -1,707 +0,0 @@
|
||||||
aparecer|to appear|U3_6A
|
|
||||||
apasionada|passionate|U5_15C
|
|
||||||
apasionado|passionate|U5_15C
|
|
||||||
apellido|surname|U1_4A
|
|
||||||
aprender|to learn|U2_2C
|
|
||||||
aproximadamente|approximately|U3_2A
|
|
||||||
apuntar|to note down|U9_5A
|
|
||||||
aquí|here|U3_2A
|
|
||||||
aquí tiene|here you go|U4_GyC
|
|
||||||
archivo|file|U9_7A
|
|
||||||
arena|sand|U3_4A
|
|
||||||
arepa|arepa|U7_9A
|
|
||||||
argentina|Argentinian|U1_3A
|
|
||||||
argentino|Argentinian|U1_3A
|
|
||||||
arma|weapon|U3_2A
|
|
||||||
arquitecta|architect|U1_6
|
|
||||||
arquitecto|architect|U1_6
|
|
||||||
arquitectura|architecture|U1_3A
|
|
||||||
arroz|rice|U7_LEX
|
|
||||||
arte|art|U1_1A
|
|
||||||
artesanal|artisanal|U4_1A
|
|
||||||
artesanía f artista|crafts artist|U4_1A
|
|
||||||
asado/a|roasted|U7_7A
|
|
||||||
Asia|Asia|U3_LEX
|
|
||||||
aspecto|aspect|U3_11B
|
|
||||||
aspecto físico|physical feature|U5_14A
|
|
||||||
Asunción|Asuncion|U3_13A
|
|
||||||
atención|takenote|U4_14A
|
|
||||||
atender|to lookafter|U9_3A
|
|
||||||
atento/a|attentive|U9_5A
|
|
||||||
atlántico/a|Atlantic|U3_6A
|
|
||||||
atractivo/a|attractive|U8_7A
|
|
||||||
atraído/a|attracted|U9_3A
|
|
||||||
atún|tuna|U7_2A
|
|
||||||
autobús|bus|U3_4A
|
|
||||||
automático/a|automatic|U8_2A
|
|
||||||
autónomo/a|self-employed|U3_2A
|
|
||||||
avenida|avenue|U8_3A
|
|
||||||
aventurero/a|adventurous|U5_3C
|
|
||||||
avión|plane|U6_GyC
|
|
||||||
azul claro|light blue|U4_13A
|
|
||||||
azúcar m azul|sugar blue|U7_6A U4_2A
|
|
||||||
bailar|to dance|U2_2C
|
|
||||||
bailarín/ina|dancer|U5_LEX
|
|
||||||
baile|dance|U6_10A
|
|
||||||
bajito/a|short|U5_9A
|
|
||||||
bajo|groundfloor|U9_1A
|
|
||||||
balalaica|balalaika|U1_7A
|
|
||||||
banco|bank|U1_LEX
|
|
||||||
bandera|flag|U2_10B
|
|
||||||
bañador|swimsuit|U4_3A
|
|
||||||
bañarse|to goforaswim|U9_GyC
|
|
||||||
cafetal|coffee plantation|U3_2A
|
|
||||||
café|coffee|U3_2A
|
|
||||||
café con leche|coffeewithmilk|U7_6A
|
|
||||||
café solo|espresso|U7_4C
|
|
||||||
cajero automático|cashmachine|U8_2A
|
|
||||||
calabacín|courgette|U7_LEX
|
|
||||||
calabaza|pumpkin|U7_LEX
|
|
||||||
calamar|squid|U7_2A
|
|
||||||
calcetín|sock|U4_13B
|
|
||||||
calidad|quality|U3_2A
|
|
||||||
caliente|hot|U6_11B
|
|
||||||
calle|street|U1_1A
|
|
||||||
calle peatonal|pedestrian street|U8_3A
|
|
||||||
calmado/a|calm|U5_15C
|
|
||||||
calor|hot|U3_4A
|
|
||||||
calvo/a|bald|U5_LEX
|
|
||||||
camarera|waitress|U1_4A
|
|
||||||
camarero|waiter|U1_4A
|
|
||||||
camello|camel|U3_9
|
|
||||||
camino|road/journey|U3_1
|
|
||||||
Caminode|Way of Saint James|U1
|
|
||||||
camiseta|t-shirt|U4_2A
|
|
||||||
campamento|camping|U5_8A
|
|
||||||
campo|countryside|U3_2A
|
|
||||||
canadiense|Canadian|U1_3A
|
|
||||||
Canadá|Canada|U1_3B
|
|
||||||
canal de televisión|television channel|U1_3C
|
|
||||||
canción|song|U2_11B
|
|
||||||
canela|cinnamon|U7_8A
|
|
||||||
cansado/a|tired|U6_2A
|
|
||||||
cantante|singer|U5_4A
|
|
||||||
cantar|to sing|U5_5A
|
|
||||||
cantidad|amount|U3_6C
|
|
||||||
canto|song|U6_LEX
|
|
||||||
capital|capital|U3_1
|
|
||||||
Caracas|Caracas|U3_GyC
|
|
||||||
característica|characteristics|U7_12A
|
|
||||||
cargador de móvil|phonecharger|U4_3A
|
|
||||||
Caribe|Caribbean|U3_8C
|
|
||||||
cariñoso/a|caring|U9_12C
|
|
||||||
carnaval|carnival|U3_11B
|
|
||||||
carne|meat|U3_5C
|
|
||||||
carné de conducir|driving license|U4_4A
|
|
||||||
carné deidentidad|IDcard|U4_3A
|
|
||||||
caro/a|expensive|U4_6A
|
|
||||||
carta|menu|U7_GyC
|
|
||||||
Cartagena de Indias|CartagenadeIndias|U2_10B
|
|
||||||
carácter|personality|U5_14A
|
|
||||||
casa f casa rural|house houseinthecountry|U1_8C
|
|
||||||
casado/a casarse|married togetmarried|U5_7C U9_GyC
|
|
||||||
casco antiguo|oldtown|U3_2A
|
|
||||||
caña|smalldraughtbeer|U2_13A
|
|
||||||
clave|key|U6_12A
|
|
||||||
cliente/a|customer|U4_9A
|
|
||||||
clima|climate|U3_3B
|
|
||||||
clásico/a|classic|U4_6C
|
|
||||||
cobre|copper|U3_3B
|
|
||||||
coche|car|U2_4A
|
|
||||||
cocido|stew|U7_10A
|
|
||||||
cocido madrileño|Madridstew|U7_12A
|
|
||||||
cocido/a|baked|U7_7A
|
|
||||||
cocidomontañés|Cantabrianbeanstew|U7_10A
|
|
||||||
cocinar|to cook|U2_2A
|
|
||||||
cocinar platos hispanos|to cook Hispanic dishes|U2_9-extra
|
|
||||||
cocinero/a|chef|U1_3A
|
|
||||||
colocar|to place|U4_14A
|
|
||||||
Colombia|Colombia|U2_10B
|
|
||||||
colombiano/a|Colombian|U1_5A
|
|
||||||
colonia|colony|U3_11B
|
|
||||||
colonial|colonial|U3_2A
|
|
||||||
ColoniaTovar|ColoniaTovar|U3_11B
|
|
||||||
color|colour|U2_10B
|
|
||||||
comer|to eat|U3_5C
|
|
||||||
comercial|sales representative|U1_LEX
|
|
||||||
comerciante|shopkeeper|U9_11A
|
|
||||||
comilón/ona|foodlover|U6_13A
|
|
||||||
como|like|U3_2A
|
|
||||||
comodidad|comfort|U1
|
|
||||||
compartir|to share|U2_3A U6_12A
|
|
||||||
compañero/a|flatmate|U1
|
|
||||||
compañero/a de trabajo|workcolleague|U1
|
|
||||||
competición|competition|U9_10B
|
|
||||||
compi|flatmate (colloq.)|U9_7A
|
|
||||||
completamente|completely|U3_11B
|
|
||||||
composición compositor/a|composition|U9_6B
|
|
||||||
comprar|composer|U5_LEX U4_9A
|
|
||||||
compras|shopping|U2_2A
|
|
||||||
comprender|to understand engagement|U2_6A
|
|
||||||
compromiso m común|common|U6_2A U2_3A
|
|
||||||
comunicado/a comunicarse|communicated|U8_1A
|
|
||||||
comunicativo/a|talkative|U9_12C
|
|
||||||
comunidad|autonomouscommunity|U1
|
|
||||||
Cuba|Cuba|U0_4A
|
|
||||||
cubano/a|Cuban|U1_6
|
|
||||||
cuchara|spoon|U7_LEX
|
|
||||||
cucharilla|teaspoon|U7_LEX
|
|
||||||
cuchillo|knife|U7_LEX
|
|
||||||
cuenta|bill|U7_4A
|
|
||||||
cuidar|to takecareof|U6_3A
|
|
||||||
cultural|cultural|U8_LEX
|
|
||||||
cumpleaños|birthday|U4_4C
|
|
||||||
curso|course|U2_2A
|
|
||||||
cuy|Guineapig|U3_GyC
|
|
||||||
Cádiz|Cadiz|U3_11B
|
|
||||||
cálido/a|warm|U3_LEX
|
|
||||||
cómo|how|U3_6A
|
|
||||||
cómodo/a|comfortable|U9_3A U4_2A
|
|
||||||
dar clases|to giveclasses|U9_11C
|
|
||||||
darse cuenta|to realise|U9_5A
|
|
||||||
de|of|U1_1A
|
|
||||||
de acuerdo|all right|U7_6B
|
|
||||||
de cuadros|check|U4_5A
|
|
||||||
de estilo colonial|Colonial style|U8_11D
|
|
||||||
de fuera|fromoutside/foreign|U9_11A
|
|
||||||
de primero|for firstcourse|U7_4A
|
|
||||||
de rayas|stripy|U4_2A
|
|
||||||
de segundo|forsecondcourse|U7_4A
|
|
||||||
de todas partes|from everywhere|U3_2A
|
|
||||||
de valor|valuable|U9_8A
|
|
||||||
decidir|to decide|U4_14A
|
|
||||||
decir|to say|U2_3A
|
|
||||||
decisión|decision|U9_3A
|
|
||||||
declarado/a|declared|U3_14A
|
|
||||||
dedicar tiempo|to spendtime(onsomething)|U6_2A
|
|
||||||
defecto|weakness/defect|U9_4A
|
|
||||||
definir|to define|U9_5A
|
|
||||||
dejar|to leave|U9_3A
|
|
||||||
dejarse algo|to forgetsomething|U9_5A
|
|
||||||
del tiempo|atroomtemperature|U7_6A
|
|
||||||
delgado/a|thin|U5_LEX
|
|
||||||
demasiado/a|to omuch|U8_3A
|
|
||||||
deporte m deportista|sport athlete|U3_11B
|
|
||||||
derecha|right|U8_5A
|
|
||||||
desayunar|to havebreakfast|U6_2A
|
|
||||||
descendiente desconectar|descendent todisconnect|U3_11B U6_12A
|
|
||||||
desde|since/from|U3_2A
|
|
||||||
desde hace|since|U9_3A
|
|
||||||
desear|to wantsomething|U4_9A
|
|
||||||
desfile|parade|U6_8A
|
|
||||||
el periódico|the newspaper|U1_LEX
|
|
||||||
elegante|elegant|U4_2A
|
|
||||||
elegido/a|chosen|U5_14A
|
|
||||||
elegir|to choose|U9_2B
|
|
||||||
emblemático/a|iconic|U8_7A
|
|
||||||
embutido|curedmeat|U7_2A
|
|
||||||
empanada|empanada|U3_3B
|
|
||||||
empezar|to start|U6_5B
|
|
||||||
empleado/a|employee|U4_13A
|
|
||||||
emprendedor/a|enterprising|U9_4A
|
|
||||||
empresa|company|U1_LEX
|
|
||||||
empresade|telecommunicationscompany|U1_LEX
|
|
||||||
empresade|transportcompany|U1_LEX
|
|
||||||
en|in/on|U0_6
|
|
||||||
enamorarsea|to fall in love at first sight|U9_8A
|
|
||||||
encambio|ontheotherhand|U8_9C
|
|
||||||
encantar|to love|U5_3A
|
|
||||||
encanto|charm|U8_LEX
|
|
||||||
enchilada|enchilada|U3_6A
|
|
||||||
energía|energy|U6_2A
|
|
||||||
enfermero/a|nurse|U1_LEX
|
|
||||||
enfermería|nursing|U9_12B
|
|
||||||
enfermo/a|ill|U9_11A
|
|
||||||
enforma|inshape|U6_2A
|
|
||||||
enpunto|o'clock|U6_GyC
|
|
||||||
ensalada|salad|U7_1A
|
|
||||||
ensalada mixta|mixedsalad|U7_3A
|
|
||||||
enseguida|comingrightup|U1
|
|
||||||
entodo|entirely|U3_5A
|
|
||||||
entrante|starter|U7_12C
|
|
||||||
entresemana|duringtheweek|U6_2A
|
|
||||||
enventa|for sale|U9_3A
|
|
||||||
equipaje|luggage|U9_7C
|
|
||||||
equipo|team|U3_5A
|
|
||||||
equivocarse|to bewrongabout|U9_5A
|
|
||||||
escolar|school|U4_13A
|
|
||||||
escribir|to write|U5_3A
|
|
||||||
escribir con lápiz|to write with a pencil|M1-phrase
|
|
||||||
escuchar|to listento|U2_2A
|
|
||||||
Escucho un pódcast para practicar español.|I listen to a podcast to practice Spanish|U2_9A-Extra
|
|
||||||
escuela|school|U1_1A
|
|
||||||
escultura|sculpture|U2_10B
|
|
||||||
ese/a|this|U0_4C
|
|
||||||
España|Spain|U0_4A
|
|
||||||
especial|special|U4_15B
|
|
||||||
especializado/a|specialised|U7_6A
|
|
||||||
espectacular|spectacular|U9_3A
|
|
||||||
esperar|to wait|U5_3A
|
|
||||||
espinaca|spinach|U7_3A
|
|
||||||
esquiar|to ski|U9_6C
|
|
||||||
esquina|corner|U8_5A
|
|
||||||
esquí|skiing|U1_1A
|
|
||||||
establecimiento|establishment|U7_GyC
|
|
||||||
estación de metro|metrostation|U8_2A
|
|
||||||
Estoy subiendo las escaleras|I am going up the stairs|M1-phrase
|
|
||||||
f impaciente|church|U1
|
|
||||||
final|end|U3_2A
|
|
||||||
flamenco|flamenco|U1_7A
|
|
||||||
flan|eggcustard|U7_3A
|
|
||||||
flor|flower|U6_8A
|
|
||||||
forma|shape|U3_11B
|
|
||||||
foto|photo|U2_LEX
|
|
||||||
fotografía|photography|U5_3A
|
|
||||||
fotógrafo/a|photographer|U9_LEX
|
|
||||||
francés/esa|French|U1_3A
|
|
||||||
frecuencia|frequency|U6_2A
|
|
||||||
fresa|strawberry|U7_5C
|
|
||||||
fresco/a|fresh|U7_2A
|
|
||||||
frijoles|beans|U7_LEX
|
|
||||||
frito/a|fried|U7_3A
|
|
||||||
fruta|fruit|U7_3A
|
|
||||||
frutadetemporada|seasonal fruit|U7_3A
|
|
||||||
frutos secos|nuts|U7_5C
|
|
||||||
frío/a|cold|U3_3B
|
|
||||||
fuera|outside|U6_9D
|
|
||||||
fumar|to smoke|U6_3A
|
|
||||||
fundado/a|founded|U3_2A
|
|
||||||
fundamental|fundamental|U7_7A
|
|
||||||
futuro|future|U2_12A
|
|
||||||
físico/a|physical|U5_14A
|
|
||||||
fútbol|football|U2_LEX
|
|
||||||
gafas de sol|sunglasses|U4_3A
|
|
||||||
galería|shoppingcentre|U4_1A
|
|
||||||
Galicia|Galicia|U3_2A
|
|
||||||
galleta|biscuit|U6_11B
|
|
||||||
gamba|prawn|U7_1A
|
|
||||||
ganar|to win|U3_6A
|
|
||||||
ganarunpremio|to winaprize|U9_8A
|
|
||||||
garbanzos|chickpeas|U7_LEX
|
|
||||||
gas|petrol|U7_4A
|
|
||||||
gasolinera|petrol station|U8_LEX
|
|
||||||
gasto|expense|U9_2B
|
|
||||||
gastronómico/a|culinary|U4_12A
|
|
||||||
gazpacho m|gazpacho|U7_4A
|
|
||||||
geldebaño|showergel|U4_3A
|
|
||||||
generoso/a|generous|U9_4A
|
|
||||||
gente|people|U2_13B
|
|
||||||
geográfico/a|geographical|U8_9A
|
|
||||||
geólogo/a|geology|U9_2B
|
|
||||||
gimnasio|gym|U1_LEX
|
|
||||||
ginecólogo/a|gynaecologist|U1_6
|
|
||||||
girar|to turn|U8_6C
|
|
||||||
girasol|sunflower|U7_LEX
|
|
||||||
golf|golf|U5_GyC
|
|
||||||
gordo/a|fat|U5_LEX
|
|
||||||
gorra|cap|U4_5A
|
|
||||||
gorro m Gotemburgo|hat Gothenburg|U4_LEX U3_8B
|
|
||||||
gracias|thankyou|U0_6
|
|
||||||
hispanohablantes|Spanish speakers|U2_9A-Extra
|
|
||||||
horario|schedule|U6_2A
|
|
||||||
horno|oven|U7_3A
|
|
||||||
hortaliza|vegetable|U7_2A
|
|
||||||
hospital|hospital|U1_LEX
|
|
||||||
hospitalidad|hospitality|U8_9A
|
|
||||||
hostelero/a|hotelier|U9_11A
|
|
||||||
hotel|hotel|U1_1A
|
|
||||||
hoy|to day|U3_4A
|
|
||||||
huerto|vegetablegarden|U9_3A
|
|
||||||
huevo|egg|U7_2A
|
|
||||||
humanidad|humanity|U3_2A
|
|
||||||
humor|mood|U6_2A
|
|
||||||
humus|hummus|U7_2C
|
|
||||||
húmedo/a|humid|U3_4A
|
|
||||||
ibérico/a identidad|impatient independence|U9_4A U3_4A
|
|
||||||
idea|Iberian|U3_2A
|
|
||||||
ideal|idea ideal|U2_5A U1_1A
|
|
||||||
idioma iglesia|important late incredible independent Indian infographic information|U8_3A
|
|
||||||
infusión|tea|U3_GyC
|
|
||||||
ingeniero/a|engineer|U1_6
|
|
||||||
Inglaterra|England|U3_8C
|
|
||||||
insociable|unsociable|U9_LEX
|
|
||||||
instrumento|musicalinstrument|U1
|
|
||||||
intercambio|exchange|U2_LEX
|
|
||||||
interesante|interesting|U2_5A
|
|
||||||
interior|interior|U4_3A
|
|
||||||
intermediario/a|intermediary|U9_11A
|
|
||||||
internacional|international|U1
|
|
||||||
internet|internet|U2_11A
|
|
||||||
invierno|winter|U3_8B
|
|
||||||
invitado/a|guest|U5_14B
|
|
||||||
ir de viaje|to gotravelling|U4_4A
|
|
||||||
irdecompras|to goshopping|U2_2A
|
|
||||||
levantarse|to getup|U6_1A
|
|
||||||
libro|book|U0_5A
|
|
||||||
lila|purple|U4_LEX
|
|
||||||
Lima|Lima|U8_7E
|
|
||||||
limpieza|cleanliness|U8_9A
|
|
||||||
limpio/a|clean|U8_LEX
|
|
||||||
limón|lemon|U7_6A
|
|
||||||
lindo/a|cute|U3_6A
|
|
||||||
lingüista|linguist|U1_6
|
|
||||||
liso/a|straight|U5_LEX
|
|
||||||
lista|list|U9_5A
|
|
||||||
literatura|literature|U2_1A
|
|
||||||
llamado/a|called|U3_2A
|
|
||||||
llamarse|to becalled|U3_2A
|
|
||||||
llave|key|U9_2B
|
|
||||||
llegar|to arrive|U3_2A
|
|
||||||
llevar|to wear|U4_2A
|
|
||||||
llevar|to have|U7_2A
|
|
||||||
llevarse|to take|U4_9A
|
|
||||||
llover|to rain|U3_4A
|
|
||||||
lluvioso/a|rainy|U3_6A
|
|
||||||
lo siento Londres|I'm sorry London|U0_6 U5_2B
|
|
||||||
loquemenos|theleast|U8_4D
|
|
||||||
loquemás|themost|U8_4D
|
|
||||||
los museos de la ciudad|the city museums|U2_9-extra
|
|
||||||
los pódcast|the podcasts|U2_9A-Extra
|
|
||||||
luego|later|U3_4A
|
|
||||||
lugar|place|U1_4B
|
|
||||||
lunes|Monday|U3_4A
|
|
||||||
luz|light|U5_2A
|
|
||||||
m|to urist interest|U3_2A
|
|
||||||
m tejido|material/cloth|U4_2A
|
|
||||||
macarrones|macaroni|U7_GyC
|
|
||||||
madre|mother|U5_2A
|
|
||||||
Madrid|Madrid|U2_6A
|
|
||||||
madrileño/a|personfromMadrid|U7_12A
|
|
||||||
madrugar|to getupearly|U6_2A
|
|
||||||
maestro/a|teacher|U9_4C
|
|
||||||
malcomunicado|poorlyconnected|U8_1A
|
|
||||||
maleta|suitcase Majorca|U4_6C
|
|
||||||
manera|way|U7_7A
|
|
||||||
mangacorta|short sleeve|U4_2A
|
|
||||||
mangalarga f maniático/a|longsleeve|U4_2A
|
|
||||||
mano|hand|U4_1B
|
|
||||||
manzana|apple|U7_LEX
|
|
||||||
mapa m|map worldmap|U3_1
|
|
||||||
mapamundi mar m,f|sea|U3_1 U5_3A
|
|
||||||
marido|husband|U4_2A U5_7A
|
|
||||||
marinero/a|sailor|U1
|
|
||||||
maíz|corn|U2_10B
|
|
||||||
mañana|morning|U3_4A
|
|
||||||
miles|thousands|U3_2A
|
|
||||||
millón|million|U3_2A
|
|
||||||
minuto|minute|U6_2A
|
|
||||||
mire|look|U4_9A
|
|
||||||
mismo/a|same|U3_2A
|
|
||||||
mixto/a|mixed|U7_3A
|
|
||||||
mochila|backpack|U0_5A
|
|
||||||
moda|fashion|U1_3A
|
|
||||||
modelo|model|U1_GyC
|
|
||||||
moderno/a|modern|U4_6C
|
|
||||||
modo|way|U3_6C
|
|
||||||
molino de viento|windmill|U3_9
|
|
||||||
momento|moment|U6_1A
|
|
||||||
moneda|currency|U3_2A
|
|
||||||
montar|to setup|U9_3A
|
|
||||||
montaña|mountain|U3_1
|
|
||||||
montañés/esa|mountain|U7_10A
|
|
||||||
Montevideo|Montevideo|U3_13A
|
|
||||||
monumento|landmark|U3_2A
|
|
||||||
moreno/a|dark-haired|U5_9A
|
|
||||||
mostaza|mustard|U7_2A
|
|
||||||
mucho muchos/as|alot many/alotof|U2_11B U2_7B
|
|
||||||
mueble|furniture|U8_8A
|
|
||||||
mujer|woman|U4_2A
|
|
||||||
mundo|world|U2_3A
|
|
||||||
mundo hispano|Hispanic world|U3_7A
|
|
||||||
museo|museum|U1_1A
|
|
||||||
musical|musical|U3_GyC
|
|
||||||
muy|very|U2_5A
|
|
||||||
mágico/a|magical|U2_10B
|
|
||||||
Málaga|Malaga|U1_1A
|
|
||||||
móvil|mobile|U1_4B
|
|
||||||
música|music|U2_1A
|
|
||||||
música|indiemusic|U1
|
|
||||||
música clásica|classicalmusic|U5_4A
|
|
||||||
música electrónica|electronicmusic|U5_4A
|
|
||||||
música envivo|livemusic|U5_6A
|
|
||||||
música soul|soulmusic|U5_4A
|
|
||||||
músicapop|popmusic|U4_10A
|
|
||||||
músico/a|musician|U5_2A
|
|
||||||
N|N|N
|
|
||||||
nacer|to beborn|U3_GyC
|
|
||||||
nachos|nachos|U7_1A
|
|
||||||
nacimiento|birth|U5_2A
|
|
||||||
nacional nacionalidad|national nationality|U2_10B U1_3D
|
|
||||||
nadar|to swim|U1
|
|
||||||
naranja|orange|U7_LEX
|
|
||||||
naranja nativo/a|orange native|U4_LEX U2_LEX
|
|
||||||
natural|natural|U2_3A
|
|
||||||
naturaleza f Navarra|nature Navarre|U2_1A U9_11A
|
|
||||||
Navidad|Christmas|U6_11B
|
|
||||||
O|O|O
|
|
||||||
olvidar|to forget|U9_5A
|
|
||||||
opinar|to haveanopinionon|U9_2B
|
|
||||||
orden|order|U6_11A
|
|
||||||
ordenador|computer|U0_5A
|
|
||||||
ordenadorportátil|laptop|U4_3B
|
|
||||||
organizado/a|organised|U6_9A
|
|
||||||
organizar|to organise|U9_3A
|
|
||||||
origen|origin|U1_4B
|
|
||||||
original|original|U4_6C
|
|
||||||
oso|bear|U3_9
|
|
||||||
Otavalo|Otavalo|U4_1A
|
|
||||||
otoño|autumn|U3_8B
|
|
||||||
otro/a|other|U0_2A
|
|
||||||
paciente|patient|U9_4A
|
|
||||||
Pacífico|Pacific|U3_4A
|
|
||||||
padre|father|U5_1A
|
|
||||||
paella|paella|U2_13A
|
|
||||||
paisaje|word|U9_3A
|
|
||||||
palacio|palace PalmadeMallorca|U3_2A
|
|
||||||
PalmadeMallorca palmera|palmtree|U4_1A U3_9
|
|
||||||
pan|bread|U7_1A
|
|
||||||
Panamá|Panama|U7_9A
|
|
||||||
panblanco|whitebread|U7_LEX
|
|
||||||
panintegral|wholemeal bread|U7_LEX
|
|
||||||
pantalones|shorts|U4_3A
|
|
||||||
pantalón|trousers|U4_3A
|
|
||||||
papelera|bin|U0_5A
|
|
||||||
para|for/inorderto|U2_9A
|
|
||||||
parada de autobús|busstop|U8_2A
|
|
||||||
paraempezar|to start|U7_3A
|
|
||||||
paraguas|umbrella|U9_5A
|
|
||||||
Paraguay|Paraguay|U3_GyC
|
|
||||||
paramí|forme|U4_2B
|
|
||||||
pareja f París|partner Paris|U5_LEX U1_GyC
|
|
||||||
parking|carpark|U8_2A
|
|
||||||
parque|park|U2_10B
|
|
||||||
parque nacional|nationalpark|U2_10B
|
|
||||||
participar|to participate|U6_8A
|
|
||||||
particular|particular|U6_8A
|
|
||||||
pasaporte|passport|U4_4A
|
|
||||||
pasar|to spend|U2_8A
|
|
||||||
pasar de largo|to goby|U9_5A
|
|
||||||
paseo acaballo pasión|horseriding passion|U4_12A U5_3A
|
|
||||||
paseo m|walk|U4_12A
|
|
||||||
pasta|pasta|U7_1C
|
|
||||||
país|country countryside|U2_3A
|
|
||||||
plato|dish|U2_11A
|
|
||||||
plato principal|maincourse|U7_3A
|
|
||||||
plato único|singlecourse|U7_12A
|
|
||||||
playa|beach|U0_6
|
|
||||||
plaza|square|U3_2A
|
|
||||||
pleno/a|full|U6_2A
|
|
||||||
plurilingüe|plurilingual|U2_3A
|
|
||||||
población|population|U3_2A
|
|
||||||
poblado/a|populated|U3_2A
|
|
||||||
poco|little|U3_8C
|
|
||||||
poco/a/os/as|little,few|U3_2A
|
|
||||||
podcast|podcast|U2_LEX
|
|
||||||
poder|to can|U0_6
|
|
||||||
podríamos|wecould|U0_6
|
|
||||||
poema|poem|U5_10A
|
|
||||||
poesía|poetry|U9_2B
|
|
||||||
policía|police|U1_GyC
|
|
||||||
polideportivo|sports centre|U8_2A
|
|
||||||
polifacético/a|well-rounded|U9_12C
|
|
||||||
pollo|chicken|U7_2A
|
|
||||||
poner|to put|U7_4A
|
|
||||||
pop-rock|poprock|U5_4A
|
|
||||||
poplatino|Latinpop|U5_4A
|
|
||||||
popular|popular|U3_6A
|
|
||||||
por eso|forthatreason|U3_11B
|
|
||||||
por favor|please|U0_6
|
|
||||||
por fin|finally|U3_1
|
|
||||||
porlamañana/|inthemorning/atnight|U1
|
|
||||||
porque|because|U2_9C
|
|
||||||
portugués/esa|Portuguese|U1_GyC
|
|
||||||
portátil|laptop|U4_3B
|
|
||||||
postal|postcard|U2_11A
|
|
||||||
postre|dessert|U7_3A
|
|
||||||
practicar|to practice|U2_6A
|
|
||||||
precio|price|U4_9A
|
|
||||||
precioso/a|beautiful|U3_4A
|
|
||||||
preferencia|preference|U6_2A
|
|
||||||
preferido/a|favourite|U5_2A
|
|
||||||
preferir|to prefer|U4_GyC
|
|
||||||
pregunta|question|U3_6A
|
|
||||||
preguntar|to ask|U1_4B
|
|
||||||
premio|prize|U6_13A
|
|
||||||
prenda|itemofclothing|U4_15B
|
|
||||||
preparar|to prepare|U6_8A
|
|
||||||
primavera|spring|U3_8B
|
|
||||||
primero/a|first|U3_2A
|
|
||||||
primo/a|cousin|U5_1A
|
|
||||||
principal|main|U7_3A
|
|
||||||
probar|to try|U7_12C
|
|
||||||
producción|production|U3_2A
|
|
||||||
producto|product|U3_3B
|
|
||||||
productor|producer|U3_7A
|
|
||||||
profesión|profession|U1
|
|
||||||
práctica|practice|U6_12A
|
|
||||||
práctico/a|practical|U4_6C
|
|
||||||
página|page|U0_6
|
|
||||||
páginaweb|website|U2_7B
|
|
||||||
reparar|to repair|U9_7A
|
|
||||||
repetir|to repeat|U0_6
|
|
||||||
repoblar|to repopulate|U9_3A
|
|
||||||
República|DominicanRepublic|U1
|
|
||||||
res|beef|U7_LEX
|
|
||||||
reserva natural|naturereserve|U3_11B
|
|
||||||
residencia|residence|U2_12A
|
|
||||||
residencial|residential|U8_11D
|
|
||||||
responsable|responsible|U9_4A
|
|
||||||
respuesta|answer|U6_2A
|
|
||||||
restaurante|restaurant|U1_1A
|
|
||||||
restos|remains|U3_2A
|
|
||||||
resultado|result|U6_2A
|
|
||||||
reunirse|to gettogether|U6_8A
|
|
||||||
revisión médica|medicalcheck-up|U9_11A
|
|
||||||
revista|magazine|U2_4A
|
|
||||||
ribera|riverbed|U8_3A
|
|
||||||
rizado/a|curly|U5_9A
|
|
||||||
robar|to steal|U5_2A
|
|
||||||
rojo/a|red|U1
|
|
||||||
romántico/a|romantic|U4_6A
|
|
||||||
ropa|clothes|U5_15C U1_10B
|
|
||||||
ropa interior|underwear|U4_3A
|
|
||||||
rosa|pink|U4_2A
|
|
||||||
rosario|rosary|U3_11B
|
|
||||||
rubio/a|fair-haired|U5_9A
|
|
||||||
ruidoso/a|noisy|U8_1A
|
|
||||||
ruinas|ruins|U3_4A
|
|
||||||
rural|rural|U9_3A
|
|
||||||
ruso|Russian|U2_LEX
|
|
||||||
ruta gastronómica|foodtour|U4_12A
|
|
||||||
rutina|routine|U6_12A
|
|
||||||
río|river|U3_LEX
|
|
||||||
Río de Janeiro|RiodeJaneiro|U5_14B
|
|
||||||
saber|to know|U5_2A
|
|
||||||
sabor|taste|U7_8A
|
|
||||||
sal|salt|U3_11B
|
|
||||||
salado/a|savoury|U7_9C
|
|
||||||
salar|salt flat|U3_11B
|
|
||||||
salchichas f, Pl|sausages|U7_LEX
|
|
||||||
salir|to goout|U2_2A
|
|
||||||
salir acenar salir con amigos|to gooutfordinner togooutwithfriends|U2_2C U2_2C
|
|
||||||
salir de noche|to gooutatnight|U2_2C
|
|
||||||
salmón|salmon|U7_3A
|
|
||||||
salsa brava salteado/a|spicysauce sautéed|U7_12A U7_7A
|
|
||||||
salsa f|sauce|U7_LEX
|
|
||||||
salto|waterfall|U3_14C
|
|
||||||
Santiago m camisa|shirt|U3_2A U4_2A
|
|
||||||
sobre todo|aboveall|U7_6B
|
|
||||||
sobrino/a|nephew/niece|U1
|
|
||||||
sociable|sociable|U5_1A U5_3C
|
|
||||||
sol|sun|U1_1A
|
|
||||||
solar|sun|U4_3A
|
|
||||||
soledad|solitude|U2_1A
|
|
||||||
solo|alone|U5_8A
|
|
||||||
soltero/a|single|U5_7C
|
|
||||||
sopa|soup|U7_3A
|
|
||||||
sostenible|sustainable|U4_15B
|
|
||||||
soy|Iam|U1_3A
|
|
||||||
soyyo|It'sme|U1_2A
|
|
||||||
su|its|U3_1
|
|
||||||
Subo las escaleras.|I climb the stairs|M1-phrase
|
|
||||||
sucio/a|dirty|U8_4A
|
|
||||||
sueño|sleepy|U6_2A
|
|
||||||
suficiente|enough|U7_7A
|
|
||||||
suizo/a|Swiss|U1_6
|
|
||||||
supermercado|supermarket|U1_LEX
|
|
||||||
sur|south|U3_3B
|
|
||||||
sureste|southeast|U3_2A
|
|
||||||
surf|surfing|U4_12A
|
|
||||||
suroeste|southwest|U3_LEX
|
|
||||||
sushi|sushi|U1_7A
|
|
||||||
sábado|Saturday|U2_2C
|
|
||||||
Sáhara|Sahara|U3_8C
|
|
||||||
tableta|tablet|U0_5A
|
|
||||||
taco|taco|U7_9A
|
|
||||||
Tacuarembó|Tacuarembo|U3_13A
|
|
||||||
Tailandia|Thailand|U3_12C
|
|
||||||
talla|size|U4_2A
|
|
||||||
taller|workshop|U1_3C
|
|
||||||
tamal|tamale|U3_4A
|
|
||||||
también|to o|U1_5A
|
|
||||||
tampoco|either|U5_5A
|
|
||||||
tango|tango|U1_7
|
|
||||||
Tanzania|Tanzania|U3_10B
|
|
||||||
tapa|tapa|U2_13A
|
|
||||||
tapón|earplugs|U4_3B
|
|
||||||
tarde|afternoon|U0_6
|
|
||||||
tarde-noche|evening|U6_2A
|
|
||||||
Tarifa|Tarifa|U3_8A
|
|
||||||
tarjeta|card|U4_3A
|
|
||||||
tarjeta de crédito|credit card|U4_3A
|
|
||||||
tarta|cake|U7_5C
|
|
||||||
taxi|taxi|U1_1A
|
|
||||||
taza|mug|U7_LEX
|
|
||||||
teatro|theatre|U2_2A
|
|
||||||
tela|fabric|U9_10B
|
|
||||||
teleférico|cable car telephone|U3_14C U1_4A
|
|
||||||
teléfono m templado/a|mild|U1
|
|
||||||
templo|temple|U3_4A
|
|
||||||
temporada f temprano|seasonal early|U7_3A
|
|
||||||
tienes? cuatro|four|U1_4B U6_11B
|
|
||||||
tropical|tropical|U3_5A
|
|
||||||
turismo|to urism|U2_3A
|
|
||||||
turista|to urist|U2_6A
|
|
||||||
turístico/a|to urist|U3_2A
|
|
||||||
té|tea|U5_GyC
|
|
||||||
tú|you|U4_14A
|
|
||||||
U ubicación|location|U3_2A
|
|
||||||
un pódcast|a podcast|U2_9A-Extra
|
|
||||||
universitario/a|Universitystudent universe|U3_2A
|
|
||||||
unos pódcast|some podcasts|U2_9A-Extra
|
|
||||||
unos/as|some|U3_4A
|
|
||||||
unpoco|alittle|U1
|
|
||||||
Uruguay|Uruguay|U0_4A
|
|
||||||
usado/a|used|U4_2A
|
|
||||||
usar|to use|U4_GyC
|
|
||||||
usted|you(formal)|U1
|
|
||||||
vacaciones|holidays|U1_10B
|
|
||||||
vainilla|vanilla|U7_5A
|
|
||||||
vale|OK|U0_6
|
|
||||||
valer|to beworth|U9_3A
|
|
||||||
valle|valley|U3_2A
|
|
||||||
vallenato|Vallenato (popular|U1
|
|
||||||
vapor|Colombianfolkmusic) steam|U2_10B U7_3A
|
|
||||||
vaqueros|jeans|U4_2A
|
|
||||||
varios/as|several|U1
|
|
||||||
vaso|cup|U7_LEX
|
|
||||||
vegano/a|vegan|U7_3A
|
|
||||||
vegetal|vegetable|U7_2A
|
|
||||||
vendedor/a|salesperson|U9_4C
|
|
||||||
vender|to sell|U4_1A
|
|
||||||
venezolano/a|Venezuelan|U1_6
|
|
||||||
Venezuela venido/a|Venezuela comefrom|U0_4A U8_7A
|
|
||||||
venir|to come|U1_5A
|
|
||||||
ventana|window|U0_6
|
|
||||||
ver ver la televisión|to see/watch towatchtelevision|U2_2A
|
|
||||||
verano|summer|U3_8B
|
|
||||||
verdad|true|U4_6A
|
|
||||||
verde verdura|green vegetable|U7_2A
|
|
||||||
vestido|dress|U4_7C
|
|
||||||
vestirse|to getdressed|U6_8A
|
|
||||||
vez|time|U2_3A
|
|
||||||
viajar|to travel|U2_3A
|
|
||||||
¡un abrazo!|ahug!|U5_3C
|
|
||||||
¿cuánto cuesta?|howmuchdoesitcost?|U4_9A
|
|
||||||
¿cuánto es?|howmuchisit?|U7_4A
|
|
||||||
¿cuánto/a/os/as?|howmuch/howmany?|U3_6A
|
|
||||||
¿cuántos años|howoldareyou?|U1
|
|
||||||
¿cómo andas?|how are you doing?|U1_2A
|
|
||||||
¿cómoeres?|whatareyoulike?|U6_2A
|
|
||||||
¿cómoestás?|howareyou?|U0_3
|
|
||||||
¿cómolotomas?|howdoyoutakeit?|U7_6B
|
|
||||||
¿cómose pronuncia...?|howdoyoupronounce...?|U0_5A
|
|
||||||
¿cómosedice...?|howdoyousay...?|U0_5A
|
|
||||||
¿cómoseescribe ...?|howdoyouspell...?|U0_6
|
|
||||||
¿cómotellamas?|whatisyourname?|U0_1A
|
|
||||||
¿de dóndeeres?|where are you from?|U1_4B
|
|
||||||
¿en quétrabajas?|whatdoyoudoforaliving?|U1_4B
|
|
||||||
¿por qué?|why?|U2_12A
|
|
||||||
¿verdad?|right?|U3_9
|
|
||||||
árabe|Arabic|U2_LEX
|
|
||||||
área|area|U3_2A
|
|
||||||
árido/a|arid|U3_LEX
|
|
||||||
ópera|opera|U5_5A
|
|
||||||
últimamente|recently|U5_4A
|
|
||||||
último/a|last|U2_5A U5_3A
|
|
||||||
único/a universidad|only university|U5_7C U1_3C
|
|
||||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue