webm i18n

This commit is contained in:
czaks 2014-04-06 22:32:48 +02:00
parent 5c38368e60
commit 28033fe6f3
2 changed files with 15 additions and 7 deletions

View file

@ -1,6 +1,10 @@
/* This file is dedicated to the public domain; you may do as you wish with it. */
/* Note: This code expects the global variable configRoot to be set. */
if (typeof _ == 'undefined') {
var _ = function(a) { return a; };
}
function setupVideo(thumb, url) {
var video = null;
var videoContainer, videoHide;
@ -38,7 +42,7 @@ function setupVideo(thumb, url) {
video = document.createElement("video");
video.src = url;
video.loop = loop;
video.innerText = "Your browser does not support HTML5 video.";
video.innerText = _("Your browser does not support HTML5 video.");
videoHide = document.createElement("img");
videoHide.src = configRoot + "static/collapse.gif";
@ -182,8 +186,8 @@ function setupVideo(thumb, url) {
}, false);
}
loopControls[0].textContent = "[play once]";
loopControls[1].textContent = "[loop]";
loopControls[0].textContent = _("[play once]");
loopControls[1].textContent = _("[loop]");
loopControls[1].style.fontWeight = "bold";
for (var i = 0; i < 2; i++) {
setupLoopControl(i);