From df50101af479aeda21ec5934de30c70f26c195fc Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Sat, 31 Jan 2026 19:46:21 +0100 Subject: [PATCH 01/13] don't load stations model on each iteration of import_bulk() --- application/models/Logbook_model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index c2ce9f40c..3365bac1a 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -4624,7 +4624,7 @@ class Logbook_model extends CI_Model { */ function import($record, $station_id = "0", $skipDuplicate = true, $markClublog = false, $markLotw = false, $dxccAdif = false, $markQrz = false, $markEqsl = false, $markHrd = false, $markDcl = false, $skipexport = false, $operatorName = false, $apicall = false, $skipStationCheck = false, $batchmode = false, $station_id_ok = false, $station_profile = null, $station_qslmsg = null) { // be sure that station belongs to user - $this->load->model('stations'); + $this->load->is_loaded('stations') ?: $this->load->model('stations'); if ($station_id_ok == false) { if (!$this->stations->check_station_is_accessible($station_id) && $apicall == false) { return 'Station not accessible
'; From af8918c3ffd1ead8b3c86605610bb3fe10a894f2 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Sat, 31 Jan 2026 20:00:22 +0100 Subject: [PATCH 02/13] if dxcc is set in the record we complete the array with data we got anyway --- application/models/Logbook_model.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 3365bac1a..dbcebdd39 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -4785,7 +4785,7 @@ class Logbook_model extends CI_Model { if ($dxccAdif != NULL) { if (isset($record['dxcc'])) { $entity = $this->get_entity($record['dxcc']); - $dxcc = array($record['dxcc'] ?? '', $entity['name'] ?? ''); + $dxcc = array($record['dxcc'] ?? '', $entity['name'] ?? '', $entity['cqz'] ?? '', $entity['cont'] ?? ''); } else { if ($this->dxcc_object == null) { $this->dxcc_object = new Dxcc(null); @@ -5652,7 +5652,7 @@ class Logbook_model extends CI_Model { } public function get_entity($dxcc) { - $sql = "SELECT name, cqz, lat, `long` FROM dxcc_entities WHERE adif = ?"; + $sql = "SELECT `adif`, `name`, `cqz`, `ituz`, `cont`, `lat`, `long` FROM dxcc_entities WHERE adif = ?"; $query = $this->db->query($sql, $dxcc); if ($query->result() > 0) { From e2bcbfc84ac41dd38f296b5c7625e1b40be90a90 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Sat, 31 Jan 2026 20:04:39 +0100 Subject: [PATCH 03/13] stations model is already loaded at this point --- application/models/Logbook_model.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index dbcebdd39..f700b9332 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -4975,10 +4975,10 @@ class Logbook_model extends CI_Model { $input_ant_path = NULL; } - /* - Validate QSL Fields - qslrdate, qslsdate - */ + /** + * Validate QSL Fields + * qslrdate, qslsdate + */ if (($record['qslrdate'] ?? '') != '') { if (validateADIFDate($record['qslrdate']) == true) { @@ -5155,7 +5155,6 @@ class Logbook_model extends CI_Model { // Get active station_id from station profile if one hasn't been provided if ($station_id == "" || $station_id == "0") { - $this->load->model('stations'); $station_id = $this->stations->find_active(); } From 8ee1537c9628239a5ca8296b89fa25614ef7278b Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Sat, 31 Jan 2026 20:05:30 +0100 Subject: [PATCH 04/13] removed unused variable --- application/models/Logbook_model.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index f700b9332..cf48093fa 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -5168,7 +5168,7 @@ class Logbook_model extends CI_Model { // If user checked to mark QSOs as uploaded to QRZ or HRDLog Logbook, or else we try to find info in ADIF import. if ($markHrd != null) { $input_hrdlog_qso_upload_status = 'Y'; - $input_hrdlog_qso_upload_date = $date = date("Y-m-d H:i:s", strtotime("now")); + $input_hrdlog_qso_upload_date = date("Y-m-d H:i:s", strtotime("now")); } else { $input_hrdlog_qso_upload_date = (!empty($record['hrdlog_qso_upload_date'])) ? $record['hrdlog_qso_upload_date'] : null; $input_hrdlog_qso_upload_status = (!empty($record['hrdlog_qso_upload_status'])) ? $record['hrdlog_qso_upload_status'] : ''; @@ -5176,7 +5176,7 @@ class Logbook_model extends CI_Model { if ($markQrz != null) { $input_qrzcom_qso_upload_status = 'Y'; - $input_qrzcom_qso_upload_date = $date = date("Y-m-d H:i:s", strtotime("now")); + $input_qrzcom_qso_upload_date = date("Y-m-d H:i:s", strtotime("now")); } else { $input_qrzcom_qso_upload_date = (!empty($record['qrzcom_qso_upload_date'])) ? $record['qrzcom_qso_upload_date'] : null; $input_qrzcom_qso_upload_status = (!empty($record['qrzcom_qso_upload_status'])) ? $record['qrzcom_qso_upload_status'] : ''; @@ -5184,7 +5184,7 @@ class Logbook_model extends CI_Model { if ($markDcl != null) { $input_dcl_qso_upload_status = 'Y'; - $input_dcl_qso_upload_date = $date = date("Y-m-d H:i:s", strtotime("now")); + $input_dcl_qso_upload_date = date("Y-m-d H:i:s", strtotime("now")); } else { $input_dcl_qso_upload_date = (!empty($record['dcl_qslsdate'])) ? $record['dcl_qslsdate'] : null; $input_dcl_qso_upload_status = (!empty($record['dcl_qsl_sent'])) ? $record['dcl_qsl_sent'] : ''; From dc29d69e4ee232b7cebbe091677a464202fce004 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Sat, 31 Jan 2026 20:14:30 +0100 Subject: [PATCH 05/13] stations model is already loaded at this point and Mh lib only needs to be loaded once in a session --- application/models/Logbook_model.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index cf48093fa..1932cafe2 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -5410,10 +5410,9 @@ class Logbook_model extends CI_Model { } if ($apicall && (($this->config->item('mqtt_server') ?? '') != '')) { - $this->load->model('stations'); - $this->load->library('Mh'); - $h_user=$this->stations->get_user_from_station($station_id); - $event_data=$data; + $this->load->is_loaded('Mh') ?: $this->load->library('Mh'); + $h_user = $this->stations->get_user_from_station($station_id); + $event_data = $data; $event_data['user_name']=($h_user->user_name ?? ''); $event_data['user_id']=($h_user->user_id ?? ''); $this->mh->wl_event('qso/logged/api/'.($h_user->user_id ?? ''), json_encode($event_data)); From 675c0a229c9d8f4cf4f80f808986a7b4120ec97d Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Sat, 31 Jan 2026 20:15:01 +0100 Subject: [PATCH 06/13] @int2001 you know ;-) --- application/models/Logbook_model.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 1932cafe2..5abc0fe81 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -5413,8 +5413,8 @@ class Logbook_model extends CI_Model { $this->load->is_loaded('Mh') ?: $this->load->library('Mh'); $h_user = $this->stations->get_user_from_station($station_id); $event_data = $data; - $event_data['user_name']=($h_user->user_name ?? ''); - $event_data['user_id']=($h_user->user_id ?? ''); + $event_data['user_name'] = ($h_user->user_name ?? ''); + $event_data['user_id'] = ($h_user->user_id ?? ''); $this->mh->wl_event('qso/logged/api/'.($h_user->user_id ?? ''), json_encode($event_data)); unset($event_data); unset($h_user); From 87e9437f02aa07895d18bc12decf5a839abf02ce Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Sun, 1 Feb 2026 22:10:23 +0100 Subject: [PATCH 07/13] if a callbook query was successful on the first attempt there are not error arraykeys --- application/controllers/Logbook.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/application/controllers/Logbook.php b/application/controllers/Logbook.php index e238246c4..f281a17ce 100644 --- a/application/controllers/Logbook.php +++ b/application/controllers/Logbook.php @@ -952,7 +952,9 @@ class Logbook extends CI_Controller { if (is_array($source_callbooks)) { $callsigninfo['error'] = ''.__('All callbook lookups failed or provided no results.').''; foreach($source_callbooks as $source) { - $callsigninfo['error'] .= "
".$callsigninfo['callsign']['error_'.$source.'_name'].': '.$callsigninfo['callsign']['error_'.$source]; + if (isset($callsigninfo['callsign']['error_'.$source]) && isset($callsigninfo['callsign']['error_'.$source.'_name'])) { + $callsigninfo['error'] .= "
".$callsigninfo['callsign']['error_'.$source.'_name'].': '.$callsigninfo['callsign']['error_'.$source]; + } } } else { if (isset($callsigninfo['callsign']['error'])) { From 265d81f700042d727a2c42d4c88fcdabb18c0f0a Mon Sep 17 00:00:00 2001 From: int2001 Date: Mon, 2 Feb 2026 06:19:14 +0000 Subject: [PATCH 08/13] Install php-redis-extension --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index b4552c301..a121895a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends cron RUN install-php-extensions \ mysqli \ zip \ + redis \ gd; \ \ a2enmod rewrite; \ From 853c0d9fa6511cb23ebda35b55bcbb969ecfc6d9 Mon Sep 17 00:00:00 2001 From: int2001 Date: Mon, 2 Feb 2026 06:25:35 +0000 Subject: [PATCH 09/13] Codeformatting ;) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a121895a7..949f51a4b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends cron RUN install-php-extensions \ mysqli \ zip \ - redis \ + redis \ gd; \ \ a2enmod rewrite; \ From 2b46230a424743eb10d9884508043d5c944ba9fa Mon Sep 17 00:00:00 2001 From: Andreas Kristiansen <6977712+AndreasK79@users.noreply.github.com> Date: Mon, 2 Feb 2026 07:54:24 +0100 Subject: [PATCH 10/13] Avoid a null error --- application/models/Logbook_model.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 5abc0fe81..897974f15 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -86,7 +86,7 @@ class Logbook_model extends CI_Model { $prop_mode = $qso_data['prop_mode'] ?? NULL; $email = $qso_data['email'] ?? NULL; $region = $qso_data['region'] ?? NULL; - + // In case of a satellite name we force the $prop_mode to SAT $prop_mode = ($qso_data['sat_name'] ?? NULL) != NULL ? "SAT" : $prop_mode; @@ -118,7 +118,7 @@ class Logbook_model extends CI_Model { $contestid = $qso_data['contestname'] ?? NULL; $tx_power = filter_var(($qso_data['transmit_power'] ?? NULL), FILTER_VALIDATE_FLOAT) ?? NULL; - + if (($qso_data['radio'] ?? '') == 'ws') { // WebSocket $radio_name = $qso_data['radio_ws_name']; @@ -131,9 +131,9 @@ class Logbook_model extends CI_Model { // Cache DXCC lookup to avoid calling check_dxcc_table() 4 times if atleast one of these fields is empty $dxcc = NULL; - $needs_dxcc_lookup = empty($qso_data['country']) || - empty($qso_data['cqz']) || - empty($qso_data['dxcc_id']) || + $needs_dxcc_lookup = empty($qso_data['country']) || + empty($qso_data['cqz']) || + empty($qso_data['dxcc_id']) || empty($qso_data['continent']); if ($needs_dxcc_lookup) { @@ -235,7 +235,7 @@ class Logbook_model extends CI_Model { } else { $band = $qso_data['band']; } - + // Create array with QSO Data $data = array( 'COL_TIME_ON' => $datetime, @@ -5403,7 +5403,7 @@ class Logbook_model extends CI_Model { $data['COL_STATION_CALLSIGN'] = strtoupper(trim($row['station_callsign'])); $data['COL_MY_DXCC'] = strtoupper(trim($row['station_dxcc'])); $data['COL_MY_COUNTRY'] = strtoupper(trim($row['station_country'])); - $data['COL_MY_CNTY'] = strtoupper(trim($row['station_cnty'])); + $data['COL_MY_CNTY'] = strtoupper(trim($row['station_cnty'] ?? '')); $data['COL_MY_CQ_ZONE'] = strtoupper(trim($row['station_cq'])); $data['COL_MY_ITU_ZONE'] = strtoupper(trim($row['station_itu'])); } From cb3e156f110cd14993242448e6cbbe5aa6aa13ad Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Mon, 2 Feb 2026 08:33:32 +0100 Subject: [PATCH 11/13] add the exentions for the other drivers aswell --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 949f51a4b..3c337c466 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,9 @@ RUN install-php-extensions \ mysqli \ zip \ redis \ + memcached \ + apcu \ + wincache \ gd; \ \ a2enmod rewrite; \ From 655a1e88f4028c91eff2da353cea17e81e71d6c8 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 2 Feb 2026 07:45:30 +0000 Subject: [PATCH 12/13] po/mo updates --- .../locale/bg_BG/LC_MESSAGES/messages.po | 26 ++++++++-------- application/locale/bs/LC_MESSAGES/messages.po | 26 ++++++++-------- .../locale/cnr/LC_MESSAGES/messages.po | 26 ++++++++-------- .../locale/cs_CZ/LC_MESSAGES/messages.po | 26 ++++++++-------- .../locale/de_DE/LC_MESSAGES/messages.po | 26 ++++++++-------- .../locale/el_GR/LC_MESSAGES/messages.po | 26 ++++++++-------- .../locale/es_ES/LC_MESSAGES/messages.po | 26 ++++++++-------- application/locale/et/LC_MESSAGES/messages.po | 26 ++++++++-------- .../locale/fi_FI/LC_MESSAGES/messages.po | 26 ++++++++-------- .../locale/fr_FR/LC_MESSAGES/messages.po | 26 ++++++++-------- application/locale/hr/LC_MESSAGES/messages.po | 26 ++++++++-------- application/locale/hu/LC_MESSAGES/messages.po | 26 ++++++++-------- application/locale/hy/LC_MESSAGES/messages.po | 26 ++++++++-------- .../locale/it_IT/LC_MESSAGES/messages.po | 26 ++++++++-------- application/locale/ja/LC_MESSAGES/messages.po | 26 ++++++++-------- application/locale/lt/LC_MESSAGES/messages.po | 26 ++++++++-------- application/locale/lv/LC_MESSAGES/messages.po | 26 ++++++++-------- .../locale/nl_NL/LC_MESSAGES/messages.po | 26 ++++++++-------- .../locale/pl_PL/LC_MESSAGES/messages.po | 26 ++++++++-------- .../locale/pt_PT/LC_MESSAGES/messages.po | 26 ++++++++-------- .../locale/ru_RU/LC_MESSAGES/messages.po | 26 ++++++++-------- application/locale/sk/LC_MESSAGES/messages.po | 26 ++++++++-------- application/locale/sl/LC_MESSAGES/messages.po | 26 ++++++++-------- application/locale/sq/LC_MESSAGES/messages.po | 26 ++++++++-------- application/locale/sr/LC_MESSAGES/messages.po | 26 ++++++++-------- .../locale/sv_SE/LC_MESSAGES/messages.po | 26 ++++++++-------- .../locale/tr_TR/LC_MESSAGES/messages.po | 26 ++++++++-------- .../locale/zh_CN/LC_MESSAGES/messages.po | 30 +++++++++---------- assets/lang_src/messages.pot | 26 ++++++++-------- 29 files changed, 379 insertions(+), 379 deletions(-) diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index ff2425c87..d622e0d51 100644 --- a/application/locale/bg_BG/LC_MESSAGES/messages.po +++ b/application/locale/bg_BG/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-01-28 06:50+0000\n" +"POT-Creation-Date: 2026-02-02 07:45+0000\n" "PO-Revision-Date: 2024-11-01 08:53+0000\n" "Last-Translator: Plamen Panteleev \n" "Language-Team: Bulgarian \n" "Language-Team: Bosnian \n" "Language-Team: Montenegrin \n" "Language-Team: Czech \n" "Language-Team: German \n" "Language-Team: Greek \n" "Language-Team: Spanish \n" "Language-Team: Estonian \n" "Language-Team: Finnish \n" "Language-Team: French \n" "Language-Team: Croatian \n" "Language-Team: Hungarian \n" "Language-Team: Armenian \n" "Language-Team: Italian \n" "Language-Team: Japanese \n" "Language-Team: Lithuanian \n" "Language-Team: Latvian \n" "Language-Team: Dutch \n" "Language-Team: Polish \n" "Language-Team: Portuguese (Portugal) \n" "Language-Team: Russian \n" "Language-Team: Slovak \n" "Language-Team: Albanian \n" "Language-Team: Serbian \n" "Language-Team: Swedish \n" "Language-Team: Turkish \n" -"Language-Team: Chinese (Simplified Han script) \n" +"Language-Team: Chinese (Simplified Han script) \n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -3563,52 +3563,52 @@ msgstr "qslsdate 字段错误(YYYYMMDD)" msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "clublog_qso_upload_date 字段错误( YYYYMMDD)" -#: application/models/Logbook_model.php:5435 +#: application/models/Logbook_model.php:5433 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "内容重复" -#: application/models/Logbook_model.php:5500 -#: application/models/Logbook_model.php:5595 +#: application/models/Logbook_model.php:5498 +#: application/models/Logbook_model.php:5593 msgid "QSO could not be matched" msgstr "QSO 无法匹配" -#: application/models/Logbook_model.php:5508 +#: application/models/Logbook_model.php:5506 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "已经通过 LoTW/Clublog/eQSL/竞赛 确认" -#: application/models/Logbook_model.php:5514 +#: application/models/Logbook_model.php:5512 msgid "confirmed by award manager" msgstr "已经通过奖项管理员确认" -#: application/models/Logbook_model.php:5518 +#: application/models/Logbook_model.php:5516 msgid "confirmed by cross-check of DCL data" msgstr "已经通过 DCL 数据交叉检查确认" -#: application/models/Logbook_model.php:5522 +#: application/models/Logbook_model.php:5520 msgid "confirmation pending" msgstr "等待确认" -#: application/models/Logbook_model.php:5525 +#: application/models/Logbook_model.php:5523 msgid "unconfirmed" msgstr "未确认" -#: application/models/Logbook_model.php:5528 +#: application/models/Logbook_model.php:5526 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "未知" -#: application/models/Logbook_model.php:5598 +#: application/models/Logbook_model.php:5596 msgid "POTA reference already in log" msgstr "日志中已存在 POTA 编号" -#: application/models/Logbook_model.php:5601 +#: application/models/Logbook_model.php:5599 msgid "QSO updated" msgstr "QSO已上传" -#: application/models/Logbook_model.php:5995 +#: application/models/Logbook_model.php:5993 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index c19733e46..bc0d5343e 100644 --- a/assets/lang_src/messages.pot +++ b/assets/lang_src/messages.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-01-28 06:50+0000\n" +"POT-Creation-Date: 2026-02-02 07:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -3527,52 +3527,52 @@ msgstr "" msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:5435 +#: application/models/Logbook_model.php:5433 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "" -#: application/models/Logbook_model.php:5500 -#: application/models/Logbook_model.php:5595 +#: application/models/Logbook_model.php:5498 +#: application/models/Logbook_model.php:5593 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:5508 +#: application/models/Logbook_model.php:5506 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:5514 +#: application/models/Logbook_model.php:5512 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:5518 +#: application/models/Logbook_model.php:5516 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:5522 +#: application/models/Logbook_model.php:5520 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:5525 +#: application/models/Logbook_model.php:5523 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:5528 +#: application/models/Logbook_model.php:5526 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "" -#: application/models/Logbook_model.php:5598 +#: application/models/Logbook_model.php:5596 msgid "POTA reference already in log" msgstr "" -#: application/models/Logbook_model.php:5601 +#: application/models/Logbook_model.php:5599 msgid "QSO updated" msgstr "" -#: application/models/Logbook_model.php:5995 +#: application/models/Logbook_model.php:5993 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 From 40f56d66d78bb144ec839c3ac0505016e5b47995 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 2 Feb 2026 08:14:11 +0000 Subject: [PATCH 13/13] po/mo updates --- .../locale/bg_BG/LC_MESSAGES/messages.po | 32 +++++++++---------- application/locale/bs/LC_MESSAGES/messages.po | 32 +++++++++---------- .../locale/cnr/LC_MESSAGES/messages.po | 32 +++++++++---------- .../locale/cs_CZ/LC_MESSAGES/messages.po | 32 +++++++++---------- .../locale/de_DE/LC_MESSAGES/messages.po | 32 +++++++++---------- .../locale/el_GR/LC_MESSAGES/messages.po | 32 +++++++++---------- .../locale/es_ES/LC_MESSAGES/messages.po | 32 +++++++++---------- application/locale/et/LC_MESSAGES/messages.po | 32 +++++++++---------- .../locale/fi_FI/LC_MESSAGES/messages.po | 32 +++++++++---------- .../locale/fr_FR/LC_MESSAGES/messages.po | 32 +++++++++---------- application/locale/hr/LC_MESSAGES/messages.po | 32 +++++++++---------- application/locale/hu/LC_MESSAGES/messages.po | 32 +++++++++---------- application/locale/hy/LC_MESSAGES/messages.po | 32 +++++++++---------- .../locale/it_IT/LC_MESSAGES/messages.po | 32 +++++++++---------- application/locale/ja/LC_MESSAGES/messages.po | 32 +++++++++---------- application/locale/lt/LC_MESSAGES/messages.po | 32 +++++++++---------- application/locale/lv/LC_MESSAGES/messages.po | 32 +++++++++---------- .../locale/nl_NL/LC_MESSAGES/messages.po | 32 +++++++++---------- .../locale/pl_PL/LC_MESSAGES/messages.po | 32 +++++++++---------- .../locale/pt_PT/LC_MESSAGES/messages.po | 32 +++++++++---------- .../locale/ru_RU/LC_MESSAGES/messages.po | 32 +++++++++---------- application/locale/sk/LC_MESSAGES/messages.po | 32 +++++++++---------- application/locale/sl/LC_MESSAGES/messages.po | 32 +++++++++---------- application/locale/sq/LC_MESSAGES/messages.po | 32 +++++++++---------- application/locale/sr/LC_MESSAGES/messages.po | 32 +++++++++---------- .../locale/sv_SE/LC_MESSAGES/messages.po | 32 +++++++++---------- .../locale/tr_TR/LC_MESSAGES/messages.po | 32 +++++++++---------- .../locale/zh_CN/LC_MESSAGES/messages.po | 32 +++++++++---------- assets/lang_src/messages.pot | 32 +++++++++---------- 29 files changed, 464 insertions(+), 464 deletions(-) diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index d622e0d51..cb90d02d9 100644 --- a/application/locale/bg_BG/LC_MESSAGES/messages.po +++ b/application/locale/bg_BG/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-02 07:45+0000\n" +"POT-Creation-Date: 2026-02-02 08:14+0000\n" "PO-Revision-Date: 2024-11-01 08:53+0000\n" "Last-Translator: Plamen Panteleev \n" "Language-Team: Bulgarian \n" "Language-Team: Bosnian \n" "Language-Team: Montenegrin \n" "Language-Team: Czech \n" "Language-Team: German \n" "Language-Team: Greek \n" "Language-Team: Spanish \n" "Language-Team: Estonian \n" "Language-Team: Finnish \n" "Language-Team: French \n" "Language-Team: Croatian \n" "Language-Team: Hungarian \n" "Language-Team: Armenian \n" "Language-Team: Italian \n" "Language-Team: Japanese \n" "Language-Team: Lithuanian \n" "Language-Team: Latvian \n" "Language-Team: Dutch \n" "Language-Team: Polish \n" "Language-Team: Portuguese (Portugal) \n" "Language-Team: Russian \n" "Language-Team: Slovak \n" "Language-Team: Albanian \n" "Language-Team: Serbian \n" "Language-Team: Swedish \n" "Language-Team: Turkish \n" "Language-Team: Chinese (Simplified Han script) \n" "Language-Team: LANGUAGE \n" @@ -439,7 +439,7 @@ msgid " and " msgstr "" #: application/controllers/Awards.php:595 -#: application/controllers/Logbook.php:1421 +#: application/controllers/Logbook.php:1423 #: application/views/awards/index.php:8 application/views/bandmap/list.php:326 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 @@ -467,7 +467,7 @@ msgid "SOTA" msgstr "" #: application/controllers/Awards.php:613 -#: application/controllers/Logbook.php:1422 +#: application/controllers/Logbook.php:1424 #: application/views/bandmap/list.php:328 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 @@ -489,7 +489,7 @@ msgid "WWFF" msgstr "" #: application/controllers/Awards.php:631 -#: application/controllers/Logbook.php:1423 +#: application/controllers/Logbook.php:1425 #: application/views/adif/import.php:60 application/views/bandmap/list.php:327 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 @@ -1429,7 +1429,7 @@ msgstr "" msgid "All callbook lookups failed or provided no results." msgstr "" -#: application/controllers/Logbook.php:1416 +#: application/controllers/Logbook.php:1418 #: application/controllers/Radio.php:46 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 @@ -1529,7 +1529,7 @@ msgstr "" msgid "Mode" msgstr "" -#: application/controllers/Logbook.php:1417 +#: application/controllers/Logbook.php:1419 #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 @@ -1558,7 +1558,7 @@ msgstr "" msgid "RST (S)" msgstr "" -#: application/controllers/Logbook.php:1418 +#: application/controllers/Logbook.php:1420 #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 @@ -1588,7 +1588,7 @@ msgstr "" msgid "RST (R)" msgstr "" -#: application/controllers/Logbook.php:1419 +#: application/controllers/Logbook.php:1421 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1609,7 +1609,7 @@ msgstr "" msgid "Country" msgstr "" -#: application/controllers/Logbook.php:1420 +#: application/controllers/Logbook.php:1422 #: application/views/awards/iota/index.php:198 #: application/views/bandmap/list.php:329 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 @@ -1640,7 +1640,7 @@ msgstr "" msgid "IOTA" msgstr "" -#: application/controllers/Logbook.php:1424 +#: application/controllers/Logbook.php:1426 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 @@ -1671,7 +1671,7 @@ msgstr "" msgid "State" msgstr "" -#: application/controllers/Logbook.php:1425 +#: application/controllers/Logbook.php:1427 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:54 @@ -1723,7 +1723,7 @@ msgstr "" msgid "Gridsquare" msgstr "" -#: application/controllers/Logbook.php:1426 +#: application/controllers/Logbook.php:1428 #: application/views/activated_gridmap/index.php:112 #: application/views/awards/ffma/index.php:40 #: application/views/awards/gridmaster/index.php:56 @@ -1753,7 +1753,7 @@ msgstr "" msgid "Distance" msgstr "" -#: application/controllers/Logbook.php:1427 +#: application/controllers/Logbook.php:1429 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:12 #: application/views/activators/index.php:10 @@ -1848,7 +1848,7 @@ msgstr "" msgid "Band" msgstr "" -#: application/controllers/Logbook.php:1428 +#: application/controllers/Logbook.php:1430 #: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 #: application/views/bandmap/list.php:567 #: application/views/contesting/index.php:148 @@ -1875,7 +1875,7 @@ msgstr "" msgid "Frequency" msgstr "" -#: application/controllers/Logbook.php:1429 +#: application/controllers/Logbook.php:1431 #: application/controllers/Radio.php:43 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 @@ -1899,7 +1899,7 @@ msgstr "" msgid "Operator" msgstr "" -#: application/controllers/Logbook.php:1450 +#: application/controllers/Logbook.php:1452 #: application/controllers/Stationsetup.php:424 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/dxcc/index.php:291