mirror of
https://github.com/videojs/video.js.git
synced 2024-12-02 09:11:54 +02:00
61 lines
2.5 KiB
Plaintext
61 lines
2.5 KiB
Plaintext
<!DOCTYPE html>
|
|
<!-- Set Page Language Here -->
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>VideoJS Languages Demo</title>
|
|
|
|
<!-- Load the source files -->
|
|
<link href="../dist/video-js.css" rel="stylesheet" type="text/css">
|
|
<script src="../dist/video.js"></script>
|
|
|
|
<!-- Add support for Spanish 'es' -->
|
|
<script>
|
|
videojs.addLanguage('es', {
|
|
"Play": "Reproducción",
|
|
"Play Video": "Reproducción Vídeo",
|
|
"Pause": "Pausa",
|
|
"Current Time": "Tiempo reproducido",
|
|
"Duration": "Duración total",
|
|
"Remaining Time": "Tiempo restante",
|
|
"Stream Type": "Tipo de secuencia",
|
|
"LIVE": "DIRECTO",
|
|
"Loaded": "Cargado",
|
|
"Progress": "Progreso",
|
|
"Fullscreen": "Pantalla completa",
|
|
"Non-Fullscreen": "Pantalla no completa",
|
|
"Mute": "Silenciar",
|
|
"Unmute": "No silenciado",
|
|
"Playback Rate": "Velocidad de reproducción",
|
|
"Subtitles": "Subtítulos",
|
|
"subtitles off": "Subtítulos desactivados",
|
|
"Captions": "Subtítulos especiales",
|
|
"captions off": "Subtítulos especiales desactivados",
|
|
"Chapters": "Capítulos",
|
|
"You aborted the media playback": "Ha interrumpido la reproducción del vídeo.",
|
|
"A network error caused the media download to fail part-way.": "Un error de red ha interrumpido la descarga del vídeo.",
|
|
"The media could not be loaded, either because the server or network failed or because the format is not supported.": "No se ha podido cargar el vídeo debido a un fallo de red o del servidor o porque el formato es incompatible.",
|
|
"The media playback was aborted due to a corruption problem or because the media used features your browser did not support.": "La reproducción de vídeo se ha interrumpido por un problema de corrupción de datos o porque el vídeo precisa funciones que su navegador no ofrece.",
|
|
"No compatible source was found for this media.": "No se ha encontrado ninguna fuente compatible con este vídeo."
|
|
});
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
<video id="vid1" class="video-js" controls preload="auto" width="640" height="264" data-setup=''>
|
|
<!--
|
|
<source src="https://video-js.zencoder.com/oceans-clip.mp4" type='video/mp4'>
|
|
<source src="https://video-js.zencoder.com/oceans-clip.webm" type='video/webm'>
|
|
<source src="https://video-js.zencoder.com/oceans-clip.ogv" type='video/ogg'>
|
|
-->
|
|
</video>
|
|
|
|
<script>
|
|
var player = videojs("vid1");
|
|
player.controlBar.show();
|
|
player.error(1);
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|