translate base

This commit is contained in:
Mekan1206
2026-07-31 18:08:08 +05:00
parent a794dacd39
commit 581cb8241c
413 changed files with 9087 additions and 428 deletions

View File

@@ -31,11 +31,11 @@ class DisciplinaryReportCreatedNotification extends Notification implements Shou
$employee = $this->report->employee;
return (new MailMessage)
->subject('New Disciplinary Report Created')
->line("A new disciplinary report has been created for {$employee->full_name}.")
->line("Title: {$this->report->title}")
->line("Severity: {$this->report->severity->label()}")
->line("Date: {$this->report->report_date->toDateString()}");
->subject(__('notifications.disciplinary_report_created.subject'))
->line(__('notifications.disciplinary_report_created.line_created', ['name' => $employee->full_name]))
->line(__('notifications.disciplinary_report_created.title') . ': ' . $this->report->title)
->line(__('notifications.disciplinary_report_created.severity') . ': ' . $this->report->severity->label())
->line(__('notifications.disciplinary_report_created.date') . ': ' . $this->report->report_date->toDateString());
}
/**