10 lines
331 B
PHP
10 lines
331 B
PHP
<?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',
|
|
);
|