Update button label text for German localization

The text content of a `div` element in `pdf-viewer.js` was updated from "Sign" to "Unterschreiben" to support German localization. This change improves the user interface for German-speaking users by providing a translated label.
This commit is contained in:
2026-06-07 12:55:32 +02:00
parent 89fb6f1452
commit 3123102244

View File

@@ -533,7 +533,7 @@ window.pdfViewer = {
// Add text
const textDiv = document.createElement('div');
textDiv.textContent = 'Sign';
textDiv.textContent = 'Unterschreiben';
textDiv.style.fontSize = '18px';
textDiv.style.fontWeight = '700';