Approval.

This commit is contained in:
2025-07-11 14:29:39 +00:00
committed by md translation bot
parent 0be5ccf2d4
commit 9ad49843cd
50 changed files with 450 additions and 0 deletions

9
de/transcript_status.php Normal file
View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$transcript_status = array (
'incomplete' => 'Unvollständig',
'machine_generated' => 'Maschinengeneriert',
'rough_draft' => 'Rohfassung',
'quality_control_failed' => 'Qualitätskontrolle: Abgelehnt',
'quality_control_passed' => 'Qualitätskontrolle: Akzeptiert',
);

9
de/transcript_types.php Normal file
View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$transcript_types = array (
'simple_transcription' => 'Einfache Transkription',
'diplomatic_transcription' => 'Diplomatische Transkription',
'critical_edition' => 'Kritische Ausgabe',
'historical_critical_edition' => 'Historisch-kritische Ausgabe',
'reading_edition' => 'Leseausgabe',
);