CiviImport - String fix
authorcolemanw <coleman@civicrm.org>
Wed, 21 Jun 2023 23:50:18 +0000 (16:50 -0700)
committercolemanw <coleman@civicrm.org>
Wed, 21 Jun 2023 23:50:18 +0000 (16:50 -0700)
ext/civiimport/civiimport.php

index 3dc5b2d900748b5652f17b4f6dff11eee6c4481c..b094f6278825a6189446fbe2ffde93af258bdb3c 100644 (file)
@@ -118,7 +118,7 @@ function _civiimport_civicrm_get_import_tables(): array {
       'user_job_id' => (int) $tables->id,
       'created_date' => $tables->created_date,
       'expires_date' => $tables->expires_date,
-      'title' => ts('Import Job') . $tables->id,
+      'title' => E::ts('Import Job %1', [1 => $tables->id]),
       'description' => $tables->created_date . $createdBy,
     ];
   }