File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed
Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 4949 'average_time ' => 'Durchschnittliche Ausführungszeit ' ,
5050 // jobfailed
5151 'uuid ' => 'Uuid ' ,
52- 'payload ' => 'Warteschlange ' ,
52+ 'payload ' => 'Payload ' ,
5353 'connection ' => 'Verbindung ' ,
54- 'exception ' => 'Ausnahme ' ,
54+ 'exception ' => 'Exception ' ,
5555 'retry ' => 'Wiederholen ' ,
5656 'retry_all_failed_jobs ' => 'Alle Jobs wiederholen ' ,
5757 'retry_all_failed_jobs_notification ' => 'Alle fehlgeschlagenen Jobs wurden in die Warteschlage eingereiht ' ,
Original file line number Diff line number Diff line change 5454
5555 // jobfailed
5656 'uuid ' => 'Uuid ' ,
57- 'payload ' => 'Queue ' ,
57+ 'payload ' => 'Payload ' ,
5858 'connection ' => 'Connection ' ,
5959 'exception ' => 'Exception ' ,
6060 'retry ' => 'Retry ' ,
Original file line number Diff line number Diff line change @@ -48,10 +48,8 @@ public static function form(Form $form): Form
4848 TextInput::make ('id ' )->disabled ()->label (__ ('jobs::translations.id ' )),
4949 TextInput::make ('connection ' )->disabled ()->label (__ ('jobs::translations.connection ' )),
5050 TextInput::make ('queue ' )->disabled ()->label (__ ('jobs::translations.queue ' )),
51-
52- // make text a little bit smaller because often a complete Stack Trace is shown:
53- TextArea::make ('exception ' )->disabled ()->columnSpan (4 )->extraInputAttributes (['style ' => 'font-size: 80%; ' ])->label (__ ('jobs::translations.connection ' )),
54- TextArea::make ('payload ' )->disabled ()->columnSpan (4 )->label (__ ('jobs::translations.payload ' )),
51+ TextArea::make ('exception ' )->disabled ()->rows (10 )->columnSpan (4 )->extraInputAttributes (['style ' => 'font-size: 80%; ' ])->label (__ ('jobs::translations.exception ' )),
52+ TextArea::make ('payload ' )->disabled ()->rows (5 )->columnSpan (4 )->extraInputAttributes (['style ' => 'font-size: 80%; ' ])->label (__ ('jobs::translations.payload ' )),
5553 ])->columns (4 );
5654 }
5755
You can’t perform that action at this time.
0 commit comments