Compare commits

...

18 commits
v3.0 ... main

24 changed files with 10511 additions and 397 deletions

6
.gitignore vendored
View file

@ -6,9 +6,9 @@ __pycache__/
.uv/
# Local SQLite Databases
*.db
*.db-journal
*.db-wal
# *.db
# *.db-journal
# *.db-wal
# Multimedia Storage Directories
# (Keeps the media folder in your workspace structure, but ignores the generated files)

Binary file not shown.

84
core/bulk_importer.py Normal file
View file

@ -0,0 +1,84 @@
# core/bulk_importer.py
import os
import re
from docling.document_converter import DocumentConverter
from database.connection import get_connection
class BulkImporter:
def import_pdf_glossary(self, pdf_path: str, textbook_name: str):
"""Uses Docling layout extraction engine to parse tables out of multi-column glossary PDFs."""
print(f"🔄 Analyzing structural layout for '{pdf_path}'...")
if not os.path.exists(pdf_path):
print(f"❌ Target document path could not be found: {pdf_path}")
return
conn = get_connection()
cursor = conn.cursor()
# Reset staging tables to guarantee fresh data state
cursor.execute("DELETE FROM translations")
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
for table_idx, table_element in enumerate(result.document.tables):
# Convert Docling table data framework back to standard pandas-like dictionary arrays
table_data = table_element.export_to_dataframe()
# Iterate rows while ensuring it's not looking at headers or broken table pieces
for row_idx, row in table_data.iterrows():
row_list = list(row)
# 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:
print(f"❌ Docling encountered a processing failure: {docling_error}")
import traceback
traceback.print_exc()
finally:
conn.close()

112
core/clean_glossary.py Normal file
View file

@ -0,0 +1,112 @@
# 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.")

71
core/phrase_manager.py Normal file
View file

@ -0,0 +1,71 @@
import os
import asyncio
import re
from database.connection import get_connection
from core.asset_generator import AssetGenerator
class PhraseManager:
def __init__(self):
self.asset_gen = AssetGenerator()
def _clean_filename(self, text: str) -> str:
"""Filters forbidden system characters but preserves Spanish diacritics."""
safe_text = re.sub(r'[/\\?%*:|"<>]', '', text)
return safe_text.strip().replace(" ", "_")
async def add_translation_pair(self, spanish_text: str, english_text: str,
textbook: str = None, unit: int = None,
context: str = None, voice_gender: str = "male"):
"""
Takes a multi-lingual pair, automates audio generation,
and securely links them together in the SQLite database.
"""
conn = get_connection()
cursor = conn.cursor()
try:
# 1. Insert Spanish Phrase Row
cursor.execute("""
INSERT INTO phrases (text, language, textbook, unit, source_context)
VALUES (?, 'es', ?, ?, ?)
""", (spanish_text, textbook, unit, context))
es_id = cursor.lastrowid
# 2. Insert English Phrase Row
cursor.execute("""
INSERT INTO phrases (text, language, textbook, unit, source_context)
VALUES (?, 'en', ?, ?, ?)
""", (english_text, textbook, unit, context))
en_id = cursor.lastrowid
# 3. Create Bidirectional Translation Bridges
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))
# 4. Automate Castilian Audio Generation
safe_filename = self._clean_filename(spanish_text)
audio_filename = f"{safe_filename}_{voice_gender}.mp3"
output_path = os.path.join("media", audio_filename)
# Fire our cloud TTS utility
await self.asset_gen.generate_speech(spanish_text, output_path, gender=voice_gender)
selected_voice_name = self.asset_gen.voices.get(voice_gender.lower(), "es-ES-AlvaroNeural")
# 5. Log Audio Track to Database
cursor.execute("""
INSERT INTO audio_tracks (phrase_id, voice_gender, voice_name, file_path, is_reference)
VALUES (?, ?, ?, ?, 1)
""", (es_id, voice_gender.lower(), selected_voice_name, output_path))
# Commit everything at once securely
conn.commit()
print(f"✨ Successfully integrated: '{spanish_text}''{english_text}'")
print(f" Audio generated safely at: {output_path}")
return True
except Exception as e:
conn.rollback()
print(f"❌ Error during phrase ingestion transaction: {e}")
return False
finally:
conn.close()

View file

@ -2,58 +2,64 @@
import sqlite3
import os
DB_NAME = "spanish_trainer.db"
def get_connection():
"""Returns a standard connection object to the SQLite database."""
return sqlite3.connect(DB_NAME)
# Force the path to be absolute relative to the project folder
db_path = os.path.abspath("spanish_trainer.db")
return sqlite3.connect(db_path)
def init_db():
"""
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}'...")
print("🛠️ Constructing relational database schema...")
conn = get_connection()
cursor = conn.cursor()
# The SQL schema we designed for your glossary, cross-references, and tracks
schema = """
# Enable foreign keys explicitly for this connection instance
cursor.execute("PRAGMA foreign_keys = ON;")
# 1. Phrases Table (Holds individual localized text strings)
cursor.execute("""
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,
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,
PRIMARY KEY (source_phrase_id, target_phrase_id),
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 NOT NULL,
voice_gender TEXT NOT NULL,
voice_name TEXT NOT NULL,
phrase_id INTEGER,
file_path TEXT NOT NULL,
is_reference INTEGER DEFAULT 1,
FOREIGN KEY (phrase_id) REFERENCES phrases(id) ON DELETE CASCADE
);
"""
""")
conn = get_connection()
try:
cursor = conn.cursor()
# executescript allows running multiple CREATE TABLE statements at once
cursor.executescript(schema)
# CRITICAL: Force SQLite to physically commit the table architectures to disk
conn.commit()
print("✅ Database tables verified and initialized successfully.")
except sqlite3.Error as e:
print(f"❌ Database initialization failed: {e}")
finally:
# 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.

File diff suppressed because it is too large Load diff

Binary file not shown.

902
docling_output.md Normal file
View file

@ -0,0 +1,902 @@
## alphabetical GLOSSARY
Abbreviations used:
f
feminine
m
masculine
pl
plural
colloq
colloquial
Given in parentheses irregularities of the verbs in the present tense: ( g ), ( i ), ( ie ), ( ue ), ( zc )
<!-- image -->
A a la derecha de a la izquierda de a la parrilla a la plancha a la vez a las a media mañana a menudo a partir de a primera hora a principios de ¿a qué hora...? ¿a qué te dedicas? a veces a ver abandonado/a abierto/a abogado/a abrazo m abrigo m abuelo/a aburrido/a accesorio m aceite de girasol m aceite de oliva m aceituna f acento m acompañamiento m acostarse (ue) actividad f activo/a actor/ actriz actual actualidad f adaptarse además adiós administrativo/a ¿adónde vas tú? adoquín m adornar to the right of to the left of barbecued grilled at the same time at mid-morning often from fi rst thing at the start of what time is...? what do you do? sometimes let's see abandoned open lawyer hug coat grandfather/grandmother bored accessory sunfl ower oil olive oil olive accent side dish to go to bed activity active actor current news to adapt in addition goodbye administrative where are you going? paving stone to decorate adorno m adulto/a aeropuerto m afi ción f África agencia de publicidad f agencia de viajes agente m y f agradable agricultor/a agua con gas m aguacate m águila m ahí ahora mismo ajedrez m al fi nal al horno al lado de al principio al vapor álbum m alegre alemán/ana algo algodón m alguien algún , alguno/a alimentación f allí almendro m almorzar (ue) alquilar alrededores m, pl amable amarillo/a amazónico/a ambicioso/a ambiente m América amigo/a amistad f amor m Ámsterdam Andes ángel m animal m animar antes de anticucho m antifaz m antigüedad f antiguo/a antipático/a año m decoration adult airport hobby Africa advertising agency travel agency agent nice farmer sparkling water avocado eagle there right now chess in the end roasted next to at the start steamed album cheerful German something cotton someone someone/some diet/food there almond tree to have lunch to rent surroundings friendly yellow Amazonian ambitious atmosphere America friend friendship love Amsterdam Andes angel animal to encourage before anticucho eye mask antique old unkind year U8\_5A U8\_5A U7\_7C U7\_7A U9\_5A U6\_6A U7\_8A U6\_2A U3\_11B U6\_2A U8\_7A U6\_2A U1\_4B U6\_2A U7\_6B U9\_3A U5\_3C U1\_LEX U5\_3A U4\_LEX U5\_7A U7\_7A U4\_14A U7\_LEX U7\_LEX U7\_1A U1\_3B U7\_GyC U6\_2A U0\_6 U3\_7A U1\_9C U3\_2A U2\_3A U6\_2A U3\_2A U0\_3 U8\_9A U5\_8A U8\_11D U6\_11B
f
U6\_11B U9\_11C U1\_1A U5\_3D U3\_LEX U1\_LEX U1\_LEX U1\_GyC U4\_2A U9\_LEX U7\_4A U3\_7A U3\_6A U3\_10A U7\_4A U9\_6C U4\_9C U7\_3A U8\_3C U5\_3C U7\_3A U5\_2A U5\_LEX U1\_3A U6\_5B U4\_2A U2\_6A U3\_2A U6\_3A U8\_11D U1\_1A U6\_8A U4\_4A U3\_2A U3\_4A U4\_6C U3\_8C U9\_4A U8\_3A U3\_LEX U1\_2C U6\_8A U1\_8A U9\_2B U3\_1 U3\_14C U3\_6A U6\_8A U3\_5C U7\_9A U4\_3B U8\_8A U3\_2A U9\_4A U1\_3A
## alphabetical GLOSSARY
| años60 m | 1960s | U8_7A | bañ osmpl | bath | U1_1A |
|---------------------|------------------|-------------|-----------------------------|-------------------------|-------------|
| aparecer (zc) | toappear | U3_6A | bar m | bar | U1_LEX |
| apasionado/a | passionate | U5_15C | barato/a | cheap | U4_6C |
| apellido m | surname | U1_4A | barba f | beard | U5_9A |
| aprender | tolearn | U2_2C | Barcelona | Barcelona | U3_8A |
| aproximadamente | approximately | U3_2A | Bariloche | Bariloche | U4_12A |
| apuntar | tonotedown | U9_5A | barrio m | neighbourhood | U8_1A |
| aquí | here | U3_2A | bastante | quite | U5_3C |
| aquí tiene | hereyougo | U4_GyC | basura f | rubbish | U8_2A |
| árabe m | Arabic | U2_LEX | batería f | drums | U9_7A |
| archivo m | file | U9_7A | bebida f | drink | U3_5A |
| área m | area | U3_2A | bebida vegetal f | vegetable-baseddrink | U7_8A |
| arena f | sand | U3_4A | beis | beige | U4_LEX |
| arepa f | arepa | U7_9A | béisbol m | baseball | U3_5A |
| argentino/a | Argentinian | U1_3A | belga | Belgian | U1_6 |
| árido/a | arid | U3_LEX | Bélgica | Belgium | U5_GyC |
| arma m | weapon | U3_2A | Berlín | Berlin | U1_GyC |
| arroz m | rice | U7_LEX | beso m | kiss | U9_2B |
| arquitecto/a | architect | U1_6 | biblioteca f | library | U8_2A |
| arquitectura f | architecture | U1_3A | bien | well | U2_5A |
| arte m | art | U1_1A | bien comunicado/a | wellconnected | U8_1A |
| artesanal | artisanal | U4_1A | bienvenidos/as | welcome | U1_1A |
| artesanía f artista | crafts artist | U4_1A | bife m bigote m | steak moustache | U3_5A |
| asado/a | roasted | U7_7A | Bilbao | Bilbao | |
| Asia | Asia | U3_LEX | blanco/a | white | U5_3A U4_2A |
| aspecto físico m | physical feature | U5_14A | blog m | blog | U2_7B |
| aspecto m | aspect | U3_11B | bloguero/a | blogger | U1_6 |
| Asunción | Asuncion | U3_13A | bloque m | block | U8_7A |
| atención | takenote | U4_14A | bloque de pisos m | block of flats | U8_7A |
| atender (ie) | tolookafter | U9_3A | bocadillo m | sandwich | U7_2A |
| atento/a | attentive | U9_5A | bocata m | sandwich(colloq.) | U7_2A |
| atlántico/a | Atlantic | U3_6A | boda f | wedding | U4_13B |
| atractivo/a | attractive | U8_7A | Bogotá | Bogota | U5_4A |
| atraído/a | attracted | U9_3A | bohemio/a | bohemian | U8_7A |
| atún m | tuna | U7_2A | bolígrafo m | pen | U0_5A |
| autobús m | bus | U3_4A | Bolivia | Bolivia | U3_11B |
| automático/a | automatic | U8_2A | bolso m | bag | U4_1A |
| autónomo/a | self-employed | U3_2A | bonito/a | pretty | U3_4A |
| avenida f | avenue | U8_3A | bossanova f | bossanova | U1_7C |
| aventurero/a | adventurous | U5_3C | Boston | Boston | U9_2B |
| avión m | plane | U6_GyC | botas f, pl | boots | U4_LEX |
| azúcar m azul | sugar blue | U7_6A U4_2A | botella f brasileño/a | bottle Brazilian | U7_4A |
| | | | | | U1_3A |
| azul claro | light blue | U4_13A | Bruselas | Brussels | U8_8A |
| | | | buenhumor | goodmood | U6_2A |
| B | | | buenas noches buenas tardes | goodnight goodafternoon | U0_3 U0_3 |
| bailar | todance | U2_2C | buen , bueno/a | good | U2_5A |
| bailarín/ina | dancer | U5_LEX | BuenosAires | BuenosAires | U0_4A |
| baile m | dance | U6_10A | buenos días | goodmorning | U0_3 |
| bajito/a | short | U5_9A | bufanda f | scarf | U4_LEX |
| bajo m | groundfloor | U9_1A | buscar | tofind | U2_6A |
| balalaica f | balalaika | U1_7A | | | |
| banco m | bank | U1_LEX | | | |
| bandera f | flag | U2_10B | C | | |
| bañador m | swimsuit | U4_3A | caballo m | horse | U3_5A |
| bañarse | togoforaswim | U9_GyC | cacao m | cocoa | U3_14A |
## alphabetical GLOSSARY
| cada | every | U2_3A | casero/a | home-loving | U6_3A |
|----------------------|-------------------------|--------------|-------------------------|-------------------|---------------|
| Cádiz | Cadiz | U3_11B | casi | almost | U2_6A |
| café m | coffee | U3_2A | casinunca | almostnever | U6_2A |
| café con leche m | coffeewithmilk | U7_6A | casi siempre | almostalways | U6_2A |
| café solo m | espresso | U7_4C | castaño/a | chestnut-coloured | U5_9A |
| cafetal m | coffee plantation | U3_2A | castañuelas f, pl | castanets | U3_GyC |
| cajero automático m | cashmachine | U8_2A | castillo m | castle | U3_2A |
| calabacín m | courgette | U7_LEX | catarata f | waterfall | U3_LEX |
| calabaza f | pumpkin | U7_LEX | catedral f | cathedral | U3_2A |
| calamar m | squid | U7_2A | categoría f | category | U9_7A |
| calcetín m | sock | U4_13B | cebolla f | onion | U7_2A |
| calidad f | quality | U3_2A | celebración f | celebration | U6_11A |
| cálido/a | warm | U3_LEX | celebrar | tocelebrate | U6_8A |
| caliente | hot | U6_11B | cena f | dinner | U4_4C |
| calle f | street | U1_1A | cenar | tohavedinner | U2_2A |
| calle peatonal f | pedestrian street | U8_3A | central | central | U3_2A |
| calmado/a | calm | U5_15C | céntrico/a | central | U8_7A |
| calor m | hot | U3_4A | centro m | centre | U3_2A |
| calvo/a | bald | U5_LEX | centro comercial m | shoppingcentre | U4_1A |
| camarero/a | waiter/waitress | U1_4A | Centroamérica | CentralAmerica | U3_GyC |
| camello m | camel | U3_9 | cepillo de dientes m | toothbrush | U4_3A |
| camino m | road/journey | U3_1 | cerca | nearby | U3_2A |
| Caminode | WayofSaintJames | | cercano/a | nearby | U8_3A |
| Santiago m camisa f | shirt | U3_2A U4_2A | cerdo m cereales mPl | pork grains | U7_LEX U7_LEX |
| camiseta f | t-shirt | U4_2A | cerrado/a | reserved | U5_LEX |
| campamento m | camping | U5_8A | cerro m | mountain | U3_5C |
| campo m | countryside | U3_2A | cerveza f | beer | U2_13A |
| Canadá | Canada | U1_3B | ceviche m | ceviche | U3_GyC |
| canadiense | Canadian | U1_3A | champiñón m | mushroom | U7_GyC |
| canal detelevisión m | televisionchannel | U1_3C | champú m | shampoo | U4_3A |
| canción f | song | U2_11B | chaqueta f | jacket | U4_3A |
| canela f | cinnamon | U7_8A | chatear | tochat | U2_9A |
| cansado/a | tired | U6_2A | chau | bye | U0_3 |
| cantante | singer | U5_4A | chico/a | boy/girl | U2_6A |
| cantar | tosing | U5_5A | Chile | Chile | U1_5A |
| cantidad f | amount | U3_6C | China | China | U3_12A |
| canto m | song | U6_LEX | chino m | Chinese | U2_LEX |
| caña f | smalldraughtbeer | U2_13A | chino mandarín m | MandarinChinese | U3_12A |
| capital f | capital | U3_1 | chistorra f | chistorra | U7_1A |
| Caracas | Caracas | U3_GyC | chocolate caliente m | hotchocolate | U7_12A |
| carácter m | personality | U5_14A | chocolate m | chocolate | U6_11B |
| característica f | characteristics | U7_12A | chófer | chauffeur | U1_GyC |
| cargador de móvil m | phonecharger | U4_3A | chorizo m | chorizo | U7_1A |
| Caribe | Caribbean | U3_8C | churros m,pl | churros | U7_12A |
| cariñoso/a | caring | U9_12C | científico/a | scientist | U1_3A |
| carnaval m | carnival | U3_11B | cinco | five | U3_4A |
| carne f | meat | U3_5C | cine m | cinema | U1_1A |
| carné de conducir m | driving license | U4_4A | cinturón m | belt | U4_LEX |
| carné deidentidad m | IDcard | U4_3A | cirujano/a | surgeon | U1_6 |
| caro/a | expensive | U4_6A | cita f | appointment | U9_5A |
| carta f | menu | U7_GyC | ciudad f | city/town | U2_1A |
| Cartagena de Indias | CartagenadeIndias | U2_10B | ciudad colonial f | colonial city | U3_2A |
| casa f casa rural f | house houseinthecountry | U1_8C | Ciudad de México ciudad | MexicoCity | U8_7E |
| | | U9_3A | f | universitytown | U3_2A |
| casado/a casarse | married togetmarried | U5_7C U9_GyC | universitaria claro | ofcourse | U5_14B |
| casco antiguo m | oldtown | U3_2A | claro/a | light/clear | |
| | | | | | U4_13A |
## alphabetical GLOSSARY
| clase f | class | U2_4A | comunitario/a | community | U8_7A |
|--------------------------|-------------------------|--------------|------------------------------|------------------------|--------------|
| clásico/a | classic | U4_6C | con | with | U1_3B |
| clave f | key | U6_12A | conmuchoencanto | verycharming | U8_LEX |
| cliente/a | customer | U4_9A | ¿conqué | howoften...? | |
| clima m | climate | U3_3B | frecuencia...? | | U6_2A |
| cobre m | copper | U3_3B | ¿con quién? | withwhom? | U6_11A |
| coche m | car | U2_4A | concentrado/a | focused | U9_5A |
| cocido m | stew | U7_10A | concierto m | concert | U2_2C |
| cocido/a | baked | U7_7A | concurso m | contest | U3_6A |
| cocido madrileño m | Madridstew | U7_12A | cóndor m | condor | U3_6A |
| cocidomontañés m | Cantabrianbeanstew | U7_10A | conducir (zc) | todrive | U4_4A |
| cocinar | tocook | U2_2A | conductor/a | driver | U4_13A |
| cocinero/a | chef | U1_3A | conectar | toconnect | U8_3A |
| colocar | toplace | U4_14A | confundir | toconfuse | U9_5A |
| Colombia | Colombia | U2_10B | confuso/a | confused | U9_2B |
| colombiano/a | Colombian | U1_5A | conmigo | withme | U5_14A |
| colonia f | colony | U3_11B | conocer (zc) | toknow | U5_14B |
| ColoniaTovar | ColoniaTovar | U3_11B | conocido/a | well-known | U3_2A |
| colonial | colonial | U3_2A | consistir | toconsist of | U9_3A |
| color m | colour | U2_10B | construcción f | construction/building | U3_2A |
| comer | toeat | U3_5C | contacto m | contact | U2_3A |
| comercial | sales representative | U1_LEX | contaminación f | pollution | U3_GyC |
| comerciante | shopkeeper | U9_11A | contenedor de | wastecontainer | |
| comilón/ona | foodlover | U6_13A | contestar | toanswer | U3_6A |
| como | like | U3_2A | contexto m | context | U2_3A |
| cómo | how | U3_6A | continuar | tocontinue | U9_2B |
| ¿cómoandas? | howareyoudoing? | U1_2A | copa f | glass | U7_LEX |
| ¿cómoeres? | whatareyoulike? | U6_2A | corbata f | tie | U4_13A |
| ¿cómoestás? | howareyou? | U0_3 | cordillera f | mountainrange | U3_1 |
| ¿cómolotomas? | howdoyoutakeit? | U7_6B | Coro | Coro | U3_14C |
| ¿cómosedice...? | howdoyousay...? | U0_5A | corrala f | interior courtyard | U8_7A |
| ¿cómoseescribe ...? | howdoyouspell...? | U0_6 | correo m | post | U1_4A |
| ¿cómose pronuncia...? | howdoyoupronounce...? | U0_5A | correo electrónico m corto/a | email short | U1_6 U4_2A |
| ¿cómotellamas? | whatisyourname? | U0_1A | cosa f | thing | U2_12A |
| comodidad f | comfort | | coser | tosew | U9_6C |
| cómodo/a | comfortable | U9_3A U4_2A | costa f | coast | U3_4A |
| compañero/a | flatmate | | Costa Rica | CostaRica | U2_9A |
| de piso | | U9_2B | costar (ue) | tocost | U4_2A |
| compañero/a de trabajo | workcolleague | | costarricense creativo/a | CostaRican creative | U1_1A U9_4A |
| compartir | toshare | U2_3A U6_12A | crédito m | loan | U4_3A |
| competición f | competition | U9_10B | creer | tobelieve | U5_13B |
| compi | flatmate (colloq.) | U9_7A | crema f | cream | U4_3A |
| completamente f | completely | U3_11B | criar | toraise | U9_3A |
| composición compositor/a | composition | U9_6B | cristal m | glass | U3_10A |
| comprar | composer | U5_LEX U4_9A | croqueta f | croquette | U7_1A U1_7A |
| | tobuy | | cruasán m | croissant | |
| compras f, pl | shopping | U2_2A | crudo/a cuaderno m | raw | U7_7A |
| comprender | tounderstand engagement | U2_6A | | exercisebook | U0_5A |
| compromiso m común | common | U6_2A U2_3A | cuadrícula f ¿cuál? | grid whichone? | U3_11B U3_6A |
| comunicado/a comunicarse | communicated | U8_1A | ¿cuál es tu nombre? | whatisyourname? | U1_4B |
| | tocommunicate | U2_3A | ¿cuálestunúmero | whatisyourphonenumber? | |
| comunicativo/a | talkative | U9_12C | de teléfono? | | U1_4B |
| comunidad | autonomouscommunity | | cualidad f | strength/quality | U9_4A |
| autónoma f | | U3_2A | cuando | when | U2_3A |
## alphabetical GLOSSARY
| ¿cuántas horas...? | howmanyhours...? | U6_13D | desierto m | desert | U3_3B |
|--------------------------|--------------------------|---------------|----------------------------|-----------------------|---------------|
| ¿cuánto cuesta? | howmuchdoesitcost? | U4_9A | desorganizado/a | disorganised | U9_4A |
| ¿cuánto es? | howmuchisit? | U7_4A | despacho de | lawyers office | U1_LEX |
| ¿cuánto/a/os/as? | howmuch/howmany? | U3_6A | abogados m | | |
| ¿cuántos años | howoldareyou? | | despacho de arquitectura m | architects studio | U1_LEX |
| tienes? cuatro | four | U1_4B U6_11B | despedida f | goodbye | U0_5 |
| Cuba | Cuba | U0_4A | despertarse (ie) | towakeup | U6_8A |
| cubano/a | Cuban | U1_6 | despistado/a | absent-minded | U9_4A |
| cuchara f | spoon | U7_LEX | después | after | U3_1 |
| cucharilla f | teaspoon | U7_LEX | detallista | perfectionist | U9_CEL |
| cuchillo m | knife | U7_LEX | día m | day | U3_4A |
| cuenta f | bill | U7_4A | día siguiente m | nextday | U6_8A |
| cuidar | totakecareof | U6_3A | dialecto m | dialect | U3_12A |
| cultural | cultural | U8_LEX | diario m | newspaper | U2_4A |
| cumpleaños m | birthday | U4_4C | dibujar | todraw | U9_6C |
| curso m | course | U2_2A | dicen | theysay | U3_4A |
| cuy m | Guineapig | U3_GyC | dicen que... | theysaythat... | U6_3B |
| | | | diferencia f diferente | difference different | U7_12A U4_14A |
| D | | | dinámico/a | dynamic | U9_12C |
| dar clases | togiveclasses | U9_11C | dinero m | money | U4_3A |
| darse cuenta | torealise | U9_5A | dirección f | address | U1_10B |
| de | of | U1_1A | director/a | director | U1_9C |
| de acuerdo | all right | U7_6B | diseñador/a | graphic designer | U1_10B |
| de cuadros | check | U4_5A | grafico/a | | |
| ¿de dóndeeres? | whereareyoufrom? | U1_4B | diseñador/a | fashion designer | U1_3A |
| de estilo colonial | Colonial style | U8_11D | demoda | | |
| de fuera | fromoutside/foreign | U9_11A | disfrutar | toenjoy | U5_8A |
| de primero | for firstcourse | U7_4A | distinto/a | different | U9_2B |
| de rayas | stripy | U4_2A | divertido/a | fun | U5_3C |
| de segundo | forsecondcourse | U7_4A | divorciado/a | divorced | U5_7C |
| de todas partes | fromeverywhere | U3_2A | documento m | document | U9_5A |
| de valor | valuable | U9_8A | dólar m | dollar | U3_6A |
| decidir | todecide | U4_14A | domingo m | Sunday | U6_1A |
| decir (i) (g) | tosay | U2_3A | Domingode | AdventSunday | U6_11B |
| decisión f | decision | U9_3A | Adviento | | |
| declarado/a | declared | U3_14A | dónde | where | U6_11A |
| dedicar tiempo | tospendtime(onsomething) | U6_2A | dormilón/ona | sleepyhead | U6_13A |
| (a algo ) | | | dormir (ue) | tosleep | U4_13B |
| defecto m | weakness/defect | U9_4A | ducharse | totakeashower | U6_7A |
| definir | todefine | U9_5A | dulce | sweet | U7_9C |
| dejar | toleave | U9_3A | durante | during | U6_2A |
| dejarse algo | toforgetsomething | U9_5A | | | |
| del tiempo | atroomtemperature | U7_6A | | | |
| delgado/a | thin | U5_LEX | E | | |
| demasiado/a | toomuch | U8_3A | echardemenos | tomiss | U9_3A |
| deporte m deportista | sport athlete | U3_11B | ecoaldea f | eco-village | U9_3A |
| | sports | U1_LEX U4_3A | económico/a | affordable Ecuador | U8_7A U3_GyC |
| derecha f | right | U8_5A | edad f | age | U1_3D |
| deportivo/a | | | Ecuador | | |
| desayunar | tohavebreakfast | U6_2A | edificio m | building | U3_2A |
| descendiente desconectar | descendent todisconnect | U3_11B U6_12A | educativo/a eficiente | educational efficient | U9_3A U9_12C |
| desde | since/from | U3_2A | egoísta | selfish | U9_4A |
| desde hace | since | U9_3A | ejercicio m | exercise | U2_7B |
| desear | towantsomething | U4_9A | el / la | the | U0_6 |
| desfile m | parade | U6_8A | electrónico/a | electronic | U1_4A |
## alphabetical GLOSSARY
| elefante m | elephant | U3_9 | estación de taxis f | taxirank | U8_LEX |
|--------------------|-------------------------------|--------|-----------------------|-------------------|----------|
| elegante | elegant | U4_2A | estación de tren f | train station | U8_LEX |
| elegido/a | chosen | U5_14A | estadio de fútbol m | footballstadium | U3_GyC |
| elegir (j) (i) | tochoose | U9_2B | estado m | state | U3_6A |
| emblemático/a | iconic | U8_7A | estadounidense | American | U1_GyC |
| embutido m | curedmeat | U7_2A | estampado/a | withaprint | U4_2A |
| empanada f | empanada | U3_3B | estar | tobe | U2_3A |
| empezar | tostart | U6_5B | estaren | tobeincontactwith | U2_3A |
| empleado/a | employee | U4_13A | contacto con | | |
| emprendedor/a | enterprising | U9_4A | esta nublado | it iscloudy | U3_8A |
| empresa f | company | U1_LEX | este m | this | U3_LEX |
| empresade | telecommunicationscompany | U1_LEX | este/a/o | this | U0_6 |
| telecomunicaciones | | | estilo m | style | U8_11D |
| empresade | transportcompany | U1_LEX | estilo de vida m | lifestyle | U9_3A |
| transportes f | | | estrecho/a | narrow | U3_10A |
| en | in/on | U0_6 | estrés m | stress | U9_3A |
| encambio | ontheotherhand | U8_9C | estuche m | pencilcase | U0_5A |
| enforma | inshape | U6_2A | estudiante | student | U1_3A |
| enpunto | o'clock | U6_GyC | estudios m, pl | studies | U9_11B |
| ¿en quétrabajas? | whatdoyoudoforaliving? | U1_4B | euro m | euro | U3_6A |
| entodo | entirely | U3_5A | Europa | Europe | U3_LEX |
| enventa | for sale | U9_3A | exclusivo/a | exclusive | U4_15B |
| enamorarsea | tofall in love at first sight | U9_8A | excursión f | hiking/trip | U2_2A |
| primera vista | | | existir | toexist | U2_3A |
| encantar | tolove | U5_3A | éxito m | success | U6_12A |
| encanto m | charm | U8_LEX | exitoso/a | successful | U6_12A |
| enchilada f | enchilada | U3_6A | exmarido m | ex-husband | U5_7C |
| energía f | energy | U6_2A | exmujer f | ex-wife | U5_LEX |
| enfermería f | nursing | U9_12B | experiencia f | experience | U9_7B |
| enfermero/a | nurse | U1_LEX | exposición f | exhibition | U2_2A |
| enfermo/a | ill | U9_11A | expresión f | expression | U1_10A |
| ensalada f | salad | U7_1A | extinguido/a | extinct | U9_3A |
| ensalada mixta f | mixedsalad | U7_3A | extranjero m | abroad | U4_4A |
| enseguida | comingrightup | | extrovertido/a | extroverted | |
| | | U7_4A | | | U5_3C |
| entrante m | starter | U7_12C | | | |
| entresemana | duringtheweek | U6_2A | F | | |
| equipaje m | luggage | U9_7C | fabuloso/a | fabulous | U3_6A |
| equipo m | team | U3_5A | fácil | easy | U4_2A |
| equivocarse | tobewrongabout | U9_5A | factor solar | solar factor | U4_9A |
| escolar | school | U4_13A | falda f | skirt | U4_2A |
| escribir | towrite | U5_3A | familia f | family | U1_8C |
| escuchar | tolistento | U2_2A | familiar | familymember | U5_8A |
| escuela f | school | U1_1A | famoso/a | famous | U3_2A |
| escultura f | sculpture | U2_10B | farmacéutico/a | pharmacist | U4_9A |
| ese/a | this | U0_4C | farmacia f | pharmacy | U8_6B |
| España | Spain | U0_4A | farola f | lamppost | U8_LEX |
| español m | Spanish | U0_2A | fatal | awful | U5_5A |
| especial | special | U4_15B | favorito/a | favourite | U3_4A |
| especializado/a | specialised | U7_6A | febrero | February | U3_4A |
| espectacular | spectacular | U9_3A | femenino/a | feminine | U2_4B |
| esperar | towait | U5_3A | fenómeno m | phenomenon | U2_3A |
| espinaca f | spinach | U7_3A | feo/a | ugly | U4_6C |
| esquí m | skiing | U1_1A | feria f | fair | U6_8A |
| esquiar | toski | U9_6C | festival de música m | musicfestival | U4_10A |
| esquina f | corner | U8_5A | fideos m,pl | noodles | U7_4A |
| establecimiento m | establishment | U7_GyC | fiesta f | party | U3_6A |
| estación de metro | metrostation | U8_2A | fiestero/a | partyanimal | U6_3A |
## alphabetical GLOSSARY
<!-- image -->
| figura f | figure | U6_11B | gramática f | grammar | U2_7B |
|--------------------|----------------|--------------|-----------------------------|---------------------------|-------------|
| findesemana m | | | | | |
| | weekend | U6_1A | gran | big | U5_3A |
| final m | end | U3_2A | Gran Canaria | GranCanaria | U3_11B |
| físico/a | physical | U5_14A | Granada | Granada | U3_2A |
| flamenco m | flamenco | U1_7A | grande | big | U3_GyC |
| flan m | eggcustard | U7_3A | gris | grey | U4_5A |
| flor f | flower | U6_8A | grueso/a | thick | U4_13B |
| forma f | shape | U3_11B | grupo (de música )m | band/musicgroup | U5_3A |
| foto f | photo | U2_LEX | guacamole m | guacamole | U7_GyC |
| fotografía f | photography | U5_3A | guaraní m | Guaraní | U3_10A |
| fotógrafo/a | photographer | U9_LEX | Guatemala | Guatemala | U3_GyC |
| francés/esa | French | U1_3A | guía de viaje f | travelguide | U4_12C |
| frecuencia f | frequency | U6_2A | guía | guide | U4_12C |
| fresa f | strawberry | U7_5C | guionista | scriptwriter | U1_9C |
| fresco/a | fresh | U7_2A | guisado/a | stewed | U7_7A |
| frijoles m, pl | beans | U7_LEX | gustar | tolike | U5_3A |
| frío/a | cold | U3_3B | gusto musical m | musictaste | U5_11A |
| frito/a | fried | U7_3A | | | |
| fruta f | fruit | U7_3A | | | |
| frutadetemporada | seasonal fruit | U7_3A | H | | |
| frutos secos m,pl | nuts | U7_5C | habilidad f | ability | U9_7B |
| fuera | outside | U6_9D | habitante | inhabitant | U3_2A |
| fumar | tosmoke | U6_3A | habitual | regular | U6_2A |
| fundado/a | founded | U3_2A | habla hispana f | Spanishspeaking | U2_8A |
| fundamental | fundamental | U7_7A | hablador/a | talkative | U5_3C |
| fútbol m | football | U2_LEX | hablar | totalk | U0_2A |
| futuro m | future | U2_12A | hacer (g) | todo/tomake | U2_7B |
| | | | hacer autoestop | togohitch-hiking | U9_7C |
| G | | | hace calor hacer ejercicios | It ishot todoexercises | U3_8A U2_7B |
| gafas de sol f, pl | sunglasses | U4_3A | hace frío | It is cold | U3_8A |
| galería f | shoppingcentre | U4_1A | hacerlacama | tomakethebed | U6_7A |
| Galicia | Galicia | U3_2A | hace sol | Itissunny | U3_8A |
| galleta f | biscuit | U6_11B | hace viento | Itiswindy | U3_8A |
| gamba f | prawn | U7_1A | hamburguesa f | hamburger | U7_3A |
| ganar | towin | U3_6A | harina f | flour | U7_LEX |
| ganarunpremio | towinaprize | U9_8A | hasta | until | U3_2A |
| garbanzos m,pl | chickpeas | U7_LEX | hasta luego | seeyoulater | U0_3 |
| gas m | petrol | U7_4A | hasta pronto | seeyousoon | U0_3 |
| gasolinera f | petrol station | U8_LEX | hay | there is/are | U3_2B |
| gasto m | expense | U9_2B | hecho/a | made | U4_15B |
| gastronómico/a | culinary | U4_12A | helado m | icecream | U7_5A |
| gazpacho m m | gazpacho | U7_4A | hermano/a | brother/sister | U4_14D |
| geldebaño | showergel | U4_3A | hielo m | ice | U7_6A |
| generoso/a | generous | U9_4A | higiene f | hygiene | U4_1A |
| gente f | people | U2_13B | hijo/a | son/daughter | U5_2A |
| geográfico/a | geographical | U8_9A | hijo/a único/a | only child | U5_7C |
| geólogo/a | geology | U9_2B | hispanoamericano/a | Hispanic American | U2_8A |
| gimnasio m | gym | U1_LEX | hispanohablante | Spanishspeaker | U2_8A |
| ginecólogo/a | gynaecologist | U1_6 | historia f | history | U2_1A |
| girar | toturn | U8_6C | histórico/a | historical | U2_2A |
| girasol m | sunflower | U7_LEX | hoja de papel f | sheetofpaper | U0_5A |
| golf m | golf | U5_GyC | hola | hello | U0_1A |
| gordo/a | fat | U5_LEX | hombre | man | U1_2A |
| gorra f | cap | U4_5A | hombre/mujer | businessman/businesswoman | U4_13A |
| gorro m Gotemburgo | hat Gothenburg | U4_LEX U3_8B | de negocios Honduras | Honduras | U0_4A |
| gracias | thankyou | U0_6 | f | | U6_1A |
| | | | hora | time/hour | |
## alphabetical GLOSSARY
| hora de cenar f | dinnertime | U6_1A | irlandés/esa | Irish | U2_6A | | |
|--------------------------|----------------------------------------------------------------------|---------------------|--------------------------|--------------------|---------------------------------|----|-------------|
| m | | | irresponsable | irresponsible | U9_4A | | |
| horario | schedule | U6_2A | | | | | |
| horno m | oven | U7_3A | irse | toleave | U6_5A | | |
| hortaliza f | vegetable | U7_2A | isla f | island | U3_1 | | |
| hospital m | hospital | U1_LEX | italiano/a | Italian | U1_GyC | | |
| hospitalidad f | hospitality | U8_9A | izquierda f | left | U8_5A | | |
| hostelero/a | hotelier | U9_11A | | | | | |
| hotel m | hotel | U1_1A | | | | | |
| hoy | today | U3_4A | J | | | | |
| huerto m | vegetablegarden | U9_3A | Jaca | Jaca | U3_8A | | |
| huevo m | egg | U7_2A | jaguar m | jaguar | U3_6A | | |
| humanidad f | humanity | U3_2A | jamón m | ham | U7_1A | | |
| húmedo/a | humid | U3_4A | jamónserrano m | Serranoham | U7_2A | | |
| humor m | mood | U6_2A | jamónyork m | boiledham | U7_2A | | |
| humus m | hummus | U7_2C | Japón | Japan | U9_GyC | | |
| | | | japonés/esa m | Japanese | U0_6 | | |
| | | | jazz m | jazz | U5_4A | | |
| I | | | | | | | |
| | | | jefe/a | boss | U1_6 | | |
| idea f | Iberian | U3_2A | jersey m jornada f | jumper | U4_5A U9_3A | | |
| ideal | idea ideal | U2_5A U1_1A | joven | day young | U8_7A | | |
| | identity | U4_3A | judías f pl | greenbeans | U7_LEX | | |
| | language | U2_2C | jueves m | Thursday | U6_1A | | |
| | | U3_2A | juez/a | judge | U1_6 | | |
| | | U9_4A | | toplay | U2_2A | | |
| | | U3_1 | | together | U6_8A | | |
| impuntual | | | justificar | | U7_12A | | |
| | | | justo | | | | |
| f | | | | | | | |
| | | U5_4A | | | | | |
| indio/a | | | | | | | |
| | computertechnician | | | Kenya | | | |
| informático/a | | U5_14B | | | | | |
| infusión f | tea | U3_GyC | kétchup m | ketchup | | | |
| ingeniero/a | engineer | U1_6 | kilómetro m | kilometre | | | |
| Inglaterra | England | U3_8C | | | | | |
| inglés/esa | English | U1_3E | | | | | |
| m | | | L | | | | |
| ingrediente iniciativa f | | | | Havana | U3_2A | | |
| insociable | unsociable | U9_LEX | La Plata | | U3_11B | | |
| instrumento | musicalinstrument | | | working | U8_9A | | |
| musical m | | U3_GyC | laboratorio m | | U1_3A | | |
| intelectual | | U6_3A | lácteo m | dairy | | | |
| inteligente | | U5_LEX | lago m | lake | U3_5A | | |
| intentar | | U9_5A | largo/a | long | | | |
| intercambio m | exchange | U2_LEX | lasaña f | lasagne | U7_3A | | |
| interés turístico | | | | | | | |
| m | tourist interest | U3_2A | latino/a | Latin | U5_4A | | |
| interesante | interesting | U2_5A | Latinoamérica | Latin America | U3_2A | | |
| interior m | interior | U4_3A | latinoamericano/a | Latin American | U2_8A | | |
| intermediario/a | intermediary | U9_11A | lavarse | towash | U6_7A | | |
| internacional | international | | | | | | |
| | | U1_1A | leche f | milk | U7_6A | | |
| internet | internet | U2_11A | lechuga f | lettuce | U7_2A | | |
| invierno m | winter | U3_8B | | toread | U2_2A | | |
| invitado/a | guest | U5_14B | legumbres f, | legumes | | | |
| ira | | | pl | | U8_5A | | |
| | | U0_6 | | farfrom | | | |
| irdecompras | togoshopping | U2_2A | lengua f | language/tongue | U0_2A | | |
| ir de viaje | togotravelling | U4_4A | | mothertongue | U5_3A | | |
| | | | f | | | | |
| | | | lenguamaterna | | | | |
| | | | | | U7_LEX | | |
| | | | | | U3_1 | | |
| | | | | | U7_2A | | |
| | | | | | U5_6A U2_12B U0_4A U7_2A U3_11B | | |
| | togoto | | | | | | |
| | | U7_2C U9_3A | | | U8_6C | | |
| | ingredient initiative intellectual intelligent totry | U7_1C U6_12A U2_11A | | | | | |
| idioma iglesia f | important late incredible independent Indian infographic information | U8_3A | leer lejos de | LaPlata laboratory | | | |
| ibérico/a identidad m | impatient independence | U9_4A U3_4A | | karaoke Kazakh | | | |
| f impaciente | church | | | | | | |
| importante | | | | exact | | | |
| increíble independencia | | | karaoke m kazajo m Kenia | toexplain | | | |
| independiente | | | LaHabana laboral | | | | |
| | | | jugar (ue) juntos/a | | | | |
| | | | K | | | | |
| infografía f | | | | | | f | información |
## alphabetical GLOSSARY
| lentejas f, pl | lentils | U7_4A | mariposa f | butterfly | U3_11B |
|--------------------------|------------------|-------------|-------------------------|-----------------------|--------------|
| levantarse | togetup | U6_1A | marisco m | seafood | U7_LEX |
| libro m | book | U0_5A | marrón | brown | U4_2A |
| lila | purple | U4_LEX | marroquí | Moroccan | U1_3A |
| Lima | Lima | U8_7E | martes m | Tuesday | U6_LEX |
| limón m | lemon | U7_6A | marzo | March | U3_11B |
| limpieza f | cleanliness | U8_9A | más | more | U2_3A |
| limpio/a | clean | U8_LEX | másalto | louder | U0_6 |
| lindo/a | cute | U3_6A | másdeuno/una | morethanone | U2_3A |
| lingüista | linguist | U1_6 | másdespacio | slower | U0_6 |
| liso/a | straight | U5_LEX | máspoblado/a | mostpopulated | U3_2A |
| lista f | list | U9_5A | masa f | dough/pastry | U7_9C |
| literatura f | literature | U2_1A | masculino/a | masculine | U2_4B |
| llamado/a | called | U3_2A | mate m | mate | U3_5A |
| llamarse | tobecalled | U3_2A | material reciclado | recycled material | U4_15B |
| llave f | key | U9_2B | materno/a | maternal | U5_3A |
| llegar | toarrive | U3_2A | máximo | maximum | U4_14A |
| llevar | towear | U4_2A | maya | Mayan | U3_4A |
| llevar | tohave | U7_2A | mayonesa f | mayonnaise | U7_2A |
| llevarse | totake | U4_9A | mayor | biggest | U3_2A |
| llover (ue) | torain | U3_4A | mayoría f | majority | U6_2A |
| lluvioso/a | rainy | U3_6A | meencanta | I love | U5_3A |
| loquemás | themost | U8_4D | megusta | I like | U5_3A |
| loquemenos | theleast | U8_4D | mellaman.. | theycallme… | U1_2C |
| lo siento Londres | I'm sorry London | U0_6 U5_2B | mellamo... meparece | mynameis… Itseemstome | U0_1A U5_14C |
| luego | later | U3_4A | ¿meponeuncafé? | canIgetacoffee? | |
| lugar m | place | U1_4B | mediahora | halfanhour | U7_4A U6_1A |
| lunes m | Monday | U3_4A | medicamento | medicine | U4_3A |
| luz f | light | U5_2A | m médico/a | doctor | U1_6 |
| | | | medio/a | half | U3_2A |
| M | | | mediodía m meditación f | midday meditation | U6_LEX U9_3A |
| macarrones m,pl | macaroni | U7_GyC | meditar | tomeditate | U6_12A |
| madre f | mother | U5_2A | mejor | better | U2_6A |
| Madrid | Madrid | U2_6A | mejorar | toimprove | U2_6A |
| madrileño/a | personfromMadrid | U7_12A | Menorca | Menorca | U5_8A |
| madrugar | togetupearly | U6_2A | menos | less | U4_11 |
| maestro/a | teacher | U9_4C | menoscuarto | quarterto | U6_4A |
| mágico/a | magical | U2_10B | mensaje m | message | U2_LEX |
| maíz m | corn | U2_10B | mentir (ie) | tolie | U9_8A |
| malcomunicado | poorlyconnected | U8_1A | menú m | menu | U7_3A |
| Málaga | Malaga | U1_1A | mercadillo m | fleamarket | U4_1A |
| maleta f | suitcase Majorca | U4_6C | mercado m m | market labourmarket | U3_2A U8_9A |
| Mallorca | | U3_8C | mercadolaboral | | |
| manera | way | U7_7A | Mérida | Merida | U3_14C |
| mangacorta f | short sleeve | U4_2A | merluza f | hake | U7_4A |
| mangalarga f maniático/a | longsleeve | U4_2A | mes m | month | U3_11B |
| | fanatical | U6_9A | mesa f | table | U0_5A U1_1A |
| mano f | hand | U4_1B | metro m | metro | |
| manzana f | apple | U7_LEX | mexicano/a | Mexican | U5_3A |
| mañana | morning | U3_4A | México | Mexico | U3_4A |
| mapa m m | map worldmap | U3_1 | mi miamor | my mylove | U5_1A U1_2B |
| mapamundi mar m,f | sea | U3_1 U5_3A | minombrees... | mynameis... | U1_3A |
| marca | | | Michoacán | Michoacan | U3_11B |
| f marido m | brand husband | U4_2A U5_7A | miel f | honey | U7_8A |
| marinero/a | sailor | | miércoles | Wednesday | U6_1A |
| | | U8_10B | m | | |
## alphabetical GLOSSARY
<!-- image -->
| milanesa f | breadedmeatdish | U7_3A | navideño/a | Christmas | U6_11B |
|-------------------------|----------------------|---------------|--------------------------------|---------------------------|---------------|
| miles | thousands | U3_2A | necesitar | toneed | U9_11A |
| millón | million | U3_2A | negocio m | business | U4_13A |
| minuto m | minute | U6_2A | negro/a | black | U3_4A |
| mire | look | U4_9A | neorrural m | neorural | U9_3A |
| mismo/a | same | U3_2A | nervioso/a | nervous | U9_LEX |
| mixto/a | mixed | U7_3A | nevado/a | snow-covered | U3_1 |
| mochila f | backpack | U0_5A | nevar (ie) | tosnow | U3_5C |
| moda f | fashion | U1_3A | ni | neither | U5_13B |
| modelo | model | U1_GyC | nicaragüense | Nicaraguan | U1_6 |
| moderno/a | modern | U4_6C | nieto/a | grandson/granddaughter | U5_7A |
| modo m | way | U3_6C | ningún , ninguno/a | none | U8_4C |
| molino de viento m | windmill | U3_9 | niño/a | boy/girl | U5_12B |
| momento m | moment | U6_1A | ¿no? | right? | U3_5C |
| moneda f | currency | U3_2A | no | no | U0_6 |
| montaña f | mountain | U3_1 | noesunproblema | itisnotaproblem | U6_2A |
| montañés/esa | mountain | U7_10A | nohay | thereisno/thereareno | U8_10A |
| montar | tosetup | U9_3A | noimporta | itdoesnotmatter | U3_4A |
| Montevideo | Montevideo | U3_13A | nosé | Idon'tknow | U3_9 |
| monumento m | landmark | U3_2A | noche f | night | U2_2A |
| moreno/a | dark-haired | U5_9A | nocturno/a | night | U8_3A |
| mostaza f | mustard | U7_2A | nombre m | name | U1_3C |
| móvil m | mobile | U1_4B | noreste m | northeast | U3_LEX |
| mucho muchos/as | alot many/alotof | U2_11B U2_7B | normal normalmente | normal normally | U5_3C U2_4B |
| mueble m | furniture | U8_8A | noroeste m | northwest | U3_2A |
| mujer f | woman | U4_2A | norte m | north | U3_3B |
| mundo m | world | U2_3A | Norteamérica | NorthAmerica | U3_10A |
| mundohispano m | Hispanicworld | U3_7A | nosotros/as | we | U2_11B |
| museo m | museum | U1_1A | novela f | novel | U9_10A |
| música f | music | U2_1A | noviembre | November | U3_11B |
| música clásica f | classicalmusic | U5_4A | novio/a | boyfriend/girlfriend | U2_9A |
| música electrónica f | electronicmusic | U5_4A | nube f | cloud | U3_8A |
| música envivo f | livemusic | U5_6A | nuestro/a | our | U6_10A |
| música | indiemusic | | NuevaYork | NewYork | U9_2B |
| independiente f | | U5_4A | nuevo/a | new | U2_5A |
| músicapop f | popmusic | U4_10A | número m | number | U1_4B |
| música soul f | soulmusic | U5_4A | nunca | never | U3_14A |
| musical | musical | U3_GyC | nuncaantes | neverbefore | U6_2A |
| músico/a | musician | U5_2A | | | |
| muy | very | U2_5A | | | |
| O | O | O | O | O | O |
| N | N | N | objeto m | object | U4_14A |
| | | | obrero/a | worker | U8_7A |
| nacer (zc) | tobeborn | U3_GyC | ocasión especial f | specialoccasion | U4_15B |
| nachos m,pl | nachos | U7_1A | Oceanía | Oceania | U3_LEX U3_LEX |
| nacimiento m | birth | U5_2A | océano m | ocean | U3_LEX |
| nacional nacionalidad f | national nationality | U2_10B U1_3D | OcéanoAtlántico OcéanoÍndico | AtlanticOcean IndianOcean | U3_LEX |
| | nothing | U2_1A | OcéanoPacífico | PacificOcean | U3_LEX |
| nadar | toswim | | ocurrir | tohappen | |
| nada f | | U9_6C | | | U6_5B |
| naranja f | orange | U7_LEX | odiar oeste m | tohate | U6_2A |
| naranja nativo/a | orange native | U4_LEX U2_LEX | oferta cultural f | west cultural offerings | U3_5A U8_LEX |
| | | | | official | |
| natural | natural | U2_3A | oficial | | U3_3B |
| naturaleza f Navarra | nature Navarre | U2_1A U9_11A | oficina f oficina de correos f | office postoffice | U6_14A U8_LEX |
| Navidad f | Christmas | U6_11B | ojo m | eye | U5_LEX |
## alphabetical GLOSSARY
| oliva f | olive | U7_LEX | pasta de dientes f | toothpaste | U4_3A |
|---------------------------|------------------------|---------------|----------------------|-----------------------|--------------|
| olvidar | toforget | U9_5A | pastor/a | shepherd | U9_3A |
| ópera f | opera | U5_5A | patata f | potato | U7_1A |
| opinar | tohaveanopinionon | U9_2B | patatas bravas f, pl | patatas bravas | U7_3A |
| orden m | order | U6_11A | patatas fritas f, pl | chips | U7_12A |
| ordenador m | computer | U0_5A | patinar | toskate | U9_10B |
| ordenadorportátil m | laptop | U4_3B | patio m | patio | U8_7A |
| organizado/a | organised | U6_9A | patio interior m | interior patio | U8_7A |
| organizar | toorganise | U9_3A | patrimonio m | heritage | U3_2A |
| origen m | origin | U1_4B | Patrimonio de la | WorldHeritageSite | |
| original | original | U4_6C | Humanidad m | | U3_14A |
| oso m | bear | U3_9 | pausa f | break | U6_14A |
| Otavalo | Otavalo | U4_1A | peatonal | pedestrian | U8_2A |
| otoño m | autumn | U3_8B | pedir (i) | toaskfor/to order | U7_2A |
| otro/a | other | U0_2A | peine m | comb | U4_3A |
| | | | Pekín | Beijing | U3_12A |
| P | | | película f pelo m | film hair | U2_3A U4_3A |
| paciente | patient | U9_4A | pelo corto m | short hair | U5_9A |
| Pacífico m | Pacific | U3_4A | pelo largo m | longhair | U5_9A |
| padre m | father | U5_1A | pelo liso m | straight hair | U5_LEX |
| paella f | paella | U2_13A | pelo rizado m | curly hair | U5_9A |
| página f | page | U0_6 | peluquero/a | hairdresser | U9_4C |
| páginaweb f | website | U2_7B | península f | peninsula | U3_2A |
| país m | country countryside | U2_3A | Península Ibérica f | Iberian peninsula | U3_2A |
| paisaje m | word | U9_3A | pepián m | pepián | U3_4A |
| palabra f | | U1_10A | pepino m | gherkin | U7_2A |
| palacio m | palace PalmadeMallorca | U3_2A | pequeño/a | small | U3_11B U9_2B |
| PalmadeMallorca palmera f | palmtree | U4_1A U3_9 | perder (ie) perdone | tolose excuseme | U7_4A |
| pan m | bread | U7_1A | peregrinaje | pilgrimage | U3_2A |
| panblanco m | whitebread | U7_LEX | peregrino/a | pilgrim | U3_2A |
| panintegral m | wholemealbread | U7_LEX | perezoso/a | lazy | U6_9A |
| Panamá | Panama | U7_9A | perfecto/a | perfect | U7_12C |
| pantalón m | trousers | U4_3A | periódico m | newspaper | U1_LEX |
| cortos m, | | | periodista | journalist | U1_3A |
| pantalones pl | shorts | U4_3A | permitir | toallow | U3_2A |
| papelera f | bin | U0_5A | pero | but | U3_4A |
| para | for/inorderto | U2_9A | perro m | dog | U6_1A |
| paraempezar | tostart | U7_3A | personalidad f | personality | U9_7B |
| paramí | forme | U4_2B | Perú | Peru | U2_8A |
| parada de autobús f | busstop | U8_2A | pescado m | fish | U7_2A |
| paraguas m | umbrella | U9_5A | pescador/a | fisherman/fisherwoman | U8_10B |
| Paraguay | Paraguay | U3_GyC | peso m | peso | U3_3B |
| pareja f París | partner Paris | U5_LEX U1_GyC | petróleo m piano m | oil | U3_GyC |
| | | | | piano | U9_6B |
| parking m | carpark | U8_2A | picar | tograbasnack | U7_1C |
| parque m | park | U2_10B | pijama m | pyjamas | U4_13B |
| parque nacional m | nationalpark | U2_10B | piso m | flat | U8_7A |
| participar | toparticipate | U6_8A | pista de esquí f | ski slope | U3_9 |
| particular | particular | U6_8A | pizarra f | blackboard | U0_5A |
| pasaporte m | passport | U4_4A | pizza f | pizza | U1_7A |
| pasar | tospend | U2_8A | plan m | plan | U2_12A |
| pasar de largo | togoby | U9_5A | planeta m | planet | U3_7A |
| paseo m m | walk | U4_12A | planificado/a f | planned plantation | U3_11B U3_2A |
| paseo acaballo pasión f | horseriding passion | U4_12A U5_3A | plantación plantar | toplant | U9_3A |
| pasta f | pasta | U7_1C | plástico m | plastic | U8_6B |
## alphabetical GLOSSARY
| plátano m | banana | U7_5C | profesor/a | teacher | U1_3A |
|-------------------|----------------------|---------|----------------------|---------------------|---------|
| plato m | dish | U2_11A | programa | educationprogramme | |
| plato principal m | maincourse | U7_3A | educativo m | | U9_3A |
| plato único | singlecourse | U7_12A | pronto | soon | U6_11B |
| playa f | beach | U0_6 | pronunciación f | pronunciation | U2_LEX |
| plaza f | square | U3_2A | proponer (g) | tosuggest | U7_11B |
| pleno/a | full | U6_2A | proyecto m | project | U9_11A |
| plurilingüe | plurilingual | U2_3A | proyector m | projector | U0_5A |
| población f | population | U3_2A | psicólogo/a | psychologist | U1_6 |
| poblado/a | populated | U3_2A | publicidad f | advert | U1_LEX |
| poco | little | U3_8C | público/a | public | U6_14A |
| poco/a/os/as | little,few | U3_2A | pueblo m | village | U2_1A |
| podcast m | podcast | U2_LEX | puerto m | port | U8_1A |
| poder (ue) | tocan | U0_6 | pues | so | U4_9A |
| podríamos | wecould | U0_6 | pulsera f | bracelet | U4_LEX |
| poema m | poem | U5_10A | punto m | point | U3_2A |
| poesía f | poetry | U9_2B | puntual | punctual | U6_9D |
| policía | police | U1_GyC | | | |
| polideportivo m | sports centre | U8_2A | Q | | |
| polifacético/a | well-rounded | U9_12C | ¿qué? | what? | U2_12A |
| pollo m | chicken | U7_2A | que | that | U0_6 |
| poner (g) | toput | U7_4A | ¡qué bien! | that's great! | U2_6A |
| poplatino m | Latinpop | U5_4A | ¿qué desea? | whatdoyouwant? | U4_9A |
| pop-rock m | poprock | U5_4A | ¿qué día es? | whatdayisit? | U6_11A |
| popular | popular | U3_6A | ¿qué hora es? | whattimeisit? | U6_5A |
| por eso | forthatreason | U3_11B | ¿qué opinas? | whatdoyouthink? | U9_2B |
| por favor | please | U0_6 | ¿qué significa...? | whatdoes...mean? | U0_5A |
| por fin | finally | U3_1 | ¡qué suerte! | lucky you! | U9_GyC |
| porlamañana/ | inthemorning/atnight | | ¿qué tal? | howareyou? | U0_4 |
| noche | | U6_2A | ¿qué tipo de...? | whattypeof...? | U5_4A |
| ¿por qué? | why? | U2_12A | quechua m | quechua | U3_GyC |
| porque | because | U2_9C | quedar con alguien | tomeetupwithsomeone | U6_14C |
| portátil | laptop | U4_3B | quemar | toburn | U9_5A |
| portugués/esa | Portuguese | U1_GyC | querer (ie) | towant/tolove | U2_2A |
| postal f | postcard | U2_11A | queso m | cheese | U7_1A |
| postre m | dessert | U7_3A | queso fresco m | freshcheese | U7_2A |
| práctica f | practice | U6_12A | ¿quién es? | whoisit? | U1_2A |
| practicar | topractice | U2_6A | quince | fifteen | U4_13A |
| práctico/a | practical | U4_6C | Quito | Quito | U0_4A |
| precio m | price | U4_9A | | | |
| precioso/a | beautiful | U3_4A | | | |
| preferencia f | preference | U6_2A | R | | |
| preferido/a | favourite | U5_2A | radio f | radio | U2_LEX |
| preferir (ie) | toprefer | U4_GyC | rambla f | boulevard | U8_3A |
| pregunta f | question | U3_6A | raro/a | strange | U6_9A |
| preguntar | toask | U1_4B | rastro m | fleamarket | U4_1A |
| premio m | prize | U6_13A | realismo m | realism | U2_10B |
| prenda f | itemofclothing | U4_15B | recepcionista | receptionist | U9_4C |
| preparar | toprepare | U6_8A | reciclar | torecycle | U4_15B |
| primavera f | spring | U3_8B | recomendable | recommended | U7_GyC |
| primero/a | first | U3_2A | recomendación f | recommendation | U8_3A |
| primo/a | cousin | U5_1A | reconocimiento | acknowledgement | U3_2A |
| principal | main | U7_3A | redes sociales f, pl | socialmedia | U1_9B |
| probar | totry | U7_12C | refresco m | soft drink | U7_6A |
| producción f | production | U3_2A | regalo m | present | U9_CEL |
| producto m | product | U3_3B | reguetón m | Reggaeton | U5_4A |
| productor m | producer | U3_7A | relajado/a | relaxed | U9_3A |
| profesión f | profession | | | | U7_9C |
| | | U1_3D | relleno/a | filled | |
## alphabetical GLOSSARY
| remolacha f | beetroot | U7_LEX | saludar | togreet | U9_5A |
|-------------------------------|-------------------------------------|---------------|----------------------------------|---------------------------|-------------|
| reparar | torepair | U9_7A | saludo m | greeting | U0_3 |
| repetir (i) | torepeat | U0_6 | SanFrancisco | SanFrancisco | U5_2A |
| repoblar (ue) | torepopulate | U9_3A | SanSebastián | SanSebastian | U3_8A |
| República | DominicanRepublic | | sandalias f, pl | sandals | U4_3A |
| Dominicana | | U3_2B | sano/a | healthy | U6_3A |
| res f | beef | U7_LEX | Santander | Santander | U3_8A |
| reserva natural f | naturereserve | U3_11B | Santiago | Santiago | U3_2A |
| residencia f | residence | U2_12A | santuario m | sanctuary | U3_11B |
| residencial | residential | U8_11D | Sarabarri | Sarabarri | U9_11A |
| responsable | responsible | U9_4A | secador de pelo m | hair dryer | U4_3A |
| respuesta f | answer | U6_2A | seco/a | dry | U3_3B |
| restaurante m | restaurant | U1_1A | secretario/a | secretary | U1_LEX |
| restos m | remains | U3_2A | seguir (i) | tofollow | U8_5A |
| resultado m | result | U6_2A | segundamano | secondhand | U4_1B |
| reunirse | togettogether | U6_8A | segundo/a | second | U3_1 |
| revisión médica f | medicalcheck-up | U9_11A | seguridad f | safety | U8_9A |
| revista f | magazine | U2_4A | seguro/a | safe | U3_2A |
| ribera f | riverbed | U8_3A | selva f | jungle | U3_4A |
| río m | river | U3_LEX | semáforo m | traffic light | U8_LEX |
| Río de Janeiro | RiodeJaneiro | U5_14B | semana f | week | U3_4A |
| rizado/a | curly | U5_9A | seminario m | seminar | U5_1A |
| robar | tosteal | U5_2A | sencillo/a | simple | U4_2A |
| rojo/a | red | | | | |
| romántico/a | romantic | U4_6A | sentirse (ie) sentirse cansado/a | tofeel tofeel tired | U6_2A |
| ropa f | clothes | U5_15C U1_10B | sentirse con sueño | tofeel sleepy | U6_2A |
| ropa interior f | underwear | U4_3A | señor/a | man/woman | U6_2A U1_2A |
| rosa | pink | U4_2A | señor/amayor | elderlyman/woman | U5_12B |
| rosario m | rosary | U3_11B | septiembre | September | U5_8A |
| rubio/a | fair-haired | U5_9A | ser | tobe | U2_3A |
| ruidoso/a | noisy | U8_1A | ser alérgico/a | tobeallergic | U7_3B |
| ruinas f, pl | ruins | U3_4A | serie f | series | U2_3A |
| rural | rural | U9_3A | serio/a | serious | U5_LEX |
| ruso m | Russian | U2_LEX | serpiente f | snake | U3_6A |
| ruta gastronómica f | foodtour | U4_12A | servicio m | service | U8_1A |
| rutina f | routine | U6_12A | servilleta f | napkin | U7_LEX |
| | | | servir sevillano/a | toserve personfromSeville | U6_5B U8_3A |
| S | | | sí | yes | U0_6 |
| sábado m | Saturday | U2_2C | Siberia | Siberia | U3_8C |
| saber | toknow | U5_2A | siempre | always | U2_5A |
| sabor m | taste | U7_8A | siesta f | siesta | U6_13D |
| Sáhara | Sahara | U3_8C | siglo | century | U3_2A |
| sal f | salt | U3_11B | significar | tomean | U1_1B |
| salado/a | savoury | U7_9C | siguiente | next | U6_2A |
| salar m | salt flat | U3_11B | silla f | chair | U0_5A |
| salchichas f, Pl | sausages | U7_LEX | silletero/a | Silletero(Colombian | |
| salir (g) | togoout | U2_2A | similar | flower vendors) similar | U6_8A |
| salir acenar salir con amigos | togooutfordinner togooutwithfriends | U2_2C U2_2C | simpático/a | kind | U8_7A U3_4A |
| salir de noche | togooutatnight | U2_2C | sin | without | U7_6A |
| m | | | | | |
| salmón | salmon | U7_3A | situación | geographical location | |
| salsa f f | sauce | U7_LEX | geográfica f | located | U8_9A U3_2A |
| salsa brava salteado/a | spicysauce sautéed | U7_12A U7_7A | situado/a snowboard m | snowboarding | U1_1A |
| salto m | waterfall | U3_14C | sobrasada f | sobrassada | U7_2B |
## alphabetical GLOSSARY
| sobre | about | U3_6A | tenedor m | fork | U7_LEX |
|-----------------------|---------------------|--------------|--------------------------|---------------------------|--------------|
| sobre todo | aboveall | U7_6B | tener (g) (ie) | tohave | U1_4A |
| sobrino/a | nephew/niece | | tener(muchas ganas | to(really) feel likedoing | |
| sociable | sociable | U5_1A U5_3C | | something | U3_4A |
| sol m | sun | U1_1A | tener intoleranciaa | tohaveanintolerance | U7_3B |
| solar | sun | U4_3A | tenerque | tohaveto | U4_4A |
| soledad f | solitude | U2_1A | Tenerife | Tenerife | U3_8A |
| solo | alone | U5_8A | tengo...años | Iam...yearsold | U1_3A |
| soltero/a | single | U5_7C | tenis m | tennis | U2_LEX |
| sopa f | soup | U7_3A | tequila m | tequila | U3_6A |
| sostenible | sustainable | U4_15B | ternera f | beef/veal | U7_LEX |
| soy | Iam | U1_3A | terminado/a | finished | U2_4B |
| soyyo | It'sme | U1_2A | texto m | text | U2_LEX |
| su | its | U3_1 | tiempo m | time/weather | U3_2A |
| sucio/a | dirty | U8_4A | tienda f | shop | U1_LEX |
| sueño m | sleepy | U6_2A | tienda de | antiquesshop | |
| suficiente | enough | U7_7A | antigüedades f | | U8_8A |
| suizo/a | Swiss | U1_6 | tienda de muebles f | furnitureshop | U8_8A |
| supermercado m | supermarket | U1_LEX | ¿tienes correo | doyouhaveanemailaddress? | |
| sur m | south | U3_3B | electrónico? | doyouhaveamobilephone? | U1_4B U1_4B |
| sureste m | southeast | U3_2A | ¿tienes móvil? tímido/a | | U5_3C |
| surf m | surfing | U4_12A | | shy | |
| suroeste m | southwest | U3_LEX | tío/a | uncle/aunt | U5_7A |
| sushi m | sushi | U1_7A | típico/a | typical | U2_11A |
| | | | tipo | type | U3_GyC |
| T | | | tirante m toalla f | strap towel | U4_2A U4_3A |
| tableta f | tablet | U0_5A | toalla de playa f | beachtowel | U4_3A |
| taco m | taco | U7_9A | tocar la guitarra | toplaytheguitar | U2_LEX |
| Tacuarembó | Tacuarembo | U3_13A | todo | all/every | U2_6A |
| Tailandia | Thailand | U3_12C | todoelmundo | everybody | U2_3A |
| talla f | size | U4_2A | todo recto | straighton | U8_5A |
| taller m | workshop | U1_3C | todos los días | everyday | U3_4A |
| tamal m | tamale | U3_4A | todos/as juntos/as | alltogether | U6_11B |
| también | too | U1_5A | tomaralgo | tohaveadrink | U6_2A |
| tampoco | either | U5_5A | tomarcafé | tohaveacoffee | U6_9D |
| tango m | tango | U1_7 | tomarel sol | tosunbathe | U4_4A |
| Tanzania | Tanzania | U3_10B | tomarunadecisión | totakeadecision | U9_3A |
| tapa f | tapa | U2_13A | tomate m | tomato | U7_2A |
| tapón m | earplugs | U4_3B | tonelada f | tonne | U3_11B |
| tarde | afternoon | U0_6 | top m | top | U4_2A |
| tarde-noche f | evening | U6_2A | torre f | tower | U3_9 |
| Tarifa | Tarifa | U3_8A | tortilla de patatas f | Spanishomelette | U7_1A |
| tarjeta f | card | U4_3A | trabajador/a | hard-working | U6_13A |
| tarjeta de crédito | credit card | U4_3A | trabajo como... | Iworkasa... | U1_GyC |
| tarta f | cake | U7_5C | trabajo de ... | Iworkasa... | U1_3A |
| taxi m | taxi | U1_1A | tradición f | tradition | U6_11A |
| taza f | mug | U7_LEX | tradicional | traditional | U6_8A |
| té m | tea | U5_GyC | traductor/a | translator | U1_3E |
| teatro | theatre | U2_2A | tráfico m | traffic | U8_4A |
| m tejido m | material/cloth | U4_2A | traje tradicional m | traditionalcostume | U6_8A |
| tela f | fabric | U9_10B | | | U5_15C |
| teleférico m | cable car telephone | U3_14C U1_4A | tranquilo/a transporte m | quiet transport | U1_LEX |
| teléfono m templado/a | mild | | transporte | public transport | |
| | | U3_3B | público m | | U6_14A |
| templo m | temple | U3_4A | tren m | train | U8_LEX |
| temporada f temprano | seasonal early | U7_3A | trigo m trompeta | wheat | U7_LEX U9_7A |
| | | U6_2A | f | trumpet | |
## alphabetical GLOSSARY
<!-- image -->
| tropical | tropical | U3_5A | viaje m | trip | U1_LEX |
|-----------------------|-------------------------------|--------------|---------------------------|----------------------------|--------------------------|
| tu | | | | | |
| | your | U0_1A | viajero/a | traveller | U3_2A |
| tú | you | U4_14A | vida f | life | U2_1A |
| turismo m | tourism | U2_3A | vida nocturna f | night-life | U2_1A |
| turista | tourist | U2_6A | videojuego m | videogame | U2_2A |
| turístico/a | tourist | U3_2A | viejo/a | old | U4_GyC |
| | | | viento m | wind | U3_8A |
| | | | viernes m vinilo m vino m | Friday record | U6_9B U5_4A U3_2A U7_LEX |
| U ubicación f | location | U3_2A | | wine | |
| últimamente | recently | U5_4A | vino blanco m | whitewine | |
| último/a | last | U2_5A U5_3A | vino rosado m | roséwine | U7_LEX U7_LEX |
| ¡un abrazo! | ahug! | U5_3C | vino tinto m | redwine | U5_10A |
| unpoco | alittle | | violín m | violin | |
| único/a universidad f | only university | U5_7C U1_3C | visitado/a visitar | visited tovisit | U3_2A U2_2A |
| universitario/a | Universitystudent universe | U3_2A | viudo/a | widower/widow | U5_7C |
| universo m | | U2_1A | vivienda f | home | U8_7A |
| unos/as | some | U3_4A | vivir | tolive | U2_6A |
| Uruguay | Uruguay | U0_4A | volcán m | volcano | U3_5C |
| usado/a | used | U4_2A | voluntario/a | volunteer | U9_12B |
| usar | touse | U4_GyC | volver a(hacer algo | togobackto(doingsomething) | U9_3A |
| usted | you(formal) | | | you(singular) | U1_5A |
| Uyuni | | U1_5A | vos | you(plural) | |
| | Uyuni | U3_11B | vosotros/as | | U1_5A |
| V | | | Y | | |
| vacaciones f, pl | holidays | U1_10B | y | and | U0_1A |
| vainilla f | vanilla | U7_5A | y cuarto | quarterpast | U6_4A |
| vale | OK | U0_6 | ymedia | halfpast | U6_4A |
| valer (g) | tobeworth | U9_3A | ya | already | U6_5A |
| valle m | valley | U3_2A | Yalta | Yalta | U0_4A |
| vallenato m | Vallenato (popular | | yo | I | U0_4C |
| vapor m | Colombianfolkmusic) steam | U2_10B U7_3A | yoga m yogur de sabores m | yoga flavouredyoghurt | U1_LEX U7_8A |
| vaqueros m,pl | jeans | U4_2A | yogur natural m | plainyoghurt | U7_3A |
| varios/as | several | | | | |
| | | U3_2A | | | |
| vaso m | cup | U7_LEX | | | |
| vegano/a | vegan | U7_3A | Z | | |
| vegetal | vegetable | U7_2A | zanahoria f | carrot | U7_7B |
| vendedor/a | salesperson | U9_4C | zapatillas | trainers | |
| vender | tosell | U4_1A | deportivas f, pl | | U4_3A |
| venezolano/a | Venezuelan | U1_6 | zapato m | shoe | U4_1A U0_4A |
| Venezuela venido/a | Venezuela comefrom | U0_4A U8_7A | Zaragoza zona f | Zaragoza zone | U3_2A |
| venir (g) (ie) | tocome | U1_5A | zona peatonal | pedestrianarea | U8_2A |
| ventana f | window | U0_6 | f | | |
| | | | zona verde f | greenspace | U8_4A |
| ver ver la televisión | tosee/watch towatchtelevision | U2_2A | zumba f zumo m | zumba juice | U1_6 |
| verano m | summer | U3_8B | | | |
| ¿verdad? | right? | U3_9 | | | |
| | | U9_2B | | | |
| verdad f | true | U4_6A | | | |
| verde verdura f | green vegetable | U7_2A | | | |
| vestido m | dress | U4_7C | | | |
| vestirse (i) | togetdressed | U6_8A | | | |
| vez f | time | U2_3A | | | |
| viajar | totravel | U2_3A | | | |
<!-- image -->

707
exported_phases.csv Normal file
View file

@ -0,0 +1,707 @@
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
1 1 aparecer to appear verb U3_6A General
2 2 apasionada passionate phrase U5_15C General
3 3 apellido surname noun U1_4A General
4 4 aprender to learn phrase U2_2C General
5 5 aproximadamente approximately phrase U3_2A General
6 6 apuntar to note down phrase U9_5A General
7 7 aquí here phrase U3_2A General
8 8 aquí tiene here you go phrase U4_GyC General
9 9 árabe Arabic noun U2_LEX General
10 10 archivo file noun U9_7A General
11 11 área area noun U3_2A General
12 12 arena sand noun U3_4A General
13 13 arepa arepa noun U7_9A General
14 14 argentina Argentinian phrase U1_3A General
15 15 árido/a arid phrase U3_LEX General
16 16 arma weapon noun U3_2A General
17 17 arroz rice noun U7_LEX General
18 18 arquitecta architect phrase U1_6 General
19 19 arquitectura architecture noun U1_3A General
20 20 arte art noun U1_1A General
21 21 artesanal artisanal phrase U4_1A General
22 22 artesanía f artista crafts artist phrase U4_1A General
23 23 asado/a roasted phrase U7_7A General
24 24 Asia Asia phrase U3_LEX General
25 25 aspecto físico physical feature noun U5_14A General
26 26 aspecto aspect noun U3_11B General
27 27 Asunción Asuncion phrase U3_13A General
28 28 atención takenote phrase U4_14A General
29 29 atender to lookafter verb U9_3A General
30 30 atento/a attentive phrase U9_5A General
31 31 atlántico/a Atlantic phrase U3_6A General
32 32 atractivo/a attractive phrase U8_7A General
33 33 atraído/a attracted phrase U9_3A General
34 34 atún tuna noun U7_2A General
35 35 autobús bus noun U3_4A General
36 36 automático/a automatic phrase U8_2A General
37 37 autónomo/a self-employed phrase U3_2A General
38 38 avenida avenue noun U8_3A General
39 39 aventurero/a adventurous phrase U5_3C General
40 40 avión plane noun U6_GyC General
41 41 azúcar m azul sugar blue phrase U7_6A U4_2A General
42 42 azul claro light blue phrase U4_13A General
43 43 bailar to dance phrase U2_2C General
44 44 bailarín/ina dancer phrase U5_LEX General
45 45 baile dance noun U6_10A General
46 46 bajito/a short phrase U5_9A General
47 47 bajo groundfloor noun U9_1A General
48 48 balalaica balalaika noun U1_7A General
49 49 banco bank noun U1_LEX General
50 50 bandera flag noun U2_10B General
51 51 bañador swimsuit noun U4_3A General
52 52 bañarse to goforaswim phrase U9_GyC General
53 53 Cádiz Cadiz phrase U3_11B General
54 54 café coffee noun U3_2A General
55 55 café con leche coffeewithmilk noun U7_6A General
56 56 café solo espresso noun U7_4C General
57 57 cafetal coffee plantation noun U3_2A General
58 58 cajero automático cashmachine noun U8_2A General
59 59 calabacín courgette noun U7_LEX General
60 60 calabaza pumpkin noun U7_LEX General
61 61 calamar squid noun U7_2A General
62 62 calcetín sock noun U4_13B General
63 63 calidad quality noun U3_2A General
64 64 cálido/a warm phrase U3_LEX General
65 65 caliente hot phrase U6_11B General
66 66 calle street noun U1_1A General
67 67 calle peatonal pedestrian street noun U8_3A General
68 68 calmado/a calm phrase U5_15C General
69 69 calor hot noun U3_4A General
70 70 calvo/a bald phrase U5_LEX General
71 71 camarera waitress phrase U1_4A General
72 72 camello camel noun U3_9 General
73 73 camino road/journey noun U3_1 General
74 74 Caminode Way of Saint James phrase U1 General
75 75 Santiago m camisa shirt noun U3_2A U4_2A General
76 76 camiseta t-shirt noun U4_2A General
77 77 campamento camping noun U5_8A General
78 78 campo countryside noun U3_2A General
79 79 Canadá Canada phrase U1_3B General
80 80 canadiense Canadian phrase U1_3A General
81 81 canal de televisión television channel noun U1_3C General
82 82 canción song noun U2_11B General
83 83 canela cinnamon noun U7_8A General
84 84 cansado/a tired phrase U6_2A General
85 85 cantante singer phrase U5_4A General
86 86 cantar to sing phrase U5_5A General
87 87 cantidad amount noun U3_6C General
88 88 canto song noun U6_LEX General
89 89 caña smalldraughtbeer noun U2_13A General
90 90 capital capital noun U3_1 General
91 91 Caracas Caracas phrase U3_GyC General
92 92 carácter personality noun U5_14A General
93 93 característica characteristics noun U7_12A General
94 94 cargador de móvil phonecharger noun U4_3A General
95 95 Caribe Caribbean phrase U3_8C General
96 96 cariñoso/a caring phrase U9_12C General
97 97 carnaval carnival noun U3_11B General
98 98 carne meat noun U3_5C General
99 99 carné de conducir driving license noun U4_4A General
100 100 carné deidentidad IDcard noun U4_3A General
101 101 caro/a expensive phrase U4_6A General
102 102 carta menu noun U7_GyC General
103 103 Cartagena de Indias CartagenadeIndias phrase U2_10B General
104 104 casa f casa rural house houseinthecountry noun U1_8C General
105 105 casado/a casarse married togetmarried phrase U5_7C U9_GyC General
106 106 casco antiguo oldtown noun U3_2A General
107 107 clásico/a classic phrase U4_6C General
108 108 clave key noun U6_12A General
109 109 cliente/a customer phrase U4_9A General
110 110 clima climate noun U3_3B General
111 111 cobre copper noun U3_3B General
112 112 coche car noun U2_4A General
113 113 cocido stew noun U7_10A General
114 114 cocido/a baked phrase U7_7A General
115 115 cocido madrileño Madridstew noun U7_12A General
116 116 cocidomontañés Cantabrianbeanstew noun U7_10A General
117 117 cocinar to cook phrase U2_2A General
118 118 cocinero/a chef phrase U1_3A General
119 119 colocar to place phrase U4_14A General
120 120 Colombia Colombia phrase U2_10B General
121 121 colombiano/a Colombian phrase U1_5A General
122 122 colonia colony noun U3_11B General
123 123 ColoniaTovar ColoniaTovar phrase U3_11B General
124 124 colonial colonial phrase U3_2A General
125 125 color colour noun U2_10B General
126 126 comer to eat phrase U3_5C General
127 127 comercial sales representative phrase U1_LEX General
128 128 comerciante shopkeeper phrase U9_11A General
129 129 comilón/ona foodlover phrase U6_13A General
130 130 como like phrase U3_2A General
131 131 cómo how phrase U3_6A General
132 132 ¿cómo andas? how are you doing? phrase U1_2A General
133 133 ¿cómoeres? whatareyoulike? phrase U6_2A General
134 134 ¿cómoestás? howareyou? phrase U0_3 General
135 135 ¿cómolotomas? howdoyoutakeit? phrase U7_6B General
136 136 ¿cómosedice...? howdoyousay...? phrase U0_5A General
137 137 ¿cómoseescribe ...? howdoyouspell...? phrase U0_6 General
138 138 ¿cómose pronuncia...? howdoyoupronounce...? phrase U0_5A General
139 139 ¿cómotellamas? whatisyourname? phrase U0_1A General
140 140 comodidad comfort noun U1 General
141 141 cómodo/a comfortable phrase U9_3A U4_2A General
142 142 compañero/a flatmate phrase U1 General
143 143 compañero/a de trabajo workcolleague phrase U1 General
144 144 compartir to share phrase U2_3A U6_12A General
145 145 competición competition noun U9_10B General
146 146 compi flatmate (colloq.) phrase U9_7A General
147 147 completamente completely noun U3_11B General
148 148 composición compositor/a composition phrase U9_6B General
149 149 comprar composer phrase U5_LEX U4_9A General
150 150 compras shopping noun U2_2A General
151 151 comprender to understand engagement phrase U2_6A General
152 152 compromiso m común common phrase U6_2A U2_3A General
153 153 comunicado/a comunicarse communicated phrase U8_1A General
154 154 comunicativo/a talkative phrase U9_12C General
155 155 comunidad autonomouscommunity phrase U1 General
156 156 ¿cuánto cuesta? howmuchdoesitcost? phrase U4_9A General
157 157 ¿cuánto es? howmuchisit? phrase U7_4A General
158 158 ¿cuánto/a/os/as? howmuch/howmany? phrase U3_6A General
159 159 ¿cuántos años howoldareyou? phrase U1 General
160 160 tienes? cuatro four phrase U1_4B U6_11B General
161 161 Cuba Cuba phrase U0_4A General
162 162 cubano/a Cuban phrase U1_6 General
163 163 cuchara spoon noun U7_LEX General
164 164 cucharilla teaspoon noun U7_LEX General
165 165 cuchillo knife noun U7_LEX General
166 166 cuenta bill noun U7_4A General
167 167 cuidar to takecareof phrase U6_3A General
168 168 cultural cultural phrase U8_LEX General
169 169 cumpleaños birthday noun U4_4C General
170 170 curso course noun U2_2A General
171 171 cuy Guineapig noun U3_GyC General
172 172 dar clases to giveclasses phrase U9_11C General
173 173 darse cuenta to realise phrase U9_5A General
174 174 de of phrase U1_1A General
175 175 de acuerdo all right phrase U7_6B General
176 176 de cuadros check phrase U4_5A General
177 177 ¿de dóndeeres? where are you from? phrase U1_4B General
178 178 de estilo colonial Colonial style phrase U8_11D General
179 179 de fuera fromoutside/foreign phrase U9_11A General
180 180 de primero for firstcourse phrase U7_4A General
181 181 de rayas stripy phrase U4_2A General
182 182 de segundo forsecondcourse phrase U7_4A General
183 183 de todas partes from everywhere phrase U3_2A General
184 184 de valor valuable phrase U9_8A General
185 185 decidir to decide phrase U4_14A General
186 186 decir to say verb U2_3A General
187 187 decisión decision noun U9_3A General
188 188 declarado/a declared phrase U3_14A General
189 189 dedicar tiempo to spendtime(onsomething) phrase U6_2A General
190 190 defecto weakness/defect noun U9_4A General
191 191 definir to define phrase U9_5A General
192 192 dejar to leave phrase U9_3A General
193 193 dejarse algo to forgetsomething phrase U9_5A General
194 194 del tiempo atroomtemperature phrase U7_6A General
195 195 delgado/a thin phrase U5_LEX General
196 196 demasiado/a to omuch phrase U8_3A General
197 197 deporte m deportista sport athlete phrase U3_11B General
198 198 derecha right noun U8_5A General
199 199 desayunar to havebreakfast phrase U6_2A General
200 200 descendiente desconectar descendent todisconnect phrase U3_11B U6_12A General
201 201 desde since/from phrase U3_2A General
202 202 desde hace since phrase U9_3A General
203 203 desear to wantsomething phrase U4_9A General
204 204 desfile parade noun U6_8A General
205 205 elegante elegant phrase U4_2A General
206 206 elegido/a chosen phrase U5_14A General
207 207 elegir to choose verb U9_2B General
208 208 emblemático/a iconic phrase U8_7A General
209 209 embutido curedmeat noun U7_2A General
210 210 empanada empanada noun U3_3B General
211 211 empezar to start phrase U6_5B General
212 212 empleado/a employee phrase U4_13A General
213 213 emprendedor/a enterprising phrase U9_4A General
214 214 empresa company noun U1_LEX General
215 215 empresade telecommunicationscompany phrase U1_LEX General
216 216 empresade transportcompany phrase U1_LEX General
217 217 en in/on phrase U0_6 General
218 218 encambio ontheotherhand phrase U8_9C General
219 219 enforma inshape phrase U6_2A General
220 220 enpunto o'clock phrase U6_GyC General
221 221 ¿en quétrabajas? whatdoyoudoforaliving? phrase U1_4B General
222 222 entodo entirely phrase U3_5A General
223 223 enventa for sale phrase U9_3A General
224 224 enamorarsea to fall in love at first sight phrase U9_8A General
225 225 encantar to love phrase U5_3A General
226 226 encanto charm noun U8_LEX General
227 227 enchilada enchilada noun U3_6A General
228 228 energía energy noun U6_2A General
229 229 enfermería nursing noun U9_12B General
230 230 enfermero/a nurse phrase U1_LEX General
231 231 enfermo/a ill phrase U9_11A General
232 232 ensalada salad noun U7_1A General
233 233 ensalada mixta mixedsalad noun U7_3A General
234 234 enseguida comingrightup phrase U1 General
235 235 entrante starter noun U7_12C General
236 236 entresemana duringtheweek phrase U6_2A General
237 237 equipaje luggage noun U9_7C General
238 238 equipo team noun U3_5A General
239 239 equivocarse to bewrongabout phrase U9_5A General
240 240 escolar school phrase U4_13A General
241 241 escribir to write phrase U5_3A General
242 242 escuchar to listento phrase U2_2A General
243 243 escuela school noun U1_1A General
244 244 escultura sculpture noun U2_10B General
245 245 ese/a this phrase U0_4C General
246 246 España Spain phrase U0_4A General
247 247 especial special phrase U4_15B General
248 248 especializado/a specialised phrase U7_6A General
249 249 espectacular spectacular phrase U9_3A General
250 250 esperar to wait phrase U5_3A General
251 251 espinaca spinach noun U7_3A General
252 252 esquí skiing noun U1_1A General
253 253 esquiar to ski phrase U9_6C General
254 254 esquina corner noun U8_5A General
255 255 establecimiento establishment noun U7_GyC General
256 256 estación de metro metrostation phrase U8_2A General
257 257 final end noun U3_2A General
258 258 físico/a physical phrase U5_14A General
259 259 flamenco flamenco noun U1_7A General
260 260 flan eggcustard noun U7_3A General
261 261 flor flower noun U6_8A General
262 262 forma shape noun U3_11B General
263 263 foto photo noun U2_LEX General
264 264 fotografía photography noun U5_3A General
265 265 fotógrafo/a photographer phrase U9_LEX General
266 266 francés/esa French phrase U1_3A General
267 267 frecuencia frequency noun U6_2A General
268 268 fresa strawberry noun U7_5C General
269 269 fresco/a fresh phrase U7_2A General
270 270 frijoles beans noun U7_LEX General
271 271 frío/a cold phrase U3_3B General
272 272 frito/a fried phrase U7_3A General
273 273 fruta fruit noun U7_3A General
274 274 frutadetemporada seasonal fruit phrase U7_3A General
275 275 frutos secos nuts noun U7_5C General
276 276 fuera outside phrase U6_9D General
277 277 fumar to smoke phrase U6_3A General
278 278 fundado/a founded phrase U3_2A General
279 279 fundamental fundamental phrase U7_7A General
280 280 fútbol football noun U2_LEX General
281 281 futuro future noun U2_12A General
282 282 gafas de sol sunglasses noun U4_3A General
283 283 galería shoppingcentre noun U4_1A General
284 284 Galicia Galicia phrase U3_2A General
285 285 galleta biscuit noun U6_11B General
286 286 gamba prawn noun U7_1A General
287 287 ganar to win phrase U3_6A General
288 288 ganarunpremio to winaprize phrase U9_8A General
289 289 garbanzos chickpeas noun U7_LEX General
290 290 gas petrol noun U7_4A General
291 291 gasolinera petrol station noun U8_LEX General
292 292 gasto expense noun U9_2B General
293 293 gastronómico/a culinary phrase U4_12A General
294 294 gazpacho m gazpacho noun U7_4A General
295 295 geldebaño showergel phrase U4_3A General
296 296 generoso/a generous phrase U9_4A General
297 297 gente people noun U2_13B General
298 298 geográfico/a geographical phrase U8_9A General
299 299 geólogo/a geology phrase U9_2B General
300 300 gimnasio gym noun U1_LEX General
301 301 ginecólogo/a gynaecologist phrase U1_6 General
302 302 girar to turn phrase U8_6C General
303 303 girasol sunflower noun U7_LEX General
304 304 golf golf noun U5_GyC General
305 305 gordo/a fat phrase U5_LEX General
306 306 gorra cap noun U4_5A General
307 307 gorro m Gotemburgo hat Gothenburg phrase U4_LEX U3_8B General
308 308 gracias thankyou phrase U0_6 General
309 309 horario schedule phrase U6_2A General
310 310 horno oven noun U7_3A General
311 311 hortaliza vegetable noun U7_2A General
312 312 hospital hospital noun U1_LEX General
313 313 hospitalidad hospitality noun U8_9A General
314 314 hostelero/a hotelier phrase U9_11A General
315 315 hotel hotel noun U1_1A General
316 316 hoy to day phrase U3_4A General
317 317 huerto vegetablegarden noun U9_3A General
318 318 huevo egg noun U7_2A General
319 319 humanidad humanity noun U3_2A General
320 320 húmedo/a humid phrase U3_4A General
321 321 humor mood noun U6_2A General
322 322 humus hummus noun U7_2C General
323 323 idea Iberian noun U3_2A General
324 324 ideal idea ideal phrase U2_5A U1_1A General
325 325 infusión tea noun U3_GyC General
326 326 ingeniero/a engineer phrase U1_6 General
327 327 Inglaterra England phrase U3_8C General
328 328 insociable unsociable phrase U9_LEX General
329 329 instrumento musicalinstrument phrase U1 General
330 330 intercambio exchange noun U2_LEX General
331 331 m to urist interest phrase U3_2A General
332 332 interesante interesting phrase U2_5A General
333 333 interior interior noun U4_3A General
334 334 intermediario/a intermediary phrase U9_11A General
335 335 internacional international phrase U1 General
336 336 internet internet phrase U2_11A General
337 337 invierno winter noun U3_8B General
338 338 invitado/a guest phrase U5_14B General
339 339 irdecompras to goshopping phrase U2_2A General
340 340 ir de viaje to gotravelling phrase U4_4A General
341 341 idioma iglesia important late incredible independent Indian infographic information noun U8_3A General
342 342 ibérico/a identidad impatient independence noun U9_4A U3_4A General
343 343 f impaciente church phrase U1 General
344 344 levantarse to getup phrase U6_1A General
345 345 libro book noun U0_5A General
346 346 lila purple phrase U4_LEX General
347 347 Lima Lima phrase U8_7E General
348 348 limón lemon noun U7_6A General
349 349 limpieza cleanliness noun U8_9A General
350 350 limpio/a clean phrase U8_LEX General
351 351 lindo/a cute phrase U3_6A General
352 352 lingüista linguist phrase U1_6 General
353 353 liso/a straight phrase U5_LEX General
354 354 lista list noun U9_5A General
355 355 literatura literature noun U2_1A General
356 356 llamado/a called phrase U3_2A General
357 357 llamarse to becalled phrase U3_2A General
358 358 llave key noun U9_2B General
359 359 llegar to arrive phrase U3_2A General
360 360 llevar to wear phrase U4_2A General
361 361 llevar to have phrase U7_2A General
362 362 llevarse to take phrase U4_9A General
363 363 llover to rain verb U3_4A General
364 364 lluvioso/a rainy phrase U3_6A General
365 365 loquemás themost phrase U8_4D General
366 366 loquemenos theleast phrase U8_4D General
367 367 lo siento Londres I'm sorry London phrase U0_6 U5_2B General
368 368 luego later phrase U3_4A General
369 369 lugar place noun U1_4B General
370 370 lunes Monday noun U3_4A General
371 371 luz light noun U5_2A General
372 372 macarrones macaroni noun U7_GyC General
373 373 madre mother noun U5_2A General
374 374 Madrid Madrid phrase U2_6A General
375 375 madrileño/a personfromMadrid phrase U7_12A General
376 376 madrugar to getupearly phrase U6_2A General
377 377 maestro/a teacher phrase U9_4C General
378 378 mágico/a magical phrase U2_10B General
379 379 maíz corn noun U2_10B General
380 380 malcomunicado poorlyconnected phrase U8_1A General
381 381 Málaga Malaga phrase U1_1A General
382 382 maleta suitcase Majorca noun U4_6C General
383 383 manera way phrase U7_7A General
384 384 mangacorta short sleeve noun U4_2A General
385 385 mangalarga f maniático/a longsleeve phrase U4_2A General
386 386 mano hand noun U4_1B General
387 387 manzana apple noun U7_LEX General
388 388 mañana morning phrase U3_4A General
389 389 mapa m map worldmap noun U3_1 General
390 390 mapamundi mar m,f sea phrase U3_1 U5_3A General
391 391 f marido brand husband noun U4_2A U5_7A General
392 392 marinero/a sailor phrase U1 General
393 393 miles thousands phrase U3_2A General
394 394 millón million phrase U3_2A General
395 395 minuto minute noun U6_2A General
396 396 mire look phrase U4_9A General
397 397 mismo/a same phrase U3_2A General
398 398 mixto/a mixed phrase U7_3A General
399 399 mochila backpack noun U0_5A General
400 400 moda fashion noun U1_3A General
401 401 modelo model phrase U1_GyC General
402 402 moderno/a modern phrase U4_6C General
403 403 modo way noun U3_6C General
404 404 molino de viento windmill noun U3_9 General
405 405 momento moment noun U6_1A General
406 406 moneda currency noun U3_2A General
407 407 montaña mountain noun U3_1 General
408 408 montañés/esa mountain phrase U7_10A General
409 409 montar to setup phrase U9_3A General
410 410 Montevideo Montevideo phrase U3_13A General
411 411 monumento landmark noun U3_2A General
412 412 moreno/a dark-haired phrase U5_9A General
413 413 mostaza mustard noun U7_2A General
414 414 móvil mobile noun U1_4B General
415 415 mucho muchos/as alot many/alotof phrase U2_11B U2_7B General
416 416 mueble furniture noun U8_8A General
417 417 mujer woman noun U4_2A General
418 418 mundo world noun U2_3A General
419 419 unos pódcast some podcasts phrase U2_9A-Extra General
420 420 museo museum noun U1_1A General
421 421 música music noun U2_1A General
422 422 música clásica classicalmusic noun U5_4A General
423 423 música electrónica electronicmusic noun U5_4A General
424 424 música envivo livemusic noun U5_6A General
425 425 música indiemusic phrase U1 General
426 426 músicapop popmusic noun U4_10A General
427 427 música soul soulmusic noun U5_4A General
428 428 musical musical phrase U3_GyC General
429 429 músico/a musician phrase U5_2A General
430 430 muy very phrase U2_5A General
431 431 O O phrase O General
432 432 N N phrase N General
433 433 nacer to beborn verb U3_GyC General
434 434 nachos nachos noun U7_1A General
435 435 nacimiento birth noun U5_2A General
436 436 nacional nacionalidad national nationality noun U2_10B U1_3D General
437 437 nadar to swim phrase U1 General
438 438 naranja orange noun U7_LEX General
439 439 naranja nativo/a orange native phrase U4_LEX U2_LEX General
440 440 natural natural phrase U2_3A General
441 441 naturaleza f Navarra nature Navarre phrase U2_1A U9_11A General
442 442 Navidad Christmas noun U6_11B General
443 443 olvidar to forget phrase U9_5A General
444 444 ópera opera noun U5_5A General
445 445 opinar to haveanopinionon phrase U9_2B General
446 446 orden order noun U6_11A General
447 447 ordenador computer noun U0_5A General
448 448 ordenadorportátil laptop noun U4_3B General
449 449 organizado/a organised phrase U6_9A General
450 450 organizar to organise phrase U9_3A General
451 451 origen origin noun U1_4B General
452 452 original original phrase U4_6C General
453 453 oso bear noun U3_9 General
454 454 Otavalo Otavalo phrase U4_1A General
455 455 otoño autumn noun U3_8B General
456 456 otro/a other phrase U0_2A General
457 457 paciente patient phrase U9_4A General
458 458 Pacífico Pacific noun U3_4A General
459 459 padre father noun U5_1A General
460 460 paella paella noun U2_13A General
461 461 página page noun U0_6 General
462 462 páginaweb website noun U2_7B General
463 463 país country countryside noun U2_3A General
464 464 paisaje word noun U9_3A General
465 465 palacio palace PalmadeMallorca noun U3_2A General
466 466 PalmadeMallorca palmera palmtree noun U4_1A U3_9 General
467 467 pan bread noun U7_1A General
468 468 panblanco whitebread noun U7_LEX General
469 469 Estoy subiendo las escaleras I am going up the stairs phrase M1-phrase General
470 470 Panamá Panama phrase U7_9A General
471 471 pantalón trousers noun U4_3A General
472 472 pantalones shorts noun U4_3A General
473 473 papelera bin noun U0_5A General
474 474 para for/inorderto phrase U2_9A General
475 475 paraempezar to start phrase U7_3A General
476 476 paramí forme phrase U4_2B General
477 477 parada de autobús busstop noun U8_2A General
478 478 paraguas umbrella noun U9_5A General
479 479 Paraguay Paraguay phrase U3_GyC General
480 480 pareja f París partner Paris phrase U5_LEX U1_GyC General
481 481 parking carpark noun U8_2A General
482 482 parque park noun U2_10B General
483 483 parque nacional nationalpark noun U2_10B General
484 484 participar to participate phrase U6_8A General
485 485 particular particular phrase U6_8A General
486 486 pasaporte passport noun U4_4A General
487 487 pasar to spend phrase U2_8A General
488 488 pasar de largo to goby phrase U9_5A General
489 489 paseo m walk noun U4_12A General
490 490 paseo acaballo pasión horseriding passion noun U4_12A U5_3A General
491 491 pasta pasta noun U7_1C General
492 492 plato dish noun U2_11A General
493 493 plato principal maincourse noun U7_3A General
494 494 plato único singlecourse phrase U7_12A General
495 495 playa beach noun U0_6 General
496 496 plaza square noun U3_2A General
497 497 pleno/a full phrase U6_2A General
498 498 plurilingüe plurilingual phrase U2_3A General
499 499 población population noun U3_2A General
500 500 poblado/a populated phrase U3_2A General
501 501 poco little phrase U3_8C General
502 502 poco/a/os/as little,few phrase U3_2A General
503 503 podcast podcast noun U2_LEX General
504 504 poder to can verb U0_6 General
505 505 podríamos wecould phrase U0_6 General
506 506 poema poem noun U5_10A General
507 507 poesía poetry noun U9_2B General
508 508 policía police phrase U1_GyC General
509 509 polideportivo sports centre noun U8_2A General
510 510 polifacético/a well-rounded phrase U9_12C General
511 511 pollo chicken noun U7_2A General
512 512 poner to put verb U7_4A General
513 513 poplatino Latinpop noun U5_4A General
514 514 pop-rock poprock noun U5_4A General
515 515 popular popular phrase U3_6A General
516 516 por eso forthatreason phrase U3_11B General
517 517 por favor please phrase U0_6 General
518 518 por fin finally phrase U3_1 General
519 519 porlamañana/ inthemorning/atnight phrase U1 General
520 520 ¿por qué? why? phrase U2_12A General
521 521 porque because phrase U2_9C General
522 522 portátil laptop phrase U4_3B General
523 523 portugués/esa Portuguese phrase U1_GyC General
524 524 postal postcard noun U2_11A General
525 525 postre dessert noun U7_3A General
526 526 práctica practice noun U6_12A General
527 527 practicar to practice phrase U2_6A General
528 528 práctico/a practical phrase U4_6C General
529 529 precio price noun U4_9A General
530 530 precioso/a beautiful phrase U3_4A General
531 531 preferencia preference noun U6_2A General
532 532 preferido/a favourite phrase U5_2A General
533 533 preferir to prefer verb U4_GyC General
534 534 pregunta question noun U3_6A General
535 535 preguntar to ask phrase U1_4B General
536 536 premio prize noun U6_13A General
537 537 prenda itemofclothing noun U4_15B General
538 538 preparar to prepare phrase U6_8A General
539 539 primavera spring noun U3_8B General
540 540 primero/a first phrase U3_2A General
541 541 primo/a cousin phrase U5_1A General
542 542 principal main phrase U7_3A General
543 543 probar to try phrase U7_12C General
544 544 producción production noun U3_2A General
545 545 producto product noun U3_3B General
546 546 productor producer noun U3_7A General
547 547 profesión profession noun U1 General
548 548 reparar to repair phrase U9_7A General
549 549 repetir to repeat verb U0_6 General
550 550 repoblar to repopulate verb U9_3A General
551 551 República DominicanRepublic phrase U1 General
552 552 res beef noun U7_LEX General
553 553 reserva natural naturereserve noun U3_11B General
554 554 residencia residence noun U2_12A General
555 555 residencial residential phrase U8_11D General
556 556 responsable responsible phrase U9_4A General
557 557 respuesta answer noun U6_2A General
558 558 restaurante restaurant noun U1_1A General
559 559 restos remains noun U3_2A General
560 560 resultado result noun U6_2A General
561 561 reunirse to gettogether phrase U6_8A General
562 562 revisión médica medicalcheck-up noun U9_11A General
563 563 revista magazine noun U2_4A General
564 564 ribera riverbed noun U8_3A General
565 565 río river noun U3_LEX General
566 566 Río de Janeiro RiodeJaneiro phrase U5_14B General
567 567 rizado/a curly phrase U5_9A General
568 568 robar to steal phrase U5_2A General
569 569 rojo/a red phrase U1 General
570 570 romántico/a romantic phrase U4_6A General
571 571 ropa clothes noun U5_15C U1_10B General
572 572 ropa interior underwear noun U4_3A General
573 573 rosa pink phrase U4_2A General
574 574 rosario rosary noun U3_11B General
575 575 rubio/a fair-haired phrase U5_9A General
576 576 ruidoso/a noisy phrase U8_1A General
577 577 ruinas ruins noun U3_4A General
578 578 rural rural phrase U9_3A General
579 579 ruso Russian noun U2_LEX General
580 580 ruta gastronómica foodtour noun U4_12A General
581 581 rutina routine noun U6_12A General
582 582 sábado Saturday noun U2_2C General
583 583 saber to know phrase U5_2A General
584 584 sabor taste noun U7_8A General
585 585 Sáhara Sahara phrase U3_8C General
586 586 sal salt noun U3_11B General
587 587 salado/a savoury phrase U7_9C General
588 588 salar salt flat noun U3_11B General
589 589 salchichas f, Pl sausages phrase U7_LEX General
590 590 salir to goout verb U2_2A General
591 591 salir acenar salir con amigos to gooutfordinner togooutwithfriends phrase U2_2C U2_2C General
592 592 salir de noche to gooutatnight phrase U2_2C General
593 593 salmón salmon phrase U7_3A General
594 594 salsa f sauce noun U7_LEX General
595 595 salsa brava salteado/a spicysauce sautéed phrase U7_12A U7_7A General
596 596 salto waterfall noun U3_14C General
597 597 sobre todo aboveall phrase U7_6B General
598 598 sobrino/a nephew/niece phrase U1 General
599 599 sociable sociable phrase U5_1A U5_3C General
600 600 sol sun noun U1_1A General
601 601 solar sun phrase U4_3A General
602 602 soledad solitude noun U2_1A General
603 603 solo alone phrase U5_8A General
604 604 soltero/a single phrase U5_7C General
605 605 sopa soup noun U7_3A General
606 606 sostenible sustainable phrase U4_15B General
607 607 soy Iam phrase U1_3A General
608 608 soyyo It'sme phrase U1_2A General
609 609 su its phrase U3_1 General
610 610 sucio/a dirty phrase U8_4A General
611 611 sueño sleepy noun U6_2A General
612 612 suficiente enough phrase U7_7A General
613 613 suizo/a Swiss phrase U1_6 General
614 614 supermercado supermarket noun U1_LEX General
615 615 sur south noun U3_3B General
616 616 sureste southeast noun U3_2A General
617 617 surf surfing noun U4_12A General
618 618 suroeste southwest noun U3_LEX General
619 619 sushi sushi noun U1_7A General
620 620 tableta tablet noun U0_5A General
621 621 taco taco noun U7_9A General
622 622 Tacuarembó Tacuarembo phrase U3_13A General
623 623 Tailandia Thailand phrase U3_12C General
624 624 talla size noun U4_2A General
625 625 taller workshop noun U1_3C General
626 626 tamal tamale noun U3_4A General
627 627 también to o phrase U1_5A General
628 628 tampoco either phrase U5_5A General
629 629 tango tango noun U1_7 General
630 630 Tanzania Tanzania phrase U3_10B General
631 631 tapa tapa noun U2_13A General
632 632 tapón earplugs noun U4_3B General
633 633 tarde afternoon phrase U0_6 General
634 634 tarde-noche evening noun U6_2A General
635 635 Tarifa Tarifa phrase U3_8A General
636 636 tarjeta card noun U4_3A General
637 637 tarjeta de crédito credit card phrase U4_3A General
638 638 tarta cake noun U7_5C General
639 639 taxi taxi noun U1_1A General
640 640 taza mug noun U7_LEX General
641 641 tea noun U5_GyC General
642 642 teatro theatre phrase U2_2A General
643 643 m tejido material/cloth noun U4_2A General
644 644 tela fabric noun U9_10B General
645 645 teleférico cable car telephone noun U3_14C U1_4A General
646 646 teléfono m templado/a mild phrase U1 General
647 647 templo temple noun U3_4A General
648 648 temporada f temprano seasonal early phrase U7_3A General
649 649 tropical tropical phrase U3_5A General
650 650 you phrase U4_14A General
651 651 turismo to urism noun U2_3A General
652 652 turista to urist phrase U2_6A General
653 653 turístico/a to urist phrase U3_2A General
654 654 U ubicación location noun U3_2A General
655 655 últimamente recently phrase U5_4A General
656 656 último/a last phrase U2_5A U5_3A General
657 657 ¡un abrazo! ahug! phrase U5_3C General
658 658 unpoco alittle phrase U1 General
659 659 único/a universidad only university noun U5_7C U1_3C General
660 660 universitario/a Universitystudent universe phrase U3_2A General
661 661 unos/as some phrase U3_4A General
662 662 Uruguay Uruguay phrase U0_4A General
663 663 usado/a used phrase U4_2A General
664 664 usar to use phrase U4_GyC General
665 665 usted you(formal) phrase U1 General
666 666 vacaciones holidays noun U1_10B General
667 667 vainilla vanilla noun U7_5A General
668 668 vale OK phrase U0_6 General
669 669 valer to beworth verb U9_3A General
670 670 valle valley noun U3_2A General
671 671 vallenato Vallenato (popular noun U1 General
672 672 vapor Colombianfolkmusic) steam noun U2_10B U7_3A General
673 673 vaqueros jeans noun U4_2A General
674 674 varios/as several phrase U1 General
675 675 vaso cup noun U7_LEX General
676 676 vegano/a vegan phrase U7_3A General
677 677 vegetal vegetable phrase U7_2A General
678 678 vendedor/a salesperson phrase U9_4C General
679 679 vender to sell phrase U4_1A General
680 680 venezolano/a Venezuelan phrase U1_6 General
681 681 Venezuela venido/a Venezuela comefrom phrase U0_4A U8_7A General
682 682 venir to come verb U1_5A General
683 683 ventana window noun U0_6 General
684 684 ver ver la televisión to see/watch towatchtelevision phrase U2_2A General
685 685 verano summer noun U3_8B General
686 686 ¿verdad? right? phrase U3_9 General
687 687 verdad true noun U4_6A General
688 688 verde verdura green vegetable noun U7_2A General
689 689 vestido dress noun U4_7C General
690 690 vestirse to getdressed verb U6_8A General
691 691 vez time noun U2_3A General
692 692 viajar to travel phrase U2_3A General
693 693 apasionado passionate phrase U5_15C General
694 694 argentino Argentinian phrase U1_3A General
695 695 camarero waiter phrase U1_4A General
696 696 arquitecto architect phrase U1_6 General
697 697 panintegral wholemeal bread noun U7_LEX General
698 698 escribir con lápiz to write with a pencil noun M1-phrase General
699 699 Subo las escaleras. I climb the stairs phrase M1-phrase General
700 700 mundo hispano Hispanic world phrase U3_7A General
701 701 hispanohablantes Spanish speakers adjective U2_9A-Extra General
702 702 Escucho un pódcast para practicar español. I listen to a podcast to practice Spanish phrase U2_9A-Extra General
703 703 los museos de la ciudad the city museums phrase U2_9-extra General
704 704 los pódcast the podcasts phrase U2_9A-Extra General
705 705 un pódcast a podcast phrase U2_9A-Extra General
706 706 el periódico the newspaper noun U1_LEX General
707 707 cocinar platos hispanos to cook Hispanic dishes verb U2_9-extra General

1106
main.py

File diff suppressed because it is too large Load diff

View file

@ -5,6 +5,7 @@ description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"docling>=2.102.1",
"edge-tts>=7.2.8",
"fastdtw>=0.3.4",
"genanki>=0.13.1",

138
requirements.txt Normal file
View file

@ -0,0 +1,138 @@
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

707
spanish_alphabetical.txt Normal file
View file

@ -0,0 +1,707 @@
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
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

707
spanish_glossary_sorted.txt Normal file
View file

@ -0,0 +1,707 @@
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.

View file

@ -0,0 +1,707 @@
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.

BIN
spanish_trainer.db Normal file

Binary file not shown.

2153
spanish_trainer_backup.sql Normal file

File diff suppressed because it is too large Load diff

1929
uv.lock

File diff suppressed because it is too large Load diff