From a232db3c98004b1d8683818417376fd2d1fbb33f Mon Sep 17 00:00:00 2001 From: Andreas Kristiansen <6977712+AndreasK79@users.noreply.github.com> Date: Wed, 17 Jul 2024 18:24:44 +0200 Subject: [PATCH 01/10] [Contesting} Set userdata radio when logging --- application/controllers/Contesting.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/application/controllers/Contesting.php b/application/controllers/Contesting.php index af2a928e6..d0cad9fd8 100644 --- a/application/controllers/Contesting.php +++ b/application/controllers/Contesting.php @@ -71,6 +71,8 @@ class Contesting extends CI_Controller { public function setSession() { $this->load->model('Contesting_model'); $this->Contesting_model->setSession(); + + $this->session->set_userdata('radio', $this->input->post('radio')); header('Content-Type: application/json'); echo json_encode($this->Contesting_model->getSession()); } From 4cc6445a5720ad1816b64300374f85957e0e5997 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Sat, 20 Jul 2024 15:04:45 +0200 Subject: [PATCH 02/10] reduce debug messages --- system/core/Router.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/core/Router.php b/system/core/Router.php index c2fbb1471..b83f53928 100644 --- a/system/core/Router.php +++ b/system/core/Router.php @@ -322,7 +322,7 @@ class CI_Router { 2 => $method ); - log_message('debug', 'No URI present. Default controller set.'); + log_message('info', 'No URI present. Default controller set.'); } // -------------------------------------------------------------------- From aa5778796e9b139e24ae55a8b5d84046796fcf2b Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Sat, 20 Jul 2024 15:05:49 +0200 Subject: [PATCH 03/10] eqsl error handling --- application/controllers/Eqsl.php | 4 +++ application/models/Eqslmethods_model.php | 40 +++++++++++++++++------- 2 files changed, 33 insertions(+), 11 deletions(-) diff --git a/application/controllers/Eqsl.php b/application/controllers/Eqsl.php index 21eb950fe..6c70c9eee 100644 --- a/application/controllers/Eqsl.php +++ b/application/controllers/Eqsl.php @@ -186,6 +186,10 @@ class eqsl extends CI_Controller { $status = $this->eqslmethods_model->uploadQso($adif, $qsl); + if($status == 'Error') { + redirect('eqsl/export'); + } + $timestamp = strtotime($qsl['COL_TIME_ON']); $rows .= "" . date($custom_date_format, $timestamp) . ""; $rows .= "" . date('H:i', $timestamp) . ""; diff --git a/application/models/Eqslmethods_model.php b/application/models/Eqslmethods_model.php index 6de1b54d3..5e9030d63 100644 --- a/application/models/Eqslmethods_model.php +++ b/application/models/Eqslmethods_model.php @@ -10,13 +10,17 @@ class Eqslmethods_model extends CI_Model { $users = $this->get_eqsl_users(); foreach ($users as $user) { + log_message('debug', 'eQSL Upload for: '.$user->user_eqsl_name); $this->uploadUser($user->user_id, $user->user_eqsl_name, $user->user_eqsl_password); + log_message('debug', 'eQSL Download for: '.$user->user_eqsl_name); $this->downloadUser($user->user_id, $user->user_eqsl_name, $user->user_eqsl_password); } } function downloadUser($userid, $username, $password) { - $this->load->library('EqslImporter'); + if(!$this->load->is_loaded('EqslImporter')) { + $this->load->library('EqslImporter'); + } $config['upload_path'] = './uploads/'; $eqsl_locations = $this->all_of_user_with_eqsl_nick_defined($userid); @@ -47,6 +51,11 @@ class Eqslmethods_model extends CI_Model { $adif = $this->generateAdif($qsl, $data); $status = $this->uploadQso($adif, $qsl); + + if ($status == 'Error') { + log_message('error', 'eQSL Error for '.$data['user_eqsl_name']); + break; + } } } @@ -269,12 +278,16 @@ class Eqslmethods_model extends CI_Model { $this->eqsl_mark_sent($qsl['COL_PRIMARY_KEY']); } else { if (stristr($result, "Error: No match on eQSL_User/eQSL_Pswd")) { - $this->session->set_flashdata('warning', 'Your eQSL username and/or password is incorrect.'); - redirect('eqsl/export'); + $msg = __("Your eQSL username and/or password is incorrect."); + log_message('error', 'eQSL: '.$msg); + $this->session->set_flashdata('warning', $msg); + $status = "Error"; } else { if (stristr($result, "Result: 0 out of 0 records added")) { - $this->session->set_flashdata('warning', 'Something went wrong with eQSL.cc!'); - redirect('eqsl/export'); + $msg = __("Something went wrong with eQSL.cc!"); + log_message('error', 'eQSL: '.$msg); + $this->session->set_flashdata('warning', $msg); + $status = "Error"; } else { if (stristr($result, "Bad record: Duplicate")) { $status = "Duplicate"; @@ -287,17 +300,22 @@ class Eqslmethods_model extends CI_Model { } } else { if ($chi['http_code'] == "500") { - $this->session->set_flashdata('warning', 'eQSL.cc is experiencing issues. Please try exporting QSOs later.'); - redirect('eqsl/export'); + $msg = __("eQSL.cc is experiencing issues. Please try exporting QSOs later."); + log_message('error', 'eQSL: '.$msg); + $this->session->set_flashdata('warning', $msg); + $status = "Error"; } else { if ($chi['http_code'] == "400") { - $this->session->set_flashdata('warning', 'There was an error in one of the QSOs. You might want to manually upload them.'); - redirect('eqsl/export'); + $msg = __("There was an error in one of the QSOs. You might want to manually upload them."); + log_message('error', 'eQSL: '.$msg); + $this->session->set_flashdata('warning', $msg); $status = "Error"; } else { if ($chi['http_code'] == "404") { - $this->session->set_flashdata('warning', 'It seems that the eQSL site has changed. Please open up an issue on GitHub.'); - redirect('eqsl/export'); + $msg = __("It seems that the eQSL site has changed. Please open up an issue on GitHub."); + log_message('error', 'eQSL: '.$msg); + $this->session->set_flashdata('warning', $msg); + $status = "Error"; } } } From c9fcf55eabf6975e0768235ab49d39b8c1d17393 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Sat, 20 Jul 2024 15:18:56 +0200 Subject: [PATCH 04/10] added warning to "mark all qsos as sent" --- application/views/eqsl/tools.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/application/views/eqsl/tools.php b/application/views/eqsl/tools.php index 969983e00..8ad61669e 100644 --- a/application/views/eqsl/tools.php +++ b/application/views/eqsl/tools.php @@ -23,7 +23,10 @@
load->view('layout/messages'); ?> -

+
+

+
+

From f6a8b1c5702cb670cab1204cf880fca815ce7932 Mon Sep 17 00:00:00 2001 From: int2001 Date: Sun, 21 Jul 2024 13:34:40 +0000 Subject: [PATCH 05/10] Fixed DXCC2-Summary at Add QSO-Window (bottom) --- application/views/lookup/result.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/views/lookup/result.php b/application/views/lookup/result.php index 841796477..4fd0f27ab 100644 --- a/application/views/lookup/result.php +++ b/application/views/lookup/result.php @@ -15,7 +15,7 @@ foreach ($result as $mode => $value) { '. strtoupper($mode) .''; foreach ($value as $key => $val) { switch($type) { - case 'dxcc': $linkinfo = '' . $val . ''; break; + case 'dxcc': $linkinfo = '' . $val . ''; break; case 'iota': $linkinfo = '' . $val . ''; break; case 'vucc': $linkinfo = '' . $val . ''; break; case 'cq': $linkinfo = '' . $val . ''; break; From efc91325516c440a77a74995ab3bf057e7cb446b Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 22 Jul 2024 07:07:13 +0000 Subject: [PATCH 06/10] po/mo updates --- .../locale/bg_BG/LC_MESSAGES/messages.po | 43 +++++++++-- .../locale/cs_CZ/LC_MESSAGES/messages.po | 43 +++++++++-- .../locale/de_DE/LC_MESSAGES/messages.po | 47 +++++++++--- .../locale/el_GR/LC_MESSAGES/messages.po | 43 +++++++++-- .../locale/es_ES/LC_MESSAGES/messages.po | 43 +++++++++-- .../locale/fi_FI/LC_MESSAGES/messages.po | 43 +++++++++-- .../locale/fr_FR/LC_MESSAGES/messages.po | 43 +++++++++-- .../locale/it_IT/LC_MESSAGES/messages.po | 43 +++++++++-- .../locale/nl_NL/LC_MESSAGES/messages.po | 43 +++++++++-- .../locale/pl_PL/LC_MESSAGES/messages.po | 43 +++++++++-- .../locale/ru_RU/LC_MESSAGES/messages.po | 43 +++++++++-- .../locale/sv_SE/LC_MESSAGES/messages.po | 43 +++++++++-- .../locale/tr_TR/LC_MESSAGES/messages.po | 43 +++++++++-- .../locale/zh_CN/LC_MESSAGES/messages.po | 73 ++++++++++++++----- assets/lang_src/messages.pot | 43 +++++++++-- .../includes/gettext/lang_src/installer.pot | 2 +- 16 files changed, 561 insertions(+), 120 deletions(-) diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index b6b656a7a..75391107e 100644 --- a/application/locale/bg_BG/LC_MESSAGES/messages.po +++ b/application/locale/bg_BG/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-17 15:11+0000\n" +"POT-Creation-Date: 2024-07-22 07:07+0000\n" "PO-Revision-Date: 2024-07-09 13:25+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Bulgarian \n" "Language-Team: Czech \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -586,19 +586,19 @@ msgstr "eQSL Import Information" msgid "eQSL QSO Upload" msgstr "eQSL QSO Upload" -#: application/controllers/Eqsl.php:411 +#: application/controllers/Eqsl.php:415 msgid "eQSL Tools" msgstr "eQSL Tools" -#: application/controllers/Eqsl.php:458 +#: application/controllers/Eqsl.php:462 msgid " / Errors: " msgstr " / Fehler: " -#: application/controllers/Eqsl.php:458 +#: application/controllers/Eqsl.php:462 msgid "Successfully downloaded: " msgstr "Erfolgreich heruntergeladen: " -#: application/controllers/Eqsl.php:467 +#: application/controllers/Eqsl.php:471 msgid "eQSL Card Image Download" msgstr "eQSL Karten Bilder Download" @@ -2030,6 +2030,29 @@ msgstr "Export Karte" msgid "QO-100 Dx Club Upload" msgstr "QO-100 Dx Club Upload" +#: application/models/Eqslmethods_model.php:281 +msgid "Your eQSL username and/or password is incorrect." +msgstr "" + +#: application/models/Eqslmethods_model.php:287 +msgid "Something went wrong with eQSL.cc!" +msgstr "" + +#: application/models/Eqslmethods_model.php:303 +msgid "eQSL.cc is experiencing issues. Please try exporting QSOs later." +msgstr "" + +#: application/models/Eqslmethods_model.php:309 +msgid "" +"There was an error in one of the QSOs. You might want to manually upload " +"them." +msgstr "" + +#: application/models/Eqslmethods_model.php:315 +msgid "" +"It seems that the eQSL site has changed. Please open up an issue on GitHub." +msgstr "" + #: application/models/Hrdlog_model.php:22 msgid "" "HRDlog: QSOs have been uploaded to hrdlog.net for the station callsign: " @@ -5962,11 +5985,17 @@ msgstr "Logdateien müssen den Dateityp .adi haben" msgid "Import directly from eQSL" msgstr "Direktimport von eQSL" -#: application/views/eqsl/tools.php:26 +#: application/views/eqsl/tools.php:27 +msgid "" +"This does NOT upload any QSOs. It only marks QSOs as sent. If you use this " +"button you need to upload them manually on the eQSL.cc website." +msgstr "" + +#: application/views/eqsl/tools.php:29 msgid "Mark All QSOs as Sent to eQSL" msgstr "Markiere alle QSOs als gesendet für eQSL" -#: application/views/eqsl/tools.php:26 +#: application/views/eqsl/tools.php:29 msgid "" "Use this if you have lots of QSOs to upload to eQSL it will save the server " "timing out." diff --git a/application/locale/el_GR/LC_MESSAGES/messages.po b/application/locale/el_GR/LC_MESSAGES/messages.po index 3eba2a6bc..2a3505f3e 100644 --- a/application/locale/el_GR/LC_MESSAGES/messages.po +++ b/application/locale/el_GR/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-17 15:11+0000\n" +"POT-Creation-Date: 2024-07-22 07:07+0000\n" "PO-Revision-Date: 2024-07-09 13:25+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Greek \n" "Language-Team: Spanish \n" "Language-Team: Finnish .adi" msgid "Import directly from eQSL" msgstr "" -#: application/views/eqsl/tools.php:26 +#: application/views/eqsl/tools.php:27 +msgid "" +"This does NOT upload any QSOs. It only marks QSOs as sent. If you use this " +"button you need to upload them manually on the eQSL.cc website." +msgstr "" + +#: application/views/eqsl/tools.php:29 msgid "Mark All QSOs as Sent to eQSL" msgstr "" -#: application/views/eqsl/tools.php:26 +#: application/views/eqsl/tools.php:29 msgid "" "Use this if you have lots of QSOs to upload to eQSL it will save the server " "timing out." diff --git a/application/locale/fr_FR/LC_MESSAGES/messages.po b/application/locale/fr_FR/LC_MESSAGES/messages.po index a9ee53bb1..113a03e88 100644 --- a/application/locale/fr_FR/LC_MESSAGES/messages.po +++ b/application/locale/fr_FR/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-17 15:11+0000\n" +"POT-Creation-Date: 2024-07-22 07:07+0000\n" "PO-Revision-Date: 2024-07-13 09:35+0000\n" "Last-Translator: Byt3 \n" "Language-Team: French \n" "Language-Team: Italian \n" "Language-Team: Dutch \n" "Language-Team: Polish \n" "Language-Team: Russian \n" "Language-Team: Swedish \n" "Language-Team: Turkish \n" "Language-Team: Chinese (Simplified) all QSO's of the ADIF, " "regardless if they match to the chosen station-location." -msgstr "如果选择,Wavelog 会尝试导入 ADIF 文件中的 所有 " -"QSO,而不判断是否与所选台站位置匹配。" +msgstr "" +"如果选择,Wavelog 会尝试导入 ADIF 文件中的 所有 QSO,而不判断是否与所" +"选台站位置匹配。" #: application/views/adif/import.php:158 application/views/adif/import.php:273 #: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 @@ -3062,14 +3086,16 @@ msgid "" "The CQ Magazine is located in the US and one of the most popular amateur " "radio magazines in the world. The magazine first appeared in January 1945 " "and focuses on awards and the practical aspects of amateur radio." -msgstr "CQ 杂志来自美国,是世界上最受欢迎的业余无线电杂志之一。该杂志于 1945 年 1 " -"月首次出版,重点关注业余无线电的奖项和实用方面。" +msgstr "" +"CQ 杂志来自美国,是世界上最受欢迎的业余无线电杂志之一。该杂志于 1945 年 1 月" +"首次出版,重点关注业余无线电的奖项和实用方面。" #: application/views/awards/cq/index.php:20 msgid "" "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " "all 40 CQ Zones along with the corresponding confirmation." -msgstr "WAZ 奖代表“Worked All Zones”,需要与所有40个CQ分区进行QSO并提供相应的确认。" +msgstr "" +"WAZ 奖代表“Worked All Zones”,需要与所有40个CQ分区进行QSO并提供相应的确认。" #: application/views/awards/cq/index.php:21 #, php-format @@ -4047,7 +4073,8 @@ msgstr "您可以通过将其设置为cronjob来自动化此过程。" msgid "" "Something went wrong during the backup process. Check that the backup folder " "exists and is writeable by your web server user / group." -msgstr "备份过程中出现错误。请检查备份文件夹是否存在并且您的Web服务器用户/组有写入权" +msgstr "" +"备份过程中出现错误。请检查备份文件夹是否存在并且您的Web服务器用户/组有写入权" "限。" #: application/views/backup/main.php:17 @@ -5692,7 +5719,8 @@ msgstr "查看/下载" msgid "" "Wavelog will use the eQSL credentials from your Wavelog user profile to " "connect to eQSL and download confirmations." -msgstr "Wavelog将使用您的Wavelog用户配置文件中的eQSL凭据连接并下载eQSL确认信息。" +msgstr "" +"Wavelog将使用您的Wavelog用户配置文件中的eQSL凭据连接并下载eQSL确认信息。" #: application/views/eqsl/download.php:73 msgid "" @@ -5701,9 +5729,9 @@ msgid "" "to call this function several times depending on the amount of outstanding " "cards. This may run into a script timeout depending on the PHP configuration." msgstr "" -"由于每个eQSL图片下载的速度限制约为10秒,调用此功能需要很长时间才能完成! " -"因此,您可能需要多次调用此函数,具体取决于尚未下载的卡片数量。 " -"这可能会导致脚本超时,具体取决于PHP配置。" +"由于每个eQSL图片下载的速度限制约为10秒,调用此功能需要很长时间才能完成! 因" +"此,您可能需要多次调用此函数,具体取决于尚未下载的卡片数量。 这可能会导致脚本" +"超时,具体取决于PHP配置。" #: application/views/eqsl/download.php:81 msgid "" @@ -5719,8 +5747,9 @@ msgstr "" msgid "" "Please make sure the 'eQSL QTH Nickname' field is set in your station " "profile and that the value matches the QTH Nickname you set within eQSL." -msgstr "请确保 \"eQSL QTH昵称 \"字段已在您的电台配置文件中设置,且该值与您在eQSL " -"中设置的QTH昵称一致。" +msgstr "" +"请确保 \"eQSL QTH昵称 \"字段已在您的电台配置文件中设置,且该值与您在eQSL 中设" +"置的QTH昵称一致。" #: application/views/eqsl/export.php:37 msgid "Clicking 'Upload QSOs' will send QSO information to eQSL.cc." @@ -5763,11 +5792,17 @@ msgstr "日志文件的类型必须为 .adi" msgid "Import directly from eQSL" msgstr "直接从eQSL导入" -#: application/views/eqsl/tools.php:26 +#: application/views/eqsl/tools.php:27 +msgid "" +"This does NOT upload any QSOs. It only marks QSOs as sent. If you use this " +"button you need to upload them manually on the eQSL.cc website." +msgstr "" + +#: application/views/eqsl/tools.php:29 msgid "Mark All QSOs as Sent to eQSL" msgstr "" -#: application/views/eqsl/tools.php:26 +#: application/views/eqsl/tools.php:29 msgid "" "Use this if you have lots of QSOs to upload to eQSL it will save the server " "timing out." diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index 80ca66754..52216ccb2 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: 2024-07-18 15:21+0000\n" +"POT-Creation-Date: 2024-07-22 07:07+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -576,19 +576,19 @@ msgstr "" msgid "eQSL QSO Upload" msgstr "" -#: application/controllers/Eqsl.php:411 +#: application/controllers/Eqsl.php:415 msgid "eQSL Tools" msgstr "" -#: application/controllers/Eqsl.php:458 +#: application/controllers/Eqsl.php:462 msgid " / Errors: " msgstr "" -#: application/controllers/Eqsl.php:458 +#: application/controllers/Eqsl.php:462 msgid "Successfully downloaded: " msgstr "" -#: application/controllers/Eqsl.php:467 +#: application/controllers/Eqsl.php:471 msgid "eQSL Card Image Download" msgstr "" @@ -2000,6 +2000,29 @@ msgstr "" msgid "QO-100 Dx Club Upload" msgstr "" +#: application/models/Eqslmethods_model.php:281 +msgid "Your eQSL username and/or password is incorrect." +msgstr "" + +#: application/models/Eqslmethods_model.php:287 +msgid "Something went wrong with eQSL.cc!" +msgstr "" + +#: application/models/Eqslmethods_model.php:303 +msgid "eQSL.cc is experiencing issues. Please try exporting QSOs later." +msgstr "" + +#: application/models/Eqslmethods_model.php:309 +msgid "" +"There was an error in one of the QSOs. You might want to manually upload " +"them." +msgstr "" + +#: application/models/Eqslmethods_model.php:315 +msgid "" +"It seems that the eQSL site has changed. Please open up an issue on GitHub." +msgstr "" + #: application/models/Hrdlog_model.php:22 msgid "" "HRDlog: QSOs have been uploaded to hrdlog.net for the station callsign: " @@ -5671,11 +5694,17 @@ msgstr "" msgid "Import directly from eQSL" msgstr "" -#: application/views/eqsl/tools.php:26 +#: application/views/eqsl/tools.php:27 +msgid "" +"This does NOT upload any QSOs. It only marks QSOs as sent. If you use this " +"button you need to upload them manually on the eQSL.cc website." +msgstr "" + +#: application/views/eqsl/tools.php:29 msgid "Mark All QSOs as Sent to eQSL" msgstr "" -#: application/views/eqsl/tools.php:26 +#: application/views/eqsl/tools.php:29 msgid "" "Use this if you have lots of QSOs to upload to eQSL it will save the server " "timing out." diff --git a/install/includes/gettext/lang_src/installer.pot b/install/includes/gettext/lang_src/installer.pot index 000281c77..c064d4f45 100644 --- a/install/includes/gettext/lang_src/installer.pot +++ b/install/includes/gettext/lang_src/installer.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-18 15:21+0000\n" +"POT-Creation-Date: 2024-07-22 07:07+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 097405e2864089d2172d58ae783ab71697c4552c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Koloni=C4=8Dn=C3=BD?= Date: Sun, 21 Jul 2024 13:10:27 +0000 Subject: [PATCH 07/10] Translated using Weblate (Czech) Currently translated at 19.2% (351 of 1820 strings) Translation: Wavelog/Main Translation Translate-URL: https://translate.wavelog.org/projects/wavelog/main-translation/cs/ --- .../locale/cs_CZ/LC_MESSAGES/messages.po | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/application/locale/cs_CZ/LC_MESSAGES/messages.po b/application/locale/cs_CZ/LC_MESSAGES/messages.po index d84401cca..618eb2309 100644 --- a/application/locale/cs_CZ/LC_MESSAGES/messages.po +++ b/application/locale/cs_CZ/LC_MESSAGES/messages.po @@ -7,16 +7,16 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" "POT-Creation-Date: 2024-07-17 15:11+0000\n" -"PO-Revision-Date: 2024-07-10 20:23+0000\n" +"PO-Revision-Date: 2024-07-22 07:07+0000\n" "Last-Translator: Ondřej Koloničný \n" -"Language-Team: Czech \n" +"Language-Team: Czech \n" "Language: cs_CZ\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 5.6\n" +"X-Generator: Weblate 5.6.2\n" #: application/controllers/Accumulated.php:21 #: application/views/interface_assets/header.php:148 @@ -92,7 +92,7 @@ msgstr "Nepodporovaný formát souboru" #: application/controllers/Adif.php:247 msgid "Station Profile not valid for User" -msgstr "" +msgstr "Profil stanice není platný pro uživatele" #: application/controllers/Adif.php:254 #: application/views/adif/import_success.php:12 @@ -117,7 +117,7 @@ msgstr "Popis API" #: application/controllers/Api.php:51 msgid "API Key is required. Do not change this field" -msgstr "" +msgstr "Je vyžadován klíč API. Toto pole neměňte" #: application/controllers/Api.php:57 msgid "Edit API Description" @@ -135,7 +135,7 @@ msgstr "API klíč %s byl smazán" #: application/controllers/Api.php:118 msgid "Key Disabled" -msgstr "" +msgstr "Klíč je zakázaný" #: application/controllers/Api.php:118 msgid "No Key Found" @@ -240,11 +240,11 @@ msgstr "" #: application/controllers/Awards.php:457 msgid " and sat " -msgstr "" +msgstr " a sat " #: application/controllers/Awards.php:460 msgid " and orbit type " -msgstr "" +msgstr " a typ oběhu " #: application/controllers/Awards.php:464 msgid " and propagation " @@ -256,7 +256,7 @@ msgstr "" #: application/controllers/Awards.php:470 msgid " and " -msgstr "" +msgstr " a " #: application/controllers/Awards.php:486 #: application/controllers/Logbook.php:1278 @@ -602,7 +602,7 @@ msgstr "Mapa lokátorů" #: application/controllers/Gridmap.php:34 #: application/controllers/Visitor.php:377 msgid "Total gridsquares worked" -msgstr "Celkový počet odpracovaných lokátorů" +msgstr "Celkový počet lokátorů" #: application/controllers/Hamsat.php:59 msgid "Hamsat - Satellite Roving" @@ -2744,7 +2744,7 @@ msgstr "" #: application/views/adif/import.php:267 msgid "Ignore QSOs that cannot be matched." -msgstr "Ignore QSOs that cannot be matched" +msgstr "Ignorovat QSO, které nelze porovnat." #: application/views/adif/import.php:269 msgid "" @@ -3085,7 +3085,7 @@ msgstr "Potvrzeno" #: application/views/dashboard/index.php:356 #: application/views/visitor/index.php:262 msgid "Worked" -msgstr "Spojeno" +msgstr "Navázáno" #: application/views/awards/cq/index.php:36 #: application/views/awards/dok/index.php:41 @@ -4986,7 +4986,7 @@ msgstr "Počet zemí" #: application/views/dashboard/index.php:253 #: application/views/visitor/index.php:275 msgid "Needed" -msgstr "Potřebuje se" +msgstr "Zbývá" #: application/views/dashboard/index.php:266 #: application/views/dashboard/index.php:293 From 41d081e35e9b043249a95973b70946607050e096 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 22 Jul 2024 07:07:56 +0000 Subject: [PATCH 08/10] po/mo updates --- application/locale/bg_BG/LC_MESSAGES/messages.po | 4 ++-- application/locale/cs_CZ/LC_MESSAGES/messages.po | 4 ++-- application/locale/de_DE/LC_MESSAGES/messages.po | 4 ++-- application/locale/el_GR/LC_MESSAGES/messages.po | 4 ++-- application/locale/es_ES/LC_MESSAGES/messages.po | 4 ++-- application/locale/fi_FI/LC_MESSAGES/messages.po | 4 ++-- application/locale/fr_FR/LC_MESSAGES/messages.po | 4 ++-- application/locale/it_IT/LC_MESSAGES/messages.po | 4 ++-- application/locale/nl_NL/LC_MESSAGES/messages.po | 4 ++-- application/locale/pl_PL/LC_MESSAGES/messages.po | 4 ++-- application/locale/ru_RU/LC_MESSAGES/messages.po | 4 ++-- application/locale/sv_SE/LC_MESSAGES/messages.po | 4 ++-- application/locale/tr_TR/LC_MESSAGES/messages.po | 4 ++-- application/locale/zh_CN/LC_MESSAGES/messages.po | 4 ++-- assets/lang_src/messages.pot | 4 ++-- 15 files changed, 30 insertions(+), 30 deletions(-) diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index 75391107e..def6ba1f8 100644 --- a/application/locale/bg_BG/LC_MESSAGES/messages.po +++ b/application/locale/bg_BG/LC_MESSAGES/messages.po @@ -462,12 +462,12 @@ msgstr "" msgid "Contest Logging" msgstr "Регистриране на състезание" -#: application/controllers/Contesting.php:99 +#: application/controllers/Contesting.php:101 #: application/views/interface_assets/header.php:266 msgid "Contests" msgstr "" -#: application/controllers/Contesting.php:113 +#: application/controllers/Contesting.php:115 msgid "Update Contest" msgstr "" diff --git a/application/locale/cs_CZ/LC_MESSAGES/messages.po b/application/locale/cs_CZ/LC_MESSAGES/messages.po index acfbf9eea..0b67f7c87 100644 --- a/application/locale/cs_CZ/LC_MESSAGES/messages.po +++ b/application/locale/cs_CZ/LC_MESSAGES/messages.po @@ -463,12 +463,12 @@ msgstr "" msgid "Contest Logging" msgstr "Závodní deník" -#: application/controllers/Contesting.php:99 +#: application/controllers/Contesting.php:101 #: application/views/interface_assets/header.php:266 msgid "Contests" msgstr "Závody" -#: application/controllers/Contesting.php:113 +#: application/controllers/Contesting.php:115 msgid "Update Contest" msgstr "" diff --git a/application/locale/de_DE/LC_MESSAGES/messages.po b/application/locale/de_DE/LC_MESSAGES/messages.po index cd49b9fd2..65275f8ad 100644 --- a/application/locale/de_DE/LC_MESSAGES/messages.po +++ b/application/locale/de_DE/LC_MESSAGES/messages.po @@ -468,12 +468,12 @@ msgstr "Contest Kalender" msgid "Contest Logging" msgstr "Contest-Logging" -#: application/controllers/Contesting.php:99 +#: application/controllers/Contesting.php:101 #: application/views/interface_assets/header.php:266 msgid "Contests" msgstr "Conteste" -#: application/controllers/Contesting.php:113 +#: application/controllers/Contesting.php:115 msgid "Update Contest" msgstr "Aktualisiere Contest" diff --git a/application/locale/el_GR/LC_MESSAGES/messages.po b/application/locale/el_GR/LC_MESSAGES/messages.po index 2a3505f3e..a9b04ed72 100644 --- a/application/locale/el_GR/LC_MESSAGES/messages.po +++ b/application/locale/el_GR/LC_MESSAGES/messages.po @@ -463,12 +463,12 @@ msgstr "" msgid "Contest Logging" msgstr "Αρχείο διαγωνισμού" -#: application/controllers/Contesting.php:99 +#: application/controllers/Contesting.php:101 #: application/views/interface_assets/header.php:266 msgid "Contests" msgstr "" -#: application/controllers/Contesting.php:113 +#: application/controllers/Contesting.php:115 msgid "Update Contest" msgstr "" diff --git a/application/locale/es_ES/LC_MESSAGES/messages.po b/application/locale/es_ES/LC_MESSAGES/messages.po index 520edc61f..4d5d8bdde 100644 --- a/application/locale/es_ES/LC_MESSAGES/messages.po +++ b/application/locale/es_ES/LC_MESSAGES/messages.po @@ -463,12 +463,12 @@ msgstr "Calendario de Concursos" msgid "Contest Logging" msgstr "Registro de Concurso" -#: application/controllers/Contesting.php:99 +#: application/controllers/Contesting.php:101 #: application/views/interface_assets/header.php:266 msgid "Contests" msgstr "Concursos" -#: application/controllers/Contesting.php:113 +#: application/controllers/Contesting.php:115 msgid "Update Contest" msgstr "Actualizar Concurso" diff --git a/application/locale/fi_FI/LC_MESSAGES/messages.po b/application/locale/fi_FI/LC_MESSAGES/messages.po index 738e08873..0169c4eb6 100644 --- a/application/locale/fi_FI/LC_MESSAGES/messages.po +++ b/application/locale/fi_FI/LC_MESSAGES/messages.po @@ -462,12 +462,12 @@ msgstr "" msgid "Contest Logging" msgstr "Kilpailuloki" -#: application/controllers/Contesting.php:99 +#: application/controllers/Contesting.php:101 #: application/views/interface_assets/header.php:266 msgid "Contests" msgstr "Kontestit" -#: application/controllers/Contesting.php:113 +#: application/controllers/Contesting.php:115 msgid "Update Contest" msgstr "" diff --git a/application/locale/fr_FR/LC_MESSAGES/messages.po b/application/locale/fr_FR/LC_MESSAGES/messages.po index 113a03e88..276122f69 100644 --- a/application/locale/fr_FR/LC_MESSAGES/messages.po +++ b/application/locale/fr_FR/LC_MESSAGES/messages.po @@ -464,12 +464,12 @@ msgstr "Calendrier des concours" msgid "Contest Logging" msgstr "Concours - enregistrement des QSO" -#: application/controllers/Contesting.php:99 +#: application/controllers/Contesting.php:101 #: application/views/interface_assets/header.php:266 msgid "Contests" msgstr "Concours" -#: application/controllers/Contesting.php:113 +#: application/controllers/Contesting.php:115 msgid "Update Contest" msgstr "Mettre à jour" diff --git a/application/locale/it_IT/LC_MESSAGES/messages.po b/application/locale/it_IT/LC_MESSAGES/messages.po index cd9c79b21..6bbb3c8c7 100644 --- a/application/locale/it_IT/LC_MESSAGES/messages.po +++ b/application/locale/it_IT/LC_MESSAGES/messages.po @@ -462,12 +462,12 @@ msgstr "" msgid "Contest Logging" msgstr "Log per Contest" -#: application/controllers/Contesting.php:99 +#: application/controllers/Contesting.php:101 #: application/views/interface_assets/header.php:266 msgid "Contests" msgstr "" -#: application/controllers/Contesting.php:113 +#: application/controllers/Contesting.php:115 msgid "Update Contest" msgstr "" diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.po b/application/locale/nl_NL/LC_MESSAGES/messages.po index c004bce22..96b19c184 100644 --- a/application/locale/nl_NL/LC_MESSAGES/messages.po +++ b/application/locale/nl_NL/LC_MESSAGES/messages.po @@ -462,12 +462,12 @@ msgstr "" msgid "Contest Logging" msgstr "" -#: application/controllers/Contesting.php:99 +#: application/controllers/Contesting.php:101 #: application/views/interface_assets/header.php:266 msgid "Contests" msgstr "" -#: application/controllers/Contesting.php:113 +#: application/controllers/Contesting.php:115 msgid "Update Contest" msgstr "" diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.po b/application/locale/pl_PL/LC_MESSAGES/messages.po index 9bdd7c846..f80c47acc 100644 --- a/application/locale/pl_PL/LC_MESSAGES/messages.po +++ b/application/locale/pl_PL/LC_MESSAGES/messages.po @@ -463,12 +463,12 @@ msgstr "" msgid "Contest Logging" msgstr "Logowanie Zawodów" -#: application/controllers/Contesting.php:99 +#: application/controllers/Contesting.php:101 #: application/views/interface_assets/header.php:266 msgid "Contests" msgstr "" -#: application/controllers/Contesting.php:113 +#: application/controllers/Contesting.php:115 msgid "Update Contest" msgstr "" diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.po b/application/locale/ru_RU/LC_MESSAGES/messages.po index 263ca3a58..77fdf7827 100644 --- a/application/locale/ru_RU/LC_MESSAGES/messages.po +++ b/application/locale/ru_RU/LC_MESSAGES/messages.po @@ -464,12 +464,12 @@ msgstr "Календарь контестов" msgid "Contest Logging" msgstr "Журнал контеста" -#: application/controllers/Contesting.php:99 +#: application/controllers/Contesting.php:101 #: application/views/interface_assets/header.php:266 msgid "Contests" msgstr "Контесты" -#: application/controllers/Contesting.php:113 +#: application/controllers/Contesting.php:115 msgid "Update Contest" msgstr "Обновить контест" diff --git a/application/locale/sv_SE/LC_MESSAGES/messages.po b/application/locale/sv_SE/LC_MESSAGES/messages.po index 7ac07d859..ce4620aef 100644 --- a/application/locale/sv_SE/LC_MESSAGES/messages.po +++ b/application/locale/sv_SE/LC_MESSAGES/messages.po @@ -462,12 +462,12 @@ msgstr "" msgid "Contest Logging" msgstr "Contest-loggning" -#: application/controllers/Contesting.php:99 +#: application/controllers/Contesting.php:101 #: application/views/interface_assets/header.php:266 msgid "Contests" msgstr "Tävlingar" -#: application/controllers/Contesting.php:113 +#: application/controllers/Contesting.php:115 msgid "Update Contest" msgstr "" diff --git a/application/locale/tr_TR/LC_MESSAGES/messages.po b/application/locale/tr_TR/LC_MESSAGES/messages.po index 4cccfec50..b64622449 100644 --- a/application/locale/tr_TR/LC_MESSAGES/messages.po +++ b/application/locale/tr_TR/LC_MESSAGES/messages.po @@ -462,12 +462,12 @@ msgstr "" msgid "Contest Logging" msgstr "" -#: application/controllers/Contesting.php:99 +#: application/controllers/Contesting.php:101 #: application/views/interface_assets/header.php:266 msgid "Contests" msgstr "" -#: application/controllers/Contesting.php:113 +#: application/controllers/Contesting.php:115 msgid "Update Contest" msgstr "" diff --git a/application/locale/zh_CN/LC_MESSAGES/messages.po b/application/locale/zh_CN/LC_MESSAGES/messages.po index f5ece7b15..88dc9dc49 100644 --- a/application/locale/zh_CN/LC_MESSAGES/messages.po +++ b/application/locale/zh_CN/LC_MESSAGES/messages.po @@ -464,12 +464,12 @@ msgstr "竞赛日志" msgid "Contest Logging" msgstr "竞赛日志" -#: application/controllers/Contesting.php:99 +#: application/controllers/Contesting.php:101 #: application/views/interface_assets/header.php:266 msgid "Contests" msgstr "比赛" -#: application/controllers/Contesting.php:113 +#: application/controllers/Contesting.php:115 msgid "Update Contest" msgstr "更新竞赛" diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index 52216ccb2..0ef2657c4 100644 --- a/assets/lang_src/messages.pot +++ b/assets/lang_src/messages.pot @@ -461,12 +461,12 @@ msgstr "" msgid "Contest Logging" msgstr "" -#: application/controllers/Contesting.php:99 +#: application/controllers/Contesting.php:101 #: application/views/interface_assets/header.php:266 msgid "Contests" msgstr "" -#: application/controllers/Contesting.php:113 +#: application/controllers/Contesting.php:115 msgid "Update Contest" msgstr "" From 25baff354d632419427b5386e38ec09133a0ba06 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 22 Jul 2024 07:19:44 +0000 Subject: [PATCH 09/10] po/mo updates --- .../locale/cs_CZ/LC_MESSAGES/messages.mo | Bin 22955 -> 23376 bytes .../locale/cs_CZ/LC_MESSAGES/messages.po | 72 +++++++++--------- assets/lang_src/messages.pot | 2 +- .../includes/gettext/lang_src/installer.pot | 2 +- 4 files changed, 38 insertions(+), 38 deletions(-) diff --git a/application/locale/cs_CZ/LC_MESSAGES/messages.mo b/application/locale/cs_CZ/LC_MESSAGES/messages.mo index b176be7942facdadff4f71782181aa2c53264ad7..1f1e46ad00cd3dc113b760d8b865df46934c20f7 100644 GIT binary patch delta 8036 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 VxOjdh?+T%io_XQ;l6Qv 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 mR57M\n" "Language-Team: Czech \n" "Language-Team: LANGUAGE \n" diff --git a/install/includes/gettext/lang_src/installer.pot b/install/includes/gettext/lang_src/installer.pot index c064d4f45..c06fb0c9b 100644 --- a/install/includes/gettext/lang_src/installer.pot +++ b/install/includes/gettext/lang_src/installer.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-22 07:07+0000\n" +"POT-Creation-Date: 2024-07-22 07:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 8838b0077e8f46bc8897b2c99a77c7498af77413 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 22 Jul 2024 07:35:26 +0000 Subject: [PATCH 10/10] po/mo updates --- assets/lang_src/messages.pot | 2 +- install/includes/gettext/lang_src/installer.pot | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index 4400e5300..e783794f0 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: 2024-07-22 07:19+0000\n" +"POT-Creation-Date: 2024-07-22 07:35+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/install/includes/gettext/lang_src/installer.pot b/install/includes/gettext/lang_src/installer.pot index c06fb0c9b..79d867f78 100644 --- a/install/includes/gettext/lang_src/installer.pot +++ b/install/includes/gettext/lang_src/installer.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-22 07:19+0000\n" +"POT-Creation-Date: 2024-07-22 07:35+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n"