fix translation

This commit is contained in:
Milan Hauth 2023-11-14 18:45:21 +01:00
parent f958acdaae
commit 1a7ea9ef15

View file

@ -1083,7 +1083,7 @@
// render was called manually // render was called manually
// verbose feedback // verbose feedback
//alert(`bindery: Layout ready in ${sec(layout)}s (plus ${sec(timeWaiting)}s waiting for images)`); //alert(`bindery: Layout ready in ${sec(layout)}s (plus ${sec(timeWaiting)}s waiting for images)`);
alert(`Druck-Layout fertig nach ${sec(book.stats.layout)} Sekunden`); alert(`print layout ready after ${sec(book.stats.layout)} seconds`);
} }
const header = document.querySelector('header'); const header = document.querySelector('header');
@ -1099,8 +1099,8 @@
} }
}); });
// TODO? remove navbar now, show long status message // TODO? remove navbar now, show long status message
renderButton.innerHTML = 'Drucken ...'; renderButton.innerHTML = 'Print ...';
renderButton.setAttribute("title", "Bitte ein paar Sekunden warten, bis das Druck-Layout fertig ist"); renderButton.setAttribute("title", "Please wait some seconds until the print layout is ready");
document.body.classList.remove('screen-layout'); document.body.classList.remove('screen-layout');
document.body.classList.add('print-layout'); document.body.classList.add('print-layout');
} }