Add neutral diagnostic framework for future reporting modules: - DiagnosticReporterInterface, Registry, Manager, PayloadSanitizer - Laravel exception hook in bootstrap/app.php - Module permission declarations (requires_permissions in module.json) - Core diagnostic report points (module boot/install/update failures) - Module documentation update (moduldoku.md) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
38 lines
1.5 KiB
PHP
38 lines
1.5 KiB
PHP
<?php
|
|
|
|
return [
|
|
'csv_page_title' => 'CSV Export',
|
|
'csv_col_date' => 'Datum',
|
|
'csv_col_driver' => 'Fahrer',
|
|
'csv_col_customer' => 'Kunde',
|
|
'csv_col_object_name' => 'Objekt',
|
|
'csv_col_object_street' => 'Objekt-Straße',
|
|
'csv_col_object_zip' => 'Objekt-PLZ',
|
|
'csv_col_object_city' => 'Objekt-Ort',
|
|
'csv_col_type' => 'Art',
|
|
'csv_col_start' => 'Beginn',
|
|
'csv_col_end' => 'Ende',
|
|
'csv_col_duration' => 'Dauer (Min.)',
|
|
'csv_col_shift_id' => 'Schicht-ID',
|
|
'csv_col_source' => 'Quelle',
|
|
'csv_source_manual' => 'Manuell',
|
|
'csv_source_automatic' => 'Automatisch',
|
|
'csv_variant_all' => 'Gesamt',
|
|
'csv_variant_driver' => 'Je Fahrer',
|
|
'csv_variant_customer' => 'Je Kunde',
|
|
'csv_label_from' => 'Von',
|
|
'csv_label_to' => 'Bis',
|
|
'csv_label_variant' => 'Variante',
|
|
'csv_label_driver' => 'Fahrer',
|
|
'csv_label_customer' => 'Kunde',
|
|
'csv_btn_download' => 'CSV herunterladen',
|
|
|
|
'pdf_page_title' => 'Kunden-PDF Export',
|
|
'pdf_label_customer' => 'Kunde',
|
|
'pdf_label_from' => 'Von',
|
|
'pdf_label_to' => 'Bis',
|
|
'pdf_label_include_active' => 'Laufende Einsätze einschließen',
|
|
'pdf_btn_generate' => 'PDF generieren',
|
|
'pdf_warning_many_jobs' => 'Der gewählte Zeitraum enthält :count Einsätze. Die PDF-Erstellung kann etwas dauern. Fortfahren?',
|
|
'pdf_no_jobs' => 'Keine Einsätze im gewählten Zeitraum gefunden.',
|
|
];
|