i18n(transcription): add reader read-label and panel title strings (#697)

transcription_read_label ("Transkription lesen") for the read-only entry
control and transcription_panel_title ("Transkription") for the plain
header readers see instead of the Lesen/Bearbeiten toggle.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-05-31 12:09:07 +02:00
committed by marcel
parent 44b5934fa7
commit f4f853be8b
8 changed files with 118 additions and 6 deletions

View File

@@ -28,6 +28,7 @@ type Doc = {
location?: string | null;
status?: string | null;
tags?: Tag[] | null;
hasTranscription?: boolean;
};
type GeschichteSummary = {
@@ -132,6 +133,7 @@ const overflowPersons = $derived(receivers.slice(2));
documentId={doc.id}
canWrite={canWrite}
isPdf={!!isPdf}
hasTranscription={!!doc.hasTranscription}
bind:transcribeMode={transcribeMode}
filePath={doc.filePath}
originalFilename={doc.originalFilename}
@@ -143,6 +145,7 @@ const overflowPersons = $derived(receivers.slice(2));
<DocumentMobileMenu
canWrite={canWrite}
isPdf={!!isPdf}
hasTranscription={!!doc.hasTranscription}
bind:transcribeMode={transcribeMode}
filePath={doc.filePath}
originalFilename={doc.originalFilename}