Drive in Español

Drive in Español

Click ▶ to reveal the English translation. Click the speaker icon to hear the Spanish read aloud.

1.0×
100%
29 sentences
01 Mientras no te diga nada, siga de frente.
If I don't say anything, go straight ahead.
02 Si te pido que gires a la derecha o a la izquierda, es la primera calle donde puedas girar.
If I ask you to turn right or left, it will be the first street where the turn is possible.
03 Si tienes alguna duda, pregunta y yo te lo repito.
If you don't understand my instructions, let me know and I will repeat it.
04 Busca un sitio para estacionar en cordón.
Find a place to park in a straight line (parallel parking).
05 Busca un sitio para estacionar en batería.
Find a place to park in a perpendicular space (bay parking).
06 Vamos a realizar una parada donde puedas.
Let's stop when you can, and where it's possible to do so.
07 En la siguiente glorieta, abandona por la primera salida.
At the next roundabout, take the first exit.
08 En la siguiente glorieta, abandona por la segunda salida.
At the next roundabout, take the second exit.
09 En la siguiente glorieta, abandona por la tercera salida.
At the next roundabout, take the third exit.
10 En la siguiente glorieta, abandona por la cuarta salida.
At the next roundabout, take the fourth exit.
11 En la siguiente glorieta, abandona por la quinta salida.
At the next roundabout, take the fifth exit.
12 Vamos a hacer un cambio de sentido de la marcha.
We are going to make a U-turn.
13 Vamos a hacer un giro indirecto a la izquierda.
We are going to do an indirect left turn.
14 ¿Estás listo?
Are you ready?
15 Podemos empezar la prueba.
You can start the exam.
16 Enciende las luces de posición.
Turn on the position lights (sidelights).
17 Enciende las luces cortas.
Turn on the low beam headlights.
18 Enciende las luces de cruce.
Turn on the dipped headlights.
19 Enciende las luces largas.
Turn on the high beam headlights.
20 Enciende las luces de carretera.
Turn on the full beam headlights.
21 Pon los intermitentes.
Turn on the turn signals.
22 Pon el limpiaparabrisas delantero.
Turn on the front windscreen wiper.
23 Pon el limpiaparabrisas trasero.
Turn on the rear windscreen wiper.
24 Pon el antivaho delantero.
Turn on the front demister (anti-fog).
25 Pon el antivaho trasero.
Turn on the rear demister (anti-fog).
26 Pon las luces de emergencia.
Turn on the hazard warning lights.
27 Pon el freno de estacionamiento.
Apply the parking brake.
28 Pon el freno de mano.
Apply the handbrake.
29 ¿Me lo puede repetir, por favor?
Can you repeat that for me, please?

Key Vocabulary

road
glorieta
roundabout
salida
exit
sentido de la marcha
direction of travel
cambio de sentido
U-turn
giro indirecto
indirect turn (3-point turn)
calle
street
parking
cordón
parallel parking
batería
bay / perpendicular parking
estacionar
to park
driving
parada
stop
girar
to turn
seguir de frente
go straight ahead
derecha
right
izquierda
left
delantero
front
trasero
rear / back
lights
luces de posición
position lights (sidelights)
luces cortas
low beam headlights
luces de cruce
low beam headlights (dipped)
luces largas
high beam headlights
luces de carretera
high beam headlights (full beam)
anti niebla trasero
rear fog light
ráfagas
headlight flash
luces de emergencia
hazard warning lights
intermitentes
turn signals / indicators
controls
antivaho delantero
front demister
antivaho trasero
rear demister
sistema anti deslumbramiento
anti-dazzle system
mando que regula la altura de las luces
headlight height adjustment
limpiaparabrisas delantero
front windscreen wiper
limpiaparabrisas trasero
rear windscreen wiper
claxón
horn
freno de mano
handbrake
freno de estacionamiento
parking brake
safety
chaleco reflectante
reflective vest
exam
prueba
test / exam
indicación
instruction / indication
engine
la batería
battery
el filtro de aire
air filter
el líquido de frenos
brake fluid
el líquido refrigerante
coolant
el líquido limpiaparabrisas
windscreen washer fluid
la varilla del aceite
oil dipstick
el tapón del aceite
oil filler cap
let currentIdx = -1; let playQueue = []; let isPlayingAll = false; let playbackRate = 1.0; const player = document.getElementById('player'); function updateSpeed(val) { playbackRate = parseFloat(val); document.getElementById('speedVal').textContent = parseFloat(val).toFixed(1) + '×'; player.playbackRate = playbackRate; } function updateVolume(val) { player.volume = parseFloat(val); document.getElementById('volVal').textContent = Math.round(val * 100) + '%'; } function toggleEnglish(i) { const eng = document.getElementById(`eng-${i}`); const caret = document.getElementById(`caret-${i}`); eng.classList.toggle('visible'); caret.classList.toggle('open'); } function setCardState(i, playing) { const card = document.getElementById(`card-${i}`); const btn = document.getElementById(`btn-${i}`); const wave = document.getElementById(`wave-${i}`); const icon = btn.querySelector('.icon-speak'); const eng = document.getElementById(`eng-${i}`); const caret = document.getElementById(`caret-${i}`); if (playing) { card.classList.add('playing'); btn.classList.add('active'); icon.style.display = 'none'; wave.classList.add('visible'); eng.classList.add('visible'); caret.classList.add('open'); card.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); } else { card.classList.remove('playing'); btn.classList.remove('active'); icon.style.display = ''; wave.classList.remove('visible'); // leave english open } } function speakOne(i) { stopAudio(); isPlayingAll = false; currentIdx = i; setCardState(i, true); player.src = sentences[i].audio; player.playbackRate = playbackRate; player.play(); player.onended = () => { setCardState(i, false); currentIdx = -1; }; } function readAll() { stopAudio(); isPlayingAll = true; playQueue = sentences.map((_, i) => i); playNext(); } function playNext() { if (!isPlayingAll || playQueue.length === 0) { isPlayingAll = false; currentIdx = -1; return; } const i = playQueue.shift(); currentIdx = i; setCardState(i, true); player.src = sentences[i].audio; player.playbackRate = playbackRate; player.play(); player.onended = () => { setCardState(i, false); setTimeout(playNext, 500); }; } function stopAudio() { isPlayingAll = false; player.pause(); player.src = ''; player.onended = null; if (currentIdx >= 0) { setCardState(currentIdx, false); currentIdx = -1; } playQueue = []; }