diff --git a/src/Service/JobOrderHandler/CMBJobOrderHandler.php b/src/Service/JobOrderHandler/CMBJobOrderHandler.php
index 73e75d84..16fb4112 100644
--- a/src/Service/JobOrderHandler/CMBJobOrderHandler.php
+++ b/src/Service/JobOrderHandler/CMBJobOrderHandler.php
@@ -1591,6 +1591,7 @@ class CMBJobOrderHandler implements JobOrderHandlerInterface
// translate the title and the logo for the pdf
$translated_title = $translator->trans('jo_title_pdf');
$translated_logo = $translator->trans('image_jo_pdf');
+ $translated_delivery_instructions_label = $translator->trans('delivery_instructions_label');
// generate the pdf
$pdf = new FPDF('P', 'mm', 'letter');
@@ -1822,7 +1823,7 @@ class CMBJobOrderHandler implements JobOrderHandlerInterface
$pdf->SetY($y);
$pdf->Ln();
$pdf->SetFont($font_face, 'B', $header_font_size);
- $pdf->Cell(0, $line_height, 'Delivery Instructions');
+ $pdf->Cell(0, $line_height, $translated_delivery_instructions_label);
$pdf->Ln();
$pdf->SetFont($font_face, '', $body_font_size);
diff --git a/templates/job-order/form.html.twig b/templates/job-order/form.html.twig
index 0e5ca9df..30391bc4 100644
--- a/templates/job-order/form.html.twig
+++ b/templates/job-order/form.html.twig
@@ -308,7 +308,7 @@