From cbca9176a8ca696616174b4b3ef1f8c2211bc308 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Thu, 27 Jun 2024 17:48:19 +0200 Subject: [PATCH] made some shown strings gettext ready --- application/models/Hrdlog_model.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/application/models/Hrdlog_model.php b/application/models/Hrdlog_model.php index ec21cd20b..e39dce4df 100644 --- a/application/models/Hrdlog_model.php +++ b/application/models/Hrdlog_model.php @@ -19,16 +19,16 @@ class Hrdlog_model extends CI_Model { $hrdlog_code = $station->hrdlog_code; $u_result = $this->mass_upload_qsos($station->station_id, $hrdlog_username, $hrdlog_code); if ($u_result['count'] > 0) { - $msg = "HRDlog: QSOs have been uploaded to hrdlog.net for the station callsign ".$station->station_callsign." (ID: ".$station->station_id.")"; + $msg = __("HRDlog: QSOs have been uploaded to hrdlog.net for the station callsign: ").$station->station_callsign." (ID: ".$station->station_id.")"; echo $msg; } else { - $msg = "HRDlog: No QSOs found to upload for the station callsign ".$station->station_callsign." (ID: ".$station->station_id.")"; + $msg = __("HRDlog: No QSOs found to upload for the station callsign: ").$station->station_callsign." (ID: ".$station->station_id.")"; echo $msg; } log_message('debug', $msg); } } else { - $msg = "HRDlog: No station profiles with HRDlog Credentials found."; + $msg = __("HRDlog: No station profiles with HRDlog Credentials found."); echo $msg; log_message('debug', $msg); }