From 8b74a34117974f2dbe3e72b4e5b6d23651d0f5ba Mon Sep 17 00:00:00 2001 From: int2001 Date: Mon, 1 Jul 2024 14:16:42 +0000 Subject: [PATCH 01/24] Removes a security-issue around HRD-Marking and moves the function to Model --- application/controllers/Hrdlog.php | 30 +++++++++++------------------ application/models/Hrdlog_model.php | 20 +++++++++++++++++++ 2 files changed, 31 insertions(+), 19 deletions(-) diff --git a/application/controllers/Hrdlog.php b/application/controllers/Hrdlog.php index 814f12810..eadb0e71b 100644 --- a/application/controllers/Hrdlog.php +++ b/application/controllers/Hrdlog.php @@ -83,25 +83,17 @@ class Hrdlog extends CI_Controller { } public function mark_hrdlog() { - // Set memory limit to unlimited to allow heavy usage - ini_set('memory_limit', '-1'); + // As far as i did research, this one is ONLY Called by "Mark-QSO" at the UI + $this->load->model('hrdlog_model'); + $this->load->model('stations'); + $station_id = $this->security->xss_clean($this->input->post('station_profile')); - $station_id = $this->security->xss_clean($this->input->post('station_profile')); - - $this->load->model('adif_data'); - $this->load->model('logbook_model'); - - $data['qsos'] = $this->adif_data->export_custom($this->input->post('from'), $this->input->post('to'), $station_id); - - if (isset($data['qsos'])) { - foreach ($data['qsos']->result() as $qso) - { - $this->logbook_model->mark_hrdlog_qsos_sent($qso->COL_PRIMARY_KEY); - } - } - - $this->load->view('interface_assets/header', $data); - $this->load->view('hrdlog/mark_hrdlog', $data); - $this->load->view('interface_assets/footer'); + $data['qsos']=[]; + if ($this->stations->check_station_is_accessible($station_id)) { // Hard Exit if station_profile not accessible + $data['qsos']=$this->hrdlog_model->mass_mark_hrdlog_sent($station_id,$this->security->xss_clean($this->input->post('from')),$this->security->xss_clean($this->input->post('to'))); + } + $this->load->view('interface_assets/header', $data); + $this->load->view('hrdlog/mark_hrdlog', $data); + $this->load->view('interface_assets/footer'); } } diff --git a/application/models/Hrdlog_model.php b/application/models/Hrdlog_model.php index e39dce4df..246a84580 100644 --- a/application/models/Hrdlog_model.php +++ b/application/models/Hrdlog_model.php @@ -94,6 +94,26 @@ class Hrdlog_model extends CI_Model { return $result; } + function mass_mark_hrdlog_sent($station_id, $from, $till) { + // Set memory limit to unlimited to allow heavy usage + ini_set('memory_limit', '-1'); + + $this->load->model('adif_data'); + $this->load->model('logbook_model'); + + $qsos = $this->adif_data->export_custom($from, $till, $station_id); + + if (isset($qsos)) { + foreach ($qsos->result() as $qso) { + $mark_them[]=$qso->COL_PRIMARY_KEY; + } + $sql="update ".$this->config->item('table_name')." set COL_HRDLOG_QSO_UPLOAD_DATE='".date("Y-m-d H:i:s", strtotime("now"))."', COL_HRDLOG_QSO_UPLOAD_STATUS='Y' where col_primary_key in (".implode(',', array_values($mark_them)).") and station_id=".$station_id; + $query = $this->db->query($sql); + return $this->db->affected_rows(); + } + return 0; + } + /* * Function marks QSO with given primarykey as uploaded to hrdlog */ From 31dcf8de7035fb783149c052d29eae28e6687f61 Mon Sep 17 00:00:00 2001 From: int2001 Date: Mon, 1 Jul 2024 15:17:22 +0000 Subject: [PATCH 02/24] Added COL_HRDLOG_QSO_UPLOAD_STATUS != 'Y' to the Update-query --- application/models/Hrdlog_model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/Hrdlog_model.php b/application/models/Hrdlog_model.php index 246a84580..6e44ea47b 100644 --- a/application/models/Hrdlog_model.php +++ b/application/models/Hrdlog_model.php @@ -107,7 +107,7 @@ class Hrdlog_model extends CI_Model { foreach ($qsos->result() as $qso) { $mark_them[]=$qso->COL_PRIMARY_KEY; } - $sql="update ".$this->config->item('table_name')." set COL_HRDLOG_QSO_UPLOAD_DATE='".date("Y-m-d H:i:s", strtotime("now"))."', COL_HRDLOG_QSO_UPLOAD_STATUS='Y' where col_primary_key in (".implode(',', array_values($mark_them)).") and station_id=".$station_id; + $sql="update ".$this->config->item('table_name')." set COL_HRDLOG_QSO_UPLOAD_DATE='".date("Y-m-d H:i:s", strtotime("now"))."', COL_HRDLOG_QSO_UPLOAD_STATUS='Y' where COL_HRDLOG_QSO_UPLOAD_STATUS != 'Y' and col_primary_key in (".implode(',', array_values($mark_them)).") and station_id=".$station_id; $query = $this->db->query($sql); return $this->db->affected_rows(); } From 069d90bad1cb10176b8be3e90d54daabd25bb189 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 1 Jul 2024 19:10:50 +0000 Subject: [PATCH 03/24] Run po_gen.sh script to update translation files --- assets/lang_src/messages.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index 8f7a77674..d99ea9198 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-01 15:46+0000\n" +"POT-Creation-Date: 2024-07-01 19:10+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 130a15faa50521d2154eeaf52befcadede7ed601 Mon Sep 17 00:00:00 2001 From: Fabian Berg Date: Mon, 1 Jul 2024 15:49:52 +0000 Subject: [PATCH 04/24] Translated using Weblate (German) Currently translated at 100.0% (1784 of 1784 strings) Translation: Wavelog/Main Translation Translate-URL: https://translate.wavelog.org/projects/wavelog/main-translation/de/ --- .../locale/de_DE/LC_MESSAGES/messages.po | 46 +++++++++---------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/application/locale/de_DE/LC_MESSAGES/messages.po b/application/locale/de_DE/LC_MESSAGES/messages.po index 867472944..052cd58b1 100644 --- a/application/locale/de_DE/LC_MESSAGES/messages.po +++ b/application/locale/de_DE/LC_MESSAGES/messages.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" "POT-Creation-Date: 2024-07-01 15:00+0000\n" -"PO-Revision-Date: 2024-07-01 10:37+0000\n" +"PO-Revision-Date: 2024-07-01 19:10+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: German \n" "Language: de_DE\n" @@ -627,43 +627,43 @@ msgstr "Masseinheit" #: application/controllers/Labels.php:81 application/controllers/Labels.php:405 msgid "Top Margin" -msgstr "" +msgstr "Oberer Abstand" #: application/controllers/Labels.php:82 application/controllers/Labels.php:406 msgid "Left Margin" -msgstr "" +msgstr "Linker Abstand" #: application/controllers/Labels.php:83 application/controllers/Labels.php:407 msgid "QSLs Horizontally" -msgstr "" +msgstr "QSLs Querformat" #: application/controllers/Labels.php:84 application/controllers/Labels.php:408 msgid "QSLs Vertically" -msgstr "" +msgstr "QSLs Hochformat" #: application/controllers/Labels.php:85 application/controllers/Labels.php:409 msgid "Horizontal Space" -msgstr "" +msgstr "Horizontaler Abstand" #: application/controllers/Labels.php:86 application/controllers/Labels.php:410 msgid "Vertical Space" -msgstr "" +msgstr "Vertikaler Abstand" #: application/controllers/Labels.php:87 application/controllers/Labels.php:411 msgid "Label width" -msgstr "" +msgstr "Etiketten Breite" #: application/controllers/Labels.php:88 application/controllers/Labels.php:412 msgid "Label height" -msgstr "" +msgstr "Etiketten Höhe" #: application/controllers/Labels.php:89 application/controllers/Labels.php:413 msgid "Size of Font" -msgstr "" +msgstr "Schriftgrösse" #: application/controllers/Labels.php:90 application/controllers/Labels.php:414 msgid "Number of QSOs on label" -msgstr "" +msgstr "Anzahl von QSOs auf dem Etikett" #: application/controllers/Labels.php:115 msgid "Create Paper Type" @@ -672,41 +672,41 @@ msgstr "Erstelle Papier Typ" #: application/controllers/Labels.php:119 #: application/controllers/Labels.php:461 msgid "Paper Name" -msgstr "" +msgstr "Papier Name" #: application/controllers/Labels.php:120 #: application/controllers/Labels.php:462 msgid "Paper Width" -msgstr "" +msgstr "Papier Breite" #: application/controllers/Labels.php:121 #: application/controllers/Labels.php:463 msgid "Paper Height" -msgstr "" +msgstr "Papier Höhe" #: application/controllers/Labels.php:132 #: application/controllers/Labels.php:471 msgid "Your paper could not be saved. Remember that it can't have the same name as existing paper types." -msgstr "" +msgstr "Dein Papier konnte nicht gespeichert werden. Denk daran, dass es nicht den gleichen Namen haben kann, wie ein bereits existierender Papier Typ." #: application/controllers/Labels.php:205 #: application/controllers/Labels.php:208 msgid "You need to assign a paperType to the label before printing" -msgstr "" +msgstr "Du musst einen Papier Typ dem Etikett zuweisen, bevor du drucken kannst" #: application/controllers/Labels.php:215 #: application/controllers/Labels.php:218 msgid "You need to create a label and set it to be used for print." -msgstr "" +msgstr "Du musst ein Etikett erstellen und es für den Druck auswählen." #: application/controllers/Labels.php:225 #: application/controllers/Labels.php:228 msgid "Something went wrong! The label could not be generated. Check label size and font size." -msgstr "" +msgstr "Da ist was schief gelaufen! Das Etikett konnte nicht generiert werden. Überprüfe Etiketten- und Schrift-Grösse." #: application/controllers/Labels.php:251 msgid "0 QSOs found for print!" -msgstr "" +msgstr "0 QSOs für den Druck gefunden!" #: application/controllers/Labels.php:391 msgid "Edit Label" @@ -714,11 +714,11 @@ msgstr "Bearbeite Etikette" #: application/controllers/Labels.php:420 msgid "Label was saved." -msgstr "" +msgstr "Etikett wurde gespeichert." #: application/controllers/Labels.php:428 msgid "Label was deleted." -msgstr "" +msgstr "Etikett wurde gelöscht." #: application/controllers/Labels.php:450 msgid "Edit Paper" @@ -726,11 +726,11 @@ msgstr "Bearbeite Papier" #: application/controllers/Labels.php:475 msgid "Paper was saved." -msgstr "" +msgstr "Papier wurde gespeichert." #: application/controllers/Labels.php:488 msgid "Paper was deleted." -msgstr "" +msgstr "Papier wurde gelöscht." #: application/controllers/Logbook.php:37 msgid "No logbooks were found. You need to define a logbook under Station Logbooks! Do it here:" From a9dd2032b7bae1a731288149ea2e3a662913ce18 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 1 Jul 2024 19:18:48 +0000 Subject: [PATCH 05/24] Run po_gen.sh script to update translation files --- .../locale/de_DE/LC_MESSAGES/messages.mo | Bin 164004 -> 165816 bytes assets/lang_src/messages.pot | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/application/locale/de_DE/LC_MESSAGES/messages.mo b/application/locale/de_DE/LC_MESSAGES/messages.mo index 99ad38da119e960519d230d08587e5b61797dadd..db1c0cf42f4178ee7d0cc2bf54fe107e87671424 100644 GIT binary patch delta 39723 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 Iy)V-L1G9qG0{{R3 diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index d99ea9198..705f1b626 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-01 19:10+0000\n" +"POT-Creation-Date: 2024-07-01 19:18+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 74c8851834318ceff7c634ca107ebcf587d694f4 Mon Sep 17 00:00:00 2001 From: Andreas Kristiansen <6977712+AndreasK79@users.noreply.github.com> Date: Tue, 2 Jul 2024 08:12:07 +0200 Subject: [PATCH 06/24] [Station setup] Shows if location belongs to active logbook --- application/controllers/Stationsetup.php | 8 ++++++++ application/models/Stations.php | 5 ++--- application/views/stationsetup/stationsetup.php | 4 +++- assets/js/sections/stationsetup.js | 2 ++ 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/application/controllers/Stationsetup.php b/application/controllers/Stationsetup.php index 266500df4..40ef64be3 100644 --- a/application/controllers/Stationsetup.php +++ b/application/controllers/Stationsetup.php @@ -312,11 +312,19 @@ class Stationsetup extends CI_Controller { $single->station_copylog = $this->stationcopy2html($entry->station_id); $single->station_delete = $this->stationdelete2html($entry->station_id, $entry->station_profile_name, $entry->station_active); $single->station_favorite = $this->stationfavorite2html($entry->station_id, $quickswitch_enabled); + $single->station_linked = $this->stationlinked2html($entry->linked); array_push($hres,$single); } echo json_encode($hres); } + private function stationlinked2html($linked) { + if ($linked == 1) { + return ''; + } + return ''; + } + private function stationfavorite2html($id, $quickswitch_enabled) { if ($quickswitch_enabled == 'false') { return ''; diff --git a/application/models/Stations.php b/application/models/Stations.php index a5660110c..b276183ef 100644 --- a/application/models/Stations.php +++ b/application/models/Stations.php @@ -5,14 +5,13 @@ class Stations extends CI_Model { public function __construct() { } - function all_with_count() { - $this->db->select('station_profile.*, dxcc_entities.name as station_country, dxcc_entities.end as dxcc_end, count('.$this->config->item('table_name').'.station_id) as qso_total'); + $this->db->select('station_profile.*, dxcc_entities.name as station_country, dxcc_entities.end as dxcc_end, count('.$this->config->item('table_name').'.station_id) as qso_total, exists(select 1 from station_logbooks_relationship where station_location_id = station_profile.station_id and station_logbook_id = '.$this->session->userdata('active_station_logbook').') as linked'); $this->db->from('station_profile'); $this->db->join($this->config->item('table_name'),'station_profile.station_id = '.$this->config->item('table_name').'.station_id','left'); $this->db->join('dxcc_entities','station_profile.station_dxcc = dxcc_entities.adif','left outer'); - $this->db->group_by('station_profile.station_id'); + $this->db->group_by('station_profile.station_id'); $this->db->where('station_profile.user_id', $this->session->userdata('user_id')); $this->db->or_where('station_profile.user_id =', NULL); return $this->db->get(); diff --git a/application/views/stationsetup/stationsetup.php b/application/views/stationsetup/stationsetup.php index 4d0b51b77..d470c6e96 100644 --- a/application/views/stationsetup/stationsetup.php +++ b/application/views/stationsetup/stationsetup.php @@ -121,6 +121,7 @@ + ID: station_id;?> qso_total;?> + station_id; ?>" title= class="btn btn-outline-primary btn-sm"> @@ -182,7 +184,7 @@ station_id; ?>" class="btn btn-danger btn-sm" title= onclick="return confirm('');"> - station_active != 1) { + station_active != 1) { $cnfmsg = sprintf(__("Are you sure you want delete station profile '%s'? This will delete all QSOs within this station profile."), $row->station_profile_name); ?>?> station_id; ?>" class="btn btn-danger btn-sm" title= onclick="return confirm('');"> diff --git a/assets/js/sections/stationsetup.js b/assets/js/sections/stationsetup.js index f2e787c39..805f069dd 100644 --- a/assets/js/sections/stationsetup.js +++ b/assets/js/sections/stationsetup.js @@ -378,6 +378,7 @@ function reloadLogbooks() { dataType: 'json', success: function (data) { loadLogbookTable(data); + reloadStations(); }, error: function (data) { BootstrapDialog.alert({ @@ -572,6 +573,7 @@ function loadLocationTable(rows) { data.push(locations.station_country); data.push(locations.station_gridsquare); data.push(locations.station_badge); + data.push(locations.station_linked); data.push(locations.station_edit); data.push(locations.station_copylog); if (locations.station_favorite != ''){ From bc6b91d4c5b3aa15d0ff403290a2891bbbd9be92 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Tue, 2 Jul 2024 14:13:16 +0200 Subject: [PATCH 07/24] add some text to describe the 'Linked' column. --- application/views/stationsetup/stationsetup.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/application/views/stationsetup/stationsetup.php b/application/views/stationsetup/stationsetup.php index d470c6e96..74bdf4b69 100644 --- a/application/views/stationsetup/stationsetup.php +++ b/application/views/stationsetup/stationsetup.php @@ -91,9 +91,12 @@
-

-

-

+

+
+
+
+ +

From d2b378e614203c599dc0a318d9aba3e01ba7982e Mon Sep 17 00:00:00 2001 From: int2001 Date: Tue, 2 Jul 2024 17:46:06 +0000 Subject: [PATCH 08/24] Clublog for LBA --- application/controllers/Logbookadvanced.php | 7 +++ application/models/Logbookadvanced_model.php | 18 ++++++++ application/views/logbookadvanced/index.php | 33 +++++++++++++ .../views/logbookadvanced/useroptions.php | 4 ++ assets/js/sections/logbookadvanced.js | 9 ++++ src/QSLManager/QSO.php | 46 +++++++++++++++++++ 6 files changed, 117 insertions(+) diff --git a/application/controllers/Logbookadvanced.php b/application/controllers/Logbookadvanced.php index eb93e9f64..88d938508 100644 --- a/application/controllers/Logbookadvanced.php +++ b/application/controllers/Logbookadvanced.php @@ -133,6 +133,8 @@ class Logbookadvanced extends CI_Controller { 'lotwReceived' => xss_clean($this->input->post('lotwReceived')), 'eqslSent' => xss_clean($this->input->post('eqslSent')), 'eqslReceived' => xss_clean($this->input->post('eqslReceived')), + 'clublogSent' => xss_clean($this->input->post('clublogSent')), + 'clublogReceived' => xss_clean($this->input->post('clublogReceived')), 'qslvia' => xss_clean($this->input->post('qslvia')), 'sota' => xss_clean($this->input->post('sota')), 'pota' => xss_clean($this->input->post('pota')), @@ -300,6 +302,8 @@ class Logbookadvanced extends CI_Controller { 'lotwReceived' => '', 'eqslSent' => '', 'eqslReceived' => '', + 'clublogSent' => '', + 'clublogReceived' => '', 'qslvia' => '', 'sota' => '', 'pota' => '', @@ -342,6 +346,8 @@ class Logbookadvanced extends CI_Controller { 'lotwReceived' => xss_clean($this->input->post('lotwReceived')), 'eqslSent' => xss_clean($this->input->post('eqslSent')), 'eqslReceived' => xss_clean($this->input->post('eqslReceived')), + 'clublogSent' => xss_clean($this->input->post('clublogSent')), + 'clublogReceived' => xss_clean($this->input->post('clublogReceived')), 'qslvia' => xss_clean($this->input->post('qslvia')), 'sota' => xss_clean($this->input->post('sota')), 'pota' => xss_clean($this->input->post('pota')), @@ -491,6 +497,7 @@ class Logbookadvanced extends CI_Controller { $json_string['qsl']['show'] = $this->input->post('qsl'); $json_string['lotw']['show'] = $this->input->post('lotw'); $json_string['eqsl']['show'] = $this->input->post('eqsl'); + $json_string['clublog']['show'] = $this->input->post('clublog'); $json_string['qslmsg']['show'] = $this->input->post('qslmsg'); $json_string['dxcc']['show'] = $this->input->post('dxcc'); $json_string['state']['show'] = $this->input->post('state'); diff --git a/application/models/Logbookadvanced_model.php b/application/models/Logbookadvanced_model.php index 43623d788..4fb5b70a2 100644 --- a/application/models/Logbookadvanced_model.php +++ b/application/models/Logbookadvanced_model.php @@ -120,6 +120,24 @@ class Logbookadvanced_model extends CI_Model { $binding[] = $searchCriteria['lotwReceived']; } + if ($searchCriteria['clublogSent'] !== '') { + $condition = "COL_CLUBLOG_QSO_UPLOAD_STATUS = ?"; + if ($searchCriteria['clublogSent'] == 'N') { + $condition = '('.$condition; + $condition .= " OR COL_CLUBLOG_QSL_UPLOAD_STATUS IS NULL OR COL_CLUBLOG_QSO_UPLOAD_STATUS = '')"; + } + $conditions[] = $condition; + $binding[] = $searchCriteria['clublogSent']; + } + if ($searchCriteria['clublogReceived'] !== '') { + $condition = "COL_CLUBLOG_QSO_DOWNLOAD_STATUS = ?"; + if ($searchCriteria['clublogReceived'] == 'N') { + $condition = '('.$condition; + $condition .= " OR COL_CLUBLOG_QSO_DOWNLOAD_STATUS IS NULL OR COL_CLUBLOG_QSO_DOWNLOAD_STATUS = '')"; + } + $conditions[] = $condition; + $binding[] = $searchCriteria['clublogReceived']; + } if ($searchCriteria['eqslSent'] !== '') { $condition = "COL_EQSL_QSL_SENT = ?"; if ($searchCriteria['eqslSent'] == 'N') { diff --git a/application/views/logbookadvanced/index.php b/application/views/logbookadvanced/index.php index a7ca2e709..e466b74db 100644 --- a/application/views/logbookadvanced/index.php +++ b/application/views/logbookadvanced/index.php @@ -27,6 +27,7 @@ \"qsl\":{\"show\":\"true\"}, \"lotw\":{\"show\":\"true\"}, \"eqsl\":{\"show\":\"true\"}, + \"clublog\":{\"show\":\"true\"}, \"qslmsg\":{\"show\":\"true\"}, \"dxcc\":{\"show\":\"true\"}, \"state\":{\"show\":\"true\"}, @@ -86,6 +87,10 @@ if (!isset($current_opts->wwff)) { echo "\nvar o_template = { wwff: {show: 'true'}};"; echo "\nuser_options={...user_options, ...o_template};"; + } + if (!isset($current_opts->clublog)) { + echo "\nvar o_template = { clublog: {show: 'true'}};"; + echo "\nuser_options={...user_options, ...o_template};"; } if (!isset($current_opts->sig)) { echo "\nvar o_template = { sig: {show: 'true'}};"; @@ -345,6 +350,28 @@ $options = json_decode($options);
+
+ + +
+
+ + +
eqsl->show ?? "true") == "true") { echo 'checked'; } ?>>
+ + +
clublog->show ?? "true") == "true") { echo 'checked'; } ?>>
+
qslmsg->show ?? "true") == "true") { echo 'checked'; } ?>>
diff --git a/assets/js/sections/logbookadvanced.js b/assets/js/sections/logbookadvanced.js index 425ba56d0..6ec47d571 100644 --- a/assets/js/sections/logbookadvanced.js +++ b/assets/js/sections/logbookadvanced.js @@ -61,6 +61,9 @@ function updateRow(qso) { if (user_options.qsl.show == "true"){ cells.eq(c++).html(qso.qsl); } + if (user_options.clublog.show == "true"){ + cells.eq(c++).html(qso.clublog); + } if ($(".eqslconfirmation")[0] && user_options.eqsl.show == "true"){ cells.eq(c++).html(qso.eqsl); } @@ -184,6 +187,9 @@ function loadQSOTable(rows) { if (user_options.qslvia.show == "true"){ data.push(qso.qslVia); } + if (user_options.clublog.show == "true"){ + data.push(qso.clublog); + } if (user_options.qsl.show == "true"){ data.push(qso.qsl); } @@ -352,6 +358,8 @@ $(document).ready(function () { ituzone: this.ituzone.value, lotwSent: this.lotwSent.value, lotwReceived: this.lotwReceived.value, + clublogSent: this.clublogSent.value, + clublogReceived: this.clublogReceived.value, eqslSent: this.eqslSent.value, eqslReceived: this.eqslReceived.value, qslvia: $('[name="qslvia"]').val(), @@ -1019,6 +1027,7 @@ function saveOptions() { name: $('input[name="name"]').is(':checked') ? true : false, qslvia: $('input[name="qslvia"]').is(':checked') ? true : false, qsl: $('input[name="qsl"]').is(':checked') ? true : false, + clublog: $('input[name="clublog"]').is(':checked') ? true : false, lotw: $('input[name="lotw"]').is(':checked') ? true : false, eqsl: $('input[name="eqsl"]').is(':checked') ? true : false, qslmsg: $('input[name="qslmsg"]').is(':checked') ? true : false, diff --git a/src/QSLManager/QSO.php b/src/QSLManager/QSO.php index fa1fe76ab..ea18da2ec 100644 --- a/src/QSLManager/QSO.php +++ b/src/QSLManager/QSO.php @@ -62,6 +62,7 @@ class QSO private string $qsl; private string $lotw; private string $eqsl; + private string $clublog; /** Lotw callsign info **/ private string $callsign; private string $lastupload; @@ -196,6 +197,7 @@ class QSO $this->qsl = $this->getQslString($data, $custom_date_format); $this->lotw = $this->getLotwString($data, $custom_date_format); $this->eqsl = $this->getEqslString($data, $custom_date_format); + $this->clublog = $this->getClublogString($data, $custom_date_format); $this->cqzone = ($data['COL_CQZ'] === null) ? '' : $this->geCqLink($data['COL_CQZ']); $this->ituzone = $data['COL_ITUZ'] ?? ''; @@ -392,6 +394,41 @@ class QSO /** * @return string */ + function getClublogString($data, $custom_date_format): string { + $CI =& get_instance(); + + $clublogstring = ''; + + $clublogstring .= ''; + + return $clublogstring; + } + function getEqslString($data, $custom_date_format): string { $CI =& get_instance(); @@ -752,6 +789,14 @@ class QSO return $this->lotw; } + /** + * @return string + */ + public function getclublog(): string + { + return $this->clublog; + } + /** * @return string */ @@ -814,6 +859,7 @@ class QSO 'qsl' => $this->getqsl(), 'lotw' => $this->getlotw(), 'eqsl' => $this->geteqsl(), + 'clublog' => $this->getclublog(), 'qslMessage' => $this->getQSLMsg(), 'name' => $this->getName(), 'dxcc' => $this->getDXCC(), From 1376d29e4ddc27c4883c722c385234f33a7095d0 Mon Sep 17 00:00:00 2001 From: int2001 Date: Tue, 2 Jul 2024 17:50:05 +0000 Subject: [PATCH 09/24] Removed double-c/p --- application/views/logbookadvanced/index.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/application/views/logbookadvanced/index.php b/application/views/logbookadvanced/index.php index e466b74db..afed628dd 100644 --- a/application/views/logbookadvanced/index.php +++ b/application/views/logbookadvanced/index.php @@ -565,9 +565,6 @@ $options = json_decode($options); clublog->show ?? "true") == "true") { echo 'Clublog'; } ?> - session->userdata('user_lotw_name') != "" && ($options->lotw->show ?? "true") == "true") { - echo 'LoTW'; - } ?> session->userdata('user_eqsl_name') != "" && ($options->eqsl->show ?? "true") == "true") { echo 'eQSL'; } ?> From e02fe8b1048d44d236090636f7fb365bf6a03242 Mon Sep 17 00:00:00 2001 From: int2001 Date: Wed, 3 Jul 2024 04:41:07 +0000 Subject: [PATCH 10/24] Adjusted ordering --- application/views/logbookadvanced/index.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/application/views/logbookadvanced/index.php b/application/views/logbookadvanced/index.php index afed628dd..3272fa01e 100644 --- a/application/views/logbookadvanced/index.php +++ b/application/views/logbookadvanced/index.php @@ -559,12 +559,12 @@ $options = json_decode($options); qslvia->show ?? "true") == "true") { echo '' . __("QSL via") . ''; } ?> - qsl->show ?? "true") == "true") { - echo '' . __("QSL") . ''; - } ?> clublog->show ?? "true") == "true") { echo 'Clublog'; } ?> + qsl->show ?? "true") == "true") { + echo '' . __("QSL") . ''; + } ?> session->userdata('user_eqsl_name') != "" && ($options->eqsl->show ?? "true") == "true") { echo 'eQSL'; } ?> From 779553559e78980d7eddf16dcd1af774fd51b484 Mon Sep 17 00:00:00 2001 From: Andreas Kristiansen <6977712+AndreasK79@users.noreply.github.com> Date: Wed, 3 Jul 2024 07:54:42 +0200 Subject: [PATCH 11/24] Reloads locations table after linking/unliking locations --- assets/js/sections/stationsetup.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/assets/js/sections/stationsetup.js b/assets/js/sections/stationsetup.js index 805f069dd..db1eb5317 100644 --- a/assets/js/sections/stationsetup.js +++ b/assets/js/sections/stationsetup.js @@ -277,6 +277,9 @@ $(document).ready(function () { id: "NewStationLogbookModal", nl2br: false, message: data, + closable: false, + closeByBackdrop: false, + closeByKeyboard: false, onshown: function(dialog) { }, buttons: [{ @@ -285,6 +288,7 @@ $(document).ready(function () { id: 'closeButton', action: function (dialogItself) { dialogItself.close(); + reloadStations(); } }], }); From c68a7a20b74efb97cb7d908547381bbbcbb44502 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 3 Jul 2024 05:59:35 +0000 Subject: [PATCH 12/24] Run po_gen.sh script to update translation files --- .../locale/bg_BG/LC_MESSAGES/messages.po | 106 ++++++++++-------- .../locale/cs_CZ/LC_MESSAGES/messages.po | 106 ++++++++++-------- .../locale/de_DE/LC_MESSAGES/messages.po | 106 ++++++++++-------- .../locale/el_GR/LC_MESSAGES/messages.po | 106 ++++++++++-------- .../locale/es_ES/LC_MESSAGES/messages.po | 106 ++++++++++-------- .../locale/fi_FI/LC_MESSAGES/messages.po | 106 ++++++++++-------- .../locale/fr_FR/LC_MESSAGES/messages.po | 106 ++++++++++-------- .../locale/it_IT/LC_MESSAGES/messages.po | 106 ++++++++++-------- .../locale/nl_NL/LC_MESSAGES/messages.po | 106 ++++++++++-------- .../locale/pl_PL/LC_MESSAGES/messages.po | 106 ++++++++++-------- .../locale/ru_RU/LC_MESSAGES/messages.po | 106 ++++++++++-------- .../locale/sv_SE/LC_MESSAGES/messages.po | 106 ++++++++++-------- .../locale/tr_TR/LC_MESSAGES/messages.po | 106 ++++++++++-------- .../locale/zh_CN/LC_MESSAGES/messages.po | 106 ++++++++++-------- assets/lang_src/messages.pot | 106 ++++++++++-------- 15 files changed, 855 insertions(+), 735 deletions(-) diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index 435c1d1b8..cb6175427 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-01 15:00+0000\n" +"POT-Creation-Date: 2024-07-03 05:59+0000\n" "PO-Revision-Date: 2024-06-05 15:12+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -987,7 +987,7 @@ msgstr "" #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 #: application/views/station_profile/index.php:43 -#: application/views/stationsetup/stationsetup.php:121 +#: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 #: application/views/timeline/index.php:116 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 @@ -1083,7 +1083,7 @@ msgstr "" #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:134 #: application/views/station_profile/index.php:44 -#: application/views/stationsetup/stationsetup.php:122 +#: application/views/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:228 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 @@ -1236,7 +1236,7 @@ msgid "Operator" msgstr "" #: application/controllers/Logbook.php:1309 -#: application/controllers/Stationsetup.php:373 +#: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 @@ -1253,7 +1253,7 @@ msgstr "" #: application/views/station_profile/index.php:65 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/stationsetup.php:146 +#: application/views/stationsetup/stationsetup.php:150 #: application/views/timeline/index.php:132 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 @@ -1601,8 +1601,8 @@ msgstr "" #: application/controllers/Stationsetup.php:50 #: application/controllers/Stationsetup.php:68 -#: application/controllers/Stationsetup.php:387 -#: application/controllers/Stationsetup.php:401 +#: application/controllers/Stationsetup.php:395 +#: application/controllers/Stationsetup.php:409 msgid "Not allowed" msgstr "" @@ -1612,7 +1612,7 @@ msgstr "" #: application/controllers/Stationsetup.php:118 #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 -#: application/controllers/Stationsetup.php:428 +#: application/controllers/Stationsetup.php:436 #: application/views/qso/index.php:608 msgid "Error" msgstr "" @@ -1679,35 +1679,35 @@ msgstr "" msgid "Are you sure you want to delete the public slug?" msgstr "" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Are you sure you want to make the following station the active station: " msgstr "" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "" -#: application/controllers/Stationsetup.php:343 +#: application/controllers/Stationsetup.php:351 #: application/views/station_profile/index.php:71 -#: application/views/stationsetup/stationsetup.php:152 +#: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "" -#: application/controllers/Stationsetup.php:346 +#: application/controllers/Stationsetup.php:354 #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:27 #: application/views/station_profile/index.php:76 -#: application/views/stationsetup/stationsetup.php:157 +#: application/views/stationsetup/stationsetup.php:161 #: application/views/user/main.php:87 application/views/user/main.php:89 msgid "QSO" msgstr "" -#: application/controllers/Stationsetup.php:351 +#: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 @@ -1717,42 +1717,42 @@ msgstr "" #: application/views/search/stored_queries.php:21 #: application/views/station_profile/index.php:46 #: application/views/station_profile/index.php:79 -#: application/views/stationsetup/stationsetup.php:124 -#: application/views/stationsetup/stationsetup.php:160 +#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:165 #: application/views/themes/index.php:104 application/views/user/main.php:52 msgid "Edit" msgstr "" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:99 -#: application/views/stationsetup/stationsetup.php:180 +#: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:54 #: application/views/station_profile/index.php:101 -#: application/views/stationsetup/stationsetup.php:132 -#: application/views/stationsetup/stationsetup.php:182 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "" -#: application/controllers/Stationsetup.php:359 +#: application/controllers/Stationsetup.php:367 #: application/views/station_profile/index.php:47 #: application/views/station_profile/index.php:82 -#: application/views/stationsetup/stationsetup.php:125 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/station_profile/index.php:105 -#: application/views/stationsetup/stationsetup.php:186 +#: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "Are you sure you want delete station profile '%s'? This will delete all QSOs within this station profile." msgstr "" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 #: application/views/logbookadvanced/index.php:485 @@ -1766,19 +1766,19 @@ msgstr "" #: application/views/station_profile/index.php:55 #: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 -#: application/views/stationsetup/stationsetup.php:133 -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:192 #: application/views/themes/index.php:107 application/views/user/main.php:54 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "" -#: application/controllers/Stationsetup.php:371 +#: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:220 msgid "NONE" msgstr "" -#: application/controllers/Stationsetup.php:454 +#: application/controllers/Stationsetup.php:462 msgid "Edit Export Map options" msgstr "" @@ -2472,7 +2472,7 @@ msgstr "" #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 #: application/views/view_log/qso.php:622 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 @@ -4395,7 +4395,7 @@ msgid "Cron List" msgstr "" #: application/views/cron/index.php:50 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" @@ -5053,7 +5053,7 @@ msgstr[1] "" #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:120 +#: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" msgstr "" @@ -5609,7 +5609,7 @@ msgstr "" #: application/views/interface_assets/header.php:257 #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" @@ -8473,48 +8473,48 @@ msgid "Signature" msgstr "" #: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:95 msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." msgstr "" #: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:95 +#: application/views/stationsetup/stationsetup.php:96 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" #: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:96 +#: application/views/stationsetup/stationsetup.php:97 msgid "Only one station may be active at a time. In the table below this is shown with the -Active Station- badge." msgstr "" #: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:101 msgid "Create a Station Location" msgstr "" #: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:102 +#: application/views/stationsetup/stationsetup.php:105 msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." msgstr "" #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." msgstr "" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Maintenance" msgstr "" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Please reassign them at " msgstr "" #: application/views/station_profile/index.php:41 #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:119 +#: application/views/stationsetup/stationsetup.php:122 msgid "Profile Name" msgstr "" @@ -8585,11 +8585,19 @@ msgstr "" msgid "Station Locations" msgstr "" -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:98 +msgid "The 'Linked' column shows if the station location is linked with the Active Logbook selected above." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:127 +msgid "Linked" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:134 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:180 msgid "mark/unmark as favorite" msgstr "" diff --git a/application/locale/cs_CZ/LC_MESSAGES/messages.po b/application/locale/cs_CZ/LC_MESSAGES/messages.po index c05669b5c..d1939f2bc 100644 --- a/application/locale/cs_CZ/LC_MESSAGES/messages.po +++ b/application/locale/cs_CZ/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-01 15:00+0000\n" +"POT-Creation-Date: 2024-07-03 05:59+0000\n" "PO-Revision-Date: 2024-06-25 13:16+0000\n" "Last-Translator: Ondřej Koloničný \n" "Language-Team: Czech \n" @@ -989,7 +989,7 @@ msgstr "" #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 #: application/views/station_profile/index.php:43 -#: application/views/stationsetup/stationsetup.php:121 +#: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 #: application/views/timeline/index.php:116 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 @@ -1085,7 +1085,7 @@ msgstr "Stát" #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:134 #: application/views/station_profile/index.php:44 -#: application/views/stationsetup/stationsetup.php:122 +#: application/views/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:228 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 @@ -1238,7 +1238,7 @@ msgid "Operator" msgstr "Operátor" #: application/controllers/Logbook.php:1309 -#: application/controllers/Stationsetup.php:373 +#: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 @@ -1255,7 +1255,7 @@ msgstr "Operátor" #: application/views/station_profile/index.php:65 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/stationsetup.php:146 +#: application/views/stationsetup/stationsetup.php:150 #: application/views/timeline/index.php:132 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 @@ -1603,8 +1603,8 @@ msgstr "" #: application/controllers/Stationsetup.php:50 #: application/controllers/Stationsetup.php:68 -#: application/controllers/Stationsetup.php:387 -#: application/controllers/Stationsetup.php:401 +#: application/controllers/Stationsetup.php:395 +#: application/controllers/Stationsetup.php:409 msgid "Not allowed" msgstr "" @@ -1614,7 +1614,7 @@ msgstr "" #: application/controllers/Stationsetup.php:118 #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 -#: application/controllers/Stationsetup.php:428 +#: application/controllers/Stationsetup.php:436 #: application/views/qso/index.php:608 msgid "Error" msgstr "" @@ -1681,35 +1681,35 @@ msgstr "" msgid "Are you sure you want to delete the public slug?" msgstr "" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Are you sure you want to make the following station the active station: " msgstr "" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "" -#: application/controllers/Stationsetup.php:343 +#: application/controllers/Stationsetup.php:351 #: application/views/station_profile/index.php:71 -#: application/views/stationsetup/stationsetup.php:152 +#: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "" -#: application/controllers/Stationsetup.php:346 +#: application/controllers/Stationsetup.php:354 #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:27 #: application/views/station_profile/index.php:76 -#: application/views/stationsetup/stationsetup.php:157 +#: application/views/stationsetup/stationsetup.php:161 #: application/views/user/main.php:87 application/views/user/main.php:89 msgid "QSO" msgstr "" -#: application/controllers/Stationsetup.php:351 +#: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 @@ -1719,42 +1719,42 @@ msgstr "" #: application/views/search/stored_queries.php:21 #: application/views/station_profile/index.php:46 #: application/views/station_profile/index.php:79 -#: application/views/stationsetup/stationsetup.php:124 -#: application/views/stationsetup/stationsetup.php:160 +#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:165 #: application/views/themes/index.php:104 application/views/user/main.php:52 msgid "Edit" msgstr "Upravit" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:99 -#: application/views/stationsetup/stationsetup.php:180 +#: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:54 #: application/views/station_profile/index.php:101 -#: application/views/stationsetup/stationsetup.php:132 -#: application/views/stationsetup/stationsetup.php:182 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "" -#: application/controllers/Stationsetup.php:359 +#: application/controllers/Stationsetup.php:367 #: application/views/station_profile/index.php:47 #: application/views/station_profile/index.php:82 -#: application/views/stationsetup/stationsetup.php:125 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/station_profile/index.php:105 -#: application/views/stationsetup/stationsetup.php:186 +#: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "Are you sure you want delete station profile '%s'? This will delete all QSOs within this station profile." msgstr "" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 #: application/views/logbookadvanced/index.php:485 @@ -1768,19 +1768,19 @@ msgstr "" #: application/views/station_profile/index.php:55 #: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 -#: application/views/stationsetup/stationsetup.php:133 -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:192 #: application/views/themes/index.php:107 application/views/user/main.php:54 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "Smazat" -#: application/controllers/Stationsetup.php:371 +#: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:220 msgid "NONE" msgstr "" -#: application/controllers/Stationsetup.php:454 +#: application/controllers/Stationsetup.php:462 msgid "Edit Export Map options" msgstr "" @@ -2474,7 +2474,7 @@ msgstr "" #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 #: application/views/view_log/qso.php:622 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 @@ -4397,7 +4397,7 @@ msgid "Cron List" msgstr "" #: application/views/cron/index.php:50 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" @@ -5057,7 +5057,7 @@ msgstr[2] "" #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:120 +#: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" msgstr "" @@ -5613,7 +5613,7 @@ msgstr "" #: application/views/interface_assets/header.php:257 #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" @@ -8480,48 +8480,48 @@ msgid "Signature" msgstr "" #: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:95 msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." msgstr "" #: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:95 +#: application/views/stationsetup/stationsetup.php:96 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" #: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:96 +#: application/views/stationsetup/stationsetup.php:97 msgid "Only one station may be active at a time. In the table below this is shown with the -Active Station- badge." msgstr "" #: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:101 msgid "Create a Station Location" msgstr "" #: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:102 +#: application/views/stationsetup/stationsetup.php:105 msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." msgstr "" #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." msgstr "" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Maintenance" msgstr "" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Please reassign them at " msgstr "" #: application/views/station_profile/index.php:41 #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:119 +#: application/views/stationsetup/stationsetup.php:122 msgid "Profile Name" msgstr "" @@ -8592,11 +8592,19 @@ msgstr "" msgid "Station Locations" msgstr "" -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:98 +msgid "The 'Linked' column shows if the station location is linked with the Active Logbook selected above." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:127 +msgid "Linked" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:134 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:180 msgid "mark/unmark as favorite" msgstr "" diff --git a/application/locale/de_DE/LC_MESSAGES/messages.po b/application/locale/de_DE/LC_MESSAGES/messages.po index 052cd58b1..621eebb0c 100644 --- a/application/locale/de_DE/LC_MESSAGES/messages.po +++ b/application/locale/de_DE/LC_MESSAGES/messages.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-01 15:00+0000\n" +"POT-Creation-Date: 2024-07-03 05:59+0000\n" "PO-Revision-Date: 2024-07-01 19:10+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: German \n" @@ -992,7 +992,7 @@ msgstr "RST (R)" #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 #: application/views/station_profile/index.php:43 -#: application/views/stationsetup/stationsetup.php:121 +#: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 #: application/views/timeline/index.php:116 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 @@ -1088,7 +1088,7 @@ msgstr "Staat" #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:134 #: application/views/station_profile/index.php:44 -#: application/views/stationsetup/stationsetup.php:122 +#: application/views/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:228 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 @@ -1241,7 +1241,7 @@ msgid "Operator" msgstr "Operator" #: application/controllers/Logbook.php:1309 -#: application/controllers/Stationsetup.php:373 +#: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 @@ -1258,7 +1258,7 @@ msgstr "Operator" #: application/views/station_profile/index.php:65 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/stationsetup.php:146 +#: application/views/stationsetup/stationsetup.php:150 #: application/views/timeline/index.php:132 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 @@ -1606,8 +1606,8 @@ msgstr "Stations Setup" #: application/controllers/Stationsetup.php:50 #: application/controllers/Stationsetup.php:68 -#: application/controllers/Stationsetup.php:387 -#: application/controllers/Stationsetup.php:401 +#: application/controllers/Stationsetup.php:395 +#: application/controllers/Stationsetup.php:409 msgid "Not allowed" msgstr "Nicht erlaubt" @@ -1617,7 +1617,7 @@ msgstr "Nicht erlaubt" #: application/controllers/Stationsetup.php:118 #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 -#: application/controllers/Stationsetup.php:428 +#: application/controllers/Stationsetup.php:436 #: application/views/qso/index.php:608 msgid "Error" msgstr "Fehler" @@ -1684,35 +1684,35 @@ msgstr "Zeige die öffentl. Seite für das Logbuch: " msgid "Are you sure you want to delete the public slug?" msgstr "Bist Du Dir sicher die Kurz-URL zu löschen?" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Are you sure you want to make the following station the active station: " msgstr "Bist du sicher, dass du den folgenden Stationsstandort zum aktiven Standort machen möchtest?: " -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "Aktivieren" -#: application/controllers/Stationsetup.php:343 +#: application/controllers/Stationsetup.php:351 #: application/views/station_profile/index.php:71 -#: application/views/stationsetup/stationsetup.php:152 +#: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "Aktive Station" -#: application/controllers/Stationsetup.php:346 +#: application/controllers/Stationsetup.php:354 #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:27 #: application/views/station_profile/index.php:76 -#: application/views/stationsetup/stationsetup.php:157 +#: application/views/stationsetup/stationsetup.php:161 #: application/views/user/main.php:87 application/views/user/main.php:89 msgid "QSO" msgstr "QSO" -#: application/controllers/Stationsetup.php:351 +#: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 @@ -1722,42 +1722,42 @@ msgstr "QSO" #: application/views/search/stored_queries.php:21 #: application/views/station_profile/index.php:46 #: application/views/station_profile/index.php:79 -#: application/views/stationsetup/stationsetup.php:124 -#: application/views/stationsetup/stationsetup.php:160 +#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:165 #: application/views/themes/index.php:104 application/views/user/main.php:52 msgid "Edit" msgstr "Bearbeiten" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:99 -#: application/views/stationsetup/stationsetup.php:180 +#: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "Bist du sicher, dass du alle QSO an diesem Stationsstandort löschen möchtest?" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:54 #: application/views/station_profile/index.php:101 -#: application/views/stationsetup/stationsetup.php:132 -#: application/views/stationsetup/stationsetup.php:182 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "Lösche Log" -#: application/controllers/Stationsetup.php:359 +#: application/controllers/Stationsetup.php:367 #: application/views/station_profile/index.php:47 #: application/views/station_profile/index.php:82 -#: application/views/stationsetup/stationsetup.php:125 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "Kopieren" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/station_profile/index.php:105 -#: application/views/stationsetup/stationsetup.php:186 +#: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "Are you sure you want delete station profile '%s'? This will delete all QSOs within this station profile." msgstr "Stationsprofil '%s' wirklich löschen? Alle QSOs in dem Profil werden mitgelöscht." -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 #: application/views/logbookadvanced/index.php:485 @@ -1771,19 +1771,19 @@ msgstr "Stationsprofil '%s' wirklich löschen? Alle QSOs in dem Profil werden mi #: application/views/station_profile/index.php:55 #: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 -#: application/views/stationsetup/stationsetup.php:133 -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:192 #: application/views/themes/index.php:107 application/views/user/main.php:54 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "Löschen" -#: application/controllers/Stationsetup.php:371 +#: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:220 msgid "NONE" msgstr "KEIN" -#: application/controllers/Stationsetup.php:454 +#: application/controllers/Stationsetup.php:462 msgid "Edit Export Map options" msgstr "Bearbeite Export-Karte Optionen" @@ -2477,7 +2477,7 @@ msgstr "Die max. Dateigrösse für Uploads beträgt " #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 #: application/views/view_log/qso.php:622 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 @@ -4400,7 +4400,7 @@ msgid "Cron List" msgstr "Cron Liste" #: application/views/cron/index.php:50 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "ID" @@ -5058,7 +5058,7 @@ msgstr[1] "Die Datenbank enthält %d QSOs ohne Stationsprofil (Standort)" #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:120 +#: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" msgstr "Stations Rufzeichen" @@ -5614,7 +5614,7 @@ msgstr "SAT Timer" #: application/views/interface_assets/header.php:257 #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "Admin" @@ -8478,48 +8478,48 @@ msgid "Signature" msgstr "Signaturen" #: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:95 msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." msgstr "Stationsstandorte definieren die Orte, von denen aus du QRV bist. Dein Zuhause, Bei Freunden oder Unterwegs." #: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:95 +#: application/views/stationsetup/stationsetup.php:96 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "Ähnlich wie Logbücher trennen die Stationsstandorte die entsprechenden QSO voneinander ab." #: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:96 +#: application/views/stationsetup/stationsetup.php:97 msgid "Only one station may be active at a time. In the table below this is shown with the -Active Station- badge." msgstr "Es kann immer nur ein Stationsstandort aktiv sein. Welches das aktuell ist siehst du in der Liste an dem 'Aktive Station' Symbol." #: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:101 msgid "Create a Station Location" msgstr "Erstelle einen neuen Stationsstandort" #: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:102 +#: application/views/stationsetup/stationsetup.php:105 msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." msgstr "Achtung: Du musst einen aktiven Stationsstandort auswählen. Gehe zu Rufzeichen -> Stationsstandorte um einen zu aktivieren." #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." msgstr "Aufgrund von Änderungen in Wavelog musst du QSOs wieder einem Stationsstandort zuordnen." #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Maintenance" msgstr "Wartung" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Please reassign them at " msgstr "Bitte mache die Zuordnung in " #: application/views/station_profile/index.php:41 #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:119 +#: application/views/stationsetup/stationsetup.php:122 msgid "Profile Name" msgstr "Station Name" @@ -8590,11 +8590,19 @@ msgstr "Besucherseite" msgid "Station Locations" msgstr "Stationsstandorte" -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:98 +msgid "The 'Linked' column shows if the station location is linked with the Active Logbook selected above." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:127 +msgid "Linked" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:134 msgid "Favorite" msgstr "Favorit" -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:180 msgid "mark/unmark as favorite" msgstr "markiere/demarkiere als Favorit" diff --git a/application/locale/el_GR/LC_MESSAGES/messages.po b/application/locale/el_GR/LC_MESSAGES/messages.po index d9edb1a58..9559d94f4 100644 --- a/application/locale/el_GR/LC_MESSAGES/messages.po +++ b/application/locale/el_GR/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-01 15:00+0000\n" +"POT-Creation-Date: 2024-07-03 05:59+0000\n" "PO-Revision-Date: 2024-06-05 15:13+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -987,7 +987,7 @@ msgstr "" #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 #: application/views/station_profile/index.php:43 -#: application/views/stationsetup/stationsetup.php:121 +#: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 #: application/views/timeline/index.php:116 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 @@ -1083,7 +1083,7 @@ msgstr "Επαρχία" #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:134 #: application/views/station_profile/index.php:44 -#: application/views/stationsetup/stationsetup.php:122 +#: application/views/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:228 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 @@ -1236,7 +1236,7 @@ msgid "Operator" msgstr "Χειριστής" #: application/controllers/Logbook.php:1309 -#: application/controllers/Stationsetup.php:373 +#: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 @@ -1253,7 +1253,7 @@ msgstr "Χειριστής" #: application/views/station_profile/index.php:65 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/stationsetup.php:146 +#: application/views/stationsetup/stationsetup.php:150 #: application/views/timeline/index.php:132 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 @@ -1601,8 +1601,8 @@ msgstr "" #: application/controllers/Stationsetup.php:50 #: application/controllers/Stationsetup.php:68 -#: application/controllers/Stationsetup.php:387 -#: application/controllers/Stationsetup.php:401 +#: application/controllers/Stationsetup.php:395 +#: application/controllers/Stationsetup.php:409 msgid "Not allowed" msgstr "" @@ -1612,7 +1612,7 @@ msgstr "" #: application/controllers/Stationsetup.php:118 #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 -#: application/controllers/Stationsetup.php:428 +#: application/controllers/Stationsetup.php:436 #: application/views/qso/index.php:608 msgid "Error" msgstr "" @@ -1679,35 +1679,35 @@ msgstr "" msgid "Are you sure you want to delete the public slug?" msgstr "" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Are you sure you want to make the following station the active station: " msgstr "" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "" -#: application/controllers/Stationsetup.php:343 +#: application/controllers/Stationsetup.php:351 #: application/views/station_profile/index.php:71 -#: application/views/stationsetup/stationsetup.php:152 +#: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "" -#: application/controllers/Stationsetup.php:346 +#: application/controllers/Stationsetup.php:354 #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:27 #: application/views/station_profile/index.php:76 -#: application/views/stationsetup/stationsetup.php:157 +#: application/views/stationsetup/stationsetup.php:161 #: application/views/user/main.php:87 application/views/user/main.php:89 msgid "QSO" msgstr "" -#: application/controllers/Stationsetup.php:351 +#: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 @@ -1717,42 +1717,42 @@ msgstr "" #: application/views/search/stored_queries.php:21 #: application/views/station_profile/index.php:46 #: application/views/station_profile/index.php:79 -#: application/views/stationsetup/stationsetup.php:124 -#: application/views/stationsetup/stationsetup.php:160 +#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:165 #: application/views/themes/index.php:104 application/views/user/main.php:52 msgid "Edit" msgstr "" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:99 -#: application/views/stationsetup/stationsetup.php:180 +#: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:54 #: application/views/station_profile/index.php:101 -#: application/views/stationsetup/stationsetup.php:132 -#: application/views/stationsetup/stationsetup.php:182 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "" -#: application/controllers/Stationsetup.php:359 +#: application/controllers/Stationsetup.php:367 #: application/views/station_profile/index.php:47 #: application/views/station_profile/index.php:82 -#: application/views/stationsetup/stationsetup.php:125 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/station_profile/index.php:105 -#: application/views/stationsetup/stationsetup.php:186 +#: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "Are you sure you want delete station profile '%s'? This will delete all QSOs within this station profile." msgstr "" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 #: application/views/logbookadvanced/index.php:485 @@ -1766,19 +1766,19 @@ msgstr "" #: application/views/station_profile/index.php:55 #: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 -#: application/views/stationsetup/stationsetup.php:133 -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:192 #: application/views/themes/index.php:107 application/views/user/main.php:54 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "" -#: application/controllers/Stationsetup.php:371 +#: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:220 msgid "NONE" msgstr "" -#: application/controllers/Stationsetup.php:454 +#: application/controllers/Stationsetup.php:462 msgid "Edit Export Map options" msgstr "" @@ -2472,7 +2472,7 @@ msgstr "" #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 #: application/views/view_log/qso.php:622 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 @@ -4395,7 +4395,7 @@ msgid "Cron List" msgstr "" #: application/views/cron/index.php:50 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" @@ -5053,7 +5053,7 @@ msgstr[1] "" #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:120 +#: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" msgstr "" @@ -5609,7 +5609,7 @@ msgstr "" #: application/views/interface_assets/header.php:257 #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" @@ -8473,48 +8473,48 @@ msgid "Signature" msgstr "" #: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:95 msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." msgstr "" #: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:95 +#: application/views/stationsetup/stationsetup.php:96 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" #: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:96 +#: application/views/stationsetup/stationsetup.php:97 msgid "Only one station may be active at a time. In the table below this is shown with the -Active Station- badge." msgstr "" #: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:101 msgid "Create a Station Location" msgstr "" #: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:102 +#: application/views/stationsetup/stationsetup.php:105 msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." msgstr "" #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." msgstr "" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Maintenance" msgstr "" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Please reassign them at " msgstr "" #: application/views/station_profile/index.php:41 #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:119 +#: application/views/stationsetup/stationsetup.php:122 msgid "Profile Name" msgstr "" @@ -8585,11 +8585,19 @@ msgstr "" msgid "Station Locations" msgstr "" -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:98 +msgid "The 'Linked' column shows if the station location is linked with the Active Logbook selected above." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:127 +msgid "Linked" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:134 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:180 msgid "mark/unmark as favorite" msgstr "" diff --git a/application/locale/es_ES/LC_MESSAGES/messages.po b/application/locale/es_ES/LC_MESSAGES/messages.po index f28aa8812..6f7d4a59f 100644 --- a/application/locale/es_ES/LC_MESSAGES/messages.po +++ b/application/locale/es_ES/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-01 15:00+0000\n" +"POT-Creation-Date: 2024-07-03 05:59+0000\n" "PO-Revision-Date: 2024-06-28 20:16+0000\n" "Last-Translator: CieNTi \n" "Language-Team: Spanish \n" @@ -988,7 +988,7 @@ msgstr "RST (Recibida)" #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 #: application/views/station_profile/index.php:43 -#: application/views/stationsetup/stationsetup.php:121 +#: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 #: application/views/timeline/index.php:116 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 @@ -1084,7 +1084,7 @@ msgstr "Estado" #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:134 #: application/views/station_profile/index.php:44 -#: application/views/stationsetup/stationsetup.php:122 +#: application/views/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:228 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 @@ -1237,7 +1237,7 @@ msgid "Operator" msgstr "Operador" #: application/controllers/Logbook.php:1309 -#: application/controllers/Stationsetup.php:373 +#: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 @@ -1254,7 +1254,7 @@ msgstr "Operador" #: application/views/station_profile/index.php:65 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/stationsetup.php:146 +#: application/views/stationsetup/stationsetup.php:150 #: application/views/timeline/index.php:132 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 @@ -1602,8 +1602,8 @@ msgstr "" #: application/controllers/Stationsetup.php:50 #: application/controllers/Stationsetup.php:68 -#: application/controllers/Stationsetup.php:387 -#: application/controllers/Stationsetup.php:401 +#: application/controllers/Stationsetup.php:395 +#: application/controllers/Stationsetup.php:409 msgid "Not allowed" msgstr "" @@ -1613,7 +1613,7 @@ msgstr "" #: application/controllers/Stationsetup.php:118 #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 -#: application/controllers/Stationsetup.php:428 +#: application/controllers/Stationsetup.php:436 #: application/views/qso/index.php:608 msgid "Error" msgstr "" @@ -1680,35 +1680,35 @@ msgstr "Ver Página Pública para el Libro de Guardia: " msgid "Are you sure you want to delete the public slug?" msgstr "" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Are you sure you want to make the following station the active station: " msgstr "¿Está seguro que desea poner como activa la siguiente estación: " -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "Poner como Activa" -#: application/controllers/Stationsetup.php:343 +#: application/controllers/Stationsetup.php:351 #: application/views/station_profile/index.php:71 -#: application/views/stationsetup/stationsetup.php:152 +#: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "Estación Activa" -#: application/controllers/Stationsetup.php:346 +#: application/controllers/Stationsetup.php:354 #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:27 #: application/views/station_profile/index.php:76 -#: application/views/stationsetup/stationsetup.php:157 +#: application/views/stationsetup/stationsetup.php:161 #: application/views/user/main.php:87 application/views/user/main.php:89 msgid "QSO" msgstr "" -#: application/controllers/Stationsetup.php:351 +#: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 @@ -1718,42 +1718,42 @@ msgstr "" #: application/views/search/stored_queries.php:21 #: application/views/station_profile/index.php:46 #: application/views/station_profile/index.php:79 -#: application/views/stationsetup/stationsetup.php:124 -#: application/views/stationsetup/stationsetup.php:160 +#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:165 #: application/views/themes/index.php:104 application/views/user/main.php:52 msgid "Edit" msgstr "Editar" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:99 -#: application/views/stationsetup/stationsetup.php:180 +#: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "¿Está seguro que desea eliminar todos los QSOs en este perfil de estación?" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:54 #: application/views/station_profile/index.php:101 -#: application/views/stationsetup/stationsetup.php:132 -#: application/views/stationsetup/stationsetup.php:182 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "Libro Vacío" -#: application/controllers/Stationsetup.php:359 +#: application/controllers/Stationsetup.php:367 #: application/views/station_profile/index.php:47 #: application/views/station_profile/index.php:82 -#: application/views/stationsetup/stationsetup.php:125 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "Copiar" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/station_profile/index.php:105 -#: application/views/stationsetup/stationsetup.php:186 +#: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "Are you sure you want delete station profile '%s'? This will delete all QSOs within this station profile." msgstr "" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 #: application/views/logbookadvanced/index.php:485 @@ -1767,19 +1767,19 @@ msgstr "" #: application/views/station_profile/index.php:55 #: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 -#: application/views/stationsetup/stationsetup.php:133 -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:192 #: application/views/themes/index.php:107 application/views/user/main.php:54 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "Eliminar" -#: application/controllers/Stationsetup.php:371 +#: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:220 msgid "NONE" msgstr "" -#: application/controllers/Stationsetup.php:454 +#: application/controllers/Stationsetup.php:462 msgid "Edit Export Map options" msgstr "" @@ -2473,7 +2473,7 @@ msgstr "El tamaño máximo del archivo subido es " #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 #: application/views/view_log/qso.php:622 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 @@ -4396,7 +4396,7 @@ msgid "Cron List" msgstr "" #: application/views/cron/index.php:50 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" @@ -5054,7 +5054,7 @@ msgstr[1] "" #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:120 +#: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" msgstr "Indicativo de la Estación" @@ -5610,7 +5610,7 @@ msgstr "" #: application/views/interface_assets/header.php:257 #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "Administrador" @@ -8474,48 +8474,48 @@ msgid "Signature" msgstr "Firma" #: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:95 msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." msgstr "Las localizaciones de Estación le permiten definir localizaciones de operación, como su QTH, el QTH de un amigo o una estación portable." #: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:95 +#: application/views/stationsetup/stationsetup.php:96 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "De forma similar a los libros de guardia, un perfil de estación mantiene asociado un conjunto de QSOs." #: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:96 +#: application/views/stationsetup/stationsetup.php:97 msgid "Only one station may be active at a time. In the table below this is shown with the -Active Station- badge." msgstr "Solo una estación puede estar activa en cualquier momento. En la tabla de abajo esta se muestra con la etiqueta de -Estación Activa-." #: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:101 msgid "Create a Station Location" msgstr "Crear una Localización de Estación" #: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:102 +#: application/views/stationsetup/stationsetup.php:105 msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." msgstr "Atención: Debe configurar una Localización de Estación como activa. vaya a Indicativo->Localización de Estación para seleccionar una." #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." msgstr "Debido a cambios recientes en Wavelog, debe reasignar sus QSO a sus perfiles de estación." #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Maintenance" msgstr "Mantenimiento" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Please reassign them at " msgstr "Por favor, reasignelas en " #: application/views/station_profile/index.php:41 #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:119 +#: application/views/stationsetup/stationsetup.php:122 msgid "Profile Name" msgstr "Nombre de Perfil" @@ -8586,11 +8586,19 @@ msgstr "" msgid "Station Locations" msgstr "" -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:98 +msgid "The 'Linked' column shows if the station location is linked with the Active Logbook selected above." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:127 +msgid "Linked" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:134 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:180 msgid "mark/unmark as favorite" msgstr "" diff --git a/application/locale/fi_FI/LC_MESSAGES/messages.po b/application/locale/fi_FI/LC_MESSAGES/messages.po index 022bdd008..b0b3a96c0 100644 --- a/application/locale/fi_FI/LC_MESSAGES/messages.po +++ b/application/locale/fi_FI/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-01 15:00+0000\n" +"POT-Creation-Date: 2024-07-03 05:59+0000\n" "PO-Revision-Date: 2024-06-05 15:14+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -987,7 +987,7 @@ msgstr "" #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 #: application/views/station_profile/index.php:43 -#: application/views/stationsetup/stationsetup.php:121 +#: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 #: application/views/timeline/index.php:116 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 @@ -1083,7 +1083,7 @@ msgstr "osavaltio" #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:134 #: application/views/station_profile/index.php:44 -#: application/views/stationsetup/stationsetup.php:122 +#: application/views/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:228 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 @@ -1236,7 +1236,7 @@ msgid "Operator" msgstr "" #: application/controllers/Logbook.php:1309 -#: application/controllers/Stationsetup.php:373 +#: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 @@ -1253,7 +1253,7 @@ msgstr "" #: application/views/station_profile/index.php:65 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/stationsetup.php:146 +#: application/views/stationsetup/stationsetup.php:150 #: application/views/timeline/index.php:132 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 @@ -1601,8 +1601,8 @@ msgstr "" #: application/controllers/Stationsetup.php:50 #: application/controllers/Stationsetup.php:68 -#: application/controllers/Stationsetup.php:387 -#: application/controllers/Stationsetup.php:401 +#: application/controllers/Stationsetup.php:395 +#: application/controllers/Stationsetup.php:409 msgid "Not allowed" msgstr "" @@ -1612,7 +1612,7 @@ msgstr "" #: application/controllers/Stationsetup.php:118 #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 -#: application/controllers/Stationsetup.php:428 +#: application/controllers/Stationsetup.php:436 #: application/views/qso/index.php:608 msgid "Error" msgstr "" @@ -1679,35 +1679,35 @@ msgstr "" msgid "Are you sure you want to delete the public slug?" msgstr "" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Are you sure you want to make the following station the active station: " msgstr "" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "" -#: application/controllers/Stationsetup.php:343 +#: application/controllers/Stationsetup.php:351 #: application/views/station_profile/index.php:71 -#: application/views/stationsetup/stationsetup.php:152 +#: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "" -#: application/controllers/Stationsetup.php:346 +#: application/controllers/Stationsetup.php:354 #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:27 #: application/views/station_profile/index.php:76 -#: application/views/stationsetup/stationsetup.php:157 +#: application/views/stationsetup/stationsetup.php:161 #: application/views/user/main.php:87 application/views/user/main.php:89 msgid "QSO" msgstr "" -#: application/controllers/Stationsetup.php:351 +#: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 @@ -1717,42 +1717,42 @@ msgstr "" #: application/views/search/stored_queries.php:21 #: application/views/station_profile/index.php:46 #: application/views/station_profile/index.php:79 -#: application/views/stationsetup/stationsetup.php:124 -#: application/views/stationsetup/stationsetup.php:160 +#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:165 #: application/views/themes/index.php:104 application/views/user/main.php:52 msgid "Edit" msgstr "Muokkaa" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:99 -#: application/views/stationsetup/stationsetup.php:180 +#: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:54 #: application/views/station_profile/index.php:101 -#: application/views/stationsetup/stationsetup.php:132 -#: application/views/stationsetup/stationsetup.php:182 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "" -#: application/controllers/Stationsetup.php:359 +#: application/controllers/Stationsetup.php:367 #: application/views/station_profile/index.php:47 #: application/views/station_profile/index.php:82 -#: application/views/stationsetup/stationsetup.php:125 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/station_profile/index.php:105 -#: application/views/stationsetup/stationsetup.php:186 +#: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "Are you sure you want delete station profile '%s'? This will delete all QSOs within this station profile." msgstr "" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 #: application/views/logbookadvanced/index.php:485 @@ -1766,19 +1766,19 @@ msgstr "" #: application/views/station_profile/index.php:55 #: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 -#: application/views/stationsetup/stationsetup.php:133 -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:192 #: application/views/themes/index.php:107 application/views/user/main.php:54 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "Poista" -#: application/controllers/Stationsetup.php:371 +#: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:220 msgid "NONE" msgstr "" -#: application/controllers/Stationsetup.php:454 +#: application/controllers/Stationsetup.php:462 msgid "Edit Export Map options" msgstr "" @@ -2472,7 +2472,7 @@ msgstr "" #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 #: application/views/view_log/qso.php:622 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 @@ -4395,7 +4395,7 @@ msgid "Cron List" msgstr "" #: application/views/cron/index.php:50 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" @@ -5053,7 +5053,7 @@ msgstr[1] "" #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:120 +#: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" msgstr "" @@ -5609,7 +5609,7 @@ msgstr "" #: application/views/interface_assets/header.php:257 #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" @@ -8473,48 +8473,48 @@ msgid "Signature" msgstr "" #: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:95 msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." msgstr "" #: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:95 +#: application/views/stationsetup/stationsetup.php:96 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" #: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:96 +#: application/views/stationsetup/stationsetup.php:97 msgid "Only one station may be active at a time. In the table below this is shown with the -Active Station- badge." msgstr "" #: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:101 msgid "Create a Station Location" msgstr "" #: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:102 +#: application/views/stationsetup/stationsetup.php:105 msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." msgstr "" #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." msgstr "" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Maintenance" msgstr "" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Please reassign them at " msgstr "" #: application/views/station_profile/index.php:41 #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:119 +#: application/views/stationsetup/stationsetup.php:122 msgid "Profile Name" msgstr "" @@ -8585,11 +8585,19 @@ msgstr "" msgid "Station Locations" msgstr "" -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:98 +msgid "The 'Linked' column shows if the station location is linked with the Active Logbook selected above." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:127 +msgid "Linked" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:134 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:180 msgid "mark/unmark as favorite" msgstr "" diff --git a/application/locale/fr_FR/LC_MESSAGES/messages.po b/application/locale/fr_FR/LC_MESSAGES/messages.po index 62d10f446..be06f16b3 100644 --- a/application/locale/fr_FR/LC_MESSAGES/messages.po +++ b/application/locale/fr_FR/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-01 15:00+0000\n" +"POT-Creation-Date: 2024-07-03 05:59+0000\n" "PO-Revision-Date: 2024-06-26 11:15+0000\n" "Last-Translator: Aurélien Barrau \n" "Language-Team: French \n" @@ -988,7 +988,7 @@ msgstr "RST (R)" #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 #: application/views/station_profile/index.php:43 -#: application/views/stationsetup/stationsetup.php:121 +#: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 #: application/views/timeline/index.php:116 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 @@ -1084,7 +1084,7 @@ msgstr "Etat" #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:134 #: application/views/station_profile/index.php:44 -#: application/views/stationsetup/stationsetup.php:122 +#: application/views/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:228 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 @@ -1237,7 +1237,7 @@ msgid "Operator" msgstr "Opérateur" #: application/controllers/Logbook.php:1309 -#: application/controllers/Stationsetup.php:373 +#: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 @@ -1254,7 +1254,7 @@ msgstr "Opérateur" #: application/views/station_profile/index.php:65 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/stationsetup.php:146 +#: application/views/stationsetup/stationsetup.php:150 #: application/views/timeline/index.php:132 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 @@ -1602,8 +1602,8 @@ msgstr "" #: application/controllers/Stationsetup.php:50 #: application/controllers/Stationsetup.php:68 -#: application/controllers/Stationsetup.php:387 -#: application/controllers/Stationsetup.php:401 +#: application/controllers/Stationsetup.php:395 +#: application/controllers/Stationsetup.php:409 msgid "Not allowed" msgstr "" @@ -1613,7 +1613,7 @@ msgstr "" #: application/controllers/Stationsetup.php:118 #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 -#: application/controllers/Stationsetup.php:428 +#: application/controllers/Stationsetup.php:436 #: application/views/qso/index.php:608 msgid "Error" msgstr "" @@ -1680,35 +1680,35 @@ msgstr "" msgid "Are you sure you want to delete the public slug?" msgstr "" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Are you sure you want to make the following station the active station: " msgstr "" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "" -#: application/controllers/Stationsetup.php:343 +#: application/controllers/Stationsetup.php:351 #: application/views/station_profile/index.php:71 -#: application/views/stationsetup/stationsetup.php:152 +#: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "" -#: application/controllers/Stationsetup.php:346 +#: application/controllers/Stationsetup.php:354 #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:27 #: application/views/station_profile/index.php:76 -#: application/views/stationsetup/stationsetup.php:157 +#: application/views/stationsetup/stationsetup.php:161 #: application/views/user/main.php:87 application/views/user/main.php:89 msgid "QSO" msgstr "" -#: application/controllers/Stationsetup.php:351 +#: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 @@ -1718,42 +1718,42 @@ msgstr "" #: application/views/search/stored_queries.php:21 #: application/views/station_profile/index.php:46 #: application/views/station_profile/index.php:79 -#: application/views/stationsetup/stationsetup.php:124 -#: application/views/stationsetup/stationsetup.php:160 +#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:165 #: application/views/themes/index.php:104 application/views/user/main.php:52 msgid "Edit" msgstr "Editer" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:99 -#: application/views/stationsetup/stationsetup.php:180 +#: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "Etes-vous certain de supprimer tous les QSO de cette station ?" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:54 #: application/views/station_profile/index.php:101 -#: application/views/stationsetup/stationsetup.php:132 -#: application/views/stationsetup/stationsetup.php:182 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "Journal vide" -#: application/controllers/Stationsetup.php:359 +#: application/controllers/Stationsetup.php:367 #: application/views/station_profile/index.php:47 #: application/views/station_profile/index.php:82 -#: application/views/stationsetup/stationsetup.php:125 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "Copier" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/station_profile/index.php:105 -#: application/views/stationsetup/stationsetup.php:186 +#: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "Are you sure you want delete station profile '%s'? This will delete all QSOs within this station profile." msgstr "Etes-vous certain de supprimer le profil de station '%s' ? Cela supprimera tous les QSO de cette station." -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 #: application/views/logbookadvanced/index.php:485 @@ -1767,19 +1767,19 @@ msgstr "Etes-vous certain de supprimer le profil de station '%s' ? Cela supprime #: application/views/station_profile/index.php:55 #: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 -#: application/views/stationsetup/stationsetup.php:133 -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:192 #: application/views/themes/index.php:107 application/views/user/main.php:54 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "Supprimer" -#: application/controllers/Stationsetup.php:371 +#: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:220 msgid "NONE" msgstr "AUCUNE" -#: application/controllers/Stationsetup.php:454 +#: application/controllers/Stationsetup.php:462 msgid "Edit Export Map options" msgstr "" @@ -2473,7 +2473,7 @@ msgstr "La taille maximum d'un fichier à télécharger est " #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 #: application/views/view_log/qso.php:622 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 @@ -4396,7 +4396,7 @@ msgid "Cron List" msgstr "" #: application/views/cron/index.php:50 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" @@ -5054,7 +5054,7 @@ msgstr[1] "" #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:120 +#: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" msgstr "" @@ -5610,7 +5610,7 @@ msgstr "" #: application/views/interface_assets/header.php:257 #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" @@ -8474,48 +8474,48 @@ msgid "Signature" msgstr "" #: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:95 msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." msgstr "" #: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:95 +#: application/views/stationsetup/stationsetup.php:96 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" #: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:96 +#: application/views/stationsetup/stationsetup.php:97 msgid "Only one station may be active at a time. In the table below this is shown with the -Active Station- badge." msgstr "" #: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:101 msgid "Create a Station Location" msgstr "" #: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:102 +#: application/views/stationsetup/stationsetup.php:105 msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." msgstr "" #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." msgstr "" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Maintenance" msgstr "" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Please reassign them at " msgstr "" #: application/views/station_profile/index.php:41 #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:119 +#: application/views/stationsetup/stationsetup.php:122 msgid "Profile Name" msgstr "" @@ -8586,11 +8586,19 @@ msgstr "" msgid "Station Locations" msgstr "" -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:98 +msgid "The 'Linked' column shows if the station location is linked with the Active Logbook selected above." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:127 +msgid "Linked" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:134 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:180 msgid "mark/unmark as favorite" msgstr "" diff --git a/application/locale/it_IT/LC_MESSAGES/messages.po b/application/locale/it_IT/LC_MESSAGES/messages.po index 01b192185..0a243d735 100644 --- a/application/locale/it_IT/LC_MESSAGES/messages.po +++ b/application/locale/it_IT/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-01 15:00+0000\n" +"POT-Creation-Date: 2024-07-03 05:59+0000\n" "PO-Revision-Date: 2024-06-05 12:34\n" "Last-Translator: \n" "Language-Team: Italian\n" @@ -986,7 +986,7 @@ msgstr "" #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 #: application/views/station_profile/index.php:43 -#: application/views/stationsetup/stationsetup.php:121 +#: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 #: application/views/timeline/index.php:116 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 @@ -1082,7 +1082,7 @@ msgstr "Stato" #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:134 #: application/views/station_profile/index.php:44 -#: application/views/stationsetup/stationsetup.php:122 +#: application/views/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:228 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 @@ -1235,7 +1235,7 @@ msgid "Operator" msgstr "Operatore" #: application/controllers/Logbook.php:1309 -#: application/controllers/Stationsetup.php:373 +#: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 @@ -1252,7 +1252,7 @@ msgstr "Operatore" #: application/views/station_profile/index.php:65 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/stationsetup.php:146 +#: application/views/stationsetup/stationsetup.php:150 #: application/views/timeline/index.php:132 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 @@ -1600,8 +1600,8 @@ msgstr "" #: application/controllers/Stationsetup.php:50 #: application/controllers/Stationsetup.php:68 -#: application/controllers/Stationsetup.php:387 -#: application/controllers/Stationsetup.php:401 +#: application/controllers/Stationsetup.php:395 +#: application/controllers/Stationsetup.php:409 msgid "Not allowed" msgstr "" @@ -1611,7 +1611,7 @@ msgstr "" #: application/controllers/Stationsetup.php:118 #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 -#: application/controllers/Stationsetup.php:428 +#: application/controllers/Stationsetup.php:436 #: application/views/qso/index.php:608 msgid "Error" msgstr "" @@ -1678,35 +1678,35 @@ msgstr "" msgid "Are you sure you want to delete the public slug?" msgstr "" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Are you sure you want to make the following station the active station: " msgstr "" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "" -#: application/controllers/Stationsetup.php:343 +#: application/controllers/Stationsetup.php:351 #: application/views/station_profile/index.php:71 -#: application/views/stationsetup/stationsetup.php:152 +#: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "" -#: application/controllers/Stationsetup.php:346 +#: application/controllers/Stationsetup.php:354 #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:27 #: application/views/station_profile/index.php:76 -#: application/views/stationsetup/stationsetup.php:157 +#: application/views/stationsetup/stationsetup.php:161 #: application/views/user/main.php:87 application/views/user/main.php:89 msgid "QSO" msgstr "" -#: application/controllers/Stationsetup.php:351 +#: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 @@ -1716,42 +1716,42 @@ msgstr "" #: application/views/search/stored_queries.php:21 #: application/views/station_profile/index.php:46 #: application/views/station_profile/index.php:79 -#: application/views/stationsetup/stationsetup.php:124 -#: application/views/stationsetup/stationsetup.php:160 +#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:165 #: application/views/themes/index.php:104 application/views/user/main.php:52 msgid "Edit" msgstr "" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:99 -#: application/views/stationsetup/stationsetup.php:180 +#: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:54 #: application/views/station_profile/index.php:101 -#: application/views/stationsetup/stationsetup.php:132 -#: application/views/stationsetup/stationsetup.php:182 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "" -#: application/controllers/Stationsetup.php:359 +#: application/controllers/Stationsetup.php:367 #: application/views/station_profile/index.php:47 #: application/views/station_profile/index.php:82 -#: application/views/stationsetup/stationsetup.php:125 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/station_profile/index.php:105 -#: application/views/stationsetup/stationsetup.php:186 +#: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "Are you sure you want delete station profile '%s'? This will delete all QSOs within this station profile." msgstr "" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 #: application/views/logbookadvanced/index.php:485 @@ -1765,19 +1765,19 @@ msgstr "" #: application/views/station_profile/index.php:55 #: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 -#: application/views/stationsetup/stationsetup.php:133 -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:192 #: application/views/themes/index.php:107 application/views/user/main.php:54 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "" -#: application/controllers/Stationsetup.php:371 +#: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:220 msgid "NONE" msgstr "" -#: application/controllers/Stationsetup.php:454 +#: application/controllers/Stationsetup.php:462 msgid "Edit Export Map options" msgstr "" @@ -2471,7 +2471,7 @@ msgstr "" #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 #: application/views/view_log/qso.php:622 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 @@ -4394,7 +4394,7 @@ msgid "Cron List" msgstr "" #: application/views/cron/index.php:50 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" @@ -5052,7 +5052,7 @@ msgstr[1] "" #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:120 +#: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" msgstr "" @@ -5608,7 +5608,7 @@ msgstr "" #: application/views/interface_assets/header.php:257 #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" @@ -8472,48 +8472,48 @@ msgid "Signature" msgstr "" #: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:95 msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." msgstr "" #: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:95 +#: application/views/stationsetup/stationsetup.php:96 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" #: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:96 +#: application/views/stationsetup/stationsetup.php:97 msgid "Only one station may be active at a time. In the table below this is shown with the -Active Station- badge." msgstr "" #: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:101 msgid "Create a Station Location" msgstr "" #: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:102 +#: application/views/stationsetup/stationsetup.php:105 msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." msgstr "" #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." msgstr "" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Maintenance" msgstr "" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Please reassign them at " msgstr "" #: application/views/station_profile/index.php:41 #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:119 +#: application/views/stationsetup/stationsetup.php:122 msgid "Profile Name" msgstr "" @@ -8584,11 +8584,19 @@ msgstr "" msgid "Station Locations" msgstr "" -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:98 +msgid "The 'Linked' column shows if the station location is linked with the Active Logbook selected above." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:127 +msgid "Linked" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:134 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:180 msgid "mark/unmark as favorite" msgstr "" diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.po b/application/locale/nl_NL/LC_MESSAGES/messages.po index 4ebe52607..2abf56eaa 100644 --- a/application/locale/nl_NL/LC_MESSAGES/messages.po +++ b/application/locale/nl_NL/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-01 15:00+0000\n" +"POT-Creation-Date: 2024-07-03 05:59+0000\n" "PO-Revision-Date: 2024-06-05 15:15+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -987,7 +987,7 @@ msgstr "" #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 #: application/views/station_profile/index.php:43 -#: application/views/stationsetup/stationsetup.php:121 +#: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 #: application/views/timeline/index.php:116 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 @@ -1083,7 +1083,7 @@ msgstr "" #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:134 #: application/views/station_profile/index.php:44 -#: application/views/stationsetup/stationsetup.php:122 +#: application/views/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:228 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 @@ -1236,7 +1236,7 @@ msgid "Operator" msgstr "" #: application/controllers/Logbook.php:1309 -#: application/controllers/Stationsetup.php:373 +#: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 @@ -1253,7 +1253,7 @@ msgstr "" #: application/views/station_profile/index.php:65 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/stationsetup.php:146 +#: application/views/stationsetup/stationsetup.php:150 #: application/views/timeline/index.php:132 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 @@ -1601,8 +1601,8 @@ msgstr "" #: application/controllers/Stationsetup.php:50 #: application/controllers/Stationsetup.php:68 -#: application/controllers/Stationsetup.php:387 -#: application/controllers/Stationsetup.php:401 +#: application/controllers/Stationsetup.php:395 +#: application/controllers/Stationsetup.php:409 msgid "Not allowed" msgstr "" @@ -1612,7 +1612,7 @@ msgstr "" #: application/controllers/Stationsetup.php:118 #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 -#: application/controllers/Stationsetup.php:428 +#: application/controllers/Stationsetup.php:436 #: application/views/qso/index.php:608 msgid "Error" msgstr "" @@ -1679,35 +1679,35 @@ msgstr "" msgid "Are you sure you want to delete the public slug?" msgstr "" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Are you sure you want to make the following station the active station: " msgstr "" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "" -#: application/controllers/Stationsetup.php:343 +#: application/controllers/Stationsetup.php:351 #: application/views/station_profile/index.php:71 -#: application/views/stationsetup/stationsetup.php:152 +#: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "" -#: application/controllers/Stationsetup.php:346 +#: application/controllers/Stationsetup.php:354 #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:27 #: application/views/station_profile/index.php:76 -#: application/views/stationsetup/stationsetup.php:157 +#: application/views/stationsetup/stationsetup.php:161 #: application/views/user/main.php:87 application/views/user/main.php:89 msgid "QSO" msgstr "" -#: application/controllers/Stationsetup.php:351 +#: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 @@ -1717,42 +1717,42 @@ msgstr "" #: application/views/search/stored_queries.php:21 #: application/views/station_profile/index.php:46 #: application/views/station_profile/index.php:79 -#: application/views/stationsetup/stationsetup.php:124 -#: application/views/stationsetup/stationsetup.php:160 +#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:165 #: application/views/themes/index.php:104 application/views/user/main.php:52 msgid "Edit" msgstr "" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:99 -#: application/views/stationsetup/stationsetup.php:180 +#: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:54 #: application/views/station_profile/index.php:101 -#: application/views/stationsetup/stationsetup.php:132 -#: application/views/stationsetup/stationsetup.php:182 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "" -#: application/controllers/Stationsetup.php:359 +#: application/controllers/Stationsetup.php:367 #: application/views/station_profile/index.php:47 #: application/views/station_profile/index.php:82 -#: application/views/stationsetup/stationsetup.php:125 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/station_profile/index.php:105 -#: application/views/stationsetup/stationsetup.php:186 +#: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "Are you sure you want delete station profile '%s'? This will delete all QSOs within this station profile." msgstr "" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 #: application/views/logbookadvanced/index.php:485 @@ -1766,19 +1766,19 @@ msgstr "" #: application/views/station_profile/index.php:55 #: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 -#: application/views/stationsetup/stationsetup.php:133 -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:192 #: application/views/themes/index.php:107 application/views/user/main.php:54 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "" -#: application/controllers/Stationsetup.php:371 +#: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:220 msgid "NONE" msgstr "" -#: application/controllers/Stationsetup.php:454 +#: application/controllers/Stationsetup.php:462 msgid "Edit Export Map options" msgstr "" @@ -2472,7 +2472,7 @@ msgstr "" #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 #: application/views/view_log/qso.php:622 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 @@ -4395,7 +4395,7 @@ msgid "Cron List" msgstr "" #: application/views/cron/index.php:50 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" @@ -5053,7 +5053,7 @@ msgstr[1] "" #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:120 +#: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" msgstr "" @@ -5609,7 +5609,7 @@ msgstr "" #: application/views/interface_assets/header.php:257 #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" @@ -8473,48 +8473,48 @@ msgid "Signature" msgstr "" #: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:95 msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." msgstr "" #: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:95 +#: application/views/stationsetup/stationsetup.php:96 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" #: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:96 +#: application/views/stationsetup/stationsetup.php:97 msgid "Only one station may be active at a time. In the table below this is shown with the -Active Station- badge." msgstr "" #: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:101 msgid "Create a Station Location" msgstr "" #: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:102 +#: application/views/stationsetup/stationsetup.php:105 msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." msgstr "" #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." msgstr "" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Maintenance" msgstr "" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Please reassign them at " msgstr "" #: application/views/station_profile/index.php:41 #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:119 +#: application/views/stationsetup/stationsetup.php:122 msgid "Profile Name" msgstr "" @@ -8585,11 +8585,19 @@ msgstr "" msgid "Station Locations" msgstr "" -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:98 +msgid "The 'Linked' column shows if the station location is linked with the Active Logbook selected above." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:127 +msgid "Linked" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:134 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:180 msgid "mark/unmark as favorite" msgstr "" diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.po b/application/locale/pl_PL/LC_MESSAGES/messages.po index 47f1a7499..1b4c79047 100644 --- a/application/locale/pl_PL/LC_MESSAGES/messages.po +++ b/application/locale/pl_PL/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-01 15:00+0000\n" +"POT-Creation-Date: 2024-07-03 05:59+0000\n" "PO-Revision-Date: 2024-06-05 15:16+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -988,7 +988,7 @@ msgstr "" #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 #: application/views/station_profile/index.php:43 -#: application/views/stationsetup/stationsetup.php:121 +#: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 #: application/views/timeline/index.php:116 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 @@ -1084,7 +1084,7 @@ msgstr "Stan" #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:134 #: application/views/station_profile/index.php:44 -#: application/views/stationsetup/stationsetup.php:122 +#: application/views/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:228 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 @@ -1237,7 +1237,7 @@ msgid "Operator" msgstr "" #: application/controllers/Logbook.php:1309 -#: application/controllers/Stationsetup.php:373 +#: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 @@ -1254,7 +1254,7 @@ msgstr "" #: application/views/station_profile/index.php:65 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/stationsetup.php:146 +#: application/views/stationsetup/stationsetup.php:150 #: application/views/timeline/index.php:132 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 @@ -1602,8 +1602,8 @@ msgstr "" #: application/controllers/Stationsetup.php:50 #: application/controllers/Stationsetup.php:68 -#: application/controllers/Stationsetup.php:387 -#: application/controllers/Stationsetup.php:401 +#: application/controllers/Stationsetup.php:395 +#: application/controllers/Stationsetup.php:409 msgid "Not allowed" msgstr "" @@ -1613,7 +1613,7 @@ msgstr "" #: application/controllers/Stationsetup.php:118 #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 -#: application/controllers/Stationsetup.php:428 +#: application/controllers/Stationsetup.php:436 #: application/views/qso/index.php:608 msgid "Error" msgstr "" @@ -1680,35 +1680,35 @@ msgstr "" msgid "Are you sure you want to delete the public slug?" msgstr "" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Are you sure you want to make the following station the active station: " msgstr "" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "" -#: application/controllers/Stationsetup.php:343 +#: application/controllers/Stationsetup.php:351 #: application/views/station_profile/index.php:71 -#: application/views/stationsetup/stationsetup.php:152 +#: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "" -#: application/controllers/Stationsetup.php:346 +#: application/controllers/Stationsetup.php:354 #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:27 #: application/views/station_profile/index.php:76 -#: application/views/stationsetup/stationsetup.php:157 +#: application/views/stationsetup/stationsetup.php:161 #: application/views/user/main.php:87 application/views/user/main.php:89 msgid "QSO" msgstr "" -#: application/controllers/Stationsetup.php:351 +#: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 @@ -1718,42 +1718,42 @@ msgstr "" #: application/views/search/stored_queries.php:21 #: application/views/station_profile/index.php:46 #: application/views/station_profile/index.php:79 -#: application/views/stationsetup/stationsetup.php:124 -#: application/views/stationsetup/stationsetup.php:160 +#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:165 #: application/views/themes/index.php:104 application/views/user/main.php:52 msgid "Edit" msgstr "" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:99 -#: application/views/stationsetup/stationsetup.php:180 +#: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:54 #: application/views/station_profile/index.php:101 -#: application/views/stationsetup/stationsetup.php:132 -#: application/views/stationsetup/stationsetup.php:182 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "" -#: application/controllers/Stationsetup.php:359 +#: application/controllers/Stationsetup.php:367 #: application/views/station_profile/index.php:47 #: application/views/station_profile/index.php:82 -#: application/views/stationsetup/stationsetup.php:125 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/station_profile/index.php:105 -#: application/views/stationsetup/stationsetup.php:186 +#: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "Are you sure you want delete station profile '%s'? This will delete all QSOs within this station profile." msgstr "" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 #: application/views/logbookadvanced/index.php:485 @@ -1767,19 +1767,19 @@ msgstr "" #: application/views/station_profile/index.php:55 #: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 -#: application/views/stationsetup/stationsetup.php:133 -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:192 #: application/views/themes/index.php:107 application/views/user/main.php:54 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "" -#: application/controllers/Stationsetup.php:371 +#: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:220 msgid "NONE" msgstr "" -#: application/controllers/Stationsetup.php:454 +#: application/controllers/Stationsetup.php:462 msgid "Edit Export Map options" msgstr "" @@ -2473,7 +2473,7 @@ msgstr "" #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 #: application/views/view_log/qso.php:622 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 @@ -4396,7 +4396,7 @@ msgid "Cron List" msgstr "" #: application/views/cron/index.php:50 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" @@ -5056,7 +5056,7 @@ msgstr[2] "" #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:120 +#: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" msgstr "" @@ -5612,7 +5612,7 @@ msgstr "" #: application/views/interface_assets/header.php:257 #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" @@ -8479,48 +8479,48 @@ msgid "Signature" msgstr "" #: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:95 msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." msgstr "" #: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:95 +#: application/views/stationsetup/stationsetup.php:96 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" #: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:96 +#: application/views/stationsetup/stationsetup.php:97 msgid "Only one station may be active at a time. In the table below this is shown with the -Active Station- badge." msgstr "" #: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:101 msgid "Create a Station Location" msgstr "" #: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:102 +#: application/views/stationsetup/stationsetup.php:105 msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." msgstr "" #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." msgstr "" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Maintenance" msgstr "" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Please reassign them at " msgstr "" #: application/views/station_profile/index.php:41 #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:119 +#: application/views/stationsetup/stationsetup.php:122 msgid "Profile Name" msgstr "" @@ -8591,11 +8591,19 @@ msgstr "" msgid "Station Locations" msgstr "" -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:98 +msgid "The 'Linked' column shows if the station location is linked with the Active Logbook selected above." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:127 +msgid "Linked" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:134 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:180 msgid "mark/unmark as favorite" msgstr "" diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.po b/application/locale/ru_RU/LC_MESSAGES/messages.po index 225faaa2b..e65d685d4 100644 --- a/application/locale/ru_RU/LC_MESSAGES/messages.po +++ b/application/locale/ru_RU/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-01 15:00+0000\n" +"POT-Creation-Date: 2024-07-03 05:59+0000\n" "PO-Revision-Date: 2024-07-01 06:37+0000\n" "Last-Translator: Michael Skolsky \n" "Language-Team: Russian \n" @@ -989,7 +989,7 @@ msgstr "RST (RX)" #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 #: application/views/station_profile/index.php:43 -#: application/views/stationsetup/stationsetup.php:121 +#: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 #: application/views/timeline/index.php:116 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 @@ -1085,7 +1085,7 @@ msgstr "Область/штат" #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:134 #: application/views/station_profile/index.php:44 -#: application/views/stationsetup/stationsetup.php:122 +#: application/views/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:228 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 @@ -1238,7 +1238,7 @@ msgid "Operator" msgstr "Оператор" #: application/controllers/Logbook.php:1309 -#: application/controllers/Stationsetup.php:373 +#: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 @@ -1255,7 +1255,7 @@ msgstr "Оператор" #: application/views/station_profile/index.php:65 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/stationsetup.php:146 +#: application/views/stationsetup/stationsetup.php:150 #: application/views/timeline/index.php:132 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 @@ -1603,8 +1603,8 @@ msgstr "Настройка станции" #: application/controllers/Stationsetup.php:50 #: application/controllers/Stationsetup.php:68 -#: application/controllers/Stationsetup.php:387 -#: application/controllers/Stationsetup.php:401 +#: application/controllers/Stationsetup.php:395 +#: application/controllers/Stationsetup.php:409 msgid "Not allowed" msgstr "Не разрешено" @@ -1614,7 +1614,7 @@ msgstr "Не разрешено" #: application/controllers/Stationsetup.php:118 #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 -#: application/controllers/Stationsetup.php:428 +#: application/controllers/Stationsetup.php:436 #: application/views/qso/index.php:608 msgid "Error" msgstr "Ошибка" @@ -1681,35 +1681,35 @@ msgstr "Просмотр публичной страницы журнала: " msgid "Are you sure you want to delete the public slug?" msgstr "Вы уверены, что хотите удалить публичный псевдоним?" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Are you sure you want to make the following station the active station: " msgstr "Вы уверены, что хотите сделать этот профиль QTH активным: " -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "Установить активным" -#: application/controllers/Stationsetup.php:343 +#: application/controllers/Stationsetup.php:351 #: application/views/station_profile/index.php:71 -#: application/views/stationsetup/stationsetup.php:152 +#: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "Активный профиль QTH" -#: application/controllers/Stationsetup.php:346 +#: application/controllers/Stationsetup.php:354 #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:27 #: application/views/station_profile/index.php:76 -#: application/views/stationsetup/stationsetup.php:157 +#: application/views/stationsetup/stationsetup.php:161 #: application/views/user/main.php:87 application/views/user/main.php:89 msgid "QSO" msgstr "QSO" -#: application/controllers/Stationsetup.php:351 +#: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 @@ -1719,42 +1719,42 @@ msgstr "QSO" #: application/views/search/stored_queries.php:21 #: application/views/station_profile/index.php:46 #: application/views/station_profile/index.php:79 -#: application/views/stationsetup/stationsetup.php:124 -#: application/views/stationsetup/stationsetup.php:160 +#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:165 #: application/views/themes/index.php:104 application/views/user/main.php:52 msgid "Edit" msgstr "Редактировать" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:99 -#: application/views/stationsetup/stationsetup.php:180 +#: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "Вы уверены, что хотите удалить все QSO из этого профиля станции?" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:54 #: application/views/station_profile/index.php:101 -#: application/views/stationsetup/stationsetup.php:132 -#: application/views/stationsetup/stationsetup.php:182 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "Очистить лог" -#: application/controllers/Stationsetup.php:359 +#: application/controllers/Stationsetup.php:367 #: application/views/station_profile/index.php:47 #: application/views/station_profile/index.php:82 -#: application/views/stationsetup/stationsetup.php:125 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "Скопировать" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/station_profile/index.php:105 -#: application/views/stationsetup/stationsetup.php:186 +#: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "Are you sure you want delete station profile '%s'? This will delete all QSOs within this station profile." msgstr "Вы уверены в том, что хотите удалить профиль QTH '%s'? Это удалит все QSO, связанные с этим профилем QTH." -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 #: application/views/logbookadvanced/index.php:485 @@ -1768,19 +1768,19 @@ msgstr "Вы уверены в том, что хотите удалить про #: application/views/station_profile/index.php:55 #: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 -#: application/views/stationsetup/stationsetup.php:133 -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:192 #: application/views/themes/index.php:107 application/views/user/main.php:54 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "Удалить" -#: application/controllers/Stationsetup.php:371 +#: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:220 msgid "NONE" msgstr "—" -#: application/controllers/Stationsetup.php:454 +#: application/controllers/Stationsetup.php:462 msgid "Edit Export Map options" msgstr "Редактировать настройка экспорта карты" @@ -2474,7 +2474,7 @@ msgstr "Максимальный размер загружаемого файл #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 #: application/views/view_log/qso.php:622 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 @@ -4397,7 +4397,7 @@ msgid "Cron List" msgstr "Список задач" #: application/views/cron/index.php:50 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "ID" @@ -5057,7 +5057,7 @@ msgstr[2] "База данных содержит %d QSO без привязан #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:120 +#: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" msgstr "Позывной" @@ -5613,7 +5613,7 @@ msgstr "Спутниковые таймеры" #: application/views/interface_assets/header.php:257 #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "Администрирование" @@ -8480,48 +8480,48 @@ msgid "Signature" msgstr "Подпись" #: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:95 msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." msgstr "Профили QTH определяют места работы, например, ваш QTH, QTH друзей или портативная станция." #: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:95 +#: application/views/stationsetup/stationsetup.php:96 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "Также, как и журнал, профиль QTH объединяет набор QSO." #: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:96 +#: application/views/stationsetup/stationsetup.php:97 msgid "Only one station may be active at a time. In the table below this is shown with the -Active Station- badge." msgstr "Только один профиль QTH может быть активен в каждый момент. В таблице ниже он отмечена меткой -Активный профиль QTH-." #: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:101 msgid "Create a Station Location" msgstr "Создать профиль QTH" #: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:102 +#: application/views/stationsetup/stationsetup.php:105 msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." msgstr "Внимание. Вам нужно установить активный профиль QTH. Перейдите в меню Позывной->профили QTH, чтобы выбрать активный профиль." #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." msgstr "Из-за недавних изменений в Wavelog вам нужно переназначить QSO вашим профилям станции." #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Maintenance" msgstr "Обслуживание" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Please reassign them at " msgstr "Пожалуйста, переназначьте их в " #: application/views/station_profile/index.php:41 #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:119 +#: application/views/stationsetup/stationsetup.php:122 msgid "Profile Name" msgstr "Название профиля" @@ -8592,11 +8592,19 @@ msgstr "Публичная страница" msgid "Station Locations" msgstr "Профили QTH" -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:98 +msgid "The 'Linked' column shows if the station location is linked with the Active Logbook selected above." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:127 +msgid "Linked" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:134 msgid "Favorite" msgstr "Избранные" -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:180 msgid "mark/unmark as favorite" msgstr "отметить/снять отметку как избранный" diff --git a/application/locale/sv_SE/LC_MESSAGES/messages.po b/application/locale/sv_SE/LC_MESSAGES/messages.po index 222452883..57ce987ad 100644 --- a/application/locale/sv_SE/LC_MESSAGES/messages.po +++ b/application/locale/sv_SE/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-01 15:00+0000\n" +"POT-Creation-Date: 2024-07-03 05:59+0000\n" "PO-Revision-Date: 2024-06-05 15:19+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -987,7 +987,7 @@ msgstr "" #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 #: application/views/station_profile/index.php:43 -#: application/views/stationsetup/stationsetup.php:121 +#: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 #: application/views/timeline/index.php:116 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 @@ -1083,7 +1083,7 @@ msgstr "" #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:134 #: application/views/station_profile/index.php:44 -#: application/views/stationsetup/stationsetup.php:122 +#: application/views/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:228 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 @@ -1236,7 +1236,7 @@ msgid "Operator" msgstr "Operatör" #: application/controllers/Logbook.php:1309 -#: application/controllers/Stationsetup.php:373 +#: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 @@ -1253,7 +1253,7 @@ msgstr "Operatör" #: application/views/station_profile/index.php:65 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/stationsetup.php:146 +#: application/views/stationsetup/stationsetup.php:150 #: application/views/timeline/index.php:132 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 @@ -1601,8 +1601,8 @@ msgstr "" #: application/controllers/Stationsetup.php:50 #: application/controllers/Stationsetup.php:68 -#: application/controllers/Stationsetup.php:387 -#: application/controllers/Stationsetup.php:401 +#: application/controllers/Stationsetup.php:395 +#: application/controllers/Stationsetup.php:409 msgid "Not allowed" msgstr "" @@ -1612,7 +1612,7 @@ msgstr "" #: application/controllers/Stationsetup.php:118 #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 -#: application/controllers/Stationsetup.php:428 +#: application/controllers/Stationsetup.php:436 #: application/views/qso/index.php:608 msgid "Error" msgstr "" @@ -1679,35 +1679,35 @@ msgstr "" msgid "Are you sure you want to delete the public slug?" msgstr "" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Are you sure you want to make the following station the active station: " msgstr "" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "" -#: application/controllers/Stationsetup.php:343 +#: application/controllers/Stationsetup.php:351 #: application/views/station_profile/index.php:71 -#: application/views/stationsetup/stationsetup.php:152 +#: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "" -#: application/controllers/Stationsetup.php:346 +#: application/controllers/Stationsetup.php:354 #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:27 #: application/views/station_profile/index.php:76 -#: application/views/stationsetup/stationsetup.php:157 +#: application/views/stationsetup/stationsetup.php:161 #: application/views/user/main.php:87 application/views/user/main.php:89 msgid "QSO" msgstr "" -#: application/controllers/Stationsetup.php:351 +#: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 @@ -1717,42 +1717,42 @@ msgstr "" #: application/views/search/stored_queries.php:21 #: application/views/station_profile/index.php:46 #: application/views/station_profile/index.php:79 -#: application/views/stationsetup/stationsetup.php:124 -#: application/views/stationsetup/stationsetup.php:160 +#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:165 #: application/views/themes/index.php:104 application/views/user/main.php:52 msgid "Edit" msgstr "Redigera" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:99 -#: application/views/stationsetup/stationsetup.php:180 +#: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:54 #: application/views/station_profile/index.php:101 -#: application/views/stationsetup/stationsetup.php:132 -#: application/views/stationsetup/stationsetup.php:182 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "" -#: application/controllers/Stationsetup.php:359 +#: application/controllers/Stationsetup.php:367 #: application/views/station_profile/index.php:47 #: application/views/station_profile/index.php:82 -#: application/views/stationsetup/stationsetup.php:125 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/station_profile/index.php:105 -#: application/views/stationsetup/stationsetup.php:186 +#: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "Are you sure you want delete station profile '%s'? This will delete all QSOs within this station profile." msgstr "" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 #: application/views/logbookadvanced/index.php:485 @@ -1766,19 +1766,19 @@ msgstr "" #: application/views/station_profile/index.php:55 #: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 -#: application/views/stationsetup/stationsetup.php:133 -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:192 #: application/views/themes/index.php:107 application/views/user/main.php:54 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "Radera" -#: application/controllers/Stationsetup.php:371 +#: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:220 msgid "NONE" msgstr "" -#: application/controllers/Stationsetup.php:454 +#: application/controllers/Stationsetup.php:462 msgid "Edit Export Map options" msgstr "" @@ -2472,7 +2472,7 @@ msgstr "" #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 #: application/views/view_log/qso.php:622 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 @@ -4395,7 +4395,7 @@ msgid "Cron List" msgstr "" #: application/views/cron/index.php:50 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" @@ -5053,7 +5053,7 @@ msgstr[1] "" #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:120 +#: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" msgstr "" @@ -5609,7 +5609,7 @@ msgstr "" #: application/views/interface_assets/header.php:257 #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" @@ -8473,48 +8473,48 @@ msgid "Signature" msgstr "" #: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:95 msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." msgstr "" #: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:95 +#: application/views/stationsetup/stationsetup.php:96 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" #: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:96 +#: application/views/stationsetup/stationsetup.php:97 msgid "Only one station may be active at a time. In the table below this is shown with the -Active Station- badge." msgstr "" #: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:101 msgid "Create a Station Location" msgstr "" #: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:102 +#: application/views/stationsetup/stationsetup.php:105 msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." msgstr "" #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." msgstr "" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Maintenance" msgstr "" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Please reassign them at " msgstr "" #: application/views/station_profile/index.php:41 #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:119 +#: application/views/stationsetup/stationsetup.php:122 msgid "Profile Name" msgstr "" @@ -8585,11 +8585,19 @@ msgstr "" msgid "Station Locations" msgstr "" -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:98 +msgid "The 'Linked' column shows if the station location is linked with the Active Logbook selected above." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:127 +msgid "Linked" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:134 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:180 msgid "mark/unmark as favorite" msgstr "" diff --git a/application/locale/tr_TR/LC_MESSAGES/messages.po b/application/locale/tr_TR/LC_MESSAGES/messages.po index 2bffc85c4..0acf6bb71 100644 --- a/application/locale/tr_TR/LC_MESSAGES/messages.po +++ b/application/locale/tr_TR/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-01 15:00+0000\n" +"POT-Creation-Date: 2024-07-03 05:59+0000\n" "PO-Revision-Date: 2024-06-05 15:20+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -987,7 +987,7 @@ msgstr "RST (A)" #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 #: application/views/station_profile/index.php:43 -#: application/views/stationsetup/stationsetup.php:121 +#: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 #: application/views/timeline/index.php:116 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 @@ -1083,7 +1083,7 @@ msgstr "Eyalet" #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:134 #: application/views/station_profile/index.php:44 -#: application/views/stationsetup/stationsetup.php:122 +#: application/views/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:228 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 @@ -1236,7 +1236,7 @@ msgid "Operator" msgstr "Operatör" #: application/controllers/Logbook.php:1309 -#: application/controllers/Stationsetup.php:373 +#: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 @@ -1253,7 +1253,7 @@ msgstr "Operatör" #: application/views/station_profile/index.php:65 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/stationsetup.php:146 +#: application/views/stationsetup/stationsetup.php:150 #: application/views/timeline/index.php:132 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 @@ -1601,8 +1601,8 @@ msgstr "" #: application/controllers/Stationsetup.php:50 #: application/controllers/Stationsetup.php:68 -#: application/controllers/Stationsetup.php:387 -#: application/controllers/Stationsetup.php:401 +#: application/controllers/Stationsetup.php:395 +#: application/controllers/Stationsetup.php:409 msgid "Not allowed" msgstr "" @@ -1612,7 +1612,7 @@ msgstr "" #: application/controllers/Stationsetup.php:118 #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 -#: application/controllers/Stationsetup.php:428 +#: application/controllers/Stationsetup.php:436 #: application/views/qso/index.php:608 msgid "Error" msgstr "" @@ -1679,35 +1679,35 @@ msgstr "" msgid "Are you sure you want to delete the public slug?" msgstr "" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Are you sure you want to make the following station the active station: " msgstr "" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "" -#: application/controllers/Stationsetup.php:343 +#: application/controllers/Stationsetup.php:351 #: application/views/station_profile/index.php:71 -#: application/views/stationsetup/stationsetup.php:152 +#: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "" -#: application/controllers/Stationsetup.php:346 +#: application/controllers/Stationsetup.php:354 #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:27 #: application/views/station_profile/index.php:76 -#: application/views/stationsetup/stationsetup.php:157 +#: application/views/stationsetup/stationsetup.php:161 #: application/views/user/main.php:87 application/views/user/main.php:89 msgid "QSO" msgstr "" -#: application/controllers/Stationsetup.php:351 +#: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 @@ -1717,42 +1717,42 @@ msgstr "" #: application/views/search/stored_queries.php:21 #: application/views/station_profile/index.php:46 #: application/views/station_profile/index.php:79 -#: application/views/stationsetup/stationsetup.php:124 -#: application/views/stationsetup/stationsetup.php:160 +#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:165 #: application/views/themes/index.php:104 application/views/user/main.php:52 msgid "Edit" msgstr "" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:99 -#: application/views/stationsetup/stationsetup.php:180 +#: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:54 #: application/views/station_profile/index.php:101 -#: application/views/stationsetup/stationsetup.php:132 -#: application/views/stationsetup/stationsetup.php:182 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "" -#: application/controllers/Stationsetup.php:359 +#: application/controllers/Stationsetup.php:367 #: application/views/station_profile/index.php:47 #: application/views/station_profile/index.php:82 -#: application/views/stationsetup/stationsetup.php:125 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/station_profile/index.php:105 -#: application/views/stationsetup/stationsetup.php:186 +#: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "Are you sure you want delete station profile '%s'? This will delete all QSOs within this station profile." msgstr "" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 #: application/views/logbookadvanced/index.php:485 @@ -1766,19 +1766,19 @@ msgstr "" #: application/views/station_profile/index.php:55 #: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 -#: application/views/stationsetup/stationsetup.php:133 -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:192 #: application/views/themes/index.php:107 application/views/user/main.php:54 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "" -#: application/controllers/Stationsetup.php:371 +#: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:220 msgid "NONE" msgstr "" -#: application/controllers/Stationsetup.php:454 +#: application/controllers/Stationsetup.php:462 msgid "Edit Export Map options" msgstr "" @@ -2472,7 +2472,7 @@ msgstr "" #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 #: application/views/view_log/qso.php:622 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 @@ -4395,7 +4395,7 @@ msgid "Cron List" msgstr "" #: application/views/cron/index.php:50 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" @@ -5053,7 +5053,7 @@ msgstr[1] "" #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:120 +#: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" msgstr "" @@ -5609,7 +5609,7 @@ msgstr "" #: application/views/interface_assets/header.php:257 #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" @@ -8473,48 +8473,48 @@ msgid "Signature" msgstr "" #: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:95 msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." msgstr "" #: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:95 +#: application/views/stationsetup/stationsetup.php:96 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" #: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:96 +#: application/views/stationsetup/stationsetup.php:97 msgid "Only one station may be active at a time. In the table below this is shown with the -Active Station- badge." msgstr "" #: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:101 msgid "Create a Station Location" msgstr "" #: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:102 +#: application/views/stationsetup/stationsetup.php:105 msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." msgstr "" #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." msgstr "" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Maintenance" msgstr "" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Please reassign them at " msgstr "" #: application/views/station_profile/index.php:41 #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:119 +#: application/views/stationsetup/stationsetup.php:122 msgid "Profile Name" msgstr "" @@ -8585,11 +8585,19 @@ msgstr "" msgid "Station Locations" msgstr "" -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:98 +msgid "The 'Linked' column shows if the station location is linked with the Active Logbook selected above." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:127 +msgid "Linked" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:134 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:180 msgid "mark/unmark as favorite" msgstr "" diff --git a/application/locale/zh_CN/LC_MESSAGES/messages.po b/application/locale/zh_CN/LC_MESSAGES/messages.po index 7a9ebee08..7ae33a2a9 100644 --- a/application/locale/zh_CN/LC_MESSAGES/messages.po +++ b/application/locale/zh_CN/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-01 15:00+0000\n" +"POT-Creation-Date: 2024-07-03 05:59+0000\n" "PO-Revision-Date: 2024-07-01 05:27+0000\n" "Last-Translator: Karuru \n" "Language-Team: Chinese (Simplified) \n" @@ -987,7 +987,7 @@ msgstr "信号报告(收)" #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 #: application/views/station_profile/index.php:43 -#: application/views/stationsetup/stationsetup.php:121 +#: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 #: application/views/timeline/index.php:116 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 @@ -1083,7 +1083,7 @@ msgstr "州" #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:134 #: application/views/station_profile/index.php:44 -#: application/views/stationsetup/stationsetup.php:122 +#: application/views/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:228 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 @@ -1236,7 +1236,7 @@ msgid "Operator" msgstr "操作员" #: application/controllers/Logbook.php:1309 -#: application/controllers/Stationsetup.php:373 +#: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 @@ -1253,7 +1253,7 @@ msgstr "操作员" #: application/views/station_profile/index.php:65 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/stationsetup.php:146 +#: application/views/stationsetup/stationsetup.php:150 #: application/views/timeline/index.php:132 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 @@ -1601,8 +1601,8 @@ msgstr "设置台站" #: application/controllers/Stationsetup.php:50 #: application/controllers/Stationsetup.php:68 -#: application/controllers/Stationsetup.php:387 -#: application/controllers/Stationsetup.php:401 +#: application/controllers/Stationsetup.php:395 +#: application/controllers/Stationsetup.php:409 msgid "Not allowed" msgstr "不允许" @@ -1612,7 +1612,7 @@ msgstr "不允许" #: application/controllers/Stationsetup.php:118 #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 -#: application/controllers/Stationsetup.php:428 +#: application/controllers/Stationsetup.php:436 #: application/views/qso/index.php:608 msgid "Error" msgstr "错误" @@ -1679,35 +1679,35 @@ msgstr "浏览日志公开页: " msgid "Are you sure you want to delete the public slug?" msgstr "确定要删除此公开个性标识符?" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Are you sure you want to make the following station the active station: " msgstr "确认将如下台站设为启用状态:" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "设置启用" -#: application/controllers/Stationsetup.php:343 +#: application/controllers/Stationsetup.php:351 #: application/views/station_profile/index.php:71 -#: application/views/stationsetup/stationsetup.php:152 +#: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "启用的台站" -#: application/controllers/Stationsetup.php:346 +#: application/controllers/Stationsetup.php:354 #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:27 #: application/views/station_profile/index.php:76 -#: application/views/stationsetup/stationsetup.php:157 +#: application/views/stationsetup/stationsetup.php:161 #: application/views/user/main.php:87 application/views/user/main.php:89 msgid "QSO" msgstr "QSO" -#: application/controllers/Stationsetup.php:351 +#: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 @@ -1717,42 +1717,42 @@ msgstr "QSO" #: application/views/search/stored_queries.php:21 #: application/views/station_profile/index.php:46 #: application/views/station_profile/index.php:79 -#: application/views/stationsetup/stationsetup.php:124 -#: application/views/stationsetup/stationsetup.php:160 +#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:165 #: application/views/themes/index.php:104 application/views/user/main.php:52 msgid "Edit" msgstr "编辑用户" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:99 -#: application/views/stationsetup/stationsetup.php:180 +#: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "确认删除台站下的所有 QSO?" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:54 #: application/views/station_profile/index.php:101 -#: application/views/stationsetup/stationsetup.php:132 -#: application/views/stationsetup/stationsetup.php:182 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "日志为空" -#: application/controllers/Stationsetup.php:359 +#: application/controllers/Stationsetup.php:367 #: application/views/station_profile/index.php:47 #: application/views/station_profile/index.php:82 -#: application/views/stationsetup/stationsetup.php:125 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "复制" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/station_profile/index.php:105 -#: application/views/stationsetup/stationsetup.php:186 +#: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "Are you sure you want delete station profile '%s'? This will delete all QSOs within this station profile." msgstr "确定要删除台站 '%s' 吗?这会删除此台站下的所有 QSO。" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 #: application/views/logbookadvanced/index.php:485 @@ -1766,19 +1766,19 @@ msgstr "确定要删除台站 '%s' 吗?这会删除此台站下的所有 QSO #: application/views/station_profile/index.php:55 #: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 -#: application/views/stationsetup/stationsetup.php:133 -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:192 #: application/views/themes/index.php:107 application/views/user/main.php:54 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "删除用户" -#: application/controllers/Stationsetup.php:371 +#: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:220 msgid "NONE" msgstr "无" -#: application/controllers/Stationsetup.php:454 +#: application/controllers/Stationsetup.php:462 msgid "Edit Export Map options" msgstr "编辑导出地图选项" @@ -2472,7 +2472,7 @@ msgstr "最大上传文件大小是" #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 #: application/views/view_log/qso.php:622 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 @@ -4395,7 +4395,7 @@ msgid "Cron List" msgstr "" #: application/views/cron/index.php:50 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" @@ -5051,7 +5051,7 @@ msgstr[0] "" #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:120 +#: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" msgstr "电台呼号" @@ -5607,7 +5607,7 @@ msgstr "卫星过境时钟" #: application/views/interface_assets/header.php:257 #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "管理员" @@ -8468,48 +8468,48 @@ msgid "Signature" msgstr "签名" #: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:95 msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." msgstr "台站地址为电台使用地址,如您或朋友的 QTH,或移动台的地址" #: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:95 +#: application/views/stationsetup/stationsetup.php:96 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "和日志簿类似,一个台站地址为 QSO 集合的承载主体" #: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:96 +#: application/views/stationsetup/stationsetup.php:97 msgid "Only one station may be active at a time. In the table below this is shown with the -Active Station- badge." msgstr "同一时间只允许启用一个台站地址,详见如下表格中的 -启用- 标志" #: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:101 msgid "Create a Station Location" msgstr "创建一个台站地址" #: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:102 +#: application/views/stationsetup/stationsetup.php:105 msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." msgstr "警告:应事先设置一个'启用'的台站地址,请在 '呼号'->'台站地址'中选择一个" #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." msgstr "由于 Wavelog 设置更改,您需要重新在电台设置中重新分配 QSO" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Maintenance" msgstr "维护" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Please reassign them at " msgstr "重新分配 " #: application/views/station_profile/index.php:41 #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:119 +#: application/views/stationsetup/stationsetup.php:122 msgid "Profile Name" msgstr "名称" @@ -8580,11 +8580,19 @@ msgstr "" msgid "Station Locations" msgstr "" -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:98 +msgid "The 'Linked' column shows if the station location is linked with the Active Logbook selected above." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:127 +msgid "Linked" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:134 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:180 msgid "mark/unmark as favorite" msgstr "" diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index 705f1b626..e7c20b4a6 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-01 19:18+0000\n" +"POT-Creation-Date: 2024-07-03 05:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -987,7 +987,7 @@ msgstr "" #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 #: application/views/station_profile/index.php:43 -#: application/views/stationsetup/stationsetup.php:121 +#: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 #: application/views/timeline/index.php:116 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 @@ -1083,7 +1083,7 @@ msgstr "" #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:134 #: application/views/station_profile/index.php:44 -#: application/views/stationsetup/stationsetup.php:122 +#: application/views/stationsetup/stationsetup.php:125 #: application/views/timeline/index.php:228 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 @@ -1236,7 +1236,7 @@ msgid "Operator" msgstr "" #: application/controllers/Logbook.php:1309 -#: application/controllers/Stationsetup.php:373 +#: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 @@ -1253,7 +1253,7 @@ msgstr "" #: application/views/station_profile/index.php:65 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/stationsetup.php:146 +#: application/views/stationsetup/stationsetup.php:150 #: application/views/timeline/index.php:132 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 @@ -1601,8 +1601,8 @@ msgstr "" #: application/controllers/Stationsetup.php:50 #: application/controllers/Stationsetup.php:68 -#: application/controllers/Stationsetup.php:387 -#: application/controllers/Stationsetup.php:401 +#: application/controllers/Stationsetup.php:395 +#: application/controllers/Stationsetup.php:409 msgid "Not allowed" msgstr "" @@ -1612,7 +1612,7 @@ msgstr "" #: application/controllers/Stationsetup.php:118 #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 -#: application/controllers/Stationsetup.php:428 +#: application/controllers/Stationsetup.php:436 #: application/views/qso/index.php:608 msgid "Error" msgstr "" @@ -1679,35 +1679,35 @@ msgstr "" msgid "Are you sure you want to delete the public slug?" msgstr "" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Are you sure you want to make the following station the active station: " msgstr "" -#: application/controllers/Stationsetup.php:341 +#: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 -#: application/views/stationsetup/stationsetup.php:150 +#: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "" -#: application/controllers/Stationsetup.php:343 +#: application/controllers/Stationsetup.php:351 #: application/views/station_profile/index.php:71 -#: application/views/stationsetup/stationsetup.php:152 +#: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "" -#: application/controllers/Stationsetup.php:346 +#: application/controllers/Stationsetup.php:354 #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:27 #: application/views/station_profile/index.php:76 -#: application/views/stationsetup/stationsetup.php:157 +#: application/views/stationsetup/stationsetup.php:161 #: application/views/user/main.php:87 application/views/user/main.php:89 msgid "QSO" msgstr "" -#: application/controllers/Stationsetup.php:351 +#: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 @@ -1717,42 +1717,42 @@ msgstr "" #: application/views/search/stored_queries.php:21 #: application/views/station_profile/index.php:46 #: application/views/station_profile/index.php:79 -#: application/views/stationsetup/stationsetup.php:124 -#: application/views/stationsetup/stationsetup.php:160 +#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:165 #: application/views/themes/index.php:104 application/views/user/main.php:52 msgid "Edit" msgstr "" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:99 -#: application/views/stationsetup/stationsetup.php:180 +#: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" -#: application/controllers/Stationsetup.php:355 +#: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:54 #: application/views/station_profile/index.php:101 -#: application/views/stationsetup/stationsetup.php:132 -#: application/views/stationsetup/stationsetup.php:182 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "" -#: application/controllers/Stationsetup.php:359 +#: application/controllers/Stationsetup.php:367 #: application/views/station_profile/index.php:47 #: application/views/station_profile/index.php:82 -#: application/views/stationsetup/stationsetup.php:125 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/station_profile/index.php:105 -#: application/views/stationsetup/stationsetup.php:186 +#: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "Are you sure you want delete station profile '%s'? This will delete all QSOs within this station profile." msgstr "" -#: application/controllers/Stationsetup.php:364 +#: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 #: application/views/logbookadvanced/index.php:485 @@ -1766,19 +1766,19 @@ msgstr "" #: application/views/station_profile/index.php:55 #: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 -#: application/views/stationsetup/stationsetup.php:133 -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:192 #: application/views/themes/index.php:107 application/views/user/main.php:54 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "" -#: application/controllers/Stationsetup.php:371 +#: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:220 msgid "NONE" msgstr "" -#: application/controllers/Stationsetup.php:454 +#: application/controllers/Stationsetup.php:462 msgid "Edit Export Map options" msgstr "" @@ -2472,7 +2472,7 @@ msgstr "" #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 #: application/views/view_log/qso.php:622 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 @@ -4395,7 +4395,7 @@ msgid "Cron List" msgstr "" #: application/views/cron/index.php:50 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" @@ -5053,7 +5053,7 @@ msgstr[1] "" #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:120 +#: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" msgstr "" @@ -5609,7 +5609,7 @@ msgstr "" #: application/views/interface_assets/header.php:257 #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" @@ -8473,48 +8473,48 @@ msgid "Signature" msgstr "" #: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:95 msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." msgstr "" #: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:95 +#: application/views/stationsetup/stationsetup.php:96 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" #: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:96 +#: application/views/stationsetup/stationsetup.php:97 msgid "Only one station may be active at a time. In the table below this is shown with the -Active Station- badge." msgstr "" #: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:101 msgid "Create a Station Location" msgstr "" #: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:102 +#: application/views/stationsetup/stationsetup.php:105 msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." msgstr "" #: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:108 +#: application/views/stationsetup/stationsetup.php:111 msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." msgstr "" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Maintenance" msgstr "" #: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:113 msgid "Please reassign them at " msgstr "" #: application/views/station_profile/index.php:41 #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:119 +#: application/views/stationsetup/stationsetup.php:122 msgid "Profile Name" msgstr "" @@ -8585,11 +8585,19 @@ msgstr "" msgid "Station Locations" msgstr "" -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:98 +msgid "The 'Linked' column shows if the station location is linked with the Active Logbook selected above." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:127 +msgid "Linked" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:134 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:180 msgid "mark/unmark as favorite" msgstr "" From 783746596edd474dfdc304500ef555315d990a3b Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 3 Jul 2024 06:10:24 +0000 Subject: [PATCH 13/24] Run po_gen.sh script to update translation files --- .../locale/bg_BG/LC_MESSAGES/messages.po | 450 +++++++++--------- .../locale/cs_CZ/LC_MESSAGES/messages.po | 450 +++++++++--------- .../locale/de_DE/LC_MESSAGES/messages.po | 450 +++++++++--------- .../locale/el_GR/LC_MESSAGES/messages.po | 450 +++++++++--------- .../locale/es_ES/LC_MESSAGES/messages.po | 450 +++++++++--------- .../locale/fi_FI/LC_MESSAGES/messages.po | 450 +++++++++--------- .../locale/fr_FR/LC_MESSAGES/messages.po | 450 +++++++++--------- .../locale/it_IT/LC_MESSAGES/messages.po | 450 +++++++++--------- .../locale/nl_NL/LC_MESSAGES/messages.po | 450 +++++++++--------- .../locale/pl_PL/LC_MESSAGES/messages.po | 450 +++++++++--------- .../locale/ru_RU/LC_MESSAGES/messages.po | 450 +++++++++--------- .../locale/sv_SE/LC_MESSAGES/messages.po | 450 +++++++++--------- .../locale/tr_TR/LC_MESSAGES/messages.po | 450 +++++++++--------- .../locale/zh_CN/LC_MESSAGES/messages.po | 450 +++++++++--------- assets/lang_src/messages.pot | 450 +++++++++--------- 15 files changed, 3555 insertions(+), 3195 deletions(-) diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index cb6175427..6f1b73f4c 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-03 05:59+0000\n" +"POT-Creation-Date: 2024-07-03 06:10+0000\n" "PO-Revision-Date: 2024-06-05 15:12+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -179,8 +179,8 @@ msgstr "" #: application/views/bands/index.php:49 #: application/views/contesting/index.php:170 #: application/views/interface_assets/header.php:192 -#: application/views/logbookadvanced/index.php:581 -#: application/views/logbookadvanced/useroptions.php:126 +#: application/views/logbookadvanced/index.php:611 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/qso/edit_ajax.php:360 application/views/qso/index.php:264 #: application/views/qso/index.php:508 application/views/user/edit.php:603 #: application/views/view_log/qso.php:351 @@ -194,10 +194,10 @@ msgstr "" #: application/views/interface_assets/header.php:162 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:140 -#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/index.php:145 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/qslcarousel.php:35 -#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 #: application/views/lotw_views/index.php:40 #: application/views/qso/edit_ajax.php:218 application/views/qso/index.php:361 @@ -262,8 +262,8 @@ msgstr "" #: application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:176 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:264 -#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/logbookadvanced/index.php:269 +#: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -288,8 +288,8 @@ msgstr "" #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:268 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/index.php:273 +#: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:340 @@ -308,9 +308,9 @@ msgstr "" #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:180 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:272 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/useroptions.php:102 +#: application/views/logbookadvanced/index.php:277 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:11 @@ -380,7 +380,7 @@ msgstr "" #: application/controllers/Awards.php:1125 #: application/views/interface_assets/header.php:166 -#: application/views/logbookadvanced/useroptions.php:134 +#: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "" @@ -756,7 +756,7 @@ msgstr "Дневник" #: application/views/awards/waja/index.php:53 #: application/views/awards/was/index.php:53 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -798,8 +798,8 @@ msgstr "" #: application/views/user/edit.php:659 #: application/views/view_log/partial/log_ajax.php:230 #: application/views/view_log/partial/log_ajax.php:231 -#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:365 -#: src/QSLManager/QSO.php:377 +#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:367 +#: src/QSLManager/QSO.php:379 msgid "LoTW" msgstr "" @@ -832,7 +832,7 @@ msgstr "" #: application/views/user/edit.php:667 application/views/user/edit.php:731 #: application/views/view_log/partial/log_ajax.php:217 #: application/views/view_log/partial/log_ajax.php:218 -#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: src/QSLManager/QSO.php:439 src/QSLManager/QSO.php:452 msgid "eQSL" msgstr "" @@ -842,12 +842,14 @@ msgstr "" #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 #: application/views/awards/waja/index.php:69 +#: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/edit.php:325 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/qso.php:423 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:416 msgid "Clublog" msgstr "" @@ -879,8 +881,8 @@ msgstr "" #: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 #: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:177 -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:182 +#: application/views/logbookadvanced/index.php:542 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -926,7 +928,7 @@ msgstr "Режим" #: application/views/awards/wwff/index.php:36 #: application/views/contesting/index.php:111 #: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:545 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -953,7 +955,7 @@ msgstr "" #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/index.php:548 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1005,10 +1007,10 @@ msgstr "Държава" #: application/views/bands/index.php:52 application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:178 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:157 -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:162 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1036,10 +1038,10 @@ msgstr "" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:20 #: application/views/logbookadvanced/edit.php:61 -#: application/views/logbookadvanced/index.php:169 -#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/index.php:174 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:36 -#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1067,9 +1069,9 @@ msgstr "" #: application/views/labels/index.php:121 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:178 #: application/views/logbookadvanced/qslcarousel.php:39 -#: application/views/logbookadvanced/useroptions.php:122 +#: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 #: application/views/qslcard/searchresult.php:19 #: application/views/qslcard/searchresult.php:35 @@ -1150,8 +1152,8 @@ msgstr "" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:188 -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:193 +#: application/views/logbookadvanced/index.php:551 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1216,9 +1218,9 @@ msgstr "Честота" #: application/controllers/Logbook.php:1288 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:276 -#: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/logbookadvanced/index.php:281 +#: application/views/logbookadvanced/index.php:596 +#: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1243,7 +1245,7 @@ msgstr "" #: application/views/dxatlas/index.php:65 #: application/views/interface_assets/footer.php:630 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:149 +#: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 #: application/views/lotw_views/index.php:56 #: application/views/qso/components/previous_contacts.php:59 @@ -1533,7 +1535,7 @@ msgstr "" #: application/views/continents/index.php:49 #: application/views/interface_assets/header.php:328 #: application/views/interface_assets/header.php:335 -#: application/views/logbookadvanced/index.php:482 +#: application/views/logbookadvanced/index.php:509 #: application/views/oqrs/index.php:23 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1711,7 +1713,7 @@ msgstr "" #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 -#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:511 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 @@ -1755,7 +1757,7 @@ msgstr "" #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 -#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:512 #: application/views/lotw_views/index.php:118 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 @@ -2056,21 +2058,23 @@ msgstr "" #: application/views/gridmap/index.php:83 application/views/kml/index.php:21 #: application/views/kml/index.php:33 application/views/kml/index.php:49 #: application/views/kml/index.php:67 application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:179 -#: application/views/logbookadvanced/index.php:190 -#: application/views/logbookadvanced/index.php:201 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:219 -#: application/views/logbookadvanced/index.php:244 -#: application/views/logbookadvanced/index.php:255 -#: application/views/logbookadvanced/index.php:287 -#: application/views/logbookadvanced/index.php:298 -#: application/views/logbookadvanced/index.php:309 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:329 -#: application/views/logbookadvanced/index.php:340 -#: application/views/logbookadvanced/index.php:351 -#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:184 +#: application/views/logbookadvanced/index.php:195 +#: application/views/logbookadvanced/index.php:206 +#: application/views/logbookadvanced/index.php:215 +#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:249 +#: application/views/logbookadvanced/index.php:260 +#: application/views/logbookadvanced/index.php:292 +#: application/views/logbookadvanced/index.php:303 +#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:345 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:389 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2145,7 +2149,7 @@ msgstr "" #: application/views/distances/index.php:34 #: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:204 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2156,7 +2160,7 @@ msgstr "Сателит" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:213 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2266,7 +2270,7 @@ msgstr "" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:39 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:119 -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/lotw_views/index.php:39 #: application/views/oqrs/qsolist.php:6 @@ -2780,7 +2784,7 @@ msgid "Status" msgstr "Състояние" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3023,7 +3027,7 @@ msgstr "QSL катичка" #: application/views/awards/waja/index.php:113 #: application/views/awards/was/index.php:109 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:521 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 @@ -3056,7 +3060,7 @@ msgstr "" #: application/views/awards/wab/index.php:108 #: application/views/awards/waja/index.php:129 #: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:487 +#: application/views/logbookadvanced/index.php:514 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "" @@ -3064,10 +3068,10 @@ msgstr "" #: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:242 -#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/index.php:247 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/useroptions.php:90 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:271 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 @@ -3378,7 +3382,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:37 application/views/labels/index.php:71 -#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/index.php:557 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3421,9 +3425,9 @@ msgstr "" #: application/views/awards/itu/index.php:148 #: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:253 -#: application/views/logbookadvanced/index.php:557 -#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/logbookadvanced/index.php:258 +#: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:143 msgid "ITU Zone" @@ -3544,7 +3548,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/index.php:533 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4011,8 +4015,8 @@ msgstr "" #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:569 -#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/logbookadvanced/index.php:599 +#: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 #: application/views/view_log/qso.php:199 msgid "Comment" @@ -4046,7 +4050,7 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 msgid "Contest" msgstr "" @@ -4458,7 +4462,7 @@ msgstr "" #: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4466,7 +4470,7 @@ msgstr "" #: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4474,7 +4478,7 @@ msgstr "" #: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:223 +#: application/views/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4482,7 +4486,7 @@ msgstr "" #: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4490,7 +4494,7 @@ msgstr "" #: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:225 +#: application/views/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4498,7 +4502,7 @@ msgstr "" #: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:226 +#: application/views/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4506,7 +4510,7 @@ msgstr "" #: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:227 +#: application/views/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4514,7 +4518,7 @@ msgstr "" #: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:228 +#: application/views/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4522,7 +4526,7 @@ msgstr "" #: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:229 +#: application/views/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4530,7 +4534,7 @@ msgstr "" #: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:230 +#: application/views/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4538,7 +4542,7 @@ msgstr "" #: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:231 +#: application/views/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4546,7 +4550,7 @@ msgstr "" #: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:232 +#: application/views/logbookadvanced/index.php:237 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4554,7 +4558,7 @@ msgstr "" #: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:233 +#: application/views/logbookadvanced/index.php:238 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4562,7 +4566,7 @@ msgstr "" #: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:234 +#: application/views/logbookadvanced/index.php:239 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4570,7 +4574,7 @@ msgstr "" #: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:235 +#: application/views/logbookadvanced/index.php:240 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4578,7 +4582,7 @@ msgstr "" #: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:236 +#: application/views/logbookadvanced/index.php:241 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4586,7 +4590,7 @@ msgstr "Сателит" #: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:242 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4594,7 +4598,7 @@ msgstr "" #: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:238 +#: application/views/logbookadvanced/index.php:243 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -4699,8 +4703,9 @@ msgstr "Необходими" #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:266 -#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:402 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 +#: src/QSLManager/QSO.php:367 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:439 msgid "Sent" msgstr "Изпратени" @@ -4728,18 +4733,21 @@ msgstr "Изпратени" #: application/views/view_log/partial/log_ajax.php:246 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:311 -#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:415 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 +#: src/QSLManager/QSO.php:379 src/QSLManager/QSO.php:416 +#: src/QSLManager/QSO.php:452 msgid "Received" msgstr "Получени" #: application/views/dashboard/index.php:279 -#: application/views/logbookadvanced/index.php:290 -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:332 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 +#: application/views/logbookadvanced/index.php:295 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -4753,8 +4761,8 @@ msgstr "Получени" #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:146 #: application/views/view_log/partial/log_ajax.php:184 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:272 -#: src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 +#: src/QSLManager/QSO.php:319 msgid "Requested" msgstr "Заявени" @@ -5334,9 +5342,9 @@ msgstr "" #: application/views/gridmap/index.php:38 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:217 -#: application/views/logbookadvanced/index.php:572 -#: application/views/logbookadvanced/useroptions.php:114 +#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:602 +#: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "" @@ -5644,7 +5652,7 @@ msgid "Log" msgstr "" #: application/views/interface_assets/header.php:334 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:440 #: application/views/oqrs/index.php:22 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" @@ -5957,8 +5965,8 @@ msgid "Start printing at?" msgstr "" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:371 -#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:560 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" @@ -5971,42 +5979,44 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:128 +#: application/views/logbookadvanced/index.php:133 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:132 +#: application/views/logbookadvanced/index.php:137 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:136 -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:141 +#: application/views/logbookadvanced/index.php:539 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:143 +#: application/views/logbookadvanced/index.php:148 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:220 +#: application/views/logbookadvanced/index.php:225 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:285 +#: application/views/logbookadvanced/index.php:290 msgid "QSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:330 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:293 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:405 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6036,13 +6046,15 @@ msgstr "" msgid "Yes" msgstr "Да" -#: application/views/logbookadvanced/index.php:289 -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:305 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:406 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:392 #: application/views/qso/edit_ajax.php:425 @@ -6073,9 +6085,10 @@ msgstr "Да" msgid "No" msgstr "Не" -#: application/views/logbookadvanced/index.php:291 -#: application/views/logbookadvanced/index.php:333 -#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:382 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6086,16 +6099,18 @@ msgstr "Не" #: application/views/search/search_result_ajax.php:225 #: application/views/view_log/partial/log_ajax.php:143 #: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 msgid "Queued" msgstr "" -#: application/views/logbookadvanced/index.php:292 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:334 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:366 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:393 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/qslprint/qsolist.php:67 #: application/views/qslprint/qsolist.php:109 @@ -6109,26 +6124,27 @@ msgstr "" #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:149 #: application/views/view_log/partial/log_ajax.php:187 -#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 msgid "Invalid (Ignore)" msgstr "" -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:301 msgid "QSL received" msgstr "" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:312 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:320 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:325 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6143,12 +6159,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:241 #: application/views/view_log/partial/log_ajax.php:162 #: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 msgid "Bureau" msgstr "Бюро" -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:321 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:326 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6161,12 +6177,12 @@ msgstr "Бюро" #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:165 #: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 msgid "Direct" msgstr "Директено" -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:322 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:327 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6179,12 +6195,12 @@ msgstr "Директено" #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:171 #: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 msgid "Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:323 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:409 @@ -6194,187 +6210,195 @@ msgstr "" msgid "Manager" msgstr "" -#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:322 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:332 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:343 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:354 +msgid "Clublog sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:365 +msgid "Clublog received" +msgstr "" + +#: application/views/logbookadvanced/index.php:376 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:387 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:402 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:387 +#: application/views/logbookadvanced/index.php:414 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" -#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:417 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:418 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:419 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:420 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:422 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:423 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:424 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:425 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:426 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:427 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:428 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:429 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:430 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:431 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:432 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:433 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:438 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:416 +#: application/views/logbookadvanced/index.php:443 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:419 +#: application/views/logbookadvanced/index.php:446 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:422 +#: application/views/logbookadvanced/index.php:449 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:452 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:443 +#: application/views/logbookadvanced/index.php:470 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:446 +#: application/views/logbookadvanced/index.php:473 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:449 +#: application/views/logbookadvanced/index.php:476 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/index.php:485 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:460 +#: application/views/logbookadvanced/index.php:487 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:490 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:470 +#: application/views/logbookadvanced/index.php:497 #: application/views/qso/index.php:272 #: application/views/station_profile/edit.php:65 msgid "Location" msgstr "Местоположение" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/lotw_views/index.php:47 #: application/views/simplefle/index.php:19 #: application/views/simplefle/index.php:158 @@ -6384,18 +6408,18 @@ msgstr "" msgid "Options" msgstr "" -#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:536 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:545 -#: application/views/logbookadvanced/useroptions.php:74 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -6423,37 +6447,37 @@ msgstr "" msgid "Column" msgstr "" -#: application/views/logbookadvanced/useroptions.php:144 +#: application/views/logbookadvanced/useroptions.php:148 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:145 +#: application/views/logbookadvanced/useroptions.php:149 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:150 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/stationsetup/exportmapoptions.php:23 msgctxt "Map Options" msgid "Path lines" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/useroptions.php:158 msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/logbookadvanced/useroptions.php:162 msgctxt "Map Options" msgid "CQ Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:166 msgctxt "Map Options" msgid "ITU Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:166 +#: application/views/logbookadvanced/useroptions.php:170 msgctxt "Map Options" msgid "Night Shadow" msgstr "" @@ -7125,7 +7149,7 @@ msgstr "Станция" #: application/views/qso/index.php:576 #: application/views/search/search_result_ajax.php:205 #: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:298 +#: src/QSLManager/QSO.php:300 msgid "Via" msgstr "Чрез" diff --git a/application/locale/cs_CZ/LC_MESSAGES/messages.po b/application/locale/cs_CZ/LC_MESSAGES/messages.po index d1939f2bc..1550d863b 100644 --- a/application/locale/cs_CZ/LC_MESSAGES/messages.po +++ b/application/locale/cs_CZ/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-03 05:59+0000\n" +"POT-Creation-Date: 2024-07-03 06:10+0000\n" "PO-Revision-Date: 2024-06-25 13:16+0000\n" "Last-Translator: Ondřej Koloničný \n" "Language-Team: Czech \n" @@ -180,8 +180,8 @@ msgstr "" #: application/views/bands/index.php:49 #: application/views/contesting/index.php:170 #: application/views/interface_assets/header.php:192 -#: application/views/logbookadvanced/index.php:581 -#: application/views/logbookadvanced/useroptions.php:126 +#: application/views/logbookadvanced/index.php:611 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/qso/edit_ajax.php:360 application/views/qso/index.php:264 #: application/views/qso/index.php:508 application/views/user/edit.php:603 #: application/views/view_log/qso.php:351 @@ -195,10 +195,10 @@ msgstr "DOK" #: application/views/interface_assets/header.php:162 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:140 -#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/index.php:145 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/qslcarousel.php:35 -#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 #: application/views/lotw_views/index.php:40 #: application/views/qso/edit_ajax.php:218 application/views/qso/index.php:361 @@ -263,8 +263,8 @@ msgstr "" #: application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:176 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:264 -#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/logbookadvanced/index.php:269 +#: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -289,8 +289,8 @@ msgstr "SOTA" #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:268 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/index.php:273 +#: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:340 @@ -309,9 +309,9 @@ msgstr "WWFF" #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:180 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:272 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/useroptions.php:102 +#: application/views/logbookadvanced/index.php:277 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:11 @@ -381,7 +381,7 @@ msgstr "Fred Fish Memorial Award (FFMA)" #: application/controllers/Awards.php:1125 #: application/views/interface_assets/header.php:166 -#: application/views/logbookadvanced/useroptions.php:134 +#: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "SIG" @@ -758,7 +758,7 @@ msgstr "" #: application/views/awards/waja/index.php:53 #: application/views/awards/was/index.php:53 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -800,8 +800,8 @@ msgstr "" #: application/views/user/edit.php:659 #: application/views/view_log/partial/log_ajax.php:230 #: application/views/view_log/partial/log_ajax.php:231 -#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:365 -#: src/QSLManager/QSO.php:377 +#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:367 +#: src/QSLManager/QSO.php:379 msgid "LoTW" msgstr "" @@ -834,7 +834,7 @@ msgstr "" #: application/views/user/edit.php:667 application/views/user/edit.php:731 #: application/views/view_log/partial/log_ajax.php:217 #: application/views/view_log/partial/log_ajax.php:218 -#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: src/QSLManager/QSO.php:439 src/QSLManager/QSO.php:452 msgid "eQSL" msgstr "" @@ -844,12 +844,14 @@ msgstr "" #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 #: application/views/awards/waja/index.php:69 +#: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/edit.php:325 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/qso.php:423 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:416 msgid "Clublog" msgstr "" @@ -881,8 +883,8 @@ msgstr "" #: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 #: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:177 -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:182 +#: application/views/logbookadvanced/index.php:542 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -928,7 +930,7 @@ msgstr "Režim" #: application/views/awards/wwff/index.php:36 #: application/views/contesting/index.php:111 #: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:545 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -955,7 +957,7 @@ msgstr "" #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/index.php:548 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1007,10 +1009,10 @@ msgstr "Země" #: application/views/bands/index.php:52 application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:178 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:157 -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:162 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1038,10 +1040,10 @@ msgstr "" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:20 #: application/views/logbookadvanced/edit.php:61 -#: application/views/logbookadvanced/index.php:169 -#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/index.php:174 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:36 -#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1069,9 +1071,9 @@ msgstr "Stát" #: application/views/labels/index.php:121 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:178 #: application/views/logbookadvanced/qslcarousel.php:39 -#: application/views/logbookadvanced/useroptions.php:122 +#: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 #: application/views/qslcard/searchresult.php:19 #: application/views/qslcard/searchresult.php:35 @@ -1152,8 +1154,8 @@ msgstr "Vzdálenost" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:188 -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:193 +#: application/views/logbookadvanced/index.php:551 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1218,9 +1220,9 @@ msgstr "Frekvence" #: application/controllers/Logbook.php:1288 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:276 -#: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/logbookadvanced/index.php:281 +#: application/views/logbookadvanced/index.php:596 +#: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1245,7 +1247,7 @@ msgstr "Operátor" #: application/views/dxatlas/index.php:65 #: application/views/interface_assets/footer.php:630 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:149 +#: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 #: application/views/lotw_views/index.php:56 #: application/views/qso/components/previous_contacts.php:59 @@ -1535,7 +1537,7 @@ msgstr "" #: application/views/continents/index.php:49 #: application/views/interface_assets/header.php:328 #: application/views/interface_assets/header.php:335 -#: application/views/logbookadvanced/index.php:482 +#: application/views/logbookadvanced/index.php:509 #: application/views/oqrs/index.php:23 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1713,7 +1715,7 @@ msgstr "" #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 -#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:511 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 @@ -1757,7 +1759,7 @@ msgstr "" #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 -#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:512 #: application/views/lotw_views/index.php:118 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 @@ -2058,21 +2060,23 @@ msgstr "" #: application/views/gridmap/index.php:83 application/views/kml/index.php:21 #: application/views/kml/index.php:33 application/views/kml/index.php:49 #: application/views/kml/index.php:67 application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:179 -#: application/views/logbookadvanced/index.php:190 -#: application/views/logbookadvanced/index.php:201 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:219 -#: application/views/logbookadvanced/index.php:244 -#: application/views/logbookadvanced/index.php:255 -#: application/views/logbookadvanced/index.php:287 -#: application/views/logbookadvanced/index.php:298 -#: application/views/logbookadvanced/index.php:309 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:329 -#: application/views/logbookadvanced/index.php:340 -#: application/views/logbookadvanced/index.php:351 -#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:184 +#: application/views/logbookadvanced/index.php:195 +#: application/views/logbookadvanced/index.php:206 +#: application/views/logbookadvanced/index.php:215 +#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:249 +#: application/views/logbookadvanced/index.php:260 +#: application/views/logbookadvanced/index.php:292 +#: application/views/logbookadvanced/index.php:303 +#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:345 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:389 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2147,7 +2151,7 @@ msgstr "" #: application/views/distances/index.php:34 #: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:204 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2158,7 +2162,7 @@ msgstr "Satelit" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:213 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2268,7 +2272,7 @@ msgstr "" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:39 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:119 -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/lotw_views/index.php:39 #: application/views/oqrs/qsolist.php:6 @@ -2782,7 +2786,7 @@ msgid "Status" msgstr "Stav" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3025,7 +3029,7 @@ msgstr "QSL karta" #: application/views/awards/waja/index.php:113 #: application/views/awards/was/index.php:109 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:521 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 @@ -3058,7 +3062,7 @@ msgstr "" #: application/views/awards/wab/index.php:108 #: application/views/awards/waja/index.php:129 #: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:487 +#: application/views/logbookadvanced/index.php:514 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "" @@ -3066,10 +3070,10 @@ msgstr "" #: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:242 -#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/index.php:247 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/useroptions.php:90 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:271 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 @@ -3380,7 +3384,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:37 application/views/labels/index.php:71 -#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/index.php:557 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3423,9 +3427,9 @@ msgstr "" #: application/views/awards/itu/index.php:148 #: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:253 -#: application/views/logbookadvanced/index.php:557 -#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/logbookadvanced/index.php:258 +#: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:143 msgid "ITU Zone" @@ -3546,7 +3550,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/index.php:533 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4013,8 +4017,8 @@ msgstr "" #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:569 -#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/logbookadvanced/index.php:599 +#: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 #: application/views/view_log/qso.php:199 msgid "Comment" @@ -4048,7 +4052,7 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 msgid "Contest" msgstr "" @@ -4460,7 +4464,7 @@ msgstr "Šíření signálu" #: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4468,7 +4472,7 @@ msgstr "" #: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4476,7 +4480,7 @@ msgstr "" #: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:223 +#: application/views/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4484,7 +4488,7 @@ msgstr "" #: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4492,7 +4496,7 @@ msgstr "" #: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:225 +#: application/views/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4500,7 +4504,7 @@ msgstr "" #: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:226 +#: application/views/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4508,7 +4512,7 @@ msgstr "" #: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:227 +#: application/views/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4516,7 +4520,7 @@ msgstr "" #: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:228 +#: application/views/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4524,7 +4528,7 @@ msgstr "" #: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:229 +#: application/views/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4532,7 +4536,7 @@ msgstr "" #: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:230 +#: application/views/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4540,7 +4544,7 @@ msgstr "" #: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:231 +#: application/views/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4548,7 +4552,7 @@ msgstr "" #: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:232 +#: application/views/logbookadvanced/index.php:237 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4556,7 +4560,7 @@ msgstr "" #: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:233 +#: application/views/logbookadvanced/index.php:238 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4564,7 +4568,7 @@ msgstr "" #: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:234 +#: application/views/logbookadvanced/index.php:239 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4572,7 +4576,7 @@ msgstr "" #: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:235 +#: application/views/logbookadvanced/index.php:240 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4580,7 +4584,7 @@ msgstr "" #: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:236 +#: application/views/logbookadvanced/index.php:241 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4588,7 +4592,7 @@ msgstr "Satelit" #: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:242 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4596,7 +4600,7 @@ msgstr "" #: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:238 +#: application/views/logbookadvanced/index.php:243 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -4702,8 +4706,9 @@ msgstr "Potřebuje se" #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:266 -#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:402 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 +#: src/QSLManager/QSO.php:367 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:439 msgid "Sent" msgstr "Odesláno" @@ -4731,18 +4736,21 @@ msgstr "Odesláno" #: application/views/view_log/partial/log_ajax.php:246 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:311 -#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:415 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 +#: src/QSLManager/QSO.php:379 src/QSLManager/QSO.php:416 +#: src/QSLManager/QSO.php:452 msgid "Received" msgstr "Přijato" #: application/views/dashboard/index.php:279 -#: application/views/logbookadvanced/index.php:290 -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:332 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 +#: application/views/logbookadvanced/index.php:295 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -4756,8 +4764,8 @@ msgstr "Přijato" #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:146 #: application/views/view_log/partial/log_ajax.php:184 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:272 -#: src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 +#: src/QSLManager/QSO.php:319 msgid "Requested" msgstr "Vyžádáno" @@ -5338,9 +5346,9 @@ msgstr "" #: application/views/gridmap/index.php:38 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:217 -#: application/views/logbookadvanced/index.php:572 -#: application/views/logbookadvanced/useroptions.php:114 +#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:602 +#: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "" @@ -5648,7 +5656,7 @@ msgid "Log" msgstr "" #: application/views/interface_assets/header.php:334 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:440 #: application/views/oqrs/index.php:22 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" @@ -5961,8 +5969,8 @@ msgid "Start printing at?" msgstr "" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:371 -#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:560 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" @@ -5975,42 +5983,44 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:128 +#: application/views/logbookadvanced/index.php:133 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:132 +#: application/views/logbookadvanced/index.php:137 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:136 -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:141 +#: application/views/logbookadvanced/index.php:539 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:143 +#: application/views/logbookadvanced/index.php:148 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:220 +#: application/views/logbookadvanced/index.php:225 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:285 +#: application/views/logbookadvanced/index.php:290 msgid "QSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:330 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:293 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:405 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6040,13 +6050,15 @@ msgstr "" msgid "Yes" msgstr "Ano" -#: application/views/logbookadvanced/index.php:289 -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:305 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:406 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:392 #: application/views/qso/edit_ajax.php:425 @@ -6077,9 +6089,10 @@ msgstr "Ano" msgid "No" msgstr "Ne" -#: application/views/logbookadvanced/index.php:291 -#: application/views/logbookadvanced/index.php:333 -#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:382 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6090,16 +6103,18 @@ msgstr "Ne" #: application/views/search/search_result_ajax.php:225 #: application/views/view_log/partial/log_ajax.php:143 #: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 msgid "Queued" msgstr "Ve frontě" -#: application/views/logbookadvanced/index.php:292 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:334 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:366 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:393 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/qslprint/qsolist.php:67 #: application/views/qslprint/qsolist.php:109 @@ -6113,26 +6128,27 @@ msgstr "Ve frontě" #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:149 #: application/views/view_log/partial/log_ajax.php:187 -#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 msgid "Invalid (Ignore)" msgstr "Neplatné (Ignorováno)" -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:301 msgid "QSL received" msgstr "" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:312 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:320 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:325 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6147,12 +6163,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:241 #: application/views/view_log/partial/log_ajax.php:162 #: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 msgid "Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:321 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:326 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6165,12 +6181,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:165 #: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 msgid "Direct" msgstr "Přímá" -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:322 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:327 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6183,12 +6199,12 @@ msgstr "Přímá" #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:171 #: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 msgid "Electronic" msgstr "Elektronická" -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:323 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:409 @@ -6198,187 +6214,195 @@ msgstr "Elektronická" msgid "Manager" msgstr "Správce" -#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:322 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:332 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:343 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:354 +msgid "Clublog sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:365 +msgid "Clublog received" +msgstr "" + +#: application/views/logbookadvanced/index.php:376 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:387 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:402 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:387 +#: application/views/logbookadvanced/index.php:414 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" -#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:417 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:418 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:419 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:420 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:422 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:423 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:424 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:425 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:426 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:427 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:428 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:429 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:430 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:431 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:432 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:433 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:438 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:416 +#: application/views/logbookadvanced/index.php:443 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:419 +#: application/views/logbookadvanced/index.php:446 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:422 +#: application/views/logbookadvanced/index.php:449 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:452 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:443 +#: application/views/logbookadvanced/index.php:470 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:446 +#: application/views/logbookadvanced/index.php:473 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:449 +#: application/views/logbookadvanced/index.php:476 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/index.php:485 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:460 +#: application/views/logbookadvanced/index.php:487 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:490 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:470 +#: application/views/logbookadvanced/index.php:497 #: application/views/qso/index.php:272 #: application/views/station_profile/edit.php:65 msgid "Location" msgstr "Místo" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/lotw_views/index.php:47 #: application/views/simplefle/index.php:19 #: application/views/simplefle/index.php:158 @@ -6388,18 +6412,18 @@ msgstr "" msgid "Options" msgstr "Možnosti" -#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:536 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:545 -#: application/views/logbookadvanced/useroptions.php:74 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -6427,37 +6451,37 @@ msgstr "" msgid "Column" msgstr "" -#: application/views/logbookadvanced/useroptions.php:144 +#: application/views/logbookadvanced/useroptions.php:148 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:145 +#: application/views/logbookadvanced/useroptions.php:149 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:150 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/stationsetup/exportmapoptions.php:23 msgctxt "Map Options" msgid "Path lines" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/useroptions.php:158 msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/logbookadvanced/useroptions.php:162 msgctxt "Map Options" msgid "CQ Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:166 msgctxt "Map Options" msgid "ITU Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:166 +#: application/views/logbookadvanced/useroptions.php:170 msgctxt "Map Options" msgid "Night Shadow" msgstr "" @@ -7130,7 +7154,7 @@ msgstr "Stanice" #: application/views/qso/index.php:576 #: application/views/search/search_result_ajax.php:205 #: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:298 +#: src/QSLManager/QSO.php:300 msgid "Via" msgstr "Přes" diff --git a/application/locale/de_DE/LC_MESSAGES/messages.po b/application/locale/de_DE/LC_MESSAGES/messages.po index 621eebb0c..60b8c91ff 100644 --- a/application/locale/de_DE/LC_MESSAGES/messages.po +++ b/application/locale/de_DE/LC_MESSAGES/messages.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-03 05:59+0000\n" +"POT-Creation-Date: 2024-07-03 06:10+0000\n" "PO-Revision-Date: 2024-07-01 19:10+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: German \n" @@ -184,8 +184,8 @@ msgstr "Diplome - %s" #: application/views/bands/index.php:49 #: application/views/contesting/index.php:170 #: application/views/interface_assets/header.php:192 -#: application/views/logbookadvanced/index.php:581 -#: application/views/logbookadvanced/useroptions.php:126 +#: application/views/logbookadvanced/index.php:611 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/qso/edit_ajax.php:360 application/views/qso/index.php:264 #: application/views/qso/index.php:508 application/views/user/edit.php:603 #: application/views/view_log/qso.php:351 @@ -199,10 +199,10 @@ msgstr "DOK" #: application/views/interface_assets/header.php:162 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:140 -#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/index.php:145 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/qslcarousel.php:35 -#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 #: application/views/lotw_views/index.php:40 #: application/views/qso/edit_ajax.php:218 application/views/qso/index.php:361 @@ -267,8 +267,8 @@ msgstr " und " #: application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:176 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:264 -#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/logbookadvanced/index.php:269 +#: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -293,8 +293,8 @@ msgstr "SOTA" #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:268 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/index.php:273 +#: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:340 @@ -313,9 +313,9 @@ msgstr "WWFF" #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:180 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:272 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/useroptions.php:102 +#: application/views/logbookadvanced/index.php:277 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:11 @@ -385,7 +385,7 @@ msgstr "Fred Fish Memorial Award (FFMA)" #: application/controllers/Awards.php:1125 #: application/views/interface_assets/header.php:166 -#: application/views/logbookadvanced/useroptions.php:134 +#: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "SIG" @@ -761,7 +761,7 @@ msgstr "Logbuch" #: application/views/awards/waja/index.php:53 #: application/views/awards/was/index.php:53 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -803,8 +803,8 @@ msgstr "QSL" #: application/views/user/edit.php:659 #: application/views/view_log/partial/log_ajax.php:230 #: application/views/view_log/partial/log_ajax.php:231 -#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:365 -#: src/QSLManager/QSO.php:377 +#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:367 +#: src/QSLManager/QSO.php:379 msgid "LoTW" msgstr "LoTW" @@ -837,7 +837,7 @@ msgstr "LoTW" #: application/views/user/edit.php:667 application/views/user/edit.php:731 #: application/views/view_log/partial/log_ajax.php:217 #: application/views/view_log/partial/log_ajax.php:218 -#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: src/QSLManager/QSO.php:439 src/QSLManager/QSO.php:452 msgid "eQSL" msgstr "eQSL" @@ -847,12 +847,14 @@ msgstr "eQSL" #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 #: application/views/awards/waja/index.php:69 +#: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/edit.php:325 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/qso.php:423 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:416 msgid "Clublog" msgstr "Clublog" @@ -884,8 +886,8 @@ msgstr "Clublog" #: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 #: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:177 -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:182 +#: application/views/logbookadvanced/index.php:542 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -931,7 +933,7 @@ msgstr "Mode" #: application/views/awards/wwff/index.php:36 #: application/views/contesting/index.php:111 #: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:545 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -958,7 +960,7 @@ msgstr "RST (S)" #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/index.php:548 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1010,10 +1012,10 @@ msgstr "Land" #: application/views/bands/index.php:52 application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:178 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:157 -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:162 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1041,10 +1043,10 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:20 #: application/views/logbookadvanced/edit.php:61 -#: application/views/logbookadvanced/index.php:169 -#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/index.php:174 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:36 -#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1072,9 +1074,9 @@ msgstr "Staat" #: application/views/labels/index.php:121 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:178 #: application/views/logbookadvanced/qslcarousel.php:39 -#: application/views/logbookadvanced/useroptions.php:122 +#: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 #: application/views/qslcard/searchresult.php:19 #: application/views/qslcard/searchresult.php:35 @@ -1155,8 +1157,8 @@ msgstr "Distanz" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:188 -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:193 +#: application/views/logbookadvanced/index.php:551 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1221,9 +1223,9 @@ msgstr "Frequenz" #: application/controllers/Logbook.php:1288 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:276 -#: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/logbookadvanced/index.php:281 +#: application/views/logbookadvanced/index.php:596 +#: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1248,7 +1250,7 @@ msgstr "Operator" #: application/views/dxatlas/index.php:65 #: application/views/interface_assets/footer.php:630 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:149 +#: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 #: application/views/lotw_views/index.php:56 #: application/views/qso/components/previous_contacts.php:59 @@ -1538,7 +1540,7 @@ msgstr "Satelliten Timer" #: application/views/continents/index.php:49 #: application/views/interface_assets/header.php:328 #: application/views/interface_assets/header.php:335 -#: application/views/logbookadvanced/index.php:482 +#: application/views/logbookadvanced/index.php:509 #: application/views/oqrs/index.php:23 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1716,7 +1718,7 @@ msgstr "QSO" #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 -#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:511 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 @@ -1760,7 +1762,7 @@ msgstr "Stationsprofil '%s' wirklich löschen? Alle QSOs in dem Profil werden mi #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 -#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:512 #: application/views/lotw_views/index.php:118 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 @@ -2061,21 +2063,23 @@ msgstr "monatlich" #: application/views/gridmap/index.php:83 application/views/kml/index.php:21 #: application/views/kml/index.php:33 application/views/kml/index.php:49 #: application/views/kml/index.php:67 application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:179 -#: application/views/logbookadvanced/index.php:190 -#: application/views/logbookadvanced/index.php:201 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:219 -#: application/views/logbookadvanced/index.php:244 -#: application/views/logbookadvanced/index.php:255 -#: application/views/logbookadvanced/index.php:287 -#: application/views/logbookadvanced/index.php:298 -#: application/views/logbookadvanced/index.php:309 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:329 -#: application/views/logbookadvanced/index.php:340 -#: application/views/logbookadvanced/index.php:351 -#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:184 +#: application/views/logbookadvanced/index.php:195 +#: application/views/logbookadvanced/index.php:206 +#: application/views/logbookadvanced/index.php:215 +#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:249 +#: application/views/logbookadvanced/index.php:260 +#: application/views/logbookadvanced/index.php:292 +#: application/views/logbookadvanced/index.php:303 +#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:345 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:389 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2150,7 +2154,7 @@ msgstr "Anzeigen" #: application/views/distances/index.php:34 #: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:204 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2161,7 +2165,7 @@ msgstr "Satellit" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:213 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2271,7 +2275,7 @@ msgstr "Nichts gefunden!" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:39 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:119 -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/lotw_views/index.php:39 #: application/views/oqrs/qsolist.php:6 @@ -2785,7 +2789,7 @@ msgid "Status" msgstr "Status" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "Aktionen" @@ -3028,7 +3032,7 @@ msgstr "QSL Karte" #: application/views/awards/waja/index.php:113 #: application/views/awards/was/index.php:109 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:521 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 @@ -3061,7 +3065,7 @@ msgstr "Tabelle" #: application/views/awards/wab/index.php:108 #: application/views/awards/waja/index.php:129 #: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:487 +#: application/views/logbookadvanced/index.php:514 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Karte" @@ -3069,10 +3073,10 @@ msgstr "Karte" #: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:242 -#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/index.php:247 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/useroptions.php:90 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:271 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 @@ -3383,7 +3387,7 @@ msgstr "Zeige IOTA Karte" #: application/views/contesting/index.php:171 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:37 application/views/labels/index.php:71 -#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/index.php:557 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3426,9 +3430,9 @@ msgstr "Zeige Karte der ITU-Zonen" #: application/views/awards/itu/index.php:148 #: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:253 -#: application/views/logbookadvanced/index.php:557 -#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/logbookadvanced/index.php:258 +#: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:143 msgid "ITU Zone" @@ -3549,7 +3553,7 @@ msgstr "Referenz" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/index.php:533 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4016,8 +4020,8 @@ msgstr "Keine bevorstehenden Aktivierungen gefunden. Bitte später noch einmal v #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:569 -#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/logbookadvanced/index.php:599 +#: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 #: application/views/view_log/qso.php:199 msgid "Comment" @@ -4051,7 +4055,7 @@ msgid "No Contests" msgstr "Keine Contests" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 msgid "Contest" msgstr "Contest" @@ -4463,7 +4467,7 @@ msgstr "Propagation" #: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4471,7 +4475,7 @@ msgstr "Flugzeug Scatter" #: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4479,7 +4483,7 @@ msgstr "Aurora" #: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:223 +#: application/views/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4487,7 +4491,7 @@ msgstr "Aurora-E" #: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4495,7 +4499,7 @@ msgstr "Rückwärts Scatter" #: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:225 +#: application/views/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4503,7 +4507,7 @@ msgstr "EchoLink" #: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:226 +#: application/views/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4511,7 +4515,7 @@ msgstr "Erde-Mond-Erde" #: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:227 +#: application/views/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4519,7 +4523,7 @@ msgstr "Sporadic E" #: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:228 +#: application/views/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4527,7 +4531,7 @@ msgstr "feldausgerichtete Irregularitäten" #: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:229 +#: application/views/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4535,7 +4539,7 @@ msgstr "F2 Reflexion" #: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:230 +#: application/views/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4543,7 +4547,7 @@ msgstr "Internet-gestützt" #: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:231 +#: application/views/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4551,7 +4555,7 @@ msgstr "Ionoscatter" #: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:232 +#: application/views/logbookadvanced/index.php:237 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4559,7 +4563,7 @@ msgstr "IRLP" #: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:233 +#: application/views/logbookadvanced/index.php:238 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4567,7 +4571,7 @@ msgstr "Meteor Scatter" #: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:234 +#: application/views/logbookadvanced/index.php:239 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4575,7 +4579,7 @@ msgstr "Terrestrische oder atmosphärische Repeater oder Transponder" #: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:235 +#: application/views/logbookadvanced/index.php:240 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4583,7 +4587,7 @@ msgstr "Regen Scatter" #: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:236 +#: application/views/logbookadvanced/index.php:241 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4591,7 +4595,7 @@ msgstr "Satellit" #: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:242 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4599,7 +4603,7 @@ msgstr "Transequatorial" #: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:238 +#: application/views/logbookadvanced/index.php:243 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -4704,8 +4708,9 @@ msgstr "Benötigt" #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:266 -#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:402 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 +#: src/QSLManager/QSO.php:367 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:439 msgid "Sent" msgstr "Gesendet" @@ -4733,18 +4738,21 @@ msgstr "Gesendet" #: application/views/view_log/partial/log_ajax.php:246 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:311 -#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:415 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 +#: src/QSLManager/QSO.php:379 src/QSLManager/QSO.php:416 +#: src/QSLManager/QSO.php:452 msgid "Received" msgstr "Erhalten" #: application/views/dashboard/index.php:279 -#: application/views/logbookadvanced/index.php:290 -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:332 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 +#: application/views/logbookadvanced/index.php:295 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -4758,8 +4766,8 @@ msgstr "Erhalten" #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:146 #: application/views/view_log/partial/log_ajax.php:184 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:272 -#: src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 +#: src/QSLManager/QSO.php:319 msgid "Requested" msgstr "Angefragt" @@ -5339,9 +5347,9 @@ msgstr "Ansicht" #: application/views/gridmap/index.php:38 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:217 -#: application/views/logbookadvanced/index.php:572 -#: application/views/logbookadvanced/useroptions.php:114 +#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:602 +#: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "Ausbreitungsart" @@ -5649,7 +5657,7 @@ msgid "Log" msgstr "Logge" #: application/views/interface_assets/header.php:334 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:440 #: application/views/oqrs/index.php:22 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" @@ -5962,8 +5970,8 @@ msgid "Start printing at?" msgstr "Druck starten bei?" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:371 -#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:560 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "QSL via" @@ -5976,42 +5984,44 @@ msgstr "SAT Modus" msgid "Band RX" msgstr "Band RX" -#: application/views/logbookadvanced/index.php:128 +#: application/views/logbookadvanced/index.php:133 msgid "From" msgstr "Von" -#: application/views/logbookadvanced/index.php:132 +#: application/views/logbookadvanced/index.php:137 msgid "To" msgstr "bis" -#: application/views/logbookadvanced/index.php:136 -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:141 +#: application/views/logbookadvanced/index.php:539 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "Dx" -#: application/views/logbookadvanced/index.php:143 +#: application/views/logbookadvanced/index.php:148 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "- KEIN - (z.B. /MM, /AM)" -#: application/views/logbookadvanced/index.php:220 +#: application/views/logbookadvanced/index.php:225 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Keine/Leer" -#: application/views/logbookadvanced/index.php:285 +#: application/views/logbookadvanced/index.php:290 msgid "QSL sent" msgstr "QSL gesendet" -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:330 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:293 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:405 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6041,13 +6051,15 @@ msgstr "QSL gesendet" msgid "Yes" msgstr "Ja" -#: application/views/logbookadvanced/index.php:289 -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:305 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:406 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:392 #: application/views/qso/edit_ajax.php:425 @@ -6078,9 +6090,10 @@ msgstr "Ja" msgid "No" msgstr "Nein" -#: application/views/logbookadvanced/index.php:291 -#: application/views/logbookadvanced/index.php:333 -#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:382 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6091,16 +6104,18 @@ msgstr "Nein" #: application/views/search/search_result_ajax.php:225 #: application/views/view_log/partial/log_ajax.php:143 #: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 msgid "Queued" msgstr "In Warteschlange" -#: application/views/logbookadvanced/index.php:292 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:334 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:366 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:393 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/qslprint/qsolist.php:67 #: application/views/qslprint/qsolist.php:109 @@ -6114,26 +6129,27 @@ msgstr "In Warteschlange" #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:149 #: application/views/view_log/partial/log_ajax.php:187 -#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 msgid "Invalid (Ignore)" msgstr "Ungültig (Ignorieren)" -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:301 msgid "QSL received" msgstr "QSL erhalten" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 msgid "Verified" msgstr "Verifiziert" -#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:312 msgid "QSL send. method" msgstr "QSL-Send. Methode" -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:320 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:325 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6148,12 +6164,12 @@ msgstr "QSL-Send. Methode" #: application/views/search/search_result_ajax.php:241 #: application/views/view_log/partial/log_ajax.php:162 #: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 msgid "Bureau" msgstr "Büro" -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:321 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:326 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6166,12 +6182,12 @@ msgstr "Büro" #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:165 #: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 msgid "Direct" msgstr "Direkt" -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:322 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:327 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6184,12 +6200,12 @@ msgstr "Direkt" #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:171 #: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 msgid "Electronic" msgstr "Elektronisch" -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:323 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:409 @@ -6199,187 +6215,195 @@ msgstr "Elektronisch" msgid "Manager" msgstr "Manager" -#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:322 msgid "QSL recv. method" msgstr "QSL-Empf. Methode" -#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:332 msgid "LoTW sent" msgstr "LoTW gesendet" -#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:343 msgid "LoTW received" msgstr "LoTW erhalten" -#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:354 +msgid "Clublog sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:365 +msgid "Clublog received" +msgstr "" + +#: application/views/logbookadvanced/index.php:376 msgid "eQSL sent" msgstr "eQSL gesendet" -#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:387 msgid "eQSL received" msgstr "eQSL erhalten" -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:402 msgid "QSL Images" msgstr "QSL Bilder" -#: application/views/logbookadvanced/index.php:387 +#: application/views/logbookadvanced/index.php:414 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "Warnung! Bist du sicher, dass du die markierten QSO löschen willst?" -#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:417 msgid "With selected: " msgstr "Bei Markierten: " -#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:418 msgid "Update from Callbook" msgstr "Aktualisieren aus dem Callbook" -#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:419 msgid "Queue Bureau" msgstr "Angefordert (Büro)" -#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:420 msgid "Queue Direct" msgstr "Angefordert (Direkt)" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "Queue Electronic" msgstr "Angefordert (Elektronisch)" -#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:422 msgid "Sent (Bureau)" msgstr "Gesendet (Büro)" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:423 msgid "Sent (Direct)" msgstr "Gesendet (Direkt)" -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:424 msgid "Sent (Electronic)" msgstr "Gesendet (Elektronisch)" -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:425 msgid "Not Sent" msgstr "Nicht gesendet" -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:426 msgid "QSL Not Required" msgstr "QSL nicht erforderlich" -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:427 msgid "Not Received" msgstr "Nicht erhalten" -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:428 msgid "Received (Bureau)" msgstr "Erhalten (Büro)" -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:429 msgid "Received (Direct)" msgstr "Erhalten (Direkt)" -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:430 msgid "Received (Electronic)" msgstr "Erhalten (Elektronisch)" -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:431 msgid "Create ADIF" msgstr "Erstelle ADIF" -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:432 msgid "Print Label" msgstr "Label drucken" -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:433 msgid "QSL Slideshow" msgstr "QSL Präsentation" -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:438 msgid "Quicksearch with selected: " msgstr "Schnellsuche in Markierten: " -#: application/views/logbookadvanced/index.php:416 +#: application/views/logbookadvanced/index.php:443 msgid "Search DXCC" msgstr "Suche DXCC" -#: application/views/logbookadvanced/index.php:419 +#: application/views/logbookadvanced/index.php:446 msgid "Search State" msgstr "Suche Staat" -#: application/views/logbookadvanced/index.php:422 +#: application/views/logbookadvanced/index.php:449 msgid "Search Gridsquare" msgstr "Suche Planquadrat" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:452 msgid "Search CQ Zone" msgstr "Suche CQ Zone" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Search ITU Zone" msgstr "Suche ITU Zone" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Search Mode" msgstr "Suche Mode" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Search Band" msgstr "Suche Band" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Search IOTA" msgstr "Suche IOTA" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "Search SOTA" msgstr "Suche SOTA" -#: application/views/logbookadvanced/index.php:443 +#: application/views/logbookadvanced/index.php:470 msgid "Search POTA" msgstr "Suche POTA" -#: application/views/logbookadvanced/index.php:446 +#: application/views/logbookadvanced/index.php:473 msgid "Search WWFF" msgstr "Suche WWFF" -#: application/views/logbookadvanced/index.php:449 +#: application/views/logbookadvanced/index.php:476 msgid "Search Operator" msgstr "Suche Operator" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Quickfilters" msgstr "Schnellfilter" -#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/index.php:485 msgid "QSL Filters" msgstr "QSL Filter" -#: application/views/logbookadvanced/index.php:460 +#: application/views/logbookadvanced/index.php:487 #: application/views/mode/index.php:68 msgid "Filters" msgstr "Filter" -#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:490 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "# Resultate" -#: application/views/logbookadvanced/index.php:470 +#: application/views/logbookadvanced/index.php:497 #: application/views/qso/index.php:272 #: application/views/station_profile/edit.php:65 msgid "Location" msgstr "Standort" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Dupes" msgstr "Duplikate" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "Globe map" msgstr "Globus Karte" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/lotw_views/index.php:47 #: application/views/simplefle/index.php:19 #: application/views/simplefle/index.php:158 @@ -6389,18 +6413,18 @@ msgstr "Globus Karte" msgid "Options" msgstr "Optionen" -#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:536 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "De" -#: application/views/logbookadvanced/index.php:545 -#: application/views/logbookadvanced/useroptions.php:74 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "QSL Msg" -#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "Mein Refs" @@ -6428,37 +6452,37 @@ msgstr "Inklusive Via" msgid "Column" msgstr "Spalte" -#: application/views/logbookadvanced/useroptions.php:144 +#: application/views/logbookadvanced/useroptions.php:148 msgctxt "Map Options" msgid "Layer" msgstr "Ebene" -#: application/views/logbookadvanced/useroptions.php:145 +#: application/views/logbookadvanced/useroptions.php:149 msgid "Default on" msgstr "Standardmässig an" -#: application/views/logbookadvanced/useroptions.php:150 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/stationsetup/exportmapoptions.php:23 msgctxt "Map Options" msgid "Path lines" msgstr "Pfadlinien" -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/useroptions.php:158 msgctxt "Map Options" msgid "Gridsquares" msgstr "Planquadrate" -#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/logbookadvanced/useroptions.php:162 msgctxt "Map Options" msgid "CQ Zones" msgstr "CQ Zonen" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:166 msgctxt "Map Options" msgid "ITU Zones" msgstr "ITU Zonen" -#: application/views/logbookadvanced/useroptions.php:166 +#: application/views/logbookadvanced/useroptions.php:170 msgctxt "Map Options" msgid "Night Shadow" msgstr "Nachtschatten" @@ -7130,7 +7154,7 @@ msgstr "Station" #: application/views/qso/index.php:576 #: application/views/search/search_result_ajax.php:205 #: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:298 +#: src/QSLManager/QSO.php:300 msgid "Via" msgstr "Via" diff --git a/application/locale/el_GR/LC_MESSAGES/messages.po b/application/locale/el_GR/LC_MESSAGES/messages.po index 9559d94f4..0f0b421bc 100644 --- a/application/locale/el_GR/LC_MESSAGES/messages.po +++ b/application/locale/el_GR/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-03 05:59+0000\n" +"POT-Creation-Date: 2024-07-03 06:10+0000\n" "PO-Revision-Date: 2024-06-05 15:13+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -179,8 +179,8 @@ msgstr "" #: application/views/bands/index.php:49 #: application/views/contesting/index.php:170 #: application/views/interface_assets/header.php:192 -#: application/views/logbookadvanced/index.php:581 -#: application/views/logbookadvanced/useroptions.php:126 +#: application/views/logbookadvanced/index.php:611 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/qso/edit_ajax.php:360 application/views/qso/index.php:264 #: application/views/qso/index.php:508 application/views/user/edit.php:603 #: application/views/view_log/qso.php:351 @@ -194,10 +194,10 @@ msgstr "" #: application/views/interface_assets/header.php:162 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:140 -#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/index.php:145 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/qslcarousel.php:35 -#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 #: application/views/lotw_views/index.php:40 #: application/views/qso/edit_ajax.php:218 application/views/qso/index.php:361 @@ -262,8 +262,8 @@ msgstr "" #: application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:176 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:264 -#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/logbookadvanced/index.php:269 +#: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -288,8 +288,8 @@ msgstr "" #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:268 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/index.php:273 +#: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:340 @@ -308,9 +308,9 @@ msgstr "" #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:180 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:272 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/useroptions.php:102 +#: application/views/logbookadvanced/index.php:277 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:11 @@ -380,7 +380,7 @@ msgstr "" #: application/controllers/Awards.php:1125 #: application/views/interface_assets/header.php:166 -#: application/views/logbookadvanced/useroptions.php:134 +#: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "" @@ -756,7 +756,7 @@ msgstr "Αρχείο επαφών" #: application/views/awards/waja/index.php:53 #: application/views/awards/was/index.php:53 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -798,8 +798,8 @@ msgstr "" #: application/views/user/edit.php:659 #: application/views/view_log/partial/log_ajax.php:230 #: application/views/view_log/partial/log_ajax.php:231 -#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:365 -#: src/QSLManager/QSO.php:377 +#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:367 +#: src/QSLManager/QSO.php:379 msgid "LoTW" msgstr "" @@ -832,7 +832,7 @@ msgstr "" #: application/views/user/edit.php:667 application/views/user/edit.php:731 #: application/views/view_log/partial/log_ajax.php:217 #: application/views/view_log/partial/log_ajax.php:218 -#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: src/QSLManager/QSO.php:439 src/QSLManager/QSO.php:452 msgid "eQSL" msgstr "" @@ -842,12 +842,14 @@ msgstr "" #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 #: application/views/awards/waja/index.php:69 +#: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/edit.php:325 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/qso.php:423 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:416 msgid "Clublog" msgstr "" @@ -879,8 +881,8 @@ msgstr "" #: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 #: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:177 -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:182 +#: application/views/logbookadvanced/index.php:542 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -926,7 +928,7 @@ msgstr "Τρόπος" #: application/views/awards/wwff/index.php:36 #: application/views/contesting/index.php:111 #: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:545 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -953,7 +955,7 @@ msgstr "" #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/index.php:548 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1005,10 +1007,10 @@ msgstr "Χώρα" #: application/views/bands/index.php:52 application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:178 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:157 -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:162 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1036,10 +1038,10 @@ msgstr "" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:20 #: application/views/logbookadvanced/edit.php:61 -#: application/views/logbookadvanced/index.php:169 -#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/index.php:174 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:36 -#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1067,9 +1069,9 @@ msgstr "Επαρχία" #: application/views/labels/index.php:121 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:178 #: application/views/logbookadvanced/qslcarousel.php:39 -#: application/views/logbookadvanced/useroptions.php:122 +#: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 #: application/views/qslcard/searchresult.php:19 #: application/views/qslcard/searchresult.php:35 @@ -1150,8 +1152,8 @@ msgstr "" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:188 -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:193 +#: application/views/logbookadvanced/index.php:551 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1216,9 +1218,9 @@ msgstr "Συχνότητα" #: application/controllers/Logbook.php:1288 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:276 -#: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/logbookadvanced/index.php:281 +#: application/views/logbookadvanced/index.php:596 +#: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1243,7 +1245,7 @@ msgstr "Χειριστής" #: application/views/dxatlas/index.php:65 #: application/views/interface_assets/footer.php:630 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:149 +#: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 #: application/views/lotw_views/index.php:56 #: application/views/qso/components/previous_contacts.php:59 @@ -1533,7 +1535,7 @@ msgstr "" #: application/views/continents/index.php:49 #: application/views/interface_assets/header.php:328 #: application/views/interface_assets/header.php:335 -#: application/views/logbookadvanced/index.php:482 +#: application/views/logbookadvanced/index.php:509 #: application/views/oqrs/index.php:23 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1711,7 +1713,7 @@ msgstr "" #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 -#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:511 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 @@ -1755,7 +1757,7 @@ msgstr "" #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 -#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:512 #: application/views/lotw_views/index.php:118 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 @@ -2056,21 +2058,23 @@ msgstr "" #: application/views/gridmap/index.php:83 application/views/kml/index.php:21 #: application/views/kml/index.php:33 application/views/kml/index.php:49 #: application/views/kml/index.php:67 application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:179 -#: application/views/logbookadvanced/index.php:190 -#: application/views/logbookadvanced/index.php:201 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:219 -#: application/views/logbookadvanced/index.php:244 -#: application/views/logbookadvanced/index.php:255 -#: application/views/logbookadvanced/index.php:287 -#: application/views/logbookadvanced/index.php:298 -#: application/views/logbookadvanced/index.php:309 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:329 -#: application/views/logbookadvanced/index.php:340 -#: application/views/logbookadvanced/index.php:351 -#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:184 +#: application/views/logbookadvanced/index.php:195 +#: application/views/logbookadvanced/index.php:206 +#: application/views/logbookadvanced/index.php:215 +#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:249 +#: application/views/logbookadvanced/index.php:260 +#: application/views/logbookadvanced/index.php:292 +#: application/views/logbookadvanced/index.php:303 +#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:345 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:389 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2145,7 +2149,7 @@ msgstr "" #: application/views/distances/index.php:34 #: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:204 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2156,7 +2160,7 @@ msgstr "Δορυφόρος" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:213 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2266,7 +2270,7 @@ msgstr "" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:39 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:119 -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/lotw_views/index.php:39 #: application/views/oqrs/qsolist.php:6 @@ -2780,7 +2784,7 @@ msgid "Status" msgstr "Κατάσταση" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3023,7 +3027,7 @@ msgstr "Κάρτa QSL" #: application/views/awards/waja/index.php:113 #: application/views/awards/was/index.php:109 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:521 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 @@ -3056,7 +3060,7 @@ msgstr "" #: application/views/awards/wab/index.php:108 #: application/views/awards/waja/index.php:129 #: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:487 +#: application/views/logbookadvanced/index.php:514 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "" @@ -3064,10 +3068,10 @@ msgstr "" #: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:242 -#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/index.php:247 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/useroptions.php:90 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:271 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 @@ -3378,7 +3382,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:37 application/views/labels/index.php:71 -#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/index.php:557 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3421,9 +3425,9 @@ msgstr "" #: application/views/awards/itu/index.php:148 #: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:253 -#: application/views/logbookadvanced/index.php:557 -#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/logbookadvanced/index.php:258 +#: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:143 msgid "ITU Zone" @@ -3544,7 +3548,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/index.php:533 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4011,8 +4015,8 @@ msgstr "" #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:569 -#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/logbookadvanced/index.php:599 +#: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 #: application/views/view_log/qso.php:199 msgid "Comment" @@ -4046,7 +4050,7 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 msgid "Contest" msgstr "" @@ -4458,7 +4462,7 @@ msgstr "Λειτουργία διάδοσης" #: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4466,7 +4470,7 @@ msgstr "" #: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4474,7 +4478,7 @@ msgstr "" #: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:223 +#: application/views/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4482,7 +4486,7 @@ msgstr "" #: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4490,7 +4494,7 @@ msgstr "" #: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:225 +#: application/views/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4498,7 +4502,7 @@ msgstr "" #: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:226 +#: application/views/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4506,7 +4510,7 @@ msgstr "" #: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:227 +#: application/views/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4514,7 +4518,7 @@ msgstr "" #: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:228 +#: application/views/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4522,7 +4526,7 @@ msgstr "" #: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:229 +#: application/views/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4530,7 +4534,7 @@ msgstr "" #: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:230 +#: application/views/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4538,7 +4542,7 @@ msgstr "" #: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:231 +#: application/views/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4546,7 +4550,7 @@ msgstr "" #: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:232 +#: application/views/logbookadvanced/index.php:237 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4554,7 +4558,7 @@ msgstr "" #: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:233 +#: application/views/logbookadvanced/index.php:238 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4562,7 +4566,7 @@ msgstr "" #: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:234 +#: application/views/logbookadvanced/index.php:239 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4570,7 +4574,7 @@ msgstr "" #: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:235 +#: application/views/logbookadvanced/index.php:240 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4578,7 +4582,7 @@ msgstr "" #: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:236 +#: application/views/logbookadvanced/index.php:241 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4586,7 +4590,7 @@ msgstr "Δορυφόρος" #: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:242 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4594,7 +4598,7 @@ msgstr "" #: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:238 +#: application/views/logbookadvanced/index.php:243 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -4699,8 +4703,9 @@ msgstr "Απαιτείται" #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:266 -#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:402 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 +#: src/QSLManager/QSO.php:367 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:439 msgid "Sent" msgstr "Απεσταλμένα" @@ -4728,18 +4733,21 @@ msgstr "Απεσταλμένα" #: application/views/view_log/partial/log_ajax.php:246 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:311 -#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:415 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 +#: src/QSLManager/QSO.php:379 src/QSLManager/QSO.php:416 +#: src/QSLManager/QSO.php:452 msgid "Received" msgstr "Ελήφθη" #: application/views/dashboard/index.php:279 -#: application/views/logbookadvanced/index.php:290 -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:332 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 +#: application/views/logbookadvanced/index.php:295 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -4753,8 +4761,8 @@ msgstr "Ελήφθη" #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:146 #: application/views/view_log/partial/log_ajax.php:184 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:272 -#: src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 +#: src/QSLManager/QSO.php:319 msgid "Requested" msgstr "Έχει ζητηθεί" @@ -5334,9 +5342,9 @@ msgstr "" #: application/views/gridmap/index.php:38 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:217 -#: application/views/logbookadvanced/index.php:572 -#: application/views/logbookadvanced/useroptions.php:114 +#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:602 +#: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "" @@ -5644,7 +5652,7 @@ msgid "Log" msgstr "" #: application/views/interface_assets/header.php:334 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:440 #: application/views/oqrs/index.php:22 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" @@ -5957,8 +5965,8 @@ msgid "Start printing at?" msgstr "" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:371 -#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:560 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" @@ -5971,42 +5979,44 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:128 +#: application/views/logbookadvanced/index.php:133 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:132 +#: application/views/logbookadvanced/index.php:137 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:136 -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:141 +#: application/views/logbookadvanced/index.php:539 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:143 +#: application/views/logbookadvanced/index.php:148 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:220 +#: application/views/logbookadvanced/index.php:225 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:285 +#: application/views/logbookadvanced/index.php:290 msgid "QSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:330 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:293 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:405 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6036,13 +6046,15 @@ msgstr "" msgid "Yes" msgstr "Ναι" -#: application/views/logbookadvanced/index.php:289 -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:305 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:406 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:392 #: application/views/qso/edit_ajax.php:425 @@ -6073,9 +6085,10 @@ msgstr "Ναι" msgid "No" msgstr "Οχι" -#: application/views/logbookadvanced/index.php:291 -#: application/views/logbookadvanced/index.php:333 -#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:382 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6086,16 +6099,18 @@ msgstr "Οχι" #: application/views/search/search_result_ajax.php:225 #: application/views/view_log/partial/log_ajax.php:143 #: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 msgid "Queued" msgstr "Σε ουρά" -#: application/views/logbookadvanced/index.php:292 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:334 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:366 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:393 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/qslprint/qsolist.php:67 #: application/views/qslprint/qsolist.php:109 @@ -6109,26 +6124,27 @@ msgstr "Σε ουρά" #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:149 #: application/views/view_log/partial/log_ajax.php:187 -#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 msgid "Invalid (Ignore)" msgstr "Μη έγκυρο (Αγνόησή)" -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:301 msgid "QSL received" msgstr "" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:312 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:320 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:325 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6143,12 +6159,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:241 #: application/views/view_log/partial/log_ajax.php:162 #: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 msgid "Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:321 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:326 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6161,12 +6177,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:165 #: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 msgid "Direct" msgstr "Απευθείας" -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:322 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:327 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6179,12 +6195,12 @@ msgstr "Απευθείας" #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:171 #: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 msgid "Electronic" msgstr "Ηλεκτρονική" -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:323 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:409 @@ -6194,187 +6210,195 @@ msgstr "Ηλεκτρονική" msgid "Manager" msgstr "Διευθυντής" -#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:322 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:332 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:343 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:354 +msgid "Clublog sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:365 +msgid "Clublog received" +msgstr "" + +#: application/views/logbookadvanced/index.php:376 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:387 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:402 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:387 +#: application/views/logbookadvanced/index.php:414 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" -#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:417 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:418 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:419 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:420 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:422 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:423 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:424 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:425 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:426 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:427 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:428 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:429 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:430 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:431 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:432 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:433 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:438 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:416 +#: application/views/logbookadvanced/index.php:443 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:419 +#: application/views/logbookadvanced/index.php:446 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:422 +#: application/views/logbookadvanced/index.php:449 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:452 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:443 +#: application/views/logbookadvanced/index.php:470 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:446 +#: application/views/logbookadvanced/index.php:473 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:449 +#: application/views/logbookadvanced/index.php:476 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/index.php:485 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:460 +#: application/views/logbookadvanced/index.php:487 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:490 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:470 +#: application/views/logbookadvanced/index.php:497 #: application/views/qso/index.php:272 #: application/views/station_profile/edit.php:65 msgid "Location" msgstr "Τοποθεσία" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/lotw_views/index.php:47 #: application/views/simplefle/index.php:19 #: application/views/simplefle/index.php:158 @@ -6384,18 +6408,18 @@ msgstr "" msgid "Options" msgstr "" -#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:536 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:545 -#: application/views/logbookadvanced/useroptions.php:74 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -6423,37 +6447,37 @@ msgstr "" msgid "Column" msgstr "" -#: application/views/logbookadvanced/useroptions.php:144 +#: application/views/logbookadvanced/useroptions.php:148 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:145 +#: application/views/logbookadvanced/useroptions.php:149 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:150 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/stationsetup/exportmapoptions.php:23 msgctxt "Map Options" msgid "Path lines" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/useroptions.php:158 msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/logbookadvanced/useroptions.php:162 msgctxt "Map Options" msgid "CQ Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:166 msgctxt "Map Options" msgid "ITU Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:166 +#: application/views/logbookadvanced/useroptions.php:170 msgctxt "Map Options" msgid "Night Shadow" msgstr "" @@ -7125,7 +7149,7 @@ msgstr "Σταθμός" #: application/views/qso/index.php:576 #: application/views/search/search_result_ajax.php:205 #: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:298 +#: src/QSLManager/QSO.php:300 msgid "Via" msgstr "Μέσω" diff --git a/application/locale/es_ES/LC_MESSAGES/messages.po b/application/locale/es_ES/LC_MESSAGES/messages.po index 6f7d4a59f..506f1bb95 100644 --- a/application/locale/es_ES/LC_MESSAGES/messages.po +++ b/application/locale/es_ES/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-03 05:59+0000\n" +"POT-Creation-Date: 2024-07-03 06:10+0000\n" "PO-Revision-Date: 2024-06-28 20:16+0000\n" "Last-Translator: CieNTi \n" "Language-Team: Spanish \n" @@ -180,8 +180,8 @@ msgstr "Diplomas - %s" #: application/views/bands/index.php:49 #: application/views/contesting/index.php:170 #: application/views/interface_assets/header.php:192 -#: application/views/logbookadvanced/index.php:581 -#: application/views/logbookadvanced/useroptions.php:126 +#: application/views/logbookadvanced/index.php:611 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/qso/edit_ajax.php:360 application/views/qso/index.php:264 #: application/views/qso/index.php:508 application/views/user/edit.php:603 #: application/views/view_log/qso.php:351 @@ -195,10 +195,10 @@ msgstr "DOK" #: application/views/interface_assets/header.php:162 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:140 -#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/index.php:145 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/qslcarousel.php:35 -#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 #: application/views/lotw_views/index.php:40 #: application/views/qso/edit_ajax.php:218 application/views/qso/index.php:361 @@ -263,8 +263,8 @@ msgstr " y " #: application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:176 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:264 -#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/logbookadvanced/index.php:269 +#: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -289,8 +289,8 @@ msgstr "SOTA" #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:268 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/index.php:273 +#: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:340 @@ -309,9 +309,9 @@ msgstr "WWFF" #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:180 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:272 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/useroptions.php:102 +#: application/views/logbookadvanced/index.php:277 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:11 @@ -381,7 +381,7 @@ msgstr "Diploma Memorial Fred Fish (FFMA)" #: application/controllers/Awards.php:1125 #: application/views/interface_assets/header.php:166 -#: application/views/logbookadvanced/useroptions.php:134 +#: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "SIG" @@ -757,7 +757,7 @@ msgstr "Libro de Guardia" #: application/views/awards/waja/index.php:53 #: application/views/awards/was/index.php:53 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -799,8 +799,8 @@ msgstr "" #: application/views/user/edit.php:659 #: application/views/view_log/partial/log_ajax.php:230 #: application/views/view_log/partial/log_ajax.php:231 -#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:365 -#: src/QSLManager/QSO.php:377 +#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:367 +#: src/QSLManager/QSO.php:379 msgid "LoTW" msgstr "" @@ -833,7 +833,7 @@ msgstr "" #: application/views/user/edit.php:667 application/views/user/edit.php:731 #: application/views/view_log/partial/log_ajax.php:217 #: application/views/view_log/partial/log_ajax.php:218 -#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: src/QSLManager/QSO.php:439 src/QSLManager/QSO.php:452 msgid "eQSL" msgstr "" @@ -843,12 +843,14 @@ msgstr "" #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 #: application/views/awards/waja/index.php:69 +#: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/edit.php:325 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/qso.php:423 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:416 msgid "Clublog" msgstr "" @@ -880,8 +882,8 @@ msgstr "" #: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 #: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:177 -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:182 +#: application/views/logbookadvanced/index.php:542 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -927,7 +929,7 @@ msgstr "Modo" #: application/views/awards/wwff/index.php:36 #: application/views/contesting/index.php:111 #: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:545 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -954,7 +956,7 @@ msgstr "RST (Enviada)" #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/index.php:548 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1006,10 +1008,10 @@ msgstr "País" #: application/views/bands/index.php:52 application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:178 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:157 -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:162 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1037,10 +1039,10 @@ msgstr "" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:20 #: application/views/logbookadvanced/edit.php:61 -#: application/views/logbookadvanced/index.php:169 -#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/index.php:174 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:36 -#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1068,9 +1070,9 @@ msgstr "Estado" #: application/views/labels/index.php:121 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:178 #: application/views/logbookadvanced/qslcarousel.php:39 -#: application/views/logbookadvanced/useroptions.php:122 +#: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 #: application/views/qslcard/searchresult.php:19 #: application/views/qslcard/searchresult.php:35 @@ -1151,8 +1153,8 @@ msgstr "Distancia" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:188 -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:193 +#: application/views/logbookadvanced/index.php:551 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1217,9 +1219,9 @@ msgstr "Frecuencia" #: application/controllers/Logbook.php:1288 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:276 -#: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/logbookadvanced/index.php:281 +#: application/views/logbookadvanced/index.php:596 +#: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1244,7 +1246,7 @@ msgstr "Operador" #: application/views/dxatlas/index.php:65 #: application/views/interface_assets/footer.php:630 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:149 +#: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 #: application/views/lotw_views/index.php:56 #: application/views/qso/components/previous_contacts.php:59 @@ -1534,7 +1536,7 @@ msgstr "" #: application/views/continents/index.php:49 #: application/views/interface_assets/header.php:328 #: application/views/interface_assets/header.php:335 -#: application/views/logbookadvanced/index.php:482 +#: application/views/logbookadvanced/index.php:509 #: application/views/oqrs/index.php:23 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1712,7 +1714,7 @@ msgstr "" #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 -#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:511 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 @@ -1756,7 +1758,7 @@ msgstr "" #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 -#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:512 #: application/views/lotw_views/index.php:118 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 @@ -2057,21 +2059,23 @@ msgstr "" #: application/views/gridmap/index.php:83 application/views/kml/index.php:21 #: application/views/kml/index.php:33 application/views/kml/index.php:49 #: application/views/kml/index.php:67 application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:179 -#: application/views/logbookadvanced/index.php:190 -#: application/views/logbookadvanced/index.php:201 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:219 -#: application/views/logbookadvanced/index.php:244 -#: application/views/logbookadvanced/index.php:255 -#: application/views/logbookadvanced/index.php:287 -#: application/views/logbookadvanced/index.php:298 -#: application/views/logbookadvanced/index.php:309 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:329 -#: application/views/logbookadvanced/index.php:340 -#: application/views/logbookadvanced/index.php:351 -#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:184 +#: application/views/logbookadvanced/index.php:195 +#: application/views/logbookadvanced/index.php:206 +#: application/views/logbookadvanced/index.php:215 +#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:249 +#: application/views/logbookadvanced/index.php:260 +#: application/views/logbookadvanced/index.php:292 +#: application/views/logbookadvanced/index.php:303 +#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:345 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:389 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2146,7 +2150,7 @@ msgstr "Mostrar" #: application/views/distances/index.php:34 #: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:204 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2157,7 +2161,7 @@ msgstr "Satélite" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:213 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2267,7 +2271,7 @@ msgstr "" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:39 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:119 -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/lotw_views/index.php:39 #: application/views/oqrs/qsolist.php:6 @@ -2781,7 +2785,7 @@ msgid "Status" msgstr "Estado" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "Actiones" @@ -3024,7 +3028,7 @@ msgstr "Tarjeta QSL" #: application/views/awards/waja/index.php:113 #: application/views/awards/was/index.php:109 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:521 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 @@ -3057,7 +3061,7 @@ msgstr "Tabla" #: application/views/awards/wab/index.php:108 #: application/views/awards/waja/index.php:129 #: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:487 +#: application/views/logbookadvanced/index.php:514 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Mapa" @@ -3065,10 +3069,10 @@ msgstr "Mapa" #: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:242 -#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/index.php:247 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/useroptions.php:90 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:271 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 @@ -3379,7 +3383,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:37 application/views/labels/index.php:71 -#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/index.php:557 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3422,9 +3426,9 @@ msgstr "" #: application/views/awards/itu/index.php:148 #: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:253 -#: application/views/logbookadvanced/index.php:557 -#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/logbookadvanced/index.php:258 +#: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:143 msgid "ITU Zone" @@ -3545,7 +3549,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/index.php:533 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4012,8 +4016,8 @@ msgstr "No hay activaciones próximas. Por favor vuelve a revisar más tarde." #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:569 -#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/logbookadvanced/index.php:599 +#: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 #: application/views/view_log/qso.php:199 msgid "Comment" @@ -4047,7 +4051,7 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 msgid "Contest" msgstr "" @@ -4459,7 +4463,7 @@ msgstr "Modo de propagación" #: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4467,7 +4471,7 @@ msgstr "" #: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4475,7 +4479,7 @@ msgstr "" #: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:223 +#: application/views/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4483,7 +4487,7 @@ msgstr "" #: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4491,7 +4495,7 @@ msgstr "" #: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:225 +#: application/views/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4499,7 +4503,7 @@ msgstr "" #: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:226 +#: application/views/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4507,7 +4511,7 @@ msgstr "" #: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:227 +#: application/views/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4515,7 +4519,7 @@ msgstr "" #: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:228 +#: application/views/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4523,7 +4527,7 @@ msgstr "" #: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:229 +#: application/views/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4531,7 +4535,7 @@ msgstr "" #: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:230 +#: application/views/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4539,7 +4543,7 @@ msgstr "" #: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:231 +#: application/views/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4547,7 +4551,7 @@ msgstr "" #: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:232 +#: application/views/logbookadvanced/index.php:237 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4555,7 +4559,7 @@ msgstr "" #: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:233 +#: application/views/logbookadvanced/index.php:238 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4563,7 +4567,7 @@ msgstr "" #: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:234 +#: application/views/logbookadvanced/index.php:239 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4571,7 +4575,7 @@ msgstr "" #: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:235 +#: application/views/logbookadvanced/index.php:240 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4579,7 +4583,7 @@ msgstr "" #: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:236 +#: application/views/logbookadvanced/index.php:241 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4587,7 +4591,7 @@ msgstr "Satélite" #: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:242 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4595,7 +4599,7 @@ msgstr "" #: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:238 +#: application/views/logbookadvanced/index.php:243 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -4700,8 +4704,9 @@ msgstr "Solicitadas" #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:266 -#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:402 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 +#: src/QSLManager/QSO.php:367 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:439 msgid "Sent" msgstr "Enviado" @@ -4729,18 +4734,21 @@ msgstr "Enviado" #: application/views/view_log/partial/log_ajax.php:246 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:311 -#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:415 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 +#: src/QSLManager/QSO.php:379 src/QSLManager/QSO.php:416 +#: src/QSLManager/QSO.php:452 msgid "Received" msgstr "Recibido" #: application/views/dashboard/index.php:279 -#: application/views/logbookadvanced/index.php:290 -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:332 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 +#: application/views/logbookadvanced/index.php:295 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -4754,8 +4762,8 @@ msgstr "Recibido" #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:146 #: application/views/view_log/partial/log_ajax.php:184 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:272 -#: src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 +#: src/QSLManager/QSO.php:319 msgid "Requested" msgstr "Solicitadas" @@ -5335,9 +5343,9 @@ msgstr "" #: application/views/gridmap/index.php:38 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:217 -#: application/views/logbookadvanced/index.php:572 -#: application/views/logbookadvanced/useroptions.php:114 +#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:602 +#: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "Propagación" @@ -5645,7 +5653,7 @@ msgid "Log" msgstr "" #: application/views/interface_assets/header.php:334 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:440 #: application/views/oqrs/index.php:22 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" @@ -5958,8 +5966,8 @@ msgid "Start printing at?" msgstr "¿Iniciar impresión desde?" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:371 -#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:560 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" @@ -5972,42 +5980,44 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:128 +#: application/views/logbookadvanced/index.php:133 msgid "From" msgstr "Desde" -#: application/views/logbookadvanced/index.php:132 +#: application/views/logbookadvanced/index.php:137 msgid "To" msgstr "a" -#: application/views/logbookadvanced/index.php:136 -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:141 +#: application/views/logbookadvanced/index.php:539 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:143 +#: application/views/logbookadvanced/index.php:148 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:220 +#: application/views/logbookadvanced/index.php:225 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:285 +#: application/views/logbookadvanced/index.php:290 msgid "QSL sent" msgstr "QSL enviadas" -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:330 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:293 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:405 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6037,13 +6047,15 @@ msgstr "QSL enviadas" msgid "Yes" msgstr "Si" -#: application/views/logbookadvanced/index.php:289 -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:305 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:406 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:392 #: application/views/qso/edit_ajax.php:425 @@ -6074,9 +6086,10 @@ msgstr "Si" msgid "No" msgstr "" -#: application/views/logbookadvanced/index.php:291 -#: application/views/logbookadvanced/index.php:333 -#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:382 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6087,16 +6100,18 @@ msgstr "" #: application/views/search/search_result_ajax.php:225 #: application/views/view_log/partial/log_ajax.php:143 #: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 msgid "Queued" msgstr "En Cola" -#: application/views/logbookadvanced/index.php:292 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:334 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:366 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:393 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/qslprint/qsolist.php:67 #: application/views/qslprint/qsolist.php:109 @@ -6110,26 +6125,27 @@ msgstr "En Cola" #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:149 #: application/views/view_log/partial/log_ajax.php:187 -#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 msgid "Invalid (Ignore)" msgstr "Inválidas (ignorar)" -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:301 msgid "QSL received" msgstr "QSL recibidas" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 msgid "Verified" msgstr "Verificado" -#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:312 msgid "QSL send. method" msgstr "Método de Envío de QSL" -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:320 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:325 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6144,12 +6160,12 @@ msgstr "Método de Envío de QSL" #: application/views/search/search_result_ajax.php:241 #: application/views/view_log/partial/log_ajax.php:162 #: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 msgid "Bureau" msgstr "Buró" -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:321 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:326 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6162,12 +6178,12 @@ msgstr "Buró" #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:165 #: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 msgid "Direct" msgstr "Directo" -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:322 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:327 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6180,12 +6196,12 @@ msgstr "Directo" #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:171 #: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 msgid "Electronic" msgstr "Electrónico" -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:323 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:409 @@ -6195,187 +6211,195 @@ msgstr "Electrónico" msgid "Manager" msgstr "" -#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:322 msgid "QSL recv. method" msgstr "Método de Recepción de QSL" -#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:332 msgid "LoTW sent" msgstr "Enviado por LoTW" -#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:343 msgid "LoTW received" msgstr "Recibido por LoTW" -#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:354 +msgid "Clublog sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:365 +msgid "Clublog received" +msgstr "" + +#: application/views/logbookadvanced/index.php:376 msgid "eQSL sent" msgstr "Enviado por eQSL" -#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:387 msgid "eQSL received" msgstr "Recibido por eQSL" -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:402 msgid "QSL Images" msgstr "Imágenes QSL" -#: application/views/logbookadvanced/index.php:387 +#: application/views/logbookadvanced/index.php:414 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "¡Advertencia! ¿Está seguro que desea eliminar las QSO marcadas?" -#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:417 msgid "With selected: " msgstr "Con los seleccionados: " -#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:418 msgid "Update from Callbook" msgstr "Actualizar de Callbook" -#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:419 msgid "Queue Bureau" msgstr "En Cola por Buró" -#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:420 msgid "Queue Direct" msgstr "En Cola por Directa" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "Queue Electronic" msgstr "En Cola por Electrónico" -#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:422 msgid "Sent (Bureau)" msgstr "Enviado (Buró)" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:423 msgid "Sent (Direct)" msgstr "Enviado (Directa)" -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:424 msgid "Sent (Electronic)" msgstr "Enviado (Electrónico)" -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:425 msgid "Not Sent" msgstr "No Enviado" -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:426 msgid "QSL Not Required" msgstr "QSL no Requerida" -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:427 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:428 msgid "Received (Bureau)" msgstr "Recibido (Buró)" -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:429 msgid "Received (Direct)" msgstr "Recibido (Directa)" -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:430 msgid "Received (Electronic)" msgstr "Recibido (Electrónico)" -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:431 msgid "Create ADIF" msgstr "Crear ADIF" -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:432 msgid "Print Label" msgstr "Imprimir Etiqueta" -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:433 msgid "QSL Slideshow" msgstr "Presentación QSL" -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:438 msgid "Quicksearch with selected: " msgstr "Búsqueda rápida con seleccionados: " -#: application/views/logbookadvanced/index.php:416 +#: application/views/logbookadvanced/index.php:443 msgid "Search DXCC" msgstr "Buscar DXCC" -#: application/views/logbookadvanced/index.php:419 +#: application/views/logbookadvanced/index.php:446 msgid "Search State" msgstr "Buscar Estado" -#: application/views/logbookadvanced/index.php:422 +#: application/views/logbookadvanced/index.php:449 msgid "Search Gridsquare" msgstr "Buscar Gridsquare" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:452 msgid "Search CQ Zone" msgstr "Buscar Zona CQ" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Search Mode" msgstr "Buscar Modo" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Search Band" msgstr "Buscar Banda" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Search IOTA" msgstr "Buscar IOTA" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "Search SOTA" msgstr "Buscar SOTA" -#: application/views/logbookadvanced/index.php:443 +#: application/views/logbookadvanced/index.php:470 msgid "Search POTA" msgstr "Buscar POTA" -#: application/views/logbookadvanced/index.php:446 +#: application/views/logbookadvanced/index.php:473 msgid "Search WWFF" msgstr "Buscar WWFF" -#: application/views/logbookadvanced/index.php:449 +#: application/views/logbookadvanced/index.php:476 msgid "Search Operator" msgstr "Buscar Operador" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Quickfilters" msgstr "Filtros rápidos" -#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/index.php:485 msgid "QSL Filters" msgstr "Filtros QSL" -#: application/views/logbookadvanced/index.php:460 +#: application/views/logbookadvanced/index.php:487 #: application/views/mode/index.php:68 msgid "Filters" msgstr "Filtros" -#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:490 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "No. Resultados" -#: application/views/logbookadvanced/index.php:470 +#: application/views/logbookadvanced/index.php:497 #: application/views/qso/index.php:272 #: application/views/station_profile/edit.php:65 msgid "Location" msgstr "Localización" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Dupes" msgstr "Duplicados" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/lotw_views/index.php:47 #: application/views/simplefle/index.php:19 #: application/views/simplefle/index.php:158 @@ -6385,18 +6409,18 @@ msgstr "" msgid "Options" msgstr "Opciones" -#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:536 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:545 -#: application/views/logbookadvanced/useroptions.php:74 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "Mensaje QSL" -#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "Mis Refs" @@ -6424,37 +6448,37 @@ msgstr "Incluir Vía" msgid "Column" msgstr "Columna" -#: application/views/logbookadvanced/useroptions.php:144 +#: application/views/logbookadvanced/useroptions.php:148 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:145 +#: application/views/logbookadvanced/useroptions.php:149 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:150 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/stationsetup/exportmapoptions.php:23 msgctxt "Map Options" msgid "Path lines" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/useroptions.php:158 msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/logbookadvanced/useroptions.php:162 msgctxt "Map Options" msgid "CQ Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:166 msgctxt "Map Options" msgid "ITU Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:166 +#: application/views/logbookadvanced/useroptions.php:170 msgctxt "Map Options" msgid "Night Shadow" msgstr "" @@ -7126,7 +7150,7 @@ msgstr "Estación" #: application/views/qso/index.php:576 #: application/views/search/search_result_ajax.php:205 #: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:298 +#: src/QSLManager/QSO.php:300 msgid "Via" msgstr "Vía" diff --git a/application/locale/fi_FI/LC_MESSAGES/messages.po b/application/locale/fi_FI/LC_MESSAGES/messages.po index b0b3a96c0..df7f03ded 100644 --- a/application/locale/fi_FI/LC_MESSAGES/messages.po +++ b/application/locale/fi_FI/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-03 05:59+0000\n" +"POT-Creation-Date: 2024-07-03 06:10+0000\n" "PO-Revision-Date: 2024-06-05 15:14+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -179,8 +179,8 @@ msgstr "" #: application/views/bands/index.php:49 #: application/views/contesting/index.php:170 #: application/views/interface_assets/header.php:192 -#: application/views/logbookadvanced/index.php:581 -#: application/views/logbookadvanced/useroptions.php:126 +#: application/views/logbookadvanced/index.php:611 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/qso/edit_ajax.php:360 application/views/qso/index.php:264 #: application/views/qso/index.php:508 application/views/user/edit.php:603 #: application/views/view_log/qso.php:351 @@ -194,10 +194,10 @@ msgstr "" #: application/views/interface_assets/header.php:162 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:140 -#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/index.php:145 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/qslcarousel.php:35 -#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 #: application/views/lotw_views/index.php:40 #: application/views/qso/edit_ajax.php:218 application/views/qso/index.php:361 @@ -262,8 +262,8 @@ msgstr "" #: application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:176 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:264 -#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/logbookadvanced/index.php:269 +#: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -288,8 +288,8 @@ msgstr "" #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:268 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/index.php:273 +#: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:340 @@ -308,9 +308,9 @@ msgstr "" #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:180 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:272 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/useroptions.php:102 +#: application/views/logbookadvanced/index.php:277 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:11 @@ -380,7 +380,7 @@ msgstr "" #: application/controllers/Awards.php:1125 #: application/views/interface_assets/header.php:166 -#: application/views/logbookadvanced/useroptions.php:134 +#: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "" @@ -756,7 +756,7 @@ msgstr "Lokikirja" #: application/views/awards/waja/index.php:53 #: application/views/awards/was/index.php:53 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -798,8 +798,8 @@ msgstr "" #: application/views/user/edit.php:659 #: application/views/view_log/partial/log_ajax.php:230 #: application/views/view_log/partial/log_ajax.php:231 -#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:365 -#: src/QSLManager/QSO.php:377 +#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:367 +#: src/QSLManager/QSO.php:379 msgid "LoTW" msgstr "" @@ -832,7 +832,7 @@ msgstr "" #: application/views/user/edit.php:667 application/views/user/edit.php:731 #: application/views/view_log/partial/log_ajax.php:217 #: application/views/view_log/partial/log_ajax.php:218 -#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: src/QSLManager/QSO.php:439 src/QSLManager/QSO.php:452 msgid "eQSL" msgstr "" @@ -842,12 +842,14 @@ msgstr "" #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 #: application/views/awards/waja/index.php:69 +#: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/edit.php:325 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/qso.php:423 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:416 msgid "Clublog" msgstr "" @@ -879,8 +881,8 @@ msgstr "" #: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 #: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:177 -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:182 +#: application/views/logbookadvanced/index.php:542 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -926,7 +928,7 @@ msgstr "Lähetelaji" #: application/views/awards/wwff/index.php:36 #: application/views/contesting/index.php:111 #: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:545 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -953,7 +955,7 @@ msgstr "" #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/index.php:548 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1005,10 +1007,10 @@ msgstr "Maa" #: application/views/bands/index.php:52 application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:178 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:157 -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:162 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1036,10 +1038,10 @@ msgstr "" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:20 #: application/views/logbookadvanced/edit.php:61 -#: application/views/logbookadvanced/index.php:169 -#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/index.php:174 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:36 -#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1067,9 +1069,9 @@ msgstr "osavaltio" #: application/views/labels/index.php:121 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:178 #: application/views/logbookadvanced/qslcarousel.php:39 -#: application/views/logbookadvanced/useroptions.php:122 +#: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 #: application/views/qslcard/searchresult.php:19 #: application/views/qslcard/searchresult.php:35 @@ -1150,8 +1152,8 @@ msgstr "Etäisyys" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:188 -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:193 +#: application/views/logbookadvanced/index.php:551 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1216,9 +1218,9 @@ msgstr "Taajuus" #: application/controllers/Logbook.php:1288 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:276 -#: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/logbookadvanced/index.php:281 +#: application/views/logbookadvanced/index.php:596 +#: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1243,7 +1245,7 @@ msgstr "" #: application/views/dxatlas/index.php:65 #: application/views/interface_assets/footer.php:630 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:149 +#: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 #: application/views/lotw_views/index.php:56 #: application/views/qso/components/previous_contacts.php:59 @@ -1533,7 +1535,7 @@ msgstr "" #: application/views/continents/index.php:49 #: application/views/interface_assets/header.php:328 #: application/views/interface_assets/header.php:335 -#: application/views/logbookadvanced/index.php:482 +#: application/views/logbookadvanced/index.php:509 #: application/views/oqrs/index.php:23 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1711,7 +1713,7 @@ msgstr "" #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 -#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:511 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 @@ -1755,7 +1757,7 @@ msgstr "" #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 -#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:512 #: application/views/lotw_views/index.php:118 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 @@ -2056,21 +2058,23 @@ msgstr "" #: application/views/gridmap/index.php:83 application/views/kml/index.php:21 #: application/views/kml/index.php:33 application/views/kml/index.php:49 #: application/views/kml/index.php:67 application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:179 -#: application/views/logbookadvanced/index.php:190 -#: application/views/logbookadvanced/index.php:201 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:219 -#: application/views/logbookadvanced/index.php:244 -#: application/views/logbookadvanced/index.php:255 -#: application/views/logbookadvanced/index.php:287 -#: application/views/logbookadvanced/index.php:298 -#: application/views/logbookadvanced/index.php:309 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:329 -#: application/views/logbookadvanced/index.php:340 -#: application/views/logbookadvanced/index.php:351 -#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:184 +#: application/views/logbookadvanced/index.php:195 +#: application/views/logbookadvanced/index.php:206 +#: application/views/logbookadvanced/index.php:215 +#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:249 +#: application/views/logbookadvanced/index.php:260 +#: application/views/logbookadvanced/index.php:292 +#: application/views/logbookadvanced/index.php:303 +#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:345 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:389 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2145,7 +2149,7 @@ msgstr "" #: application/views/distances/index.php:34 #: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:204 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2156,7 +2160,7 @@ msgstr "Satelliitti" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:213 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2266,7 +2270,7 @@ msgstr "" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:39 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:119 -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/lotw_views/index.php:39 #: application/views/oqrs/qsolist.php:6 @@ -2780,7 +2784,7 @@ msgid "Status" msgstr "" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3023,7 +3027,7 @@ msgstr "QSL-kortti" #: application/views/awards/waja/index.php:113 #: application/views/awards/was/index.php:109 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:521 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 @@ -3056,7 +3060,7 @@ msgstr "" #: application/views/awards/wab/index.php:108 #: application/views/awards/waja/index.php:129 #: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:487 +#: application/views/logbookadvanced/index.php:514 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "" @@ -3064,10 +3068,10 @@ msgstr "" #: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:242 -#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/index.php:247 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/useroptions.php:90 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:271 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 @@ -3378,7 +3382,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:37 application/views/labels/index.php:71 -#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/index.php:557 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3421,9 +3425,9 @@ msgstr "" #: application/views/awards/itu/index.php:148 #: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:253 -#: application/views/logbookadvanced/index.php:557 -#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/logbookadvanced/index.php:258 +#: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:143 msgid "ITU Zone" @@ -3544,7 +3548,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/index.php:533 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4011,8 +4015,8 @@ msgstr "" #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:569 -#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/logbookadvanced/index.php:599 +#: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 #: application/views/view_log/qso.php:199 msgid "Comment" @@ -4046,7 +4050,7 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 msgid "Contest" msgstr "" @@ -4458,7 +4462,7 @@ msgstr "Propagaatiomuoto" #: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4466,7 +4470,7 @@ msgstr "" #: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4474,7 +4478,7 @@ msgstr "" #: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:223 +#: application/views/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4482,7 +4486,7 @@ msgstr "" #: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4490,7 +4494,7 @@ msgstr "" #: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:225 +#: application/views/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4498,7 +4502,7 @@ msgstr "" #: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:226 +#: application/views/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4506,7 +4510,7 @@ msgstr "" #: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:227 +#: application/views/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4514,7 +4518,7 @@ msgstr "" #: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:228 +#: application/views/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4522,7 +4526,7 @@ msgstr "" #: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:229 +#: application/views/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4530,7 +4534,7 @@ msgstr "" #: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:230 +#: application/views/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4538,7 +4542,7 @@ msgstr "" #: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:231 +#: application/views/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4546,7 +4550,7 @@ msgstr "" #: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:232 +#: application/views/logbookadvanced/index.php:237 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4554,7 +4558,7 @@ msgstr "" #: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:233 +#: application/views/logbookadvanced/index.php:238 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4562,7 +4566,7 @@ msgstr "" #: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:234 +#: application/views/logbookadvanced/index.php:239 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4570,7 +4574,7 @@ msgstr "" #: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:235 +#: application/views/logbookadvanced/index.php:240 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4578,7 +4582,7 @@ msgstr "" #: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:236 +#: application/views/logbookadvanced/index.php:241 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4586,7 +4590,7 @@ msgstr "Satelliitti" #: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:242 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4594,7 +4598,7 @@ msgstr "" #: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:238 +#: application/views/logbookadvanced/index.php:243 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -4699,8 +4703,9 @@ msgstr "Tarvittu" #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:266 -#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:402 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 +#: src/QSLManager/QSO.php:367 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:439 msgid "Sent" msgstr "Lähetetyt" @@ -4728,18 +4733,21 @@ msgstr "Lähetetyt" #: application/views/view_log/partial/log_ajax.php:246 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:311 -#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:415 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 +#: src/QSLManager/QSO.php:379 src/QSLManager/QSO.php:416 +#: src/QSLManager/QSO.php:452 msgid "Received" msgstr "Vastaanotetut" #: application/views/dashboard/index.php:279 -#: application/views/logbookadvanced/index.php:290 -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:332 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 +#: application/views/logbookadvanced/index.php:295 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -4753,8 +4761,8 @@ msgstr "Vastaanotetut" #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:146 #: application/views/view_log/partial/log_ajax.php:184 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:272 -#: src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 +#: src/QSLManager/QSO.php:319 msgid "Requested" msgstr "Pyydetyt" @@ -5334,9 +5342,9 @@ msgstr "" #: application/views/gridmap/index.php:38 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:217 -#: application/views/logbookadvanced/index.php:572 -#: application/views/logbookadvanced/useroptions.php:114 +#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:602 +#: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "" @@ -5644,7 +5652,7 @@ msgid "Log" msgstr "" #: application/views/interface_assets/header.php:334 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:440 #: application/views/oqrs/index.php:22 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" @@ -5957,8 +5965,8 @@ msgid "Start printing at?" msgstr "" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:371 -#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:560 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" @@ -5971,42 +5979,44 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:128 +#: application/views/logbookadvanced/index.php:133 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:132 +#: application/views/logbookadvanced/index.php:137 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:136 -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:141 +#: application/views/logbookadvanced/index.php:539 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:143 +#: application/views/logbookadvanced/index.php:148 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:220 +#: application/views/logbookadvanced/index.php:225 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:285 +#: application/views/logbookadvanced/index.php:290 msgid "QSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:330 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:293 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:405 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6036,13 +6046,15 @@ msgstr "" msgid "Yes" msgstr "Kyllä" -#: application/views/logbookadvanced/index.php:289 -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:305 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:406 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:392 #: application/views/qso/edit_ajax.php:425 @@ -6073,9 +6085,10 @@ msgstr "Kyllä" msgid "No" msgstr "Ei" -#: application/views/logbookadvanced/index.php:291 -#: application/views/logbookadvanced/index.php:333 -#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:382 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6086,16 +6099,18 @@ msgstr "Ei" #: application/views/search/search_result_ajax.php:225 #: application/views/view_log/partial/log_ajax.php:143 #: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 msgid "Queued" msgstr "" -#: application/views/logbookadvanced/index.php:292 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:334 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:366 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:393 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/qslprint/qsolist.php:67 #: application/views/qslprint/qsolist.php:109 @@ -6109,26 +6124,27 @@ msgstr "" #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:149 #: application/views/view_log/partial/log_ajax.php:187 -#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 msgid "Invalid (Ignore)" msgstr "Virheellinen (Ohita)" -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:301 msgid "QSL received" msgstr "" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:312 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:320 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:325 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6143,12 +6159,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:241 #: application/views/view_log/partial/log_ajax.php:162 #: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 msgid "Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:321 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:326 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6161,12 +6177,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:165 #: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 msgid "Direct" msgstr "" -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:322 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:327 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6179,12 +6195,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:171 #: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 msgid "Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:323 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:409 @@ -6194,187 +6210,195 @@ msgstr "" msgid "Manager" msgstr "Manageri" -#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:322 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:332 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:343 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:354 +msgid "Clublog sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:365 +msgid "Clublog received" +msgstr "" + +#: application/views/logbookadvanced/index.php:376 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:387 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:402 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:387 +#: application/views/logbookadvanced/index.php:414 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" -#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:417 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:418 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:419 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:420 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:422 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:423 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:424 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:425 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:426 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:427 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:428 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:429 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:430 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:431 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:432 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:433 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:438 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:416 +#: application/views/logbookadvanced/index.php:443 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:419 +#: application/views/logbookadvanced/index.php:446 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:422 +#: application/views/logbookadvanced/index.php:449 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:452 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:443 +#: application/views/logbookadvanced/index.php:470 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:446 +#: application/views/logbookadvanced/index.php:473 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:449 +#: application/views/logbookadvanced/index.php:476 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/index.php:485 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:460 +#: application/views/logbookadvanced/index.php:487 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:490 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:470 +#: application/views/logbookadvanced/index.php:497 #: application/views/qso/index.php:272 #: application/views/station_profile/edit.php:65 msgid "Location" msgstr "Sijainti" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/lotw_views/index.php:47 #: application/views/simplefle/index.php:19 #: application/views/simplefle/index.php:158 @@ -6384,18 +6408,18 @@ msgstr "" msgid "Options" msgstr "Valinnat" -#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:536 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:545 -#: application/views/logbookadvanced/useroptions.php:74 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -6423,37 +6447,37 @@ msgstr "" msgid "Column" msgstr "" -#: application/views/logbookadvanced/useroptions.php:144 +#: application/views/logbookadvanced/useroptions.php:148 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:145 +#: application/views/logbookadvanced/useroptions.php:149 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:150 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/stationsetup/exportmapoptions.php:23 msgctxt "Map Options" msgid "Path lines" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/useroptions.php:158 msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/logbookadvanced/useroptions.php:162 msgctxt "Map Options" msgid "CQ Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:166 msgctxt "Map Options" msgid "ITU Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:166 +#: application/views/logbookadvanced/useroptions.php:170 msgctxt "Map Options" msgid "Night Shadow" msgstr "" @@ -7125,7 +7149,7 @@ msgstr "Asema" #: application/views/qso/index.php:576 #: application/views/search/search_result_ajax.php:205 #: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:298 +#: src/QSLManager/QSO.php:300 msgid "Via" msgstr "" diff --git a/application/locale/fr_FR/LC_MESSAGES/messages.po b/application/locale/fr_FR/LC_MESSAGES/messages.po index be06f16b3..4dbc0624a 100644 --- a/application/locale/fr_FR/LC_MESSAGES/messages.po +++ b/application/locale/fr_FR/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-03 05:59+0000\n" +"POT-Creation-Date: 2024-07-03 06:10+0000\n" "PO-Revision-Date: 2024-06-26 11:15+0000\n" "Last-Translator: Aurélien Barrau \n" "Language-Team: French \n" @@ -180,8 +180,8 @@ msgstr "Trophées - %s" #: application/views/bands/index.php:49 #: application/views/contesting/index.php:170 #: application/views/interface_assets/header.php:192 -#: application/views/logbookadvanced/index.php:581 -#: application/views/logbookadvanced/useroptions.php:126 +#: application/views/logbookadvanced/index.php:611 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/qso/edit_ajax.php:360 application/views/qso/index.php:264 #: application/views/qso/index.php:508 application/views/user/edit.php:603 #: application/views/view_log/qso.php:351 @@ -195,10 +195,10 @@ msgstr "DOK" #: application/views/interface_assets/header.php:162 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:140 -#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/index.php:145 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/qslcarousel.php:35 -#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 #: application/views/lotw_views/index.php:40 #: application/views/qso/edit_ajax.php:218 application/views/qso/index.php:361 @@ -263,8 +263,8 @@ msgstr " et " #: application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:176 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:264 -#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/logbookadvanced/index.php:269 +#: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -289,8 +289,8 @@ msgstr "SOTA" #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:268 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/index.php:273 +#: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:340 @@ -309,9 +309,9 @@ msgstr "WWFF" #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:180 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:272 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/useroptions.php:102 +#: application/views/logbookadvanced/index.php:277 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:11 @@ -381,7 +381,7 @@ msgstr "Fred Fish Memorial Award (FFMA)" #: application/controllers/Awards.php:1125 #: application/views/interface_assets/header.php:166 -#: application/views/logbookadvanced/useroptions.php:134 +#: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "SIG" @@ -757,7 +757,7 @@ msgstr "Journal de trafic" #: application/views/awards/waja/index.php:53 #: application/views/awards/was/index.php:53 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -799,8 +799,8 @@ msgstr "QSL" #: application/views/user/edit.php:659 #: application/views/view_log/partial/log_ajax.php:230 #: application/views/view_log/partial/log_ajax.php:231 -#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:365 -#: src/QSLManager/QSO.php:377 +#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:367 +#: src/QSLManager/QSO.php:379 msgid "LoTW" msgstr "LoTW" @@ -833,7 +833,7 @@ msgstr "LoTW" #: application/views/user/edit.php:667 application/views/user/edit.php:731 #: application/views/view_log/partial/log_ajax.php:217 #: application/views/view_log/partial/log_ajax.php:218 -#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: src/QSLManager/QSO.php:439 src/QSLManager/QSO.php:452 msgid "eQSL" msgstr "eQSL" @@ -843,12 +843,14 @@ msgstr "eQSL" #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 #: application/views/awards/waja/index.php:69 +#: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/edit.php:325 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/qso.php:423 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:416 msgid "Clublog" msgstr "Clublog" @@ -880,8 +882,8 @@ msgstr "Clublog" #: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 #: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:177 -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:182 +#: application/views/logbookadvanced/index.php:542 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -927,7 +929,7 @@ msgstr "Mode" #: application/views/awards/wwff/index.php:36 #: application/views/contesting/index.php:111 #: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:545 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -954,7 +956,7 @@ msgstr "RST (E)" #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/index.php:548 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1006,10 +1008,10 @@ msgstr "Pays" #: application/views/bands/index.php:52 application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:178 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:157 -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:162 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1037,10 +1039,10 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:20 #: application/views/logbookadvanced/edit.php:61 -#: application/views/logbookadvanced/index.php:169 -#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/index.php:174 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:36 -#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1068,9 +1070,9 @@ msgstr "Etat" #: application/views/labels/index.php:121 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:178 #: application/views/logbookadvanced/qslcarousel.php:39 -#: application/views/logbookadvanced/useroptions.php:122 +#: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 #: application/views/qslcard/searchresult.php:19 #: application/views/qslcard/searchresult.php:35 @@ -1151,8 +1153,8 @@ msgstr "Distance" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:188 -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:193 +#: application/views/logbookadvanced/index.php:551 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1217,9 +1219,9 @@ msgstr "Frequence" #: application/controllers/Logbook.php:1288 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:276 -#: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/logbookadvanced/index.php:281 +#: application/views/logbookadvanced/index.php:596 +#: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1244,7 +1246,7 @@ msgstr "Opérateur" #: application/views/dxatlas/index.php:65 #: application/views/interface_assets/footer.php:630 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:149 +#: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 #: application/views/lotw_views/index.php:56 #: application/views/qso/components/previous_contacts.php:59 @@ -1534,7 +1536,7 @@ msgstr "" #: application/views/continents/index.php:49 #: application/views/interface_assets/header.php:328 #: application/views/interface_assets/header.php:335 -#: application/views/logbookadvanced/index.php:482 +#: application/views/logbookadvanced/index.php:509 #: application/views/oqrs/index.php:23 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1712,7 +1714,7 @@ msgstr "" #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 -#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:511 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 @@ -1756,7 +1758,7 @@ msgstr "Etes-vous certain de supprimer le profil de station '%s' ? Cela supprime #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 -#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:512 #: application/views/lotw_views/index.php:118 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 @@ -2057,21 +2059,23 @@ msgstr "" #: application/views/gridmap/index.php:83 application/views/kml/index.php:21 #: application/views/kml/index.php:33 application/views/kml/index.php:49 #: application/views/kml/index.php:67 application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:179 -#: application/views/logbookadvanced/index.php:190 -#: application/views/logbookadvanced/index.php:201 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:219 -#: application/views/logbookadvanced/index.php:244 -#: application/views/logbookadvanced/index.php:255 -#: application/views/logbookadvanced/index.php:287 -#: application/views/logbookadvanced/index.php:298 -#: application/views/logbookadvanced/index.php:309 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:329 -#: application/views/logbookadvanced/index.php:340 -#: application/views/logbookadvanced/index.php:351 -#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:184 +#: application/views/logbookadvanced/index.php:195 +#: application/views/logbookadvanced/index.php:206 +#: application/views/logbookadvanced/index.php:215 +#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:249 +#: application/views/logbookadvanced/index.php:260 +#: application/views/logbookadvanced/index.php:292 +#: application/views/logbookadvanced/index.php:303 +#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:345 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:389 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2146,7 +2150,7 @@ msgstr "Afficher" #: application/views/distances/index.php:34 #: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:204 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2157,7 +2161,7 @@ msgstr "" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:213 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2267,7 +2271,7 @@ msgstr "" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:39 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:119 -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/lotw_views/index.php:39 #: application/views/oqrs/qsolist.php:6 @@ -2781,7 +2785,7 @@ msgid "Status" msgstr "Statut" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3024,7 +3028,7 @@ msgstr "Carte QSL" #: application/views/awards/waja/index.php:113 #: application/views/awards/was/index.php:109 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:521 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 @@ -3057,7 +3061,7 @@ msgstr "" #: application/views/awards/wab/index.php:108 #: application/views/awards/waja/index.php:129 #: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:487 +#: application/views/logbookadvanced/index.php:514 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Carte" @@ -3065,10 +3069,10 @@ msgstr "Carte" #: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:242 -#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/index.php:247 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/useroptions.php:90 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:271 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 @@ -3379,7 +3383,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:37 application/views/labels/index.php:71 -#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/index.php:557 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3422,9 +3426,9 @@ msgstr "" #: application/views/awards/itu/index.php:148 #: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:253 -#: application/views/logbookadvanced/index.php:557 -#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/logbookadvanced/index.php:258 +#: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:143 msgid "ITU Zone" @@ -3545,7 +3549,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/index.php:533 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4012,8 +4016,8 @@ msgstr "Aucune activation à venir trouvée. Veuillez revenir plus tard." #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:569 -#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/logbookadvanced/index.php:599 +#: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 #: application/views/view_log/qso.php:199 msgid "Comment" @@ -4047,7 +4051,7 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 msgid "Contest" msgstr "" @@ -4459,7 +4463,7 @@ msgstr "Mode Propagation" #: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4467,7 +4471,7 @@ msgstr "" #: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4475,7 +4479,7 @@ msgstr "" #: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:223 +#: application/views/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4483,7 +4487,7 @@ msgstr "" #: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4491,7 +4495,7 @@ msgstr "" #: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:225 +#: application/views/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4499,7 +4503,7 @@ msgstr "" #: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:226 +#: application/views/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4507,7 +4511,7 @@ msgstr "" #: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:227 +#: application/views/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4515,7 +4519,7 @@ msgstr "" #: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:228 +#: application/views/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4523,7 +4527,7 @@ msgstr "" #: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:229 +#: application/views/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4531,7 +4535,7 @@ msgstr "" #: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:230 +#: application/views/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4539,7 +4543,7 @@ msgstr "" #: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:231 +#: application/views/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4547,7 +4551,7 @@ msgstr "" #: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:232 +#: application/views/logbookadvanced/index.php:237 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4555,7 +4559,7 @@ msgstr "" #: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:233 +#: application/views/logbookadvanced/index.php:238 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4563,7 +4567,7 @@ msgstr "" #: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:234 +#: application/views/logbookadvanced/index.php:239 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4571,7 +4575,7 @@ msgstr "" #: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:235 +#: application/views/logbookadvanced/index.php:240 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4579,7 +4583,7 @@ msgstr "" #: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:236 +#: application/views/logbookadvanced/index.php:241 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4587,7 +4591,7 @@ msgstr "" #: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:242 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4595,7 +4599,7 @@ msgstr "" #: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:238 +#: application/views/logbookadvanced/index.php:243 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -4700,8 +4704,9 @@ msgstr "Demandés" #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:266 -#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:402 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 +#: src/QSLManager/QSO.php:367 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:439 msgid "Sent" msgstr "Envoyées" @@ -4729,18 +4734,21 @@ msgstr "Envoyées" #: application/views/view_log/partial/log_ajax.php:246 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:311 -#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:415 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 +#: src/QSLManager/QSO.php:379 src/QSLManager/QSO.php:416 +#: src/QSLManager/QSO.php:452 msgid "Received" msgstr "Reçues" #: application/views/dashboard/index.php:279 -#: application/views/logbookadvanced/index.php:290 -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:332 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 +#: application/views/logbookadvanced/index.php:295 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -4754,8 +4762,8 @@ msgstr "Reçues" #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:146 #: application/views/view_log/partial/log_ajax.php:184 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:272 -#: src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 +#: src/QSLManager/QSO.php:319 msgid "Requested" msgstr "Demandées" @@ -5335,9 +5343,9 @@ msgstr "" #: application/views/gridmap/index.php:38 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:217 -#: application/views/logbookadvanced/index.php:572 -#: application/views/logbookadvanced/useroptions.php:114 +#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:602 +#: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "" @@ -5645,7 +5653,7 @@ msgid "Log" msgstr "" #: application/views/interface_assets/header.php:334 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:440 #: application/views/oqrs/index.php:22 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" @@ -5958,8 +5966,8 @@ msgid "Start printing at?" msgstr "Commencer à imprimer à ?" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:371 -#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:560 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" @@ -5972,42 +5980,44 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:128 +#: application/views/logbookadvanced/index.php:133 msgid "From" msgstr "Date, du" -#: application/views/logbookadvanced/index.php:132 +#: application/views/logbookadvanced/index.php:137 msgid "To" msgstr "au" -#: application/views/logbookadvanced/index.php:136 -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:141 +#: application/views/logbookadvanced/index.php:539 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:143 +#: application/views/logbookadvanced/index.php:148 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:220 +#: application/views/logbookadvanced/index.php:225 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:285 +#: application/views/logbookadvanced/index.php:290 msgid "QSL sent" msgstr "QSL Envoyée" -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:330 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:293 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:405 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6037,13 +6047,15 @@ msgstr "QSL Envoyée" msgid "Yes" msgstr "Oui" -#: application/views/logbookadvanced/index.php:289 -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:305 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:406 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:392 #: application/views/qso/edit_ajax.php:425 @@ -6074,9 +6086,10 @@ msgstr "Oui" msgid "No" msgstr "Non" -#: application/views/logbookadvanced/index.php:291 -#: application/views/logbookadvanced/index.php:333 -#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:382 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6087,16 +6100,18 @@ msgstr "Non" #: application/views/search/search_result_ajax.php:225 #: application/views/view_log/partial/log_ajax.php:143 #: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 msgid "Queued" msgstr "En attente" -#: application/views/logbookadvanced/index.php:292 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:334 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:366 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:393 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/qslprint/qsolist.php:67 #: application/views/qslprint/qsolist.php:109 @@ -6110,26 +6125,27 @@ msgstr "En attente" #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:149 #: application/views/view_log/partial/log_ajax.php:187 -#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 msgid "Invalid (Ignore)" msgstr "Invalide (Ignoré)" -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:301 msgid "QSL received" msgstr "QSL Reçue" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 msgid "Verified" msgstr "Vérifiée" -#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:312 msgid "QSL send. method" msgstr "QSL Méthode (envoi)" -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:320 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:325 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6144,12 +6160,12 @@ msgstr "QSL Méthode (envoi)" #: application/views/search/search_result_ajax.php:241 #: application/views/view_log/partial/log_ajax.php:162 #: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 msgid "Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:321 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:326 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6162,12 +6178,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:165 #: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 msgid "Direct" msgstr "" -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:322 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:327 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6180,12 +6196,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:171 #: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 msgid "Electronic" msgstr "Numérique" -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:323 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:409 @@ -6195,187 +6211,195 @@ msgstr "Numérique" msgid "Manager" msgstr "" -#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:322 msgid "QSL recv. method" msgstr "QSL Méthode (reçue)" -#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:332 msgid "LoTW sent" msgstr "LoTW Envoyé" -#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:343 msgid "LoTW received" msgstr "LoTW Reçu" -#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:354 +msgid "Clublog sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:365 +msgid "Clublog received" +msgstr "" + +#: application/views/logbookadvanced/index.php:376 msgid "eQSL sent" msgstr "eQSL Envoyée" -#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:387 msgid "eQSL received" msgstr "eQSL Reçue" -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:402 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:387 +#: application/views/logbookadvanced/index.php:414 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "ATTENTION ! Etes vous certain de vouloir supprimer les QSO sélectionnés ?" -#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:417 msgid "With selected: " msgstr "Action pour lignes sélectionnées : " -#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:418 msgid "Update from Callbook" msgstr "Mise à jour depuis Callbook" -#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:419 msgid "Queue Bureau" msgstr "En attente (Bureau)" -#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:420 msgid "Queue Direct" msgstr "En attente (Direct)" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "Queue Electronic" msgstr "En attente (Electronic)" -#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:422 msgid "Sent (Bureau)" msgstr "Envoyée (Bureau)" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:423 msgid "Sent (Direct)" msgstr "Envoyée (Direct)" -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:424 msgid "Sent (Electronic)" msgstr "Envoyée (Electronic)" -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:425 msgid "Not Sent" msgstr "Non envoyée" -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:426 msgid "QSL Not Required" msgstr "QSL Non requis" -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:427 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:428 msgid "Received (Bureau)" msgstr "Reçue (Bureau)" -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:429 msgid "Received (Direct)" msgstr "Reçue (Direct)" -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:430 msgid "Received (Electronic)" msgstr "Reçue (Numérique)" -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:431 msgid "Create ADIF" msgstr "Exporter en ADIF" -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:432 msgid "Print Label" msgstr "Imprimer Etiquette" -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:433 msgid "QSL Slideshow" msgstr "Diaporama QSL" -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:438 msgid "Quicksearch with selected: " msgstr "Recherche rapide (avec infos de la ligne sélectionnée) : " -#: application/views/logbookadvanced/index.php:416 +#: application/views/logbookadvanced/index.php:443 msgid "Search DXCC" msgstr "Même DXCC" -#: application/views/logbookadvanced/index.php:419 +#: application/views/logbookadvanced/index.php:446 msgid "Search State" msgstr "Même Etat" -#: application/views/logbookadvanced/index.php:422 +#: application/views/logbookadvanced/index.php:449 msgid "Search Gridsquare" msgstr "Même Locator" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:452 msgid "Search CQ Zone" msgstr "Même Zone CQ" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Search Mode" msgstr "Même Mode" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Search Band" msgstr "Même Band" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Search IOTA" msgstr "Même IOTA" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "Search SOTA" msgstr "Même SOTA" -#: application/views/logbookadvanced/index.php:443 +#: application/views/logbookadvanced/index.php:470 msgid "Search POTA" msgstr "Même POTA" -#: application/views/logbookadvanced/index.php:446 +#: application/views/logbookadvanced/index.php:473 msgid "Search WWFF" msgstr "Même WWFF" -#: application/views/logbookadvanced/index.php:449 +#: application/views/logbookadvanced/index.php:476 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Quickfilters" msgstr "Filtres rapides" -#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/index.php:485 msgid "QSL Filters" msgstr "Filtres QSL" -#: application/views/logbookadvanced/index.php:460 +#: application/views/logbookadvanced/index.php:487 #: application/views/mode/index.php:68 msgid "Filters" msgstr "Filtres" -#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:490 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "Nb lignes" -#: application/views/logbookadvanced/index.php:470 +#: application/views/logbookadvanced/index.php:497 #: application/views/qso/index.php:272 #: application/views/station_profile/edit.php:65 msgid "Location" msgstr "Lieu" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Dupes" msgstr "Doublon(s)" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/lotw_views/index.php:47 #: application/views/simplefle/index.php:19 #: application/views/simplefle/index.php:158 @@ -6385,18 +6409,18 @@ msgstr "" msgid "Options" msgstr "" -#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:536 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:545 -#: application/views/logbookadvanced/useroptions.php:74 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "Ma Refs" @@ -6424,37 +6448,37 @@ msgstr "Ajouter Via" msgid "Column" msgstr "Colonne" -#: application/views/logbookadvanced/useroptions.php:144 +#: application/views/logbookadvanced/useroptions.php:148 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:145 +#: application/views/logbookadvanced/useroptions.php:149 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:150 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/stationsetup/exportmapoptions.php:23 msgctxt "Map Options" msgid "Path lines" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/useroptions.php:158 msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/logbookadvanced/useroptions.php:162 msgctxt "Map Options" msgid "CQ Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:166 msgctxt "Map Options" msgid "ITU Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:166 +#: application/views/logbookadvanced/useroptions.php:170 msgctxt "Map Options" msgid "Night Shadow" msgstr "" @@ -7126,7 +7150,7 @@ msgstr "" #: application/views/qso/index.php:576 #: application/views/search/search_result_ajax.php:205 #: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:298 +#: src/QSLManager/QSO.php:300 msgid "Via" msgstr "" diff --git a/application/locale/it_IT/LC_MESSAGES/messages.po b/application/locale/it_IT/LC_MESSAGES/messages.po index 0a243d735..d7ecfc081 100644 --- a/application/locale/it_IT/LC_MESSAGES/messages.po +++ b/application/locale/it_IT/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-03 05:59+0000\n" +"POT-Creation-Date: 2024-07-03 06:10+0000\n" "PO-Revision-Date: 2024-06-05 12:34\n" "Last-Translator: \n" "Language-Team: Italian\n" @@ -178,8 +178,8 @@ msgstr "" #: application/views/bands/index.php:49 #: application/views/contesting/index.php:170 #: application/views/interface_assets/header.php:192 -#: application/views/logbookadvanced/index.php:581 -#: application/views/logbookadvanced/useroptions.php:126 +#: application/views/logbookadvanced/index.php:611 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/qso/edit_ajax.php:360 application/views/qso/index.php:264 #: application/views/qso/index.php:508 application/views/user/edit.php:603 #: application/views/view_log/qso.php:351 @@ -193,10 +193,10 @@ msgstr "" #: application/views/interface_assets/header.php:162 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:140 -#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/index.php:145 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/qslcarousel.php:35 -#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 #: application/views/lotw_views/index.php:40 #: application/views/qso/edit_ajax.php:218 application/views/qso/index.php:361 @@ -261,8 +261,8 @@ msgstr "" #: application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:176 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:264 -#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/logbookadvanced/index.php:269 +#: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -287,8 +287,8 @@ msgstr "" #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:268 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/index.php:273 +#: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:340 @@ -307,9 +307,9 @@ msgstr "" #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:180 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:272 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/useroptions.php:102 +#: application/views/logbookadvanced/index.php:277 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:11 @@ -379,7 +379,7 @@ msgstr "" #: application/controllers/Awards.php:1125 #: application/views/interface_assets/header.php:166 -#: application/views/logbookadvanced/useroptions.php:134 +#: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "" @@ -755,7 +755,7 @@ msgstr "" #: application/views/awards/waja/index.php:53 #: application/views/awards/was/index.php:53 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -797,8 +797,8 @@ msgstr "" #: application/views/user/edit.php:659 #: application/views/view_log/partial/log_ajax.php:230 #: application/views/view_log/partial/log_ajax.php:231 -#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:365 -#: src/QSLManager/QSO.php:377 +#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:367 +#: src/QSLManager/QSO.php:379 msgid "LoTW" msgstr "" @@ -831,7 +831,7 @@ msgstr "" #: application/views/user/edit.php:667 application/views/user/edit.php:731 #: application/views/view_log/partial/log_ajax.php:217 #: application/views/view_log/partial/log_ajax.php:218 -#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: src/QSLManager/QSO.php:439 src/QSLManager/QSO.php:452 msgid "eQSL" msgstr "" @@ -841,12 +841,14 @@ msgstr "" #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 #: application/views/awards/waja/index.php:69 +#: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/edit.php:325 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/qso.php:423 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:416 msgid "Clublog" msgstr "" @@ -878,8 +880,8 @@ msgstr "" #: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 #: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:177 -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:182 +#: application/views/logbookadvanced/index.php:542 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -925,7 +927,7 @@ msgstr "Modo" #: application/views/awards/wwff/index.php:36 #: application/views/contesting/index.php:111 #: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:545 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -952,7 +954,7 @@ msgstr "RST (I)" #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/index.php:548 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1004,10 +1006,10 @@ msgstr "Paese" #: application/views/bands/index.php:52 application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:178 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:157 -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:162 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1035,10 +1037,10 @@ msgstr "" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:20 #: application/views/logbookadvanced/edit.php:61 -#: application/views/logbookadvanced/index.php:169 -#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/index.php:174 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:36 -#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1066,9 +1068,9 @@ msgstr "Stato" #: application/views/labels/index.php:121 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:178 #: application/views/logbookadvanced/qslcarousel.php:39 -#: application/views/logbookadvanced/useroptions.php:122 +#: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 #: application/views/qslcard/searchresult.php:19 #: application/views/qslcard/searchresult.php:35 @@ -1149,8 +1151,8 @@ msgstr "" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:188 -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:193 +#: application/views/logbookadvanced/index.php:551 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1215,9 +1217,9 @@ msgstr "Frequenza" #: application/controllers/Logbook.php:1288 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:276 -#: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/logbookadvanced/index.php:281 +#: application/views/logbookadvanced/index.php:596 +#: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1242,7 +1244,7 @@ msgstr "Operatore" #: application/views/dxatlas/index.php:65 #: application/views/interface_assets/footer.php:630 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:149 +#: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 #: application/views/lotw_views/index.php:56 #: application/views/qso/components/previous_contacts.php:59 @@ -1532,7 +1534,7 @@ msgstr "" #: application/views/continents/index.php:49 #: application/views/interface_assets/header.php:328 #: application/views/interface_assets/header.php:335 -#: application/views/logbookadvanced/index.php:482 +#: application/views/logbookadvanced/index.php:509 #: application/views/oqrs/index.php:23 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1710,7 +1712,7 @@ msgstr "" #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 -#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:511 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 @@ -1754,7 +1756,7 @@ msgstr "" #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 -#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:512 #: application/views/lotw_views/index.php:118 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 @@ -2055,21 +2057,23 @@ msgstr "" #: application/views/gridmap/index.php:83 application/views/kml/index.php:21 #: application/views/kml/index.php:33 application/views/kml/index.php:49 #: application/views/kml/index.php:67 application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:179 -#: application/views/logbookadvanced/index.php:190 -#: application/views/logbookadvanced/index.php:201 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:219 -#: application/views/logbookadvanced/index.php:244 -#: application/views/logbookadvanced/index.php:255 -#: application/views/logbookadvanced/index.php:287 -#: application/views/logbookadvanced/index.php:298 -#: application/views/logbookadvanced/index.php:309 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:329 -#: application/views/logbookadvanced/index.php:340 -#: application/views/logbookadvanced/index.php:351 -#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:184 +#: application/views/logbookadvanced/index.php:195 +#: application/views/logbookadvanced/index.php:206 +#: application/views/logbookadvanced/index.php:215 +#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:249 +#: application/views/logbookadvanced/index.php:260 +#: application/views/logbookadvanced/index.php:292 +#: application/views/logbookadvanced/index.php:303 +#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:345 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:389 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2144,7 +2148,7 @@ msgstr "" #: application/views/distances/index.php:34 #: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:204 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2155,7 +2159,7 @@ msgstr "" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:213 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2265,7 +2269,7 @@ msgstr "" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:39 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:119 -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/lotw_views/index.php:39 #: application/views/oqrs/qsolist.php:6 @@ -2779,7 +2783,7 @@ msgid "Status" msgstr "Stato" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3022,7 +3026,7 @@ msgstr "Cartolina QSL" #: application/views/awards/waja/index.php:113 #: application/views/awards/was/index.php:109 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:521 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 @@ -3055,7 +3059,7 @@ msgstr "" #: application/views/awards/wab/index.php:108 #: application/views/awards/waja/index.php:129 #: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:487 +#: application/views/logbookadvanced/index.php:514 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "" @@ -3063,10 +3067,10 @@ msgstr "" #: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:242 -#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/index.php:247 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/useroptions.php:90 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:271 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 @@ -3377,7 +3381,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:37 application/views/labels/index.php:71 -#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/index.php:557 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3420,9 +3424,9 @@ msgstr "" #: application/views/awards/itu/index.php:148 #: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:253 -#: application/views/logbookadvanced/index.php:557 -#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/logbookadvanced/index.php:258 +#: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:143 msgid "ITU Zone" @@ -3543,7 +3547,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/index.php:533 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4010,8 +4014,8 @@ msgstr "" #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:569 -#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/logbookadvanced/index.php:599 +#: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 #: application/views/view_log/qso.php:199 msgid "Comment" @@ -4045,7 +4049,7 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 msgid "Contest" msgstr "" @@ -4457,7 +4461,7 @@ msgstr "Modo di Propagazione" #: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4465,7 +4469,7 @@ msgstr "" #: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4473,7 +4477,7 @@ msgstr "" #: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:223 +#: application/views/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4481,7 +4485,7 @@ msgstr "" #: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4489,7 +4493,7 @@ msgstr "" #: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:225 +#: application/views/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4497,7 +4501,7 @@ msgstr "" #: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:226 +#: application/views/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4505,7 +4509,7 @@ msgstr "" #: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:227 +#: application/views/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4513,7 +4517,7 @@ msgstr "" #: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:228 +#: application/views/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4521,7 +4525,7 @@ msgstr "" #: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:229 +#: application/views/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4529,7 +4533,7 @@ msgstr "" #: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:230 +#: application/views/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4537,7 +4541,7 @@ msgstr "" #: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:231 +#: application/views/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4545,7 +4549,7 @@ msgstr "" #: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:232 +#: application/views/logbookadvanced/index.php:237 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4553,7 +4557,7 @@ msgstr "" #: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:233 +#: application/views/logbookadvanced/index.php:238 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4561,7 +4565,7 @@ msgstr "" #: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:234 +#: application/views/logbookadvanced/index.php:239 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4569,7 +4573,7 @@ msgstr "" #: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:235 +#: application/views/logbookadvanced/index.php:240 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4577,7 +4581,7 @@ msgstr "" #: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:236 +#: application/views/logbookadvanced/index.php:241 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4585,7 +4589,7 @@ msgstr "" #: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:242 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4593,7 +4597,7 @@ msgstr "" #: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:238 +#: application/views/logbookadvanced/index.php:243 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -4698,8 +4702,9 @@ msgstr "Necessario" #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:266 -#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:402 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 +#: src/QSLManager/QSO.php:367 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:439 msgid "Sent" msgstr "Inviata" @@ -4727,18 +4732,21 @@ msgstr "Inviata" #: application/views/view_log/partial/log_ajax.php:246 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:311 -#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:415 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 +#: src/QSLManager/QSO.php:379 src/QSLManager/QSO.php:416 +#: src/QSLManager/QSO.php:452 msgid "Received" msgstr "Ricevuta" #: application/views/dashboard/index.php:279 -#: application/views/logbookadvanced/index.php:290 -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:332 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 +#: application/views/logbookadvanced/index.php:295 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -4752,8 +4760,8 @@ msgstr "Ricevuta" #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:146 #: application/views/view_log/partial/log_ajax.php:184 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:272 -#: src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 +#: src/QSLManager/QSO.php:319 msgid "Requested" msgstr "Richiesta" @@ -5333,9 +5341,9 @@ msgstr "" #: application/views/gridmap/index.php:38 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:217 -#: application/views/logbookadvanced/index.php:572 -#: application/views/logbookadvanced/useroptions.php:114 +#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:602 +#: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "" @@ -5643,7 +5651,7 @@ msgid "Log" msgstr "" #: application/views/interface_assets/header.php:334 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:440 #: application/views/oqrs/index.php:22 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" @@ -5956,8 +5964,8 @@ msgid "Start printing at?" msgstr "" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:371 -#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:560 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" @@ -5970,42 +5978,44 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:128 +#: application/views/logbookadvanced/index.php:133 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:132 +#: application/views/logbookadvanced/index.php:137 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:136 -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:141 +#: application/views/logbookadvanced/index.php:539 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:143 +#: application/views/logbookadvanced/index.php:148 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:220 +#: application/views/logbookadvanced/index.php:225 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:285 +#: application/views/logbookadvanced/index.php:290 msgid "QSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:330 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:293 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:405 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6035,13 +6045,15 @@ msgstr "" msgid "Yes" msgstr "Si" -#: application/views/logbookadvanced/index.php:289 -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:305 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:406 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:392 #: application/views/qso/edit_ajax.php:425 @@ -6072,9 +6084,10 @@ msgstr "Si" msgid "No" msgstr "" -#: application/views/logbookadvanced/index.php:291 -#: application/views/logbookadvanced/index.php:333 -#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:382 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6085,16 +6098,18 @@ msgstr "" #: application/views/search/search_result_ajax.php:225 #: application/views/view_log/partial/log_ajax.php:143 #: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 msgid "Queued" msgstr "In coda" -#: application/views/logbookadvanced/index.php:292 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:334 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:366 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:393 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/qslprint/qsolist.php:67 #: application/views/qslprint/qsolist.php:109 @@ -6108,26 +6123,27 @@ msgstr "In coda" #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:149 #: application/views/view_log/partial/log_ajax.php:187 -#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 msgid "Invalid (Ignore)" msgstr "Invalido (Ignora)" -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:301 msgid "QSL received" msgstr "" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:312 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:320 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:325 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6142,12 +6158,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:241 #: application/views/view_log/partial/log_ajax.php:162 #: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 msgid "Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:321 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:326 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6160,12 +6176,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:165 #: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 msgid "Direct" msgstr "Diretta" -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:322 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:327 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6178,12 +6194,12 @@ msgstr "Diretta" #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:171 #: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 msgid "Electronic" msgstr "Elettronica" -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:323 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:409 @@ -6193,187 +6209,195 @@ msgstr "Elettronica" msgid "Manager" msgstr "" -#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:322 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:332 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:343 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:354 +msgid "Clublog sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:365 +msgid "Clublog received" +msgstr "" + +#: application/views/logbookadvanced/index.php:376 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:387 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:402 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:387 +#: application/views/logbookadvanced/index.php:414 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" -#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:417 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:418 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:419 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:420 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:422 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:423 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:424 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:425 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:426 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:427 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:428 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:429 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:430 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:431 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:432 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:433 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:438 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:416 +#: application/views/logbookadvanced/index.php:443 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:419 +#: application/views/logbookadvanced/index.php:446 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:422 +#: application/views/logbookadvanced/index.php:449 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:452 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:443 +#: application/views/logbookadvanced/index.php:470 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:446 +#: application/views/logbookadvanced/index.php:473 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:449 +#: application/views/logbookadvanced/index.php:476 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/index.php:485 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:460 +#: application/views/logbookadvanced/index.php:487 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:490 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:470 +#: application/views/logbookadvanced/index.php:497 #: application/views/qso/index.php:272 #: application/views/station_profile/edit.php:65 msgid "Location" msgstr "Luogo" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/lotw_views/index.php:47 #: application/views/simplefle/index.php:19 #: application/views/simplefle/index.php:158 @@ -6383,18 +6407,18 @@ msgstr "" msgid "Options" msgstr "" -#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:536 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:545 -#: application/views/logbookadvanced/useroptions.php:74 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -6422,37 +6446,37 @@ msgstr "" msgid "Column" msgstr "" -#: application/views/logbookadvanced/useroptions.php:144 +#: application/views/logbookadvanced/useroptions.php:148 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:145 +#: application/views/logbookadvanced/useroptions.php:149 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:150 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/stationsetup/exportmapoptions.php:23 msgctxt "Map Options" msgid "Path lines" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/useroptions.php:158 msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/logbookadvanced/useroptions.php:162 msgctxt "Map Options" msgid "CQ Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:166 msgctxt "Map Options" msgid "ITU Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:166 +#: application/views/logbookadvanced/useroptions.php:170 msgctxt "Map Options" msgid "Night Shadow" msgstr "" @@ -7124,7 +7148,7 @@ msgstr "Stazione" #: application/views/qso/index.php:576 #: application/views/search/search_result_ajax.php:205 #: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:298 +#: src/QSLManager/QSO.php:300 msgid "Via" msgstr "" diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.po b/application/locale/nl_NL/LC_MESSAGES/messages.po index 2abf56eaa..1f5fc1da3 100644 --- a/application/locale/nl_NL/LC_MESSAGES/messages.po +++ b/application/locale/nl_NL/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-03 05:59+0000\n" +"POT-Creation-Date: 2024-07-03 06:10+0000\n" "PO-Revision-Date: 2024-06-05 15:15+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -179,8 +179,8 @@ msgstr "" #: application/views/bands/index.php:49 #: application/views/contesting/index.php:170 #: application/views/interface_assets/header.php:192 -#: application/views/logbookadvanced/index.php:581 -#: application/views/logbookadvanced/useroptions.php:126 +#: application/views/logbookadvanced/index.php:611 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/qso/edit_ajax.php:360 application/views/qso/index.php:264 #: application/views/qso/index.php:508 application/views/user/edit.php:603 #: application/views/view_log/qso.php:351 @@ -194,10 +194,10 @@ msgstr "" #: application/views/interface_assets/header.php:162 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:140 -#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/index.php:145 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/qslcarousel.php:35 -#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 #: application/views/lotw_views/index.php:40 #: application/views/qso/edit_ajax.php:218 application/views/qso/index.php:361 @@ -262,8 +262,8 @@ msgstr "" #: application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:176 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:264 -#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/logbookadvanced/index.php:269 +#: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -288,8 +288,8 @@ msgstr "" #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:268 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/index.php:273 +#: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:340 @@ -308,9 +308,9 @@ msgstr "" #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:180 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:272 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/useroptions.php:102 +#: application/views/logbookadvanced/index.php:277 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:11 @@ -380,7 +380,7 @@ msgstr "" #: application/controllers/Awards.php:1125 #: application/views/interface_assets/header.php:166 -#: application/views/logbookadvanced/useroptions.php:134 +#: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "" @@ -756,7 +756,7 @@ msgstr "Logboek" #: application/views/awards/waja/index.php:53 #: application/views/awards/was/index.php:53 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -798,8 +798,8 @@ msgstr "" #: application/views/user/edit.php:659 #: application/views/view_log/partial/log_ajax.php:230 #: application/views/view_log/partial/log_ajax.php:231 -#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:365 -#: src/QSLManager/QSO.php:377 +#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:367 +#: src/QSLManager/QSO.php:379 msgid "LoTW" msgstr "" @@ -832,7 +832,7 @@ msgstr "" #: application/views/user/edit.php:667 application/views/user/edit.php:731 #: application/views/view_log/partial/log_ajax.php:217 #: application/views/view_log/partial/log_ajax.php:218 -#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: src/QSLManager/QSO.php:439 src/QSLManager/QSO.php:452 msgid "eQSL" msgstr "" @@ -842,12 +842,14 @@ msgstr "" #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 #: application/views/awards/waja/index.php:69 +#: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/edit.php:325 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/qso.php:423 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:416 msgid "Clublog" msgstr "" @@ -879,8 +881,8 @@ msgstr "" #: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 #: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:177 -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:182 +#: application/views/logbookadvanced/index.php:542 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -926,7 +928,7 @@ msgstr "" #: application/views/awards/wwff/index.php:36 #: application/views/contesting/index.php:111 #: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:545 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -953,7 +955,7 @@ msgstr "" #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/index.php:548 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1005,10 +1007,10 @@ msgstr "Land" #: application/views/bands/index.php:52 application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:178 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:157 -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:162 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1036,10 +1038,10 @@ msgstr "" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:20 #: application/views/logbookadvanced/edit.php:61 -#: application/views/logbookadvanced/index.php:169 -#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/index.php:174 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:36 -#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1067,9 +1069,9 @@ msgstr "" #: application/views/labels/index.php:121 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:178 #: application/views/logbookadvanced/qslcarousel.php:39 -#: application/views/logbookadvanced/useroptions.php:122 +#: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 #: application/views/qslcard/searchresult.php:19 #: application/views/qslcard/searchresult.php:35 @@ -1150,8 +1152,8 @@ msgstr "" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:188 -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:193 +#: application/views/logbookadvanced/index.php:551 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1216,9 +1218,9 @@ msgstr "Frequentie" #: application/controllers/Logbook.php:1288 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:276 -#: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/logbookadvanced/index.php:281 +#: application/views/logbookadvanced/index.php:596 +#: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1243,7 +1245,7 @@ msgstr "" #: application/views/dxatlas/index.php:65 #: application/views/interface_assets/footer.php:630 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:149 +#: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 #: application/views/lotw_views/index.php:56 #: application/views/qso/components/previous_contacts.php:59 @@ -1533,7 +1535,7 @@ msgstr "" #: application/views/continents/index.php:49 #: application/views/interface_assets/header.php:328 #: application/views/interface_assets/header.php:335 -#: application/views/logbookadvanced/index.php:482 +#: application/views/logbookadvanced/index.php:509 #: application/views/oqrs/index.php:23 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1711,7 +1713,7 @@ msgstr "" #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 -#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:511 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 @@ -1755,7 +1757,7 @@ msgstr "" #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 -#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:512 #: application/views/lotw_views/index.php:118 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 @@ -2056,21 +2058,23 @@ msgstr "" #: application/views/gridmap/index.php:83 application/views/kml/index.php:21 #: application/views/kml/index.php:33 application/views/kml/index.php:49 #: application/views/kml/index.php:67 application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:179 -#: application/views/logbookadvanced/index.php:190 -#: application/views/logbookadvanced/index.php:201 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:219 -#: application/views/logbookadvanced/index.php:244 -#: application/views/logbookadvanced/index.php:255 -#: application/views/logbookadvanced/index.php:287 -#: application/views/logbookadvanced/index.php:298 -#: application/views/logbookadvanced/index.php:309 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:329 -#: application/views/logbookadvanced/index.php:340 -#: application/views/logbookadvanced/index.php:351 -#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:184 +#: application/views/logbookadvanced/index.php:195 +#: application/views/logbookadvanced/index.php:206 +#: application/views/logbookadvanced/index.php:215 +#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:249 +#: application/views/logbookadvanced/index.php:260 +#: application/views/logbookadvanced/index.php:292 +#: application/views/logbookadvanced/index.php:303 +#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:345 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:389 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2145,7 +2149,7 @@ msgstr "" #: application/views/distances/index.php:34 #: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:204 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2156,7 +2160,7 @@ msgstr "Satelliet" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:213 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2266,7 +2270,7 @@ msgstr "" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:39 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:119 -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/lotw_views/index.php:39 #: application/views/oqrs/qsolist.php:6 @@ -2780,7 +2784,7 @@ msgid "Status" msgstr "" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3023,7 +3027,7 @@ msgstr "" #: application/views/awards/waja/index.php:113 #: application/views/awards/was/index.php:109 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:521 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 @@ -3056,7 +3060,7 @@ msgstr "" #: application/views/awards/wab/index.php:108 #: application/views/awards/waja/index.php:129 #: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:487 +#: application/views/logbookadvanced/index.php:514 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "" @@ -3064,10 +3068,10 @@ msgstr "" #: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:242 -#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/index.php:247 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/useroptions.php:90 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:271 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 @@ -3378,7 +3382,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:37 application/views/labels/index.php:71 -#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/index.php:557 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3421,9 +3425,9 @@ msgstr "" #: application/views/awards/itu/index.php:148 #: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:253 -#: application/views/logbookadvanced/index.php:557 -#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/logbookadvanced/index.php:258 +#: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:143 msgid "ITU Zone" @@ -3544,7 +3548,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/index.php:533 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4011,8 +4015,8 @@ msgstr "" #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:569 -#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/logbookadvanced/index.php:599 +#: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 #: application/views/view_log/qso.php:199 msgid "Comment" @@ -4046,7 +4050,7 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 msgid "Contest" msgstr "" @@ -4458,7 +4462,7 @@ msgstr "Propagattie Mode" #: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4466,7 +4470,7 @@ msgstr "" #: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4474,7 +4478,7 @@ msgstr "" #: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:223 +#: application/views/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4482,7 +4486,7 @@ msgstr "" #: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4490,7 +4494,7 @@ msgstr "" #: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:225 +#: application/views/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4498,7 +4502,7 @@ msgstr "" #: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:226 +#: application/views/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4506,7 +4510,7 @@ msgstr "" #: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:227 +#: application/views/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4514,7 +4518,7 @@ msgstr "" #: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:228 +#: application/views/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4522,7 +4526,7 @@ msgstr "" #: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:229 +#: application/views/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4530,7 +4534,7 @@ msgstr "" #: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:230 +#: application/views/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4538,7 +4542,7 @@ msgstr "" #: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:231 +#: application/views/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4546,7 +4550,7 @@ msgstr "" #: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:232 +#: application/views/logbookadvanced/index.php:237 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4554,7 +4558,7 @@ msgstr "" #: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:233 +#: application/views/logbookadvanced/index.php:238 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4562,7 +4566,7 @@ msgstr "" #: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:234 +#: application/views/logbookadvanced/index.php:239 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4570,7 +4574,7 @@ msgstr "" #: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:235 +#: application/views/logbookadvanced/index.php:240 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4578,7 +4582,7 @@ msgstr "" #: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:236 +#: application/views/logbookadvanced/index.php:241 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4586,7 +4590,7 @@ msgstr "Satelliet" #: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:242 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4594,7 +4598,7 @@ msgstr "" #: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:238 +#: application/views/logbookadvanced/index.php:243 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -4699,8 +4703,9 @@ msgstr "Nodig" #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:266 -#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:402 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 +#: src/QSLManager/QSO.php:367 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:439 msgid "Sent" msgstr "" @@ -4728,18 +4733,21 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:246 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:311 -#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:415 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 +#: src/QSLManager/QSO.php:379 src/QSLManager/QSO.php:416 +#: src/QSLManager/QSO.php:452 msgid "Received" msgstr "Ontvangen" #: application/views/dashboard/index.php:279 -#: application/views/logbookadvanced/index.php:290 -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:332 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 +#: application/views/logbookadvanced/index.php:295 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -4753,8 +4761,8 @@ msgstr "Ontvangen" #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:146 #: application/views/view_log/partial/log_ajax.php:184 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:272 -#: src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 +#: src/QSLManager/QSO.php:319 msgid "Requested" msgstr "Aangevraagd" @@ -5334,9 +5342,9 @@ msgstr "" #: application/views/gridmap/index.php:38 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:217 -#: application/views/logbookadvanced/index.php:572 -#: application/views/logbookadvanced/useroptions.php:114 +#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:602 +#: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "" @@ -5644,7 +5652,7 @@ msgid "Log" msgstr "" #: application/views/interface_assets/header.php:334 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:440 #: application/views/oqrs/index.php:22 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" @@ -5957,8 +5965,8 @@ msgid "Start printing at?" msgstr "" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:371 -#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:560 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" @@ -5971,42 +5979,44 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:128 +#: application/views/logbookadvanced/index.php:133 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:132 +#: application/views/logbookadvanced/index.php:137 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:136 -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:141 +#: application/views/logbookadvanced/index.php:539 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:143 +#: application/views/logbookadvanced/index.php:148 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:220 +#: application/views/logbookadvanced/index.php:225 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:285 +#: application/views/logbookadvanced/index.php:290 msgid "QSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:330 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:293 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:405 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6036,13 +6046,15 @@ msgstr "" msgid "Yes" msgstr "" -#: application/views/logbookadvanced/index.php:289 -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:305 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:406 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:392 #: application/views/qso/edit_ajax.php:425 @@ -6073,9 +6085,10 @@ msgstr "" msgid "No" msgstr "" -#: application/views/logbookadvanced/index.php:291 -#: application/views/logbookadvanced/index.php:333 -#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:382 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6086,16 +6099,18 @@ msgstr "" #: application/views/search/search_result_ajax.php:225 #: application/views/view_log/partial/log_ajax.php:143 #: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 msgid "Queued" msgstr "" -#: application/views/logbookadvanced/index.php:292 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:334 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:366 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:393 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/qslprint/qsolist.php:67 #: application/views/qslprint/qsolist.php:109 @@ -6109,26 +6124,27 @@ msgstr "" #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:149 #: application/views/view_log/partial/log_ajax.php:187 -#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 msgid "Invalid (Ignore)" msgstr "" -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:301 msgid "QSL received" msgstr "" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:312 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:320 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:325 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6143,12 +6159,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:241 #: application/views/view_log/partial/log_ajax.php:162 #: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 msgid "Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:321 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:326 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6161,12 +6177,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:165 #: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 msgid "Direct" msgstr "" -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:322 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:327 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6179,12 +6195,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:171 #: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 msgid "Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:323 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:409 @@ -6194,187 +6210,195 @@ msgstr "" msgid "Manager" msgstr "" -#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:322 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:332 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:343 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:354 +msgid "Clublog sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:365 +msgid "Clublog received" +msgstr "" + +#: application/views/logbookadvanced/index.php:376 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:387 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:402 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:387 +#: application/views/logbookadvanced/index.php:414 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" -#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:417 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:418 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:419 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:420 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:422 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:423 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:424 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:425 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:426 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:427 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:428 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:429 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:430 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:431 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:432 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:433 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:438 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:416 +#: application/views/logbookadvanced/index.php:443 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:419 +#: application/views/logbookadvanced/index.php:446 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:422 +#: application/views/logbookadvanced/index.php:449 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:452 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:443 +#: application/views/logbookadvanced/index.php:470 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:446 +#: application/views/logbookadvanced/index.php:473 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:449 +#: application/views/logbookadvanced/index.php:476 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/index.php:485 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:460 +#: application/views/logbookadvanced/index.php:487 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:490 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:470 +#: application/views/logbookadvanced/index.php:497 #: application/views/qso/index.php:272 #: application/views/station_profile/edit.php:65 msgid "Location" msgstr "Locatie" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/lotw_views/index.php:47 #: application/views/simplefle/index.php:19 #: application/views/simplefle/index.php:158 @@ -6384,18 +6408,18 @@ msgstr "" msgid "Options" msgstr "" -#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:536 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:545 -#: application/views/logbookadvanced/useroptions.php:74 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -6423,37 +6447,37 @@ msgstr "" msgid "Column" msgstr "" -#: application/views/logbookadvanced/useroptions.php:144 +#: application/views/logbookadvanced/useroptions.php:148 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:145 +#: application/views/logbookadvanced/useroptions.php:149 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:150 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/stationsetup/exportmapoptions.php:23 msgctxt "Map Options" msgid "Path lines" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/useroptions.php:158 msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/logbookadvanced/useroptions.php:162 msgctxt "Map Options" msgid "CQ Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:166 msgctxt "Map Options" msgid "ITU Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:166 +#: application/views/logbookadvanced/useroptions.php:170 msgctxt "Map Options" msgid "Night Shadow" msgstr "" @@ -7125,7 +7149,7 @@ msgstr "" #: application/views/qso/index.php:576 #: application/views/search/search_result_ajax.php:205 #: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:298 +#: src/QSLManager/QSO.php:300 msgid "Via" msgstr "" diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.po b/application/locale/pl_PL/LC_MESSAGES/messages.po index 1b4c79047..1eaf02ab4 100644 --- a/application/locale/pl_PL/LC_MESSAGES/messages.po +++ b/application/locale/pl_PL/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-03 05:59+0000\n" +"POT-Creation-Date: 2024-07-03 06:10+0000\n" "PO-Revision-Date: 2024-06-05 15:16+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -179,8 +179,8 @@ msgstr "" #: application/views/bands/index.php:49 #: application/views/contesting/index.php:170 #: application/views/interface_assets/header.php:192 -#: application/views/logbookadvanced/index.php:581 -#: application/views/logbookadvanced/useroptions.php:126 +#: application/views/logbookadvanced/index.php:611 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/qso/edit_ajax.php:360 application/views/qso/index.php:264 #: application/views/qso/index.php:508 application/views/user/edit.php:603 #: application/views/view_log/qso.php:351 @@ -194,10 +194,10 @@ msgstr "" #: application/views/interface_assets/header.php:162 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:140 -#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/index.php:145 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/qslcarousel.php:35 -#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 #: application/views/lotw_views/index.php:40 #: application/views/qso/edit_ajax.php:218 application/views/qso/index.php:361 @@ -262,8 +262,8 @@ msgstr "" #: application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:176 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:264 -#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/logbookadvanced/index.php:269 +#: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -288,8 +288,8 @@ msgstr "" #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:268 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/index.php:273 +#: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:340 @@ -308,9 +308,9 @@ msgstr "" #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:180 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:272 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/useroptions.php:102 +#: application/views/logbookadvanced/index.php:277 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:11 @@ -380,7 +380,7 @@ msgstr "" #: application/controllers/Awards.php:1125 #: application/views/interface_assets/header.php:166 -#: application/views/logbookadvanced/useroptions.php:134 +#: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "" @@ -757,7 +757,7 @@ msgstr "Log" #: application/views/awards/waja/index.php:53 #: application/views/awards/was/index.php:53 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -799,8 +799,8 @@ msgstr "" #: application/views/user/edit.php:659 #: application/views/view_log/partial/log_ajax.php:230 #: application/views/view_log/partial/log_ajax.php:231 -#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:365 -#: src/QSLManager/QSO.php:377 +#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:367 +#: src/QSLManager/QSO.php:379 msgid "LoTW" msgstr "" @@ -833,7 +833,7 @@ msgstr "" #: application/views/user/edit.php:667 application/views/user/edit.php:731 #: application/views/view_log/partial/log_ajax.php:217 #: application/views/view_log/partial/log_ajax.php:218 -#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: src/QSLManager/QSO.php:439 src/QSLManager/QSO.php:452 msgid "eQSL" msgstr "" @@ -843,12 +843,14 @@ msgstr "" #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 #: application/views/awards/waja/index.php:69 +#: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/edit.php:325 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/qso.php:423 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:416 msgid "Clublog" msgstr "" @@ -880,8 +882,8 @@ msgstr "" #: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 #: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:177 -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:182 +#: application/views/logbookadvanced/index.php:542 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -927,7 +929,7 @@ msgstr "Modulacja" #: application/views/awards/wwff/index.php:36 #: application/views/contesting/index.php:111 #: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:545 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -954,7 +956,7 @@ msgstr "" #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/index.php:548 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1006,10 +1008,10 @@ msgstr "Kraj" #: application/views/bands/index.php:52 application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:178 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:157 -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:162 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1037,10 +1039,10 @@ msgstr "" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:20 #: application/views/logbookadvanced/edit.php:61 -#: application/views/logbookadvanced/index.php:169 -#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/index.php:174 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:36 -#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1068,9 +1070,9 @@ msgstr "Stan" #: application/views/labels/index.php:121 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:178 #: application/views/logbookadvanced/qslcarousel.php:39 -#: application/views/logbookadvanced/useroptions.php:122 +#: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 #: application/views/qslcard/searchresult.php:19 #: application/views/qslcard/searchresult.php:35 @@ -1151,8 +1153,8 @@ msgstr "" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:188 -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:193 +#: application/views/logbookadvanced/index.php:551 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1217,9 +1219,9 @@ msgstr "Częstotliwość" #: application/controllers/Logbook.php:1288 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:276 -#: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/logbookadvanced/index.php:281 +#: application/views/logbookadvanced/index.php:596 +#: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1244,7 +1246,7 @@ msgstr "" #: application/views/dxatlas/index.php:65 #: application/views/interface_assets/footer.php:630 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:149 +#: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 #: application/views/lotw_views/index.php:56 #: application/views/qso/components/previous_contacts.php:59 @@ -1534,7 +1536,7 @@ msgstr "" #: application/views/continents/index.php:49 #: application/views/interface_assets/header.php:328 #: application/views/interface_assets/header.php:335 -#: application/views/logbookadvanced/index.php:482 +#: application/views/logbookadvanced/index.php:509 #: application/views/oqrs/index.php:23 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1712,7 +1714,7 @@ msgstr "" #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 -#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:511 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 @@ -1756,7 +1758,7 @@ msgstr "" #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 -#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:512 #: application/views/lotw_views/index.php:118 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 @@ -2057,21 +2059,23 @@ msgstr "" #: application/views/gridmap/index.php:83 application/views/kml/index.php:21 #: application/views/kml/index.php:33 application/views/kml/index.php:49 #: application/views/kml/index.php:67 application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:179 -#: application/views/logbookadvanced/index.php:190 -#: application/views/logbookadvanced/index.php:201 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:219 -#: application/views/logbookadvanced/index.php:244 -#: application/views/logbookadvanced/index.php:255 -#: application/views/logbookadvanced/index.php:287 -#: application/views/logbookadvanced/index.php:298 -#: application/views/logbookadvanced/index.php:309 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:329 -#: application/views/logbookadvanced/index.php:340 -#: application/views/logbookadvanced/index.php:351 -#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:184 +#: application/views/logbookadvanced/index.php:195 +#: application/views/logbookadvanced/index.php:206 +#: application/views/logbookadvanced/index.php:215 +#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:249 +#: application/views/logbookadvanced/index.php:260 +#: application/views/logbookadvanced/index.php:292 +#: application/views/logbookadvanced/index.php:303 +#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:345 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:389 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2146,7 +2150,7 @@ msgstr "" #: application/views/distances/index.php:34 #: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:204 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2157,7 +2161,7 @@ msgstr "Satelita" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:213 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2267,7 +2271,7 @@ msgstr "" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:39 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:119 -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/lotw_views/index.php:39 #: application/views/oqrs/qsolist.php:6 @@ -2781,7 +2785,7 @@ msgid "Status" msgstr "" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3024,7 +3028,7 @@ msgstr "Karta QSL" #: application/views/awards/waja/index.php:113 #: application/views/awards/was/index.php:109 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:521 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 @@ -3057,7 +3061,7 @@ msgstr "" #: application/views/awards/wab/index.php:108 #: application/views/awards/waja/index.php:129 #: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:487 +#: application/views/logbookadvanced/index.php:514 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "" @@ -3065,10 +3069,10 @@ msgstr "" #: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:242 -#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/index.php:247 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/useroptions.php:90 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:271 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 @@ -3379,7 +3383,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:37 application/views/labels/index.php:71 -#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/index.php:557 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3422,9 +3426,9 @@ msgstr "" #: application/views/awards/itu/index.php:148 #: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:253 -#: application/views/logbookadvanced/index.php:557 -#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/logbookadvanced/index.php:258 +#: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:143 msgid "ITU Zone" @@ -3545,7 +3549,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/index.php:533 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4012,8 +4016,8 @@ msgstr "" #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:569 -#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/logbookadvanced/index.php:599 +#: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 #: application/views/view_log/qso.php:199 msgid "Comment" @@ -4047,7 +4051,7 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 msgid "Contest" msgstr "" @@ -4459,7 +4463,7 @@ msgstr "Typ propagacji" #: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4467,7 +4471,7 @@ msgstr "" #: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4475,7 +4479,7 @@ msgstr "" #: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:223 +#: application/views/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4483,7 +4487,7 @@ msgstr "" #: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4491,7 +4495,7 @@ msgstr "" #: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:225 +#: application/views/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4499,7 +4503,7 @@ msgstr "" #: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:226 +#: application/views/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4507,7 +4511,7 @@ msgstr "" #: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:227 +#: application/views/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4515,7 +4519,7 @@ msgstr "" #: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:228 +#: application/views/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4523,7 +4527,7 @@ msgstr "" #: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:229 +#: application/views/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4531,7 +4535,7 @@ msgstr "" #: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:230 +#: application/views/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4539,7 +4543,7 @@ msgstr "" #: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:231 +#: application/views/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4547,7 +4551,7 @@ msgstr "" #: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:232 +#: application/views/logbookadvanced/index.php:237 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4555,7 +4559,7 @@ msgstr "" #: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:233 +#: application/views/logbookadvanced/index.php:238 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4563,7 +4567,7 @@ msgstr "" #: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:234 +#: application/views/logbookadvanced/index.php:239 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4571,7 +4575,7 @@ msgstr "" #: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:235 +#: application/views/logbookadvanced/index.php:240 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4579,7 +4583,7 @@ msgstr "" #: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:236 +#: application/views/logbookadvanced/index.php:241 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4587,7 +4591,7 @@ msgstr "Satelita" #: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:242 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4595,7 +4599,7 @@ msgstr "" #: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:238 +#: application/views/logbookadvanced/index.php:243 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -4701,8 +4705,9 @@ msgstr "Wymagane" #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:266 -#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:402 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 +#: src/QSLManager/QSO.php:367 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:439 msgid "Sent" msgstr "Wysłane" @@ -4730,18 +4735,21 @@ msgstr "Wysłane" #: application/views/view_log/partial/log_ajax.php:246 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:311 -#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:415 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 +#: src/QSLManager/QSO.php:379 src/QSLManager/QSO.php:416 +#: src/QSLManager/QSO.php:452 msgid "Received" msgstr "Odebrane" #: application/views/dashboard/index.php:279 -#: application/views/logbookadvanced/index.php:290 -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:332 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 +#: application/views/logbookadvanced/index.php:295 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -4755,8 +4763,8 @@ msgstr "Odebrane" #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:146 #: application/views/view_log/partial/log_ajax.php:184 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:272 -#: src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 +#: src/QSLManager/QSO.php:319 msgid "Requested" msgstr "Poproszone" @@ -5337,9 +5345,9 @@ msgstr "" #: application/views/gridmap/index.php:38 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:217 -#: application/views/logbookadvanced/index.php:572 -#: application/views/logbookadvanced/useroptions.php:114 +#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:602 +#: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "" @@ -5647,7 +5655,7 @@ msgid "Log" msgstr "" #: application/views/interface_assets/header.php:334 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:440 #: application/views/oqrs/index.php:22 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" @@ -5960,8 +5968,8 @@ msgid "Start printing at?" msgstr "" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:371 -#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:560 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" @@ -5974,42 +5982,44 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:128 +#: application/views/logbookadvanced/index.php:133 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:132 +#: application/views/logbookadvanced/index.php:137 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:136 -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:141 +#: application/views/logbookadvanced/index.php:539 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:143 +#: application/views/logbookadvanced/index.php:148 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:220 +#: application/views/logbookadvanced/index.php:225 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:285 +#: application/views/logbookadvanced/index.php:290 msgid "QSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:330 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:293 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:405 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6039,13 +6049,15 @@ msgstr "" msgid "Yes" msgstr "Tak" -#: application/views/logbookadvanced/index.php:289 -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:305 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:406 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:392 #: application/views/qso/edit_ajax.php:425 @@ -6076,9 +6088,10 @@ msgstr "Tak" msgid "No" msgstr "Nie" -#: application/views/logbookadvanced/index.php:291 -#: application/views/logbookadvanced/index.php:333 -#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:382 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6089,16 +6102,18 @@ msgstr "Nie" #: application/views/search/search_result_ajax.php:225 #: application/views/view_log/partial/log_ajax.php:143 #: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 msgid "Queued" msgstr "" -#: application/views/logbookadvanced/index.php:292 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:334 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:366 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:393 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/qslprint/qsolist.php:67 #: application/views/qslprint/qsolist.php:109 @@ -6112,26 +6127,27 @@ msgstr "" #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:149 #: application/views/view_log/partial/log_ajax.php:187 -#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 msgid "Invalid (Ignore)" msgstr "" -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:301 msgid "QSL received" msgstr "" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:312 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:320 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:325 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6146,12 +6162,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:241 #: application/views/view_log/partial/log_ajax.php:162 #: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 msgid "Bureau" msgstr "Biuro" -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:321 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:326 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6164,12 +6180,12 @@ msgstr "Biuro" #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:165 #: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 msgid "Direct" msgstr "" -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:322 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:327 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6182,12 +6198,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:171 #: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 msgid "Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:323 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:409 @@ -6197,187 +6213,195 @@ msgstr "" msgid "Manager" msgstr "" -#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:322 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:332 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:343 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:354 +msgid "Clublog sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:365 +msgid "Clublog received" +msgstr "" + +#: application/views/logbookadvanced/index.php:376 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:387 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:402 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:387 +#: application/views/logbookadvanced/index.php:414 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" -#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:417 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:418 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:419 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:420 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:422 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:423 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:424 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:425 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:426 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:427 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:428 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:429 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:430 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:431 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:432 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:433 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:438 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:416 +#: application/views/logbookadvanced/index.php:443 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:419 +#: application/views/logbookadvanced/index.php:446 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:422 +#: application/views/logbookadvanced/index.php:449 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:452 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:443 +#: application/views/logbookadvanced/index.php:470 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:446 +#: application/views/logbookadvanced/index.php:473 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:449 +#: application/views/logbookadvanced/index.php:476 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/index.php:485 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:460 +#: application/views/logbookadvanced/index.php:487 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:490 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:470 +#: application/views/logbookadvanced/index.php:497 #: application/views/qso/index.php:272 #: application/views/station_profile/edit.php:65 msgid "Location" msgstr "Lokalizacja" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/lotw_views/index.php:47 #: application/views/simplefle/index.php:19 #: application/views/simplefle/index.php:158 @@ -6387,18 +6411,18 @@ msgstr "" msgid "Options" msgstr "" -#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:536 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:545 -#: application/views/logbookadvanced/useroptions.php:74 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -6426,37 +6450,37 @@ msgstr "" msgid "Column" msgstr "" -#: application/views/logbookadvanced/useroptions.php:144 +#: application/views/logbookadvanced/useroptions.php:148 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:145 +#: application/views/logbookadvanced/useroptions.php:149 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:150 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/stationsetup/exportmapoptions.php:23 msgctxt "Map Options" msgid "Path lines" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/useroptions.php:158 msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/logbookadvanced/useroptions.php:162 msgctxt "Map Options" msgid "CQ Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:166 msgctxt "Map Options" msgid "ITU Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:166 +#: application/views/logbookadvanced/useroptions.php:170 msgctxt "Map Options" msgid "Night Shadow" msgstr "" @@ -7129,7 +7153,7 @@ msgstr "Stacja" #: application/views/qso/index.php:576 #: application/views/search/search_result_ajax.php:205 #: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:298 +#: src/QSLManager/QSO.php:300 msgid "Via" msgstr "" diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.po b/application/locale/ru_RU/LC_MESSAGES/messages.po index e65d685d4..f4a010e78 100644 --- a/application/locale/ru_RU/LC_MESSAGES/messages.po +++ b/application/locale/ru_RU/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-03 05:59+0000\n" +"POT-Creation-Date: 2024-07-03 06:10+0000\n" "PO-Revision-Date: 2024-07-01 06:37+0000\n" "Last-Translator: Michael Skolsky \n" "Language-Team: Russian \n" @@ -180,8 +180,8 @@ msgstr "Дипломы - %s" #: application/views/bands/index.php:49 #: application/views/contesting/index.php:170 #: application/views/interface_assets/header.php:192 -#: application/views/logbookadvanced/index.php:581 -#: application/views/logbookadvanced/useroptions.php:126 +#: application/views/logbookadvanced/index.php:611 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/qso/edit_ajax.php:360 application/views/qso/index.php:264 #: application/views/qso/index.php:508 application/views/user/edit.php:603 #: application/views/view_log/qso.php:351 @@ -195,10 +195,10 @@ msgstr "DOK" #: application/views/interface_assets/header.php:162 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:140 -#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/index.php:145 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/qslcarousel.php:35 -#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 #: application/views/lotw_views/index.php:40 #: application/views/qso/edit_ajax.php:218 application/views/qso/index.php:361 @@ -263,8 +263,8 @@ msgstr " и " #: application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:176 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:264 -#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/logbookadvanced/index.php:269 +#: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -289,8 +289,8 @@ msgstr "SOTA" #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:268 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/index.php:273 +#: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:340 @@ -309,9 +309,9 @@ msgstr "WWFF" #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:180 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:272 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/useroptions.php:102 +#: application/views/logbookadvanced/index.php:277 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:11 @@ -381,7 +381,7 @@ msgstr "Fred Fish Memorial Award (FFMA)" #: application/controllers/Awards.php:1125 #: application/views/interface_assets/header.php:166 -#: application/views/logbookadvanced/useroptions.php:134 +#: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "SIG" @@ -758,7 +758,7 @@ msgstr "Журнал" #: application/views/awards/waja/index.php:53 #: application/views/awards/was/index.php:53 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -800,8 +800,8 @@ msgstr "QSL" #: application/views/user/edit.php:659 #: application/views/view_log/partial/log_ajax.php:230 #: application/views/view_log/partial/log_ajax.php:231 -#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:365 -#: src/QSLManager/QSO.php:377 +#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:367 +#: src/QSLManager/QSO.php:379 msgid "LoTW" msgstr "LoTW" @@ -834,7 +834,7 @@ msgstr "LoTW" #: application/views/user/edit.php:667 application/views/user/edit.php:731 #: application/views/view_log/partial/log_ajax.php:217 #: application/views/view_log/partial/log_ajax.php:218 -#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: src/QSLManager/QSO.php:439 src/QSLManager/QSO.php:452 msgid "eQSL" msgstr "eQSL" @@ -844,12 +844,14 @@ msgstr "eQSL" #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 #: application/views/awards/waja/index.php:69 +#: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/edit.php:325 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/qso.php:423 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:416 msgid "Clublog" msgstr "Clublog" @@ -881,8 +883,8 @@ msgstr "Clublog" #: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 #: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:177 -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:182 +#: application/views/logbookadvanced/index.php:542 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -928,7 +930,7 @@ msgstr "Режим модуляции" #: application/views/awards/wwff/index.php:36 #: application/views/contesting/index.php:111 #: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:545 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -955,7 +957,7 @@ msgstr "RST (TX)" #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/index.php:548 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1007,10 +1009,10 @@ msgstr "Страна" #: application/views/bands/index.php:52 application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:178 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:157 -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:162 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1038,10 +1040,10 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:20 #: application/views/logbookadvanced/edit.php:61 -#: application/views/logbookadvanced/index.php:169 -#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/index.php:174 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:36 -#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1069,9 +1071,9 @@ msgstr "Область/штат" #: application/views/labels/index.php:121 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:178 #: application/views/logbookadvanced/qslcarousel.php:39 -#: application/views/logbookadvanced/useroptions.php:122 +#: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 #: application/views/qslcard/searchresult.php:19 #: application/views/qslcard/searchresult.php:35 @@ -1152,8 +1154,8 @@ msgstr "Дистанция" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:188 -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:193 +#: application/views/logbookadvanced/index.php:551 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1218,9 +1220,9 @@ msgstr "Частота" #: application/controllers/Logbook.php:1288 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:276 -#: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/logbookadvanced/index.php:281 +#: application/views/logbookadvanced/index.php:596 +#: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1245,7 +1247,7 @@ msgstr "Оператор" #: application/views/dxatlas/index.php:65 #: application/views/interface_assets/footer.php:630 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:149 +#: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 #: application/views/lotw_views/index.php:56 #: application/views/qso/components/previous_contacts.php:59 @@ -1535,7 +1537,7 @@ msgstr "Спутниковые таймеры" #: application/views/continents/index.php:49 #: application/views/interface_assets/header.php:328 #: application/views/interface_assets/header.php:335 -#: application/views/logbookadvanced/index.php:482 +#: application/views/logbookadvanced/index.php:509 #: application/views/oqrs/index.php:23 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1713,7 +1715,7 @@ msgstr "QSO" #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 -#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:511 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 @@ -1757,7 +1759,7 @@ msgstr "Вы уверены в том, что хотите удалить про #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 -#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:512 #: application/views/lotw_views/index.php:118 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 @@ -2058,21 +2060,23 @@ msgstr "Ежемесячно" #: application/views/gridmap/index.php:83 application/views/kml/index.php:21 #: application/views/kml/index.php:33 application/views/kml/index.php:49 #: application/views/kml/index.php:67 application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:179 -#: application/views/logbookadvanced/index.php:190 -#: application/views/logbookadvanced/index.php:201 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:219 -#: application/views/logbookadvanced/index.php:244 -#: application/views/logbookadvanced/index.php:255 -#: application/views/logbookadvanced/index.php:287 -#: application/views/logbookadvanced/index.php:298 -#: application/views/logbookadvanced/index.php:309 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:329 -#: application/views/logbookadvanced/index.php:340 -#: application/views/logbookadvanced/index.php:351 -#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:184 +#: application/views/logbookadvanced/index.php:195 +#: application/views/logbookadvanced/index.php:206 +#: application/views/logbookadvanced/index.php:215 +#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:249 +#: application/views/logbookadvanced/index.php:260 +#: application/views/logbookadvanced/index.php:292 +#: application/views/logbookadvanced/index.php:303 +#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:345 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:389 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2147,7 +2151,7 @@ msgstr "Показать" #: application/views/distances/index.php:34 #: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:204 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2158,7 +2162,7 @@ msgstr "Спутник" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:213 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2268,7 +2272,7 @@ msgstr "Не найдено!" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:39 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:119 -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/lotw_views/index.php:39 #: application/views/oqrs/qsolist.php:6 @@ -2782,7 +2786,7 @@ msgid "Status" msgstr "Статус" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "Действия" @@ -3025,7 +3029,7 @@ msgstr "QSL карточка" #: application/views/awards/waja/index.php:113 #: application/views/awards/was/index.php:109 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:521 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 @@ -3058,7 +3062,7 @@ msgstr "Таблица" #: application/views/awards/wab/index.php:108 #: application/views/awards/waja/index.php:129 #: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:487 +#: application/views/logbookadvanced/index.php:514 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Карта" @@ -3066,10 +3070,10 @@ msgstr "Карта" #: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:242 -#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/index.php:247 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/useroptions.php:90 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:271 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 @@ -3380,7 +3384,7 @@ msgstr "Показать карту IOTA" #: application/views/contesting/index.php:171 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:37 application/views/labels/index.php:71 -#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/index.php:557 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3423,9 +3427,9 @@ msgstr "Показать карту зон ITU" #: application/views/awards/itu/index.php:148 #: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:253 -#: application/views/logbookadvanced/index.php:557 -#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/logbookadvanced/index.php:258 +#: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:143 msgid "ITU Zone" @@ -3546,7 +3550,7 @@ msgstr "Референция" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/index.php:533 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4013,8 +4017,8 @@ msgstr "Не найдены предстоящие активации. Пров #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:569 -#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/logbookadvanced/index.php:599 +#: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 #: application/views/view_log/qso.php:199 msgid "Comment" @@ -4048,7 +4052,7 @@ msgid "No Contests" msgstr "Нет контестов" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 msgid "Contest" msgstr "Контест" @@ -4460,7 +4464,7 @@ msgstr "Тип распространения радиоволн" #: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4468,7 +4472,7 @@ msgstr "Рассеяние на инверсионном следе самолё #: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4476,7 +4480,7 @@ msgstr "Авроральное" #: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:223 +#: application/views/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4484,7 +4488,7 @@ msgstr "Авроральное (E)" #: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4492,7 +4496,7 @@ msgstr "Пассивные отражатели" #: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:225 +#: application/views/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4500,7 +4504,7 @@ msgstr "Эхолинк" #: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:226 +#: application/views/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4508,7 +4512,7 @@ msgstr "Отражение от Луны" #: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:227 +#: application/views/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4516,7 +4520,7 @@ msgstr "Спорадическое прохождение (Е)" #: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:228 +#: application/views/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4524,7 +4528,7 @@ msgstr "Анизотропия ионосферы" #: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:229 +#: application/views/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4532,7 +4536,7 @@ msgstr "Отражение от слоя F2" #: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:230 +#: application/views/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4540,7 +4544,7 @@ msgstr "С помощью Интернет" #: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:231 +#: application/views/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4548,7 +4552,7 @@ msgstr "Ионосферное рассеяние" #: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:232 +#: application/views/logbookadvanced/index.php:237 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4556,7 +4560,7 @@ msgstr "IRLP" #: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:233 +#: application/views/logbookadvanced/index.php:238 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4564,7 +4568,7 @@ msgstr "Рассеяние на метеорных следах" #: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:234 +#: application/views/logbookadvanced/index.php:239 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4572,7 +4576,7 @@ msgstr "Наземный или атмосферный репитер или т #: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:235 +#: application/views/logbookadvanced/index.php:240 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4580,7 +4584,7 @@ msgstr "Рассеяние на дожде" #: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:236 +#: application/views/logbookadvanced/index.php:241 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4588,7 +4592,7 @@ msgstr "Спутник" #: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:242 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4596,7 +4600,7 @@ msgstr "Трансэкваториальное" #: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:238 +#: application/views/logbookadvanced/index.php:243 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -4702,8 +4706,9 @@ msgstr "Необходимо" #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:266 -#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:402 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 +#: src/QSLManager/QSO.php:367 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:439 msgid "Sent" msgstr "Отправлено" @@ -4731,18 +4736,21 @@ msgstr "Отправлено" #: application/views/view_log/partial/log_ajax.php:246 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:311 -#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:415 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 +#: src/QSLManager/QSO.php:379 src/QSLManager/QSO.php:416 +#: src/QSLManager/QSO.php:452 msgid "Received" msgstr "Принято" #: application/views/dashboard/index.php:279 -#: application/views/logbookadvanced/index.php:290 -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:332 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 +#: application/views/logbookadvanced/index.php:295 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -4756,8 +4764,8 @@ msgstr "Принято" #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:146 #: application/views/view_log/partial/log_ajax.php:184 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:272 -#: src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 +#: src/QSLManager/QSO.php:319 msgid "Requested" msgstr "Запрошено" @@ -5338,9 +5346,9 @@ msgstr "Посмотреть" #: application/views/gridmap/index.php:38 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:217 -#: application/views/logbookadvanced/index.php:572 -#: application/views/logbookadvanced/useroptions.php:114 +#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:602 +#: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "Распространение" @@ -5648,7 +5656,7 @@ msgid "Log" msgstr "Журнал" #: application/views/interface_assets/header.php:334 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:440 #: application/views/oqrs/index.php:22 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" @@ -5961,8 +5969,8 @@ msgid "Start printing at?" msgstr "Начать печать в?" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:371 -#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:560 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "QSL через" @@ -5975,42 +5983,44 @@ msgstr "Спутниковый режим" msgid "Band RX" msgstr "Диапазон приёма" -#: application/views/logbookadvanced/index.php:128 +#: application/views/logbookadvanced/index.php:133 msgid "From" msgstr "От" -#: application/views/logbookadvanced/index.php:132 +#: application/views/logbookadvanced/index.php:137 msgid "To" msgstr "к" -#: application/views/logbookadvanced/index.php:136 -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:141 +#: application/views/logbookadvanced/index.php:539 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "DX" -#: application/views/logbookadvanced/index.php:143 +#: application/views/logbookadvanced/index.php:148 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "- NONE - (т.е.. /MM, /AM)" -#: application/views/logbookadvanced/index.php:220 +#: application/views/logbookadvanced/index.php:225 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Нет/Пусто" -#: application/views/logbookadvanced/index.php:285 +#: application/views/logbookadvanced/index.php:290 msgid "QSL sent" msgstr "QSL отправлено" -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:330 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:293 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:405 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6040,13 +6050,15 @@ msgstr "QSL отправлено" msgid "Yes" msgstr "Да" -#: application/views/logbookadvanced/index.php:289 -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:305 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:406 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:392 #: application/views/qso/edit_ajax.php:425 @@ -6077,9 +6089,10 @@ msgstr "Да" msgid "No" msgstr "Нет" -#: application/views/logbookadvanced/index.php:291 -#: application/views/logbookadvanced/index.php:333 -#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:382 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6090,16 +6103,18 @@ msgstr "Нет" #: application/views/search/search_result_ajax.php:225 #: application/views/view_log/partial/log_ajax.php:143 #: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 msgid "Queued" msgstr "В очереди" -#: application/views/logbookadvanced/index.php:292 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:334 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:366 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:393 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/qslprint/qsolist.php:67 #: application/views/qslprint/qsolist.php:109 @@ -6113,26 +6128,27 @@ msgstr "В очереди" #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:149 #: application/views/view_log/partial/log_ajax.php:187 -#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 msgid "Invalid (Ignore)" msgstr "Некорректно (Игнорировать)" -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:301 msgid "QSL received" msgstr "QSL получено" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 msgid "Verified" msgstr "Верифицировано" -#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:312 msgid "QSL send. method" msgstr "Способ отправки QSL" -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:320 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:325 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6147,12 +6163,12 @@ msgstr "Способ отправки QSL" #: application/views/search/search_result_ajax.php:241 #: application/views/view_log/partial/log_ajax.php:162 #: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 msgid "Bureau" msgstr "Бюро" -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:321 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:326 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6165,12 +6181,12 @@ msgstr "Бюро" #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:165 #: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 msgid "Direct" msgstr "Напрямую" -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:322 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:327 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6183,12 +6199,12 @@ msgstr "Напрямую" #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:171 #: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 msgid "Electronic" msgstr "Электронное" -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:323 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:409 @@ -6198,187 +6214,195 @@ msgstr "Электронное" msgid "Manager" msgstr "Менеджер" -#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:322 msgid "QSL recv. method" msgstr "Способ получения QSL" -#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:332 msgid "LoTW sent" msgstr "LoTW отправлен" -#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:343 msgid "LoTW received" msgstr "LoTW получен" -#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:354 +msgid "Clublog sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:365 +msgid "Clublog received" +msgstr "" + +#: application/views/logbookadvanced/index.php:376 msgid "eQSL sent" msgstr "eQSL отправлено" -#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:387 msgid "eQSL received" msgstr "eQSL получено" -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:402 msgid "QSL Images" msgstr "Изображения QSL" -#: application/views/logbookadvanced/index.php:387 +#: application/views/logbookadvanced/index.php:414 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "Предупреждение! Вы уверены, что хотите удалить отмеченные QSO?" -#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:417 msgid "With selected: " msgstr "С выбранными: " -#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:418 msgid "Update from Callbook" msgstr "Обновить из колбука" -#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:419 msgid "Queue Bureau" msgstr "В очередь (бюро)" -#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:420 msgid "Queue Direct" msgstr "В очередь (напрямую)" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "Queue Electronic" msgstr "В очередь (электронно)" -#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:422 msgid "Sent (Bureau)" msgstr "Отправлено (бюро)" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:423 msgid "Sent (Direct)" msgstr "Отправле (напрямую)" -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:424 msgid "Sent (Electronic)" msgstr "Отправлено (электронно)" -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:425 msgid "Not Sent" msgstr "Не отправлено" -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:426 msgid "QSL Not Required" msgstr "QSL не требуется" -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:427 msgid "Not Received" msgstr "Не получена" -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:428 msgid "Received (Bureau)" msgstr "Получено (бюро)" -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:429 msgid "Received (Direct)" msgstr "Получено (напрямую)" -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:430 msgid "Received (Electronic)" msgstr "Получено (электронно)" -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:431 msgid "Create ADIF" msgstr "Создать ADIF" -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:432 msgid "Print Label" msgstr "Напечатать наклейки" -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:433 msgid "QSL Slideshow" msgstr "Слайдшоу QSL" -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:438 msgid "Quicksearch with selected: " msgstr "Быстрый поиск с выбранными: " -#: application/views/logbookadvanced/index.php:416 +#: application/views/logbookadvanced/index.php:443 msgid "Search DXCC" msgstr "Поиск DXCC" -#: application/views/logbookadvanced/index.php:419 +#: application/views/logbookadvanced/index.php:446 msgid "Search State" msgstr "Поиск штата" -#: application/views/logbookadvanced/index.php:422 +#: application/views/logbookadvanced/index.php:449 msgid "Search Gridsquare" msgstr "Поиск квадрата" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:452 msgid "Search CQ Zone" msgstr "Поиск зоны CQ" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Search ITU Zone" msgstr "Поиск зоны ITU" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Search Mode" msgstr "Поиск режима модуляции" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Search Band" msgstr "Поиск диапазона" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Search IOTA" msgstr "Поиск IOTA" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "Search SOTA" msgstr "Поиск SOTA" -#: application/views/logbookadvanced/index.php:443 +#: application/views/logbookadvanced/index.php:470 msgid "Search POTA" msgstr "Поиск POTA" -#: application/views/logbookadvanced/index.php:446 +#: application/views/logbookadvanced/index.php:473 msgid "Search WWFF" msgstr "Поиск WWFF" -#: application/views/logbookadvanced/index.php:449 +#: application/views/logbookadvanced/index.php:476 msgid "Search Operator" msgstr "Поиск оператора" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Quickfilters" msgstr "Быстрые фильтры" -#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/index.php:485 msgid "QSL Filters" msgstr "QSL фильтры" -#: application/views/logbookadvanced/index.php:460 +#: application/views/logbookadvanced/index.php:487 #: application/views/mode/index.php:68 msgid "Filters" msgstr "Фильтры" -#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:490 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "# Результаты" -#: application/views/logbookadvanced/index.php:470 +#: application/views/logbookadvanced/index.php:497 #: application/views/qso/index.php:272 #: application/views/station_profile/edit.php:65 msgid "Location" msgstr "QTH" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Dupes" msgstr "Дубликаты" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "Globe map" msgstr "Глобус" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/lotw_views/index.php:47 #: application/views/simplefle/index.php:19 #: application/views/simplefle/index.php:158 @@ -6388,18 +6412,18 @@ msgstr "Глобус" msgid "Options" msgstr "Опции" -#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:536 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "от" -#: application/views/logbookadvanced/index.php:545 -#: application/views/logbookadvanced/useroptions.php:74 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "сообщение QSL" -#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "Мой квадрат" @@ -6427,37 +6451,37 @@ msgstr "Включить via" msgid "Column" msgstr "Столбец" -#: application/views/logbookadvanced/useroptions.php:144 +#: application/views/logbookadvanced/useroptions.php:148 msgctxt "Map Options" msgid "Layer" msgstr "Слой" -#: application/views/logbookadvanced/useroptions.php:145 +#: application/views/logbookadvanced/useroptions.php:149 msgid "Default on" msgstr "По умолчанию включено" -#: application/views/logbookadvanced/useroptions.php:150 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/stationsetup/exportmapoptions.php:23 msgctxt "Map Options" msgid "Path lines" msgstr "Траектории" -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/useroptions.php:158 msgctxt "Map Options" msgid "Gridsquares" msgstr "Квадраты" -#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/logbookadvanced/useroptions.php:162 msgctxt "Map Options" msgid "CQ Zones" msgstr "Зоны CQ" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:166 msgctxt "Map Options" msgid "ITU Zones" msgstr "Зоны ITU" -#: application/views/logbookadvanced/useroptions.php:166 +#: application/views/logbookadvanced/useroptions.php:170 msgctxt "Map Options" msgid "Night Shadow" msgstr "Ночная тень" @@ -7130,7 +7154,7 @@ msgstr "Профиль QTH" #: application/views/qso/index.php:576 #: application/views/search/search_result_ajax.php:205 #: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:298 +#: src/QSLManager/QSO.php:300 msgid "Via" msgstr "via" diff --git a/application/locale/sv_SE/LC_MESSAGES/messages.po b/application/locale/sv_SE/LC_MESSAGES/messages.po index 57ce987ad..28d60d34e 100644 --- a/application/locale/sv_SE/LC_MESSAGES/messages.po +++ b/application/locale/sv_SE/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-03 05:59+0000\n" +"POT-Creation-Date: 2024-07-03 06:10+0000\n" "PO-Revision-Date: 2024-06-05 15:19+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -179,8 +179,8 @@ msgstr "" #: application/views/bands/index.php:49 #: application/views/contesting/index.php:170 #: application/views/interface_assets/header.php:192 -#: application/views/logbookadvanced/index.php:581 -#: application/views/logbookadvanced/useroptions.php:126 +#: application/views/logbookadvanced/index.php:611 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/qso/edit_ajax.php:360 application/views/qso/index.php:264 #: application/views/qso/index.php:508 application/views/user/edit.php:603 #: application/views/view_log/qso.php:351 @@ -194,10 +194,10 @@ msgstr "" #: application/views/interface_assets/header.php:162 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:140 -#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/index.php:145 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/qslcarousel.php:35 -#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 #: application/views/lotw_views/index.php:40 #: application/views/qso/edit_ajax.php:218 application/views/qso/index.php:361 @@ -262,8 +262,8 @@ msgstr "" #: application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:176 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:264 -#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/logbookadvanced/index.php:269 +#: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -288,8 +288,8 @@ msgstr "" #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:268 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/index.php:273 +#: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:340 @@ -308,9 +308,9 @@ msgstr "" #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:180 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:272 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/useroptions.php:102 +#: application/views/logbookadvanced/index.php:277 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:11 @@ -380,7 +380,7 @@ msgstr "" #: application/controllers/Awards.php:1125 #: application/views/interface_assets/header.php:166 -#: application/views/logbookadvanced/useroptions.php:134 +#: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "" @@ -756,7 +756,7 @@ msgstr "Loggbok" #: application/views/awards/waja/index.php:53 #: application/views/awards/was/index.php:53 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -798,8 +798,8 @@ msgstr "" #: application/views/user/edit.php:659 #: application/views/view_log/partial/log_ajax.php:230 #: application/views/view_log/partial/log_ajax.php:231 -#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:365 -#: src/QSLManager/QSO.php:377 +#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:367 +#: src/QSLManager/QSO.php:379 msgid "LoTW" msgstr "" @@ -832,7 +832,7 @@ msgstr "" #: application/views/user/edit.php:667 application/views/user/edit.php:731 #: application/views/view_log/partial/log_ajax.php:217 #: application/views/view_log/partial/log_ajax.php:218 -#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: src/QSLManager/QSO.php:439 src/QSLManager/QSO.php:452 msgid "eQSL" msgstr "" @@ -842,12 +842,14 @@ msgstr "" #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 #: application/views/awards/waja/index.php:69 +#: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/edit.php:325 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/qso.php:423 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:416 msgid "Clublog" msgstr "" @@ -879,8 +881,8 @@ msgstr "" #: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 #: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:177 -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:182 +#: application/views/logbookadvanced/index.php:542 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -926,7 +928,7 @@ msgstr "" #: application/views/awards/wwff/index.php:36 #: application/views/contesting/index.php:111 #: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:545 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -953,7 +955,7 @@ msgstr "" #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/index.php:548 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1005,10 +1007,10 @@ msgstr "Land" #: application/views/bands/index.php:52 application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:178 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:157 -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:162 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1036,10 +1038,10 @@ msgstr "" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:20 #: application/views/logbookadvanced/edit.php:61 -#: application/views/logbookadvanced/index.php:169 -#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/index.php:174 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:36 -#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1067,9 +1069,9 @@ msgstr "" #: application/views/labels/index.php:121 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:178 #: application/views/logbookadvanced/qslcarousel.php:39 -#: application/views/logbookadvanced/useroptions.php:122 +#: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 #: application/views/qslcard/searchresult.php:19 #: application/views/qslcard/searchresult.php:35 @@ -1150,8 +1152,8 @@ msgstr "" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:188 -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:193 +#: application/views/logbookadvanced/index.php:551 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1216,9 +1218,9 @@ msgstr "Frekvens" #: application/controllers/Logbook.php:1288 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:276 -#: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/logbookadvanced/index.php:281 +#: application/views/logbookadvanced/index.php:596 +#: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1243,7 +1245,7 @@ msgstr "Operatör" #: application/views/dxatlas/index.php:65 #: application/views/interface_assets/footer.php:630 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:149 +#: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 #: application/views/lotw_views/index.php:56 #: application/views/qso/components/previous_contacts.php:59 @@ -1533,7 +1535,7 @@ msgstr "" #: application/views/continents/index.php:49 #: application/views/interface_assets/header.php:328 #: application/views/interface_assets/header.php:335 -#: application/views/logbookadvanced/index.php:482 +#: application/views/logbookadvanced/index.php:509 #: application/views/oqrs/index.php:23 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1711,7 +1713,7 @@ msgstr "" #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 -#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:511 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 @@ -1755,7 +1757,7 @@ msgstr "" #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 -#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:512 #: application/views/lotw_views/index.php:118 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 @@ -2056,21 +2058,23 @@ msgstr "" #: application/views/gridmap/index.php:83 application/views/kml/index.php:21 #: application/views/kml/index.php:33 application/views/kml/index.php:49 #: application/views/kml/index.php:67 application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:179 -#: application/views/logbookadvanced/index.php:190 -#: application/views/logbookadvanced/index.php:201 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:219 -#: application/views/logbookadvanced/index.php:244 -#: application/views/logbookadvanced/index.php:255 -#: application/views/logbookadvanced/index.php:287 -#: application/views/logbookadvanced/index.php:298 -#: application/views/logbookadvanced/index.php:309 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:329 -#: application/views/logbookadvanced/index.php:340 -#: application/views/logbookadvanced/index.php:351 -#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:184 +#: application/views/logbookadvanced/index.php:195 +#: application/views/logbookadvanced/index.php:206 +#: application/views/logbookadvanced/index.php:215 +#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:249 +#: application/views/logbookadvanced/index.php:260 +#: application/views/logbookadvanced/index.php:292 +#: application/views/logbookadvanced/index.php:303 +#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:345 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:389 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2145,7 +2149,7 @@ msgstr "" #: application/views/distances/index.php:34 #: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:204 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2156,7 +2160,7 @@ msgstr "Satellit" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:213 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2266,7 +2270,7 @@ msgstr "" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:39 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:119 -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/lotw_views/index.php:39 #: application/views/oqrs/qsolist.php:6 @@ -2780,7 +2784,7 @@ msgid "Status" msgstr "" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3023,7 +3027,7 @@ msgstr "QSL-kort" #: application/views/awards/waja/index.php:113 #: application/views/awards/was/index.php:109 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:521 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 @@ -3056,7 +3060,7 @@ msgstr "" #: application/views/awards/wab/index.php:108 #: application/views/awards/waja/index.php:129 #: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:487 +#: application/views/logbookadvanced/index.php:514 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "" @@ -3064,10 +3068,10 @@ msgstr "" #: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:242 -#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/index.php:247 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/useroptions.php:90 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:271 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 @@ -3378,7 +3382,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:37 application/views/labels/index.php:71 -#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/index.php:557 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3421,9 +3425,9 @@ msgstr "" #: application/views/awards/itu/index.php:148 #: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:253 -#: application/views/logbookadvanced/index.php:557 -#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/logbookadvanced/index.php:258 +#: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:143 msgid "ITU Zone" @@ -3544,7 +3548,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/index.php:533 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4011,8 +4015,8 @@ msgstr "" #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:569 -#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/logbookadvanced/index.php:599 +#: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 #: application/views/view_log/qso.php:199 msgid "Comment" @@ -4046,7 +4050,7 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 msgid "Contest" msgstr "" @@ -4458,7 +4462,7 @@ msgstr "" #: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4466,7 +4470,7 @@ msgstr "" #: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4474,7 +4478,7 @@ msgstr "" #: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:223 +#: application/views/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4482,7 +4486,7 @@ msgstr "" #: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4490,7 +4494,7 @@ msgstr "" #: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:225 +#: application/views/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4498,7 +4502,7 @@ msgstr "" #: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:226 +#: application/views/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4506,7 +4510,7 @@ msgstr "" #: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:227 +#: application/views/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4514,7 +4518,7 @@ msgstr "" #: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:228 +#: application/views/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4522,7 +4526,7 @@ msgstr "" #: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:229 +#: application/views/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4530,7 +4534,7 @@ msgstr "" #: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:230 +#: application/views/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4538,7 +4542,7 @@ msgstr "" #: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:231 +#: application/views/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4546,7 +4550,7 @@ msgstr "" #: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:232 +#: application/views/logbookadvanced/index.php:237 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4554,7 +4558,7 @@ msgstr "" #: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:233 +#: application/views/logbookadvanced/index.php:238 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4562,7 +4566,7 @@ msgstr "" #: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:234 +#: application/views/logbookadvanced/index.php:239 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4570,7 +4574,7 @@ msgstr "" #: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:235 +#: application/views/logbookadvanced/index.php:240 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4578,7 +4582,7 @@ msgstr "" #: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:236 +#: application/views/logbookadvanced/index.php:241 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4586,7 +4590,7 @@ msgstr "Satellit" #: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:242 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4594,7 +4598,7 @@ msgstr "" #: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:238 +#: application/views/logbookadvanced/index.php:243 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -4699,8 +4703,9 @@ msgstr "Behövs" #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:266 -#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:402 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 +#: src/QSLManager/QSO.php:367 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:439 msgid "Sent" msgstr "Skickad" @@ -4728,18 +4733,21 @@ msgstr "Skickad" #: application/views/view_log/partial/log_ajax.php:246 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:311 -#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:415 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 +#: src/QSLManager/QSO.php:379 src/QSLManager/QSO.php:416 +#: src/QSLManager/QSO.php:452 msgid "Received" msgstr "Mottagen" #: application/views/dashboard/index.php:279 -#: application/views/logbookadvanced/index.php:290 -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:332 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 +#: application/views/logbookadvanced/index.php:295 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -4753,8 +4761,8 @@ msgstr "Mottagen" #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:146 #: application/views/view_log/partial/log_ajax.php:184 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:272 -#: src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 +#: src/QSLManager/QSO.php:319 msgid "Requested" msgstr "Begärd" @@ -5334,9 +5342,9 @@ msgstr "" #: application/views/gridmap/index.php:38 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:217 -#: application/views/logbookadvanced/index.php:572 -#: application/views/logbookadvanced/useroptions.php:114 +#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:602 +#: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "" @@ -5644,7 +5652,7 @@ msgid "Log" msgstr "" #: application/views/interface_assets/header.php:334 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:440 #: application/views/oqrs/index.php:22 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" @@ -5957,8 +5965,8 @@ msgid "Start printing at?" msgstr "" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:371 -#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:560 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" @@ -5971,42 +5979,44 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:128 +#: application/views/logbookadvanced/index.php:133 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:132 +#: application/views/logbookadvanced/index.php:137 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:136 -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:141 +#: application/views/logbookadvanced/index.php:539 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:143 +#: application/views/logbookadvanced/index.php:148 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:220 +#: application/views/logbookadvanced/index.php:225 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:285 +#: application/views/logbookadvanced/index.php:290 msgid "QSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:330 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:293 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:405 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6036,13 +6046,15 @@ msgstr "" msgid "Yes" msgstr "Ja" -#: application/views/logbookadvanced/index.php:289 -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:305 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:406 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:392 #: application/views/qso/edit_ajax.php:425 @@ -6073,9 +6085,10 @@ msgstr "Ja" msgid "No" msgstr "Nej" -#: application/views/logbookadvanced/index.php:291 -#: application/views/logbookadvanced/index.php:333 -#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:382 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6086,16 +6099,18 @@ msgstr "Nej" #: application/views/search/search_result_ajax.php:225 #: application/views/view_log/partial/log_ajax.php:143 #: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 msgid "Queued" msgstr "Köad" -#: application/views/logbookadvanced/index.php:292 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:334 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:366 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:393 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/qslprint/qsolist.php:67 #: application/views/qslprint/qsolist.php:109 @@ -6109,26 +6124,27 @@ msgstr "Köad" #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:149 #: application/views/view_log/partial/log_ajax.php:187 -#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 msgid "Invalid (Ignore)" msgstr "" -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:301 msgid "QSL received" msgstr "" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:312 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:320 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:325 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6143,12 +6159,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:241 #: application/views/view_log/partial/log_ajax.php:162 #: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 msgid "Bureau" msgstr "Byrå" -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:321 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:326 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6161,12 +6177,12 @@ msgstr "Byrå" #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:165 #: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 msgid "Direct" msgstr "Direkt" -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:322 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:327 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6179,12 +6195,12 @@ msgstr "Direkt" #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:171 #: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 msgid "Electronic" msgstr "Elektronisk" -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:323 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:409 @@ -6194,187 +6210,195 @@ msgstr "Elektronisk" msgid "Manager" msgstr "" -#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:322 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:332 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:343 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:354 +msgid "Clublog sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:365 +msgid "Clublog received" +msgstr "" + +#: application/views/logbookadvanced/index.php:376 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:387 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:402 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:387 +#: application/views/logbookadvanced/index.php:414 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" -#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:417 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:418 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:419 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:420 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:422 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:423 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:424 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:425 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:426 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:427 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:428 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:429 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:430 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:431 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:432 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:433 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:438 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:416 +#: application/views/logbookadvanced/index.php:443 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:419 +#: application/views/logbookadvanced/index.php:446 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:422 +#: application/views/logbookadvanced/index.php:449 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:452 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:443 +#: application/views/logbookadvanced/index.php:470 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:446 +#: application/views/logbookadvanced/index.php:473 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:449 +#: application/views/logbookadvanced/index.php:476 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/index.php:485 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:460 +#: application/views/logbookadvanced/index.php:487 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:490 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:470 +#: application/views/logbookadvanced/index.php:497 #: application/views/qso/index.php:272 #: application/views/station_profile/edit.php:65 msgid "Location" msgstr "QTH" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/lotw_views/index.php:47 #: application/views/simplefle/index.php:19 #: application/views/simplefle/index.php:158 @@ -6384,18 +6408,18 @@ msgstr "" msgid "Options" msgstr "Alternativ" -#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:536 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:545 -#: application/views/logbookadvanced/useroptions.php:74 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -6423,37 +6447,37 @@ msgstr "" msgid "Column" msgstr "" -#: application/views/logbookadvanced/useroptions.php:144 +#: application/views/logbookadvanced/useroptions.php:148 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:145 +#: application/views/logbookadvanced/useroptions.php:149 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:150 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/stationsetup/exportmapoptions.php:23 msgctxt "Map Options" msgid "Path lines" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/useroptions.php:158 msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/logbookadvanced/useroptions.php:162 msgctxt "Map Options" msgid "CQ Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:166 msgctxt "Map Options" msgid "ITU Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:166 +#: application/views/logbookadvanced/useroptions.php:170 msgctxt "Map Options" msgid "Night Shadow" msgstr "" @@ -7125,7 +7149,7 @@ msgstr "" #: application/views/qso/index.php:576 #: application/views/search/search_result_ajax.php:205 #: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:298 +#: src/QSLManager/QSO.php:300 msgid "Via" msgstr "" diff --git a/application/locale/tr_TR/LC_MESSAGES/messages.po b/application/locale/tr_TR/LC_MESSAGES/messages.po index 0acf6bb71..9c4ec493e 100644 --- a/application/locale/tr_TR/LC_MESSAGES/messages.po +++ b/application/locale/tr_TR/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-03 05:59+0000\n" +"POT-Creation-Date: 2024-07-03 06:10+0000\n" "PO-Revision-Date: 2024-06-05 15:20+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -179,8 +179,8 @@ msgstr "" #: application/views/bands/index.php:49 #: application/views/contesting/index.php:170 #: application/views/interface_assets/header.php:192 -#: application/views/logbookadvanced/index.php:581 -#: application/views/logbookadvanced/useroptions.php:126 +#: application/views/logbookadvanced/index.php:611 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/qso/edit_ajax.php:360 application/views/qso/index.php:264 #: application/views/qso/index.php:508 application/views/user/edit.php:603 #: application/views/view_log/qso.php:351 @@ -194,10 +194,10 @@ msgstr "" #: application/views/interface_assets/header.php:162 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:140 -#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/index.php:145 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/qslcarousel.php:35 -#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 #: application/views/lotw_views/index.php:40 #: application/views/qso/edit_ajax.php:218 application/views/qso/index.php:361 @@ -262,8 +262,8 @@ msgstr "" #: application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:176 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:264 -#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/logbookadvanced/index.php:269 +#: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -288,8 +288,8 @@ msgstr "" #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:268 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/index.php:273 +#: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:340 @@ -308,9 +308,9 @@ msgstr "" #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:180 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:272 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/useroptions.php:102 +#: application/views/logbookadvanced/index.php:277 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:11 @@ -380,7 +380,7 @@ msgstr "" #: application/controllers/Awards.php:1125 #: application/views/interface_assets/header.php:166 -#: application/views/logbookadvanced/useroptions.php:134 +#: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "" @@ -756,7 +756,7 @@ msgstr "Kayıt defteri" #: application/views/awards/waja/index.php:53 #: application/views/awards/was/index.php:53 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -798,8 +798,8 @@ msgstr "" #: application/views/user/edit.php:659 #: application/views/view_log/partial/log_ajax.php:230 #: application/views/view_log/partial/log_ajax.php:231 -#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:365 -#: src/QSLManager/QSO.php:377 +#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:367 +#: src/QSLManager/QSO.php:379 msgid "LoTW" msgstr "" @@ -832,7 +832,7 @@ msgstr "" #: application/views/user/edit.php:667 application/views/user/edit.php:731 #: application/views/view_log/partial/log_ajax.php:217 #: application/views/view_log/partial/log_ajax.php:218 -#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: src/QSLManager/QSO.php:439 src/QSLManager/QSO.php:452 msgid "eQSL" msgstr "" @@ -842,12 +842,14 @@ msgstr "" #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 #: application/views/awards/waja/index.php:69 +#: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/edit.php:325 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/qso.php:423 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:416 msgid "Clublog" msgstr "" @@ -879,8 +881,8 @@ msgstr "" #: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 #: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:177 -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:182 +#: application/views/logbookadvanced/index.php:542 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -926,7 +928,7 @@ msgstr "Mod" #: application/views/awards/wwff/index.php:36 #: application/views/contesting/index.php:111 #: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:545 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -953,7 +955,7 @@ msgstr "RST (G)" #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/index.php:548 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1005,10 +1007,10 @@ msgstr "Ülke" #: application/views/bands/index.php:52 application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:178 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:157 -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:162 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1036,10 +1038,10 @@ msgstr "" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:20 #: application/views/logbookadvanced/edit.php:61 -#: application/views/logbookadvanced/index.php:169 -#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/index.php:174 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:36 -#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1067,9 +1069,9 @@ msgstr "Eyalet" #: application/views/labels/index.php:121 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:178 #: application/views/logbookadvanced/qslcarousel.php:39 -#: application/views/logbookadvanced/useroptions.php:122 +#: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 #: application/views/qslcard/searchresult.php:19 #: application/views/qslcard/searchresult.php:35 @@ -1150,8 +1152,8 @@ msgstr "" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:188 -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:193 +#: application/views/logbookadvanced/index.php:551 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1216,9 +1218,9 @@ msgstr "Frekans" #: application/controllers/Logbook.php:1288 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:276 -#: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/logbookadvanced/index.php:281 +#: application/views/logbookadvanced/index.php:596 +#: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1243,7 +1245,7 @@ msgstr "Operatör" #: application/views/dxatlas/index.php:65 #: application/views/interface_assets/footer.php:630 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:149 +#: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 #: application/views/lotw_views/index.php:56 #: application/views/qso/components/previous_contacts.php:59 @@ -1533,7 +1535,7 @@ msgstr "" #: application/views/continents/index.php:49 #: application/views/interface_assets/header.php:328 #: application/views/interface_assets/header.php:335 -#: application/views/logbookadvanced/index.php:482 +#: application/views/logbookadvanced/index.php:509 #: application/views/oqrs/index.php:23 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1711,7 +1713,7 @@ msgstr "" #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 -#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:511 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 @@ -1755,7 +1757,7 @@ msgstr "" #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 -#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:512 #: application/views/lotw_views/index.php:118 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 @@ -2056,21 +2058,23 @@ msgstr "" #: application/views/gridmap/index.php:83 application/views/kml/index.php:21 #: application/views/kml/index.php:33 application/views/kml/index.php:49 #: application/views/kml/index.php:67 application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:179 -#: application/views/logbookadvanced/index.php:190 -#: application/views/logbookadvanced/index.php:201 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:219 -#: application/views/logbookadvanced/index.php:244 -#: application/views/logbookadvanced/index.php:255 -#: application/views/logbookadvanced/index.php:287 -#: application/views/logbookadvanced/index.php:298 -#: application/views/logbookadvanced/index.php:309 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:329 -#: application/views/logbookadvanced/index.php:340 -#: application/views/logbookadvanced/index.php:351 -#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:184 +#: application/views/logbookadvanced/index.php:195 +#: application/views/logbookadvanced/index.php:206 +#: application/views/logbookadvanced/index.php:215 +#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:249 +#: application/views/logbookadvanced/index.php:260 +#: application/views/logbookadvanced/index.php:292 +#: application/views/logbookadvanced/index.php:303 +#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:345 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:389 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2145,7 +2149,7 @@ msgstr "" #: application/views/distances/index.php:34 #: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:204 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2156,7 +2160,7 @@ msgstr "Uydu" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:213 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2266,7 +2270,7 @@ msgstr "" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:39 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:119 -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/lotw_views/index.php:39 #: application/views/oqrs/qsolist.php:6 @@ -2780,7 +2784,7 @@ msgid "Status" msgstr "Durum" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3023,7 +3027,7 @@ msgstr "QSL Kartı" #: application/views/awards/waja/index.php:113 #: application/views/awards/was/index.php:109 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:521 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 @@ -3056,7 +3060,7 @@ msgstr "" #: application/views/awards/wab/index.php:108 #: application/views/awards/waja/index.php:129 #: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:487 +#: application/views/logbookadvanced/index.php:514 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "" @@ -3064,10 +3068,10 @@ msgstr "" #: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:242 -#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/index.php:247 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/useroptions.php:90 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:271 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 @@ -3378,7 +3382,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:37 application/views/labels/index.php:71 -#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/index.php:557 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3421,9 +3425,9 @@ msgstr "" #: application/views/awards/itu/index.php:148 #: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:253 -#: application/views/logbookadvanced/index.php:557 -#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/logbookadvanced/index.php:258 +#: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:143 msgid "ITU Zone" @@ -3544,7 +3548,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/index.php:533 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4011,8 +4015,8 @@ msgstr "" #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:569 -#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/logbookadvanced/index.php:599 +#: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 #: application/views/view_log/qso.php:199 msgid "Comment" @@ -4046,7 +4050,7 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 msgid "Contest" msgstr "" @@ -4458,7 +4462,7 @@ msgstr "Yayın Mode" #: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4466,7 +4470,7 @@ msgstr "" #: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4474,7 +4478,7 @@ msgstr "" #: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:223 +#: application/views/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4482,7 +4486,7 @@ msgstr "" #: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4490,7 +4494,7 @@ msgstr "" #: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:225 +#: application/views/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4498,7 +4502,7 @@ msgstr "" #: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:226 +#: application/views/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4506,7 +4510,7 @@ msgstr "" #: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:227 +#: application/views/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4514,7 +4518,7 @@ msgstr "" #: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:228 +#: application/views/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4522,7 +4526,7 @@ msgstr "" #: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:229 +#: application/views/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4530,7 +4534,7 @@ msgstr "" #: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:230 +#: application/views/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4538,7 +4542,7 @@ msgstr "" #: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:231 +#: application/views/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4546,7 +4550,7 @@ msgstr "" #: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:232 +#: application/views/logbookadvanced/index.php:237 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4554,7 +4558,7 @@ msgstr "" #: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:233 +#: application/views/logbookadvanced/index.php:238 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4562,7 +4566,7 @@ msgstr "" #: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:234 +#: application/views/logbookadvanced/index.php:239 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4570,7 +4574,7 @@ msgstr "" #: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:235 +#: application/views/logbookadvanced/index.php:240 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4578,7 +4582,7 @@ msgstr "" #: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:236 +#: application/views/logbookadvanced/index.php:241 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4586,7 +4590,7 @@ msgstr "Uydu" #: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:242 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4594,7 +4598,7 @@ msgstr "" #: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:238 +#: application/views/logbookadvanced/index.php:243 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -4699,8 +4703,9 @@ msgstr "İstenenler" #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:266 -#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:402 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 +#: src/QSLManager/QSO.php:367 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:439 msgid "Sent" msgstr "Gönderilen" @@ -4728,18 +4733,21 @@ msgstr "Gönderilen" #: application/views/view_log/partial/log_ajax.php:246 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:311 -#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:415 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 +#: src/QSLManager/QSO.php:379 src/QSLManager/QSO.php:416 +#: src/QSLManager/QSO.php:452 msgid "Received" msgstr "Gelen" #: application/views/dashboard/index.php:279 -#: application/views/logbookadvanced/index.php:290 -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:332 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 +#: application/views/logbookadvanced/index.php:295 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -4753,8 +4761,8 @@ msgstr "Gelen" #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:146 #: application/views/view_log/partial/log_ajax.php:184 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:272 -#: src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 +#: src/QSLManager/QSO.php:319 msgid "Requested" msgstr "İstenen" @@ -5334,9 +5342,9 @@ msgstr "" #: application/views/gridmap/index.php:38 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:217 -#: application/views/logbookadvanced/index.php:572 -#: application/views/logbookadvanced/useroptions.php:114 +#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:602 +#: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "" @@ -5644,7 +5652,7 @@ msgid "Log" msgstr "" #: application/views/interface_assets/header.php:334 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:440 #: application/views/oqrs/index.php:22 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" @@ -5957,8 +5965,8 @@ msgid "Start printing at?" msgstr "" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:371 -#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:560 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" @@ -5971,42 +5979,44 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:128 +#: application/views/logbookadvanced/index.php:133 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:132 +#: application/views/logbookadvanced/index.php:137 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:136 -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:141 +#: application/views/logbookadvanced/index.php:539 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:143 +#: application/views/logbookadvanced/index.php:148 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:220 +#: application/views/logbookadvanced/index.php:225 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:285 +#: application/views/logbookadvanced/index.php:290 msgid "QSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:330 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:293 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:405 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6036,13 +6046,15 @@ msgstr "" msgid "Yes" msgstr "Evet" -#: application/views/logbookadvanced/index.php:289 -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:305 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:406 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:392 #: application/views/qso/edit_ajax.php:425 @@ -6073,9 +6085,10 @@ msgstr "Evet" msgid "No" msgstr "Hayır" -#: application/views/logbookadvanced/index.php:291 -#: application/views/logbookadvanced/index.php:333 -#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:382 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6086,16 +6099,18 @@ msgstr "Hayır" #: application/views/search/search_result_ajax.php:225 #: application/views/view_log/partial/log_ajax.php:143 #: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 msgid "Queued" msgstr "Sıralanan" -#: application/views/logbookadvanced/index.php:292 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:334 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:366 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:393 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/qslprint/qsolist.php:67 #: application/views/qslprint/qsolist.php:109 @@ -6109,26 +6124,27 @@ msgstr "Sıralanan" #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:149 #: application/views/view_log/partial/log_ajax.php:187 -#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 msgid "Invalid (Ignore)" msgstr "Geçersiz (Yok say)" -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:301 msgid "QSL received" msgstr "" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:312 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:320 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:325 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6143,12 +6159,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:241 #: application/views/view_log/partial/log_ajax.php:162 #: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 msgid "Bureau" msgstr "Büro" -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:321 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:326 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6161,12 +6177,12 @@ msgstr "Büro" #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:165 #: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 msgid "Direct" msgstr "Direk" -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:322 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:327 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6179,12 +6195,12 @@ msgstr "Direk" #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:171 #: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 msgid "Electronic" msgstr "Elektronik" -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:323 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:409 @@ -6194,187 +6210,195 @@ msgstr "Elektronik" msgid "Manager" msgstr "Yönetici" -#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:322 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:332 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:343 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:354 +msgid "Clublog sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:365 +msgid "Clublog received" +msgstr "" + +#: application/views/logbookadvanced/index.php:376 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:387 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:402 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:387 +#: application/views/logbookadvanced/index.php:414 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" -#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:417 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:418 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:419 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:420 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:422 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:423 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:424 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:425 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:426 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:427 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:428 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:429 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:430 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:431 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:432 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:433 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:438 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:416 +#: application/views/logbookadvanced/index.php:443 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:419 +#: application/views/logbookadvanced/index.php:446 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:422 +#: application/views/logbookadvanced/index.php:449 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:452 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:443 +#: application/views/logbookadvanced/index.php:470 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:446 +#: application/views/logbookadvanced/index.php:473 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:449 +#: application/views/logbookadvanced/index.php:476 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/index.php:485 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:460 +#: application/views/logbookadvanced/index.php:487 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:490 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:470 +#: application/views/logbookadvanced/index.php:497 #: application/views/qso/index.php:272 #: application/views/station_profile/edit.php:65 msgid "Location" msgstr "Konum" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/lotw_views/index.php:47 #: application/views/simplefle/index.php:19 #: application/views/simplefle/index.php:158 @@ -6384,18 +6408,18 @@ msgstr "" msgid "Options" msgstr "" -#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:536 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:545 -#: application/views/logbookadvanced/useroptions.php:74 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -6423,37 +6447,37 @@ msgstr "" msgid "Column" msgstr "" -#: application/views/logbookadvanced/useroptions.php:144 +#: application/views/logbookadvanced/useroptions.php:148 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:145 +#: application/views/logbookadvanced/useroptions.php:149 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:150 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/stationsetup/exportmapoptions.php:23 msgctxt "Map Options" msgid "Path lines" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/useroptions.php:158 msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/logbookadvanced/useroptions.php:162 msgctxt "Map Options" msgid "CQ Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:166 msgctxt "Map Options" msgid "ITU Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:166 +#: application/views/logbookadvanced/useroptions.php:170 msgctxt "Map Options" msgid "Night Shadow" msgstr "" @@ -7125,7 +7149,7 @@ msgstr "İstasyon" #: application/views/qso/index.php:576 #: application/views/search/search_result_ajax.php:205 #: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:298 +#: src/QSLManager/QSO.php:300 msgid "Via" msgstr "üzerinden" diff --git a/application/locale/zh_CN/LC_MESSAGES/messages.po b/application/locale/zh_CN/LC_MESSAGES/messages.po index 7ae33a2a9..a82d22241 100644 --- a/application/locale/zh_CN/LC_MESSAGES/messages.po +++ b/application/locale/zh_CN/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-03 05:59+0000\n" +"POT-Creation-Date: 2024-07-03 06:10+0000\n" "PO-Revision-Date: 2024-07-01 05:27+0000\n" "Last-Translator: Karuru \n" "Language-Team: Chinese (Simplified) \n" @@ -180,8 +180,8 @@ msgstr "奖项 - %s" #: application/views/bands/index.php:49 #: application/views/contesting/index.php:170 #: application/views/interface_assets/header.php:192 -#: application/views/logbookadvanced/index.php:581 -#: application/views/logbookadvanced/useroptions.php:126 +#: application/views/logbookadvanced/index.php:611 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/qso/edit_ajax.php:360 application/views/qso/index.php:264 #: application/views/qso/index.php:508 application/views/user/edit.php:603 #: application/views/view_log/qso.php:351 @@ -195,10 +195,10 @@ msgstr "DOK" #: application/views/interface_assets/header.php:162 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:140 -#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/index.php:145 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/qslcarousel.php:35 -#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 #: application/views/lotw_views/index.php:40 #: application/views/qso/edit_ajax.php:218 application/views/qso/index.php:361 @@ -263,8 +263,8 @@ msgstr "" #: application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:176 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:264 -#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/logbookadvanced/index.php:269 +#: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -289,8 +289,8 @@ msgstr "SOTA" #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:268 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/index.php:273 +#: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:340 @@ -309,9 +309,9 @@ msgstr "WWFF" #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:180 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:272 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/useroptions.php:102 +#: application/views/logbookadvanced/index.php:277 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:11 @@ -381,7 +381,7 @@ msgstr "Fred Fish 纪念奖(FFMA)" #: application/controllers/Awards.php:1125 #: application/views/interface_assets/header.php:166 -#: application/views/logbookadvanced/useroptions.php:134 +#: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "SIG" @@ -756,7 +756,7 @@ msgstr "日志簿" #: application/views/awards/waja/index.php:53 #: application/views/awards/was/index.php:53 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -798,8 +798,8 @@ msgstr "QSL" #: application/views/user/edit.php:659 #: application/views/view_log/partial/log_ajax.php:230 #: application/views/view_log/partial/log_ajax.php:231 -#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:365 -#: src/QSLManager/QSO.php:377 +#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:367 +#: src/QSLManager/QSO.php:379 msgid "LoTW" msgstr "LoTW" @@ -832,7 +832,7 @@ msgstr "LoTW" #: application/views/user/edit.php:667 application/views/user/edit.php:731 #: application/views/view_log/partial/log_ajax.php:217 #: application/views/view_log/partial/log_ajax.php:218 -#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: src/QSLManager/QSO.php:439 src/QSLManager/QSO.php:452 msgid "eQSL" msgstr "eQSL" @@ -842,12 +842,14 @@ msgstr "eQSL" #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 #: application/views/awards/waja/index.php:69 +#: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/edit.php:325 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/qso.php:423 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:416 msgid "Clublog" msgstr "Clublog" @@ -879,8 +881,8 @@ msgstr "Clublog" #: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 #: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:177 -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:182 +#: application/views/logbookadvanced/index.php:542 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -926,7 +928,7 @@ msgstr "模式" #: application/views/awards/wwff/index.php:36 #: application/views/contesting/index.php:111 #: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:545 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -953,7 +955,7 @@ msgstr "信号报告(发)" #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/index.php:548 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1005,10 +1007,10 @@ msgstr "DXCC 实体" #: application/views/bands/index.php:52 application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:178 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:157 -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:162 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1036,10 +1038,10 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:20 #: application/views/logbookadvanced/edit.php:61 -#: application/views/logbookadvanced/index.php:169 -#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/index.php:174 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:36 -#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1067,9 +1069,9 @@ msgstr "州" #: application/views/labels/index.php:121 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:178 #: application/views/logbookadvanced/qslcarousel.php:39 -#: application/views/logbookadvanced/useroptions.php:122 +#: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 #: application/views/qslcard/searchresult.php:19 #: application/views/qslcard/searchresult.php:35 @@ -1150,8 +1152,8 @@ msgstr "距离" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:188 -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:193 +#: application/views/logbookadvanced/index.php:551 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1216,9 +1218,9 @@ msgstr "频率" #: application/controllers/Logbook.php:1288 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:276 -#: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/logbookadvanced/index.php:281 +#: application/views/logbookadvanced/index.php:596 +#: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1243,7 +1245,7 @@ msgstr "操作员" #: application/views/dxatlas/index.php:65 #: application/views/interface_assets/footer.php:630 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:149 +#: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 #: application/views/lotw_views/index.php:56 #: application/views/qso/components/previous_contacts.php:59 @@ -1533,7 +1535,7 @@ msgstr "卫星时钟" #: application/views/continents/index.php:49 #: application/views/interface_assets/header.php:328 #: application/views/interface_assets/header.php:335 -#: application/views/logbookadvanced/index.php:482 +#: application/views/logbookadvanced/index.php:509 #: application/views/oqrs/index.php:23 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1711,7 +1713,7 @@ msgstr "QSO" #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 -#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:511 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 @@ -1755,7 +1757,7 @@ msgstr "确定要删除台站 '%s' 吗?这会删除此台站下的所有 QSO #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 -#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:512 #: application/views/lotw_views/index.php:118 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 @@ -2056,21 +2058,23 @@ msgstr "每月" #: application/views/gridmap/index.php:83 application/views/kml/index.php:21 #: application/views/kml/index.php:33 application/views/kml/index.php:49 #: application/views/kml/index.php:67 application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:179 -#: application/views/logbookadvanced/index.php:190 -#: application/views/logbookadvanced/index.php:201 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:219 -#: application/views/logbookadvanced/index.php:244 -#: application/views/logbookadvanced/index.php:255 -#: application/views/logbookadvanced/index.php:287 -#: application/views/logbookadvanced/index.php:298 -#: application/views/logbookadvanced/index.php:309 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:329 -#: application/views/logbookadvanced/index.php:340 -#: application/views/logbookadvanced/index.php:351 -#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:184 +#: application/views/logbookadvanced/index.php:195 +#: application/views/logbookadvanced/index.php:206 +#: application/views/logbookadvanced/index.php:215 +#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:249 +#: application/views/logbookadvanced/index.php:260 +#: application/views/logbookadvanced/index.php:292 +#: application/views/logbookadvanced/index.php:303 +#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:345 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:389 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2145,7 +2149,7 @@ msgstr "显示" #: application/views/distances/index.php:34 #: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:204 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2156,7 +2160,7 @@ msgstr "卫星" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:213 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2266,7 +2270,7 @@ msgstr "未找到!" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:39 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:119 -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/lotw_views/index.php:39 #: application/views/oqrs/qsolist.php:6 @@ -2780,7 +2784,7 @@ msgid "Status" msgstr "状态" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "操作" @@ -3023,7 +3027,7 @@ msgstr "QSL 卡片" #: application/views/awards/waja/index.php:113 #: application/views/awards/was/index.php:109 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:521 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 @@ -3056,7 +3060,7 @@ msgstr "" #: application/views/awards/wab/index.php:108 #: application/views/awards/waja/index.php:129 #: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:487 +#: application/views/logbookadvanced/index.php:514 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "地图" @@ -3064,10 +3068,10 @@ msgstr "地图" #: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:242 -#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/index.php:247 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/useroptions.php:90 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:271 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 @@ -3378,7 +3382,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:37 application/views/labels/index.php:71 -#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/index.php:557 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3421,9 +3425,9 @@ msgstr "显示 ITU 分区地图" #: application/views/awards/itu/index.php:148 #: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:253 -#: application/views/logbookadvanced/index.php:557 -#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/logbookadvanced/index.php:258 +#: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:143 msgid "ITU Zone" @@ -3544,7 +3548,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/index.php:533 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4011,8 +4015,8 @@ msgstr "未找到即将进行的激活。 请稍后再回来查看。" #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:569 -#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/logbookadvanced/index.php:599 +#: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 #: application/views/view_log/qso.php:199 msgid "Comment" @@ -4046,7 +4050,7 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 msgid "Contest" msgstr "" @@ -4458,7 +4462,7 @@ msgstr "传播模式" #: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4466,7 +4470,7 @@ msgstr "" #: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4474,7 +4478,7 @@ msgstr "" #: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:223 +#: application/views/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4482,7 +4486,7 @@ msgstr "" #: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4490,7 +4494,7 @@ msgstr "" #: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:225 +#: application/views/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4498,7 +4502,7 @@ msgstr "" #: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:226 +#: application/views/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4506,7 +4510,7 @@ msgstr "" #: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:227 +#: application/views/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4514,7 +4518,7 @@ msgstr "" #: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:228 +#: application/views/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4522,7 +4526,7 @@ msgstr "" #: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:229 +#: application/views/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4530,7 +4534,7 @@ msgstr "" #: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:230 +#: application/views/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4538,7 +4542,7 @@ msgstr "" #: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:231 +#: application/views/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4546,7 +4550,7 @@ msgstr "" #: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:232 +#: application/views/logbookadvanced/index.php:237 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4554,7 +4558,7 @@ msgstr "" #: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:233 +#: application/views/logbookadvanced/index.php:238 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4562,7 +4566,7 @@ msgstr "" #: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:234 +#: application/views/logbookadvanced/index.php:239 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4570,7 +4574,7 @@ msgstr "" #: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:235 +#: application/views/logbookadvanced/index.php:240 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4578,7 +4582,7 @@ msgstr "" #: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:236 +#: application/views/logbookadvanced/index.php:241 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4586,7 +4590,7 @@ msgstr "卫星" #: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:242 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4594,7 +4598,7 @@ msgstr "" #: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:238 +#: application/views/logbookadvanced/index.php:243 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -4698,8 +4702,9 @@ msgstr "待通联" #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:266 -#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:402 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 +#: src/QSLManager/QSO.php:367 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:439 msgid "Sent" msgstr "已发送" @@ -4727,18 +4732,21 @@ msgstr "已发送" #: application/views/view_log/partial/log_ajax.php:246 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:311 -#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:415 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 +#: src/QSLManager/QSO.php:379 src/QSLManager/QSO.php:416 +#: src/QSLManager/QSO.php:452 msgid "Received" msgstr "已收到" #: application/views/dashboard/index.php:279 -#: application/views/logbookadvanced/index.php:290 -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:332 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 +#: application/views/logbookadvanced/index.php:295 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -4752,8 +4760,8 @@ msgstr "已收到" #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:146 #: application/views/view_log/partial/log_ajax.php:184 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:272 -#: src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 +#: src/QSLManager/QSO.php:319 msgid "Requested" msgstr "已请求" @@ -5332,9 +5340,9 @@ msgstr "" #: application/views/gridmap/index.php:38 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:217 -#: application/views/logbookadvanced/index.php:572 -#: application/views/logbookadvanced/useroptions.php:114 +#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:602 +#: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "传播方式" @@ -5642,7 +5650,7 @@ msgid "Log" msgstr "日志" #: application/views/interface_assets/header.php:334 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:440 #: application/views/oqrs/index.php:22 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" @@ -5955,8 +5963,8 @@ msgid "Start printing at?" msgstr "开始打印编号" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:371 -#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:560 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "QSL 通过" @@ -5969,42 +5977,44 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:128 +#: application/views/logbookadvanced/index.php:133 msgid "From" msgstr "开始日期" -#: application/views/logbookadvanced/index.php:132 +#: application/views/logbookadvanced/index.php:137 msgid "To" msgstr "截止日期" -#: application/views/logbookadvanced/index.php:136 -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:141 +#: application/views/logbookadvanced/index.php:539 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "对方呼号(Dx)" -#: application/views/logbookadvanced/index.php:143 +#: application/views/logbookadvanced/index.php:148 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:220 +#: application/views/logbookadvanced/index.php:225 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:285 +#: application/views/logbookadvanced/index.php:290 msgid "QSL sent" msgstr "QSL 发送" -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:330 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:293 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:405 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6034,13 +6044,15 @@ msgstr "QSL 发送" msgid "Yes" msgstr "是" -#: application/views/logbookadvanced/index.php:289 -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:305 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:406 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:392 #: application/views/qso/edit_ajax.php:425 @@ -6071,9 +6083,10 @@ msgstr "是" msgid "No" msgstr "否" -#: application/views/logbookadvanced/index.php:291 -#: application/views/logbookadvanced/index.php:333 -#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:382 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6084,16 +6097,18 @@ msgstr "否" #: application/views/search/search_result_ajax.php:225 #: application/views/view_log/partial/log_ajax.php:143 #: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 msgid "Queued" msgstr "已排队" -#: application/views/logbookadvanced/index.php:292 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:334 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:366 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:393 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/qslprint/qsolist.php:67 #: application/views/qslprint/qsolist.php:109 @@ -6107,26 +6122,27 @@ msgstr "已排队" #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:149 #: application/views/view_log/partial/log_ajax.php:187 -#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 msgid "Invalid (Ignore)" msgstr "无效(忽略)" -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:301 msgid "QSL received" msgstr "QSL 接收" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 msgid "Verified" msgstr "已验证" -#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:312 msgid "QSL send. method" msgstr "QSL 发送方式" -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:320 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:325 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6141,12 +6157,12 @@ msgstr "QSL 发送方式" #: application/views/search/search_result_ajax.php:241 #: application/views/view_log/partial/log_ajax.php:162 #: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 msgid "Bureau" msgstr "卡片局" -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:321 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:326 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6159,12 +6175,12 @@ msgstr "卡片局" #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:165 #: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 msgid "Direct" msgstr "直邮" -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:322 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:327 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6177,12 +6193,12 @@ msgstr "直邮" #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:171 #: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 msgid "Electronic" msgstr "电子" -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:323 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:409 @@ -6192,187 +6208,195 @@ msgstr "电子" msgid "Manager" msgstr "管理员" -#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:322 msgid "QSL recv. method" msgstr "QSL 接收方式" -#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:332 msgid "LoTW sent" msgstr "LoTW 发送" -#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:343 msgid "LoTW received" msgstr "LoTW 接收" -#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:354 +msgid "Clublog sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:365 +msgid "Clublog received" +msgstr "" + +#: application/views/logbookadvanced/index.php:376 msgid "eQSL sent" msgstr "eQSL 发送" -#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:387 msgid "eQSL received" msgstr "eQSL 接收" -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:402 msgid "QSL Images" msgstr "QSL 图片" -#: application/views/logbookadvanced/index.php:387 +#: application/views/logbookadvanced/index.php:414 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "警告!确定要删除选中的QSO吗?" -#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:417 msgid "With selected: " msgstr "用选中行进行:" -#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:418 msgid "Update from Callbook" msgstr "从 Callbook 更新" -#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:419 msgid "Queue Bureau" msgstr "卡片局队列" -#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:420 msgid "Queue Direct" msgstr "直邮卡片队列" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "Queue Electronic" msgstr "电子卡片队列" -#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:422 msgid "Sent (Bureau)" msgstr "已发送(卡片局)" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:423 msgid "Sent (Direct)" msgstr "已发送(直邮)" -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:424 msgid "Sent (Electronic)" msgstr "已发送(电子)" -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:425 msgid "Not Sent" msgstr "未发送" -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:426 msgid "QSL Not Required" msgstr "未获取 QSL" -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:427 msgid "Not Received" msgstr "未收到" -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:428 msgid "Received (Bureau)" msgstr "已接收(卡片局)" -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:429 msgid "Received (Direct)" msgstr "已接收(直邮)" -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:430 msgid "Received (Electronic)" msgstr "已接收(电子)" -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:431 msgid "Create ADIF" msgstr "创建 ADIF" -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:432 msgid "Print Label" msgstr "打印标签" -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:433 msgid "QSL Slideshow" msgstr "QSL 展示窗" -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:438 msgid "Quicksearch with selected: " msgstr "用选中行的条件进行快速搜索:" -#: application/views/logbookadvanced/index.php:416 +#: application/views/logbookadvanced/index.php:443 msgid "Search DXCC" msgstr "搜索 DXCC" -#: application/views/logbookadvanced/index.php:419 +#: application/views/logbookadvanced/index.php:446 msgid "Search State" msgstr "搜索 州/省" -#: application/views/logbookadvanced/index.php:422 +#: application/views/logbookadvanced/index.php:449 msgid "Search Gridsquare" msgstr "搜索 网格" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:452 msgid "Search CQ Zone" msgstr "搜索 CQ 分区" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Search ITU Zone" msgstr "搜索 ITU 分区" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Search Mode" msgstr "搜索 模式" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Search Band" msgstr "搜索 频段" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Search IOTA" msgstr "搜索 IOTA" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "Search SOTA" msgstr "搜索 SOTA" -#: application/views/logbookadvanced/index.php:443 +#: application/views/logbookadvanced/index.php:470 msgid "Search POTA" msgstr "搜索 POTA" -#: application/views/logbookadvanced/index.php:446 +#: application/views/logbookadvanced/index.php:473 msgid "Search WWFF" msgstr "搜索 WWFF" -#: application/views/logbookadvanced/index.php:449 +#: application/views/logbookadvanced/index.php:476 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Quickfilters" msgstr "快速过滤" -#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/index.php:485 msgid "QSL Filters" msgstr "过滤 QSL" -#: application/views/logbookadvanced/index.php:460 +#: application/views/logbookadvanced/index.php:487 #: application/views/mode/index.php:68 msgid "Filters" msgstr "过滤器" -#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:490 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "每页结果数" -#: application/views/logbookadvanced/index.php:470 +#: application/views/logbookadvanced/index.php:497 #: application/views/qso/index.php:272 #: application/views/station_profile/edit.php:65 msgid "Location" msgstr "位置" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Dupes" msgstr "重复 QSO" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/lotw_views/index.php:47 #: application/views/simplefle/index.php:19 #: application/views/simplefle/index.php:158 @@ -6382,18 +6406,18 @@ msgstr "" msgid "Options" msgstr "设置" -#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:536 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "本台呼号(De)" -#: application/views/logbookadvanced/index.php:545 -#: application/views/logbookadvanced/useroptions.php:74 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "QSL 信息" -#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "电台网格" @@ -6421,37 +6445,37 @@ msgstr "包含通过" msgid "Column" msgstr "列" -#: application/views/logbookadvanced/useroptions.php:144 +#: application/views/logbookadvanced/useroptions.php:148 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:145 +#: application/views/logbookadvanced/useroptions.php:149 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:150 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/stationsetup/exportmapoptions.php:23 msgctxt "Map Options" msgid "Path lines" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/useroptions.php:158 msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/logbookadvanced/useroptions.php:162 msgctxt "Map Options" msgid "CQ Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:166 msgctxt "Map Options" msgid "ITU Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:166 +#: application/views/logbookadvanced/useroptions.php:170 msgctxt "Map Options" msgid "Night Shadow" msgstr "" @@ -7122,7 +7146,7 @@ msgstr "电台站" #: application/views/qso/index.php:576 #: application/views/search/search_result_ajax.php:205 #: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:298 +#: src/QSLManager/QSO.php:300 msgid "Via" msgstr "通过" diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index e7c20b4a6..4042d8398 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-03 05:59+0000\n" +"POT-Creation-Date: 2024-07-03 06:10+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -179,8 +179,8 @@ msgstr "" #: application/views/bands/index.php:49 #: application/views/contesting/index.php:170 #: application/views/interface_assets/header.php:192 -#: application/views/logbookadvanced/index.php:581 -#: application/views/logbookadvanced/useroptions.php:126 +#: application/views/logbookadvanced/index.php:611 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/qso/edit_ajax.php:360 application/views/qso/index.php:264 #: application/views/qso/index.php:508 application/views/user/edit.php:603 #: application/views/view_log/qso.php:351 @@ -194,10 +194,10 @@ msgstr "" #: application/views/interface_assets/header.php:162 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:140 -#: application/views/logbookadvanced/index.php:548 +#: application/views/logbookadvanced/index.php:145 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/qslcarousel.php:35 -#: application/views/logbookadvanced/useroptions.php:78 +#: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 #: application/views/lotw_views/index.php:40 #: application/views/qso/edit_ajax.php:218 application/views/qso/index.php:361 @@ -262,8 +262,8 @@ msgstr "" #: application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:176 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:264 -#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/logbookadvanced/index.php:269 +#: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -288,8 +288,8 @@ msgstr "" #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:268 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/index.php:273 +#: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:340 @@ -308,9 +308,9 @@ msgstr "" #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:180 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:272 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/useroptions.php:102 +#: application/views/logbookadvanced/index.php:277 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/useroptions.php:106 #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:11 @@ -380,7 +380,7 @@ msgstr "" #: application/controllers/Awards.php:1125 #: application/views/interface_assets/header.php:166 -#: application/views/logbookadvanced/useroptions.php:134 +#: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "" @@ -756,7 +756,7 @@ msgstr "" #: application/views/awards/waja/index.php:53 #: application/views/awards/was/index.php:53 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -798,8 +798,8 @@ msgstr "" #: application/views/user/edit.php:659 #: application/views/view_log/partial/log_ajax.php:230 #: application/views/view_log/partial/log_ajax.php:231 -#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:365 -#: src/QSLManager/QSO.php:377 +#: application/views/view_log/qso.php:408 src/QSLManager/QSO.php:367 +#: src/QSLManager/QSO.php:379 msgid "LoTW" msgstr "" @@ -832,7 +832,7 @@ msgstr "" #: application/views/user/edit.php:667 application/views/user/edit.php:731 #: application/views/view_log/partial/log_ajax.php:217 #: application/views/view_log/partial/log_ajax.php:218 -#: src/QSLManager/QSO.php:402 src/QSLManager/QSO.php:415 +#: src/QSLManager/QSO.php:439 src/QSLManager/QSO.php:452 msgid "eQSL" msgstr "" @@ -842,12 +842,14 @@ msgstr "" #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 #: application/views/awards/waja/index.php:69 +#: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/edit.php:325 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/qso.php:423 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:416 msgid "Clublog" msgstr "" @@ -879,8 +881,8 @@ msgstr "" #: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 #: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:177 -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:182 +#: application/views/logbookadvanced/index.php:542 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -926,7 +928,7 @@ msgstr "" #: application/views/awards/wwff/index.php:36 #: application/views/contesting/index.php:111 #: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:545 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -953,7 +955,7 @@ msgstr "" #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/index.php:548 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1005,10 +1007,10 @@ msgstr "" #: application/views/bands/index.php:52 application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:178 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:157 -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:162 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1036,10 +1038,10 @@ msgstr "" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:20 #: application/views/logbookadvanced/edit.php:61 -#: application/views/logbookadvanced/index.php:169 -#: application/views/logbookadvanced/index.php:551 +#: application/views/logbookadvanced/index.php:174 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:36 -#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1067,9 +1069,9 @@ msgstr "" #: application/views/labels/index.php:121 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:178 #: application/views/logbookadvanced/qslcarousel.php:39 -#: application/views/logbookadvanced/useroptions.php:122 +#: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 #: application/views/qslcard/searchresult.php:19 #: application/views/qslcard/searchresult.php:35 @@ -1150,8 +1152,8 @@ msgstr "" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:188 -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:193 +#: application/views/logbookadvanced/index.php:551 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1216,9 +1218,9 @@ msgstr "" #: application/controllers/Logbook.php:1288 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:276 -#: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/logbookadvanced/index.php:281 +#: application/views/logbookadvanced/index.php:596 +#: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1243,7 +1245,7 @@ msgstr "" #: application/views/dxatlas/index.php:65 #: application/views/interface_assets/footer.php:630 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:149 +#: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 #: application/views/lotw_views/index.php:56 #: application/views/qso/components/previous_contacts.php:59 @@ -1533,7 +1535,7 @@ msgstr "" #: application/views/continents/index.php:49 #: application/views/interface_assets/header.php:328 #: application/views/interface_assets/header.php:335 -#: application/views/logbookadvanced/index.php:482 +#: application/views/logbookadvanced/index.php:509 #: application/views/oqrs/index.php:23 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1711,7 +1713,7 @@ msgstr "" #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 application/views/labels/index.php:43 #: application/views/labels/index.php:79 -#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:511 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 @@ -1755,7 +1757,7 @@ msgstr "" #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 #: application/views/labels/index.php:44 application/views/labels/index.php:80 -#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:512 #: application/views/lotw_views/index.php:118 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 @@ -2056,21 +2058,23 @@ msgstr "" #: application/views/gridmap/index.php:83 application/views/kml/index.php:21 #: application/views/kml/index.php:33 application/views/kml/index.php:49 #: application/views/kml/index.php:67 application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:179 -#: application/views/logbookadvanced/index.php:190 -#: application/views/logbookadvanced/index.php:201 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:219 -#: application/views/logbookadvanced/index.php:244 -#: application/views/logbookadvanced/index.php:255 -#: application/views/logbookadvanced/index.php:287 -#: application/views/logbookadvanced/index.php:298 -#: application/views/logbookadvanced/index.php:309 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:329 -#: application/views/logbookadvanced/index.php:340 -#: application/views/logbookadvanced/index.php:351 -#: application/views/logbookadvanced/index.php:362 +#: application/views/logbookadvanced/index.php:184 +#: application/views/logbookadvanced/index.php:195 +#: application/views/logbookadvanced/index.php:206 +#: application/views/logbookadvanced/index.php:215 +#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:249 +#: application/views/logbookadvanced/index.php:260 +#: application/views/logbookadvanced/index.php:292 +#: application/views/logbookadvanced/index.php:303 +#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:345 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:389 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2145,7 +2149,7 @@ msgstr "" #: application/views/distances/index.php:34 #: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:199 +#: application/views/logbookadvanced/index.php:204 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2156,7 +2160,7 @@ msgstr "" #: application/views/awards/wab/index.php:44 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:208 +#: application/views/logbookadvanced/index.php:213 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2266,7 +2270,7 @@ msgstr "" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:39 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:119 -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/lotw_views/index.php:39 #: application/views/oqrs/qsolist.php:6 @@ -2780,7 +2784,7 @@ msgid "Status" msgstr "" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3023,7 +3027,7 @@ msgstr "" #: application/views/awards/waja/index.php:113 #: application/views/awards/was/index.php:109 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:521 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 @@ -3056,7 +3060,7 @@ msgstr "" #: application/views/awards/wab/index.php:108 #: application/views/awards/waja/index.php:129 #: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:487 +#: application/views/logbookadvanced/index.php:514 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "" @@ -3064,10 +3068,10 @@ msgstr "" #: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:242 -#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/index.php:247 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/logbookadvanced/useroptions.php:90 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:271 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 @@ -3378,7 +3382,7 @@ msgstr "" #: application/views/contesting/index.php:171 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:37 application/views/labels/index.php:71 -#: application/views/logbookadvanced/index.php:530 +#: application/views/logbookadvanced/index.php:557 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3421,9 +3425,9 @@ msgstr "" #: application/views/awards/itu/index.php:148 #: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:253 -#: application/views/logbookadvanced/index.php:557 -#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/logbookadvanced/index.php:258 +#: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/useroptions.php:94 #: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:143 msgid "ITU Zone" @@ -3544,7 +3548,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/index.php:533 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4011,8 +4015,8 @@ msgstr "" #: application/views/contesting/index.php:158 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:569 -#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/logbookadvanced/index.php:599 +#: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 #: application/views/view_log/qso.php:199 msgid "Comment" @@ -4046,7 +4050,7 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 msgid "Contest" msgstr "" @@ -4458,7 +4462,7 @@ msgstr "" #: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:226 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" @@ -4466,7 +4470,7 @@ msgstr "" #: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:227 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" @@ -4474,7 +4478,7 @@ msgstr "" #: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:223 +#: application/views/logbookadvanced/index.php:228 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" @@ -4482,7 +4486,7 @@ msgstr "" #: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:224 +#: application/views/logbookadvanced/index.php:229 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" @@ -4490,7 +4494,7 @@ msgstr "" #: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:225 +#: application/views/logbookadvanced/index.php:230 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" @@ -4498,7 +4502,7 @@ msgstr "" #: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:226 +#: application/views/logbookadvanced/index.php:231 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" @@ -4506,7 +4510,7 @@ msgstr "" #: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:227 +#: application/views/logbookadvanced/index.php:232 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" @@ -4514,7 +4518,7 @@ msgstr "" #: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:228 +#: application/views/logbookadvanced/index.php:233 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" @@ -4522,7 +4526,7 @@ msgstr "" #: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:229 +#: application/views/logbookadvanced/index.php:234 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" @@ -4530,7 +4534,7 @@ msgstr "" #: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:230 +#: application/views/logbookadvanced/index.php:235 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" @@ -4538,7 +4542,7 @@ msgstr "" #: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:231 +#: application/views/logbookadvanced/index.php:236 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" @@ -4546,7 +4550,7 @@ msgstr "" #: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:232 +#: application/views/logbookadvanced/index.php:237 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" @@ -4554,7 +4558,7 @@ msgstr "" #: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:233 +#: application/views/logbookadvanced/index.php:238 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" @@ -4562,7 +4566,7 @@ msgstr "" #: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:234 +#: application/views/logbookadvanced/index.php:239 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" @@ -4570,7 +4574,7 @@ msgstr "" #: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:235 +#: application/views/logbookadvanced/index.php:240 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" @@ -4578,7 +4582,7 @@ msgstr "" #: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:236 +#: application/views/logbookadvanced/index.php:241 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" @@ -4586,7 +4590,7 @@ msgstr "" #: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:242 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" @@ -4594,7 +4598,7 @@ msgstr "" #: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:238 +#: application/views/logbookadvanced/index.php:243 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" @@ -4699,8 +4703,9 @@ msgstr "" #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:266 -#: src/QSLManager/QSO.php:365 src/QSLManager/QSO.php:402 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 +#: src/QSLManager/QSO.php:367 src/QSLManager/QSO.php:403 +#: src/QSLManager/QSO.php:439 msgid "Sent" msgstr "" @@ -4728,18 +4733,21 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:246 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:311 -#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:415 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 +#: src/QSLManager/QSO.php:379 src/QSLManager/QSO.php:416 +#: src/QSLManager/QSO.php:452 msgid "Received" msgstr "" #: application/views/dashboard/index.php:279 -#: application/views/logbookadvanced/index.php:290 -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:332 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 +#: application/views/logbookadvanced/index.php:295 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 @@ -4753,8 +4761,8 @@ msgstr "" #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:146 #: application/views/view_log/partial/log_ajax.php:184 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:272 -#: src/QSLManager/QSO.php:317 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 +#: src/QSLManager/QSO.php:319 msgid "Requested" msgstr "" @@ -5334,9 +5342,9 @@ msgstr "" #: application/views/gridmap/index.php:38 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:217 -#: application/views/logbookadvanced/index.php:572 -#: application/views/logbookadvanced/useroptions.php:114 +#: application/views/logbookadvanced/index.php:222 +#: application/views/logbookadvanced/index.php:602 +#: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" msgstr "" @@ -5644,7 +5652,7 @@ msgid "Log" msgstr "" #: application/views/interface_assets/header.php:334 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:440 #: application/views/oqrs/index.php:22 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" @@ -5957,8 +5965,8 @@ msgid "Start printing at?" msgstr "" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:371 -#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:560 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" @@ -5971,42 +5979,44 @@ msgstr "" msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:128 +#: application/views/logbookadvanced/index.php:133 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:132 +#: application/views/logbookadvanced/index.php:137 msgid "To" msgstr "" -#: application/views/logbookadvanced/index.php:136 -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:141 +#: application/views/logbookadvanced/index.php:539 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:143 +#: application/views/logbookadvanced/index.php:148 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:220 +#: application/views/logbookadvanced/index.php:225 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:285 +#: application/views/logbookadvanced/index.php:290 msgid "QSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:330 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:293 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:346 +#: application/views/logbookadvanced/index.php:357 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:405 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:393 #: application/views/qso/edit_ajax.php:426 @@ -6036,13 +6046,15 @@ msgstr "" msgid "Yes" msgstr "" -#: application/views/logbookadvanced/index.php:289 -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:305 +#: application/views/logbookadvanced/index.php:336 +#: application/views/logbookadvanced/index.php:347 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:406 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:392 #: application/views/qso/edit_ajax.php:425 @@ -6073,9 +6085,10 @@ msgstr "" msgid "No" msgstr "" -#: application/views/logbookadvanced/index.php:291 -#: application/views/logbookadvanced/index.php:333 -#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:382 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 @@ -6086,16 +6099,18 @@ msgstr "" #: application/views/search/search_result_ajax.php:225 #: application/views/view_log/partial/log_ajax.php:143 #: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:269 src/QSLManager/QSO.php:314 +#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 msgid "Queued" msgstr "" -#: application/views/logbookadvanced/index.php:292 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:334 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:366 +#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:393 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/qslprint/qsolist.php:67 #: application/views/qslprint/qsolist.php:109 @@ -6109,26 +6124,27 @@ msgstr "" #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:149 #: application/views/view_log/partial/log_ajax.php:187 -#: src/QSLManager/QSO.php:275 src/QSLManager/QSO.php:320 +#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 msgid "Invalid (Ignore)" msgstr "" -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:301 msgid "QSL received" msgstr "" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 +#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:307 +#: application/views/logbookadvanced/index.php:312 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:320 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:325 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6143,12 +6159,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:241 #: application/views/view_log/partial/log_ajax.php:162 #: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:292 src/QSLManager/QSO.php:335 +#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 msgid "Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:321 +#: application/views/logbookadvanced/index.php:316 +#: application/views/logbookadvanced/index.php:326 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 @@ -6161,12 +6177,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:165 #: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:295 src/QSLManager/QSO.php:338 +#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 msgid "Direct" msgstr "" -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:322 +#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:327 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 @@ -6179,12 +6195,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:171 #: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:301 src/QSLManager/QSO.php:344 +#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 msgid "Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:323 +#: application/views/logbookadvanced/index.php:318 +#: application/views/logbookadvanced/index.php:328 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 #: application/views/qso/edit_ajax.php:409 @@ -6194,187 +6210,195 @@ msgstr "" msgid "Manager" msgstr "" -#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:322 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:332 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:343 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:354 +msgid "Clublog sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:365 +msgid "Clublog received" +msgstr "" + +#: application/views/logbookadvanced/index.php:376 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:360 +#: application/views/logbookadvanced/index.php:387 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:402 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:387 +#: application/views/logbookadvanced/index.php:414 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" -#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:417 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:418 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:419 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:420 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:422 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:423 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:424 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:425 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:426 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:427 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:428 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:429 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:430 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:431 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:432 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:433 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:438 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:416 +#: application/views/logbookadvanced/index.php:443 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:419 +#: application/views/logbookadvanced/index.php:446 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:422 +#: application/views/logbookadvanced/index.php:449 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:452 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:443 +#: application/views/logbookadvanced/index.php:470 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:446 +#: application/views/logbookadvanced/index.php:473 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:449 +#: application/views/logbookadvanced/index.php:476 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/index.php:485 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:460 +#: application/views/logbookadvanced/index.php:487 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:490 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:470 +#: application/views/logbookadvanced/index.php:497 #: application/views/qso/index.php:272 #: application/views/station_profile/edit.php:65 msgid "Location" msgstr "" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/lotw_views/index.php:47 #: application/views/simplefle/index.php:19 #: application/views/simplefle/index.php:158 @@ -6384,18 +6408,18 @@ msgstr "" msgid "Options" msgstr "" -#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:536 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:545 -#: application/views/logbookadvanced/useroptions.php:74 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -6423,37 +6447,37 @@ msgstr "" msgid "Column" msgstr "" -#: application/views/logbookadvanced/useroptions.php:144 +#: application/views/logbookadvanced/useroptions.php:148 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:145 +#: application/views/logbookadvanced/useroptions.php:149 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:150 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/stationsetup/exportmapoptions.php:23 msgctxt "Map Options" msgid "Path lines" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/useroptions.php:158 msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/logbookadvanced/useroptions.php:162 msgctxt "Map Options" msgid "CQ Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:166 msgctxt "Map Options" msgid "ITU Zones" msgstr "" -#: application/views/logbookadvanced/useroptions.php:166 +#: application/views/logbookadvanced/useroptions.php:170 msgctxt "Map Options" msgid "Night Shadow" msgstr "" @@ -7125,7 +7149,7 @@ msgstr "" #: application/views/qso/index.php:576 #: application/views/search/search_result_ajax.php:205 #: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:298 +#: src/QSLManager/QSO.php:300 msgid "Via" msgstr "" From 9e40fb7a0f1a117d3a5eccedeb2685b9789d769c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Barrau?= Date: Tue, 2 Jul 2024 19:27:15 +0000 Subject: [PATCH 14/24] Translated using Weblate (French) Currently translated at 35.2% (628 of 1784 strings) Translation: Wavelog/Main Translation Translate-URL: https://translate.wavelog.org/projects/wavelog/main-translation/fr/ --- .../locale/fr_FR/LC_MESSAGES/messages.po | 1047 +++++++++++++---- 1 file changed, 813 insertions(+), 234 deletions(-) diff --git a/application/locale/fr_FR/LC_MESSAGES/messages.po b/application/locale/fr_FR/LC_MESSAGES/messages.po index 4dbc0624a..bf9ea38ac 100644 --- a/application/locale/fr_FR/LC_MESSAGES/messages.po +++ b/application/locale/fr_FR/LC_MESSAGES/messages.po @@ -9,7 +9,8 @@ msgstr "" "POT-Creation-Date: 2024-07-03 06:10+0000\n" "PO-Revision-Date: 2024-06-26 11:15+0000\n" "Last-Translator: Aurélien Barrau \n" -"Language-Team: French \n" +"Language-Team: French \n" "Language: fr_FR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -116,7 +117,7 @@ msgstr "Description de l'API" #: application/controllers/Api.php:51 msgid "API Key is required. Do not change this field" -msgstr "" +msgstr "La clé API est requise, ne modifiez pas ce champ" #: application/controllers/Api.php:57 msgid "Edit API Description" @@ -682,7 +683,9 @@ msgstr "" #: application/controllers/Labels.php:132 #: application/controllers/Labels.php:471 -msgid "Your paper could not be saved. Remember that it can't have the same name as existing paper types." +msgid "" +"Your paper could not be saved. Remember that it can't have the same name as " +"existing paper types." msgstr "" #: application/controllers/Labels.php:205 @@ -697,7 +700,9 @@ msgstr "" #: application/controllers/Labels.php:225 #: application/controllers/Labels.php:228 -msgid "Something went wrong! The label could not be generated. Check label size and font size." +msgid "" +"Something went wrong! The label could not be generated. Check label size and " +"font size." msgstr "" #: application/controllers/Labels.php:251 @@ -729,8 +734,12 @@ msgid "Paper was deleted." msgstr "" #: application/controllers/Logbook.php:37 -msgid "No logbooks were found. You need to define a logbook under Station Logbooks! Do it here:" -msgstr "Aucun journal de trafic n'a été trouvé. Vous devez en définir un via le menu 'Station Logbooks' ! Faites-le ici :" +msgid "" +"No logbooks were found. You need to define a logbook under Station Logbooks! " +"Do it here:" +msgstr "" +"Aucun journal de trafic n'a été trouvé. Vous devez en définir un via le menu " +"'Station Logbooks' ! Faites-le ici :" #: application/controllers/Logbook.php:37 #: application/views/stationsetup/stationsetup.php:18 @@ -1000,6 +1009,7 @@ msgstr "RST (R)" #: application/views/view_log/qso.php:235 #: application/views/view_log/qso.php:528 #: application/views/visitor/index.php:15 +#: application/views/stationsetup/stationsetup.php:121 msgid "Country" msgstr "Pays" @@ -1094,6 +1104,7 @@ msgstr "Etat" #: application/views/view_log/partial/log_ajax.php:13 #: application/views/view_log/qso.php:515 #: application/views/visitor/index.php:27 +#: application/views/stationsetup/stationsetup.php:122 msgid "Gridsquare" msgstr "Locator" @@ -1262,6 +1273,8 @@ msgstr "Opérateur" #: application/views/view_log/partial/log_ajax.php:29 #: application/views/view_log/qso.php:236 #: application/views/view_log/qso.php:529 +#: application/controllers/Stationsetup.php:373 +#: application/views/stationsetup/stationsetup.php:146 msgid "Deleted DXCC" msgstr "DXCC Supprimé" @@ -1404,7 +1417,9 @@ msgstr "Les paramètres ont été sauvegardés avec succès." #: application/controllers/Options.php:299 msgid "Something went wrong with saving the settings. Try again." -msgstr "Problème rencontré lors de l'enregistrement des paramètres. Merci de réessayer." +msgstr "" +"Problème rencontré lors de l'enregistrement des paramètres. Merci de " +"réessayer." #: application/controllers/Options.php:310 #: application/controllers/Options.php:320 @@ -1564,7 +1579,9 @@ msgid "Incorrectly logged CQ zones" msgstr "" #: application/controllers/Search.php:70 -msgid "QSOs unconfirmed on LoTW, but the callsign has uploaded to LoTW after QSO date" +msgid "" +"QSOs unconfirmed on LoTW, but the callsign has uploaded to LoTW after QSO " +"date" msgstr "" #: application/controllers/Station.php:35 @@ -1606,6 +1623,8 @@ msgstr "" #: application/controllers/Stationsetup.php:68 #: application/controllers/Stationsetup.php:395 #: application/controllers/Stationsetup.php:409 +#: application/controllers/Stationsetup.php:387 +#: application/controllers/Stationsetup.php:401 msgid "Not allowed" msgstr "" @@ -1617,6 +1636,7 @@ msgstr "" #: application/controllers/Stationsetup.php:152 #: application/controllers/Stationsetup.php:436 #: application/views/qso/index.php:608 +#: application/controllers/Stationsetup.php:428 msgid "Error" msgstr "" @@ -1670,7 +1690,9 @@ msgstr "" #: application/controllers/Stationsetup.php:270 #: application/views/stationsetup/stationsetup.php:55 -msgid "Are you sure you want to delete the following station logbook? You must re-link any locations linked here to another logbook.: " +msgid "" +"Are you sure you want to delete the following station logbook? You must re-" +"link any locations linked here to another logbook.: " msgstr "" #: application/controllers/Stationsetup.php:280 @@ -1685,18 +1707,25 @@ msgstr "" #: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 -msgid "Are you sure you want to make the following station the active station: " +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 +msgid "" +"Are you sure you want to make the following station the active station: " msgstr "" #: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 +#: application/controllers/Stationsetup.php:341 +#: application/views/stationsetup/stationsetup.php:150 msgid "Set Active" msgstr "" #: application/controllers/Stationsetup.php:351 #: application/views/station_profile/index.php:71 #: application/views/stationsetup/stationsetup.php:156 +#: application/controllers/Stationsetup.php:343 +#: application/views/stationsetup/stationsetup.php:152 msgid "Active Station" msgstr "" @@ -1707,6 +1736,8 @@ msgstr "" #: application/views/station_profile/index.php:76 #: application/views/stationsetup/stationsetup.php:161 #: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/controllers/Stationsetup.php:346 +#: application/views/stationsetup/stationsetup.php:157 msgid "QSO" msgstr "" @@ -1723,12 +1754,17 @@ msgstr "" #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 #: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/controllers/Stationsetup.php:351 +#: application/views/stationsetup/stationsetup.php:124 +#: application/views/stationsetup/stationsetup.php:160 msgid "Edit" msgstr "Editer" #: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:99 #: application/views/stationsetup/stationsetup.php:185 +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:180 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "Etes-vous certain de supprimer tous les QSO de cette station ?" @@ -1737,6 +1773,9 @@ msgstr "Etes-vous certain de supprimer tous les QSO de cette station ?" #: application/views/station_profile/index.php:101 #: application/views/stationsetup/stationsetup.php:136 #: application/views/stationsetup/stationsetup.php:187 +#: application/controllers/Stationsetup.php:355 +#: application/views/stationsetup/stationsetup.php:132 +#: application/views/stationsetup/stationsetup.php:182 msgid "Empty Log" msgstr "Journal vide" @@ -1745,15 +1784,24 @@ msgstr "Journal vide" #: application/views/station_profile/index.php:82 #: application/views/stationsetup/stationsetup.php:129 #: application/views/stationsetup/stationsetup.php:168 +#: application/controllers/Stationsetup.php:359 +#: application/views/stationsetup/stationsetup.php:125 +#: application/views/stationsetup/stationsetup.php:163 msgid "Copy" msgstr "Copier" #: application/controllers/Stationsetup.php:372 #: application/views/station_profile/index.php:105 #: application/views/stationsetup/stationsetup.php:191 +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:186 #, php-format -msgid "Are you sure you want delete station profile '%s'? This will delete all QSOs within this station profile." -msgstr "Etes-vous certain de supprimer le profil de station '%s' ? Cela supprimera tous les QSO de cette station." +msgid "" +"Are you sure you want delete station profile '%s'? This will delete all QSOs " +"within this station profile." +msgstr "" +"Etes-vous certain de supprimer le profil de station '%s' ? Cela supprimera " +"tous les QSO de cette station." #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 @@ -1773,15 +1821,20 @@ msgstr "Etes-vous certain de supprimer le profil de station '%s' ? Cela supprime #: application/views/stationsetup/stationsetup.php:192 #: application/views/themes/index.php:107 application/views/user/main.php:54 #: application/views/view_log/qso.php:613 +#: application/controllers/Stationsetup.php:364 +#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:187 msgid "Delete" msgstr "Supprimer" #: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:220 +#: application/controllers/Stationsetup.php:371 msgid "NONE" msgstr "AUCUNE" #: application/controllers/Stationsetup.php:462 +#: application/controllers/Stationsetup.php:454 msgid "Edit Export Map options" msgstr "" @@ -1881,7 +1934,10 @@ msgid "User logged in" msgstr "" #: application/controllers/User.php:804 -msgid "Sorry. This instance is currently in maintenance mode. If this message appears unexpectedly or keeps showing up, please contact an administrator. Only administrators are currently allowed to log in." +msgid "" +"Sorry. This instance is currently in maintenance mode. If this message " +"appears unexpectedly or keeps showing up, please contact an administrator. " +"Only administrators are currently allowed to log in." msgstr "" #: application/controllers/User.php:807 @@ -1932,7 +1988,8 @@ msgid "QO-100 Dx Club Upload" msgstr "" #: application/models/Hrdlog_model.php:22 -msgid "HRDlog: QSOs have been uploaded to hrdlog.net for the station callsign: " +msgid "" +"HRDlog: QSOs have been uploaded to hrdlog.net for the station callsign: " msgstr "" #: application/models/Hrdlog_model.php:25 @@ -2481,6 +2538,7 @@ msgstr "La taille maximum d'un fichier à télécharger est " #: application/views/view_log/qso.php:622 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 +#: application/views/stationsetup/stationsetup.php:108 msgid "Warning" msgstr "Attention" @@ -2518,27 +2576,36 @@ msgstr "(A cocher, si l'ADIF à importer ne contient pas ces informations)." #: application/views/adif/import.php:103 msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" -msgstr "Indiquer que les QSO importés ont été téléchargés dans le journal HRDLog.net" +msgstr "" +"Indiquer que les QSO importés ont été téléchargés dans le journal HRDLog.net" #: application/views/adif/import.php:113 msgid "Mark imported QSOs as uploaded to QRZ Logbook" -msgstr "Indiquer que les QSO importés ont été téléchargés dans le journal QRZ.com" +msgstr "" +"Indiquer que les QSO importés ont été téléchargés dans le journal QRZ.com" #: application/views/adif/import.php:123 msgid "Mark imported QSOs as uploaded to Clublog Logbook" -msgstr "Indiquer que les QSO importés ont été téléchargés dans le journal Clublog" +msgstr "" +"Indiquer que les QSO importés ont été téléchargés dans le journal Clublog" #: application/views/adif/import.php:133 msgid "Use DXCC information from ADIF" msgstr "Utiliser l'information du DXCC issue du fichier ADIF" #: application/views/adif/import.php:135 -msgid "If not selected, Wavelog will attempt to determine DXCC information automatically." -msgstr "(Si cochée, Wavelog tentera de déterminer automatiquement les informations DXCC)." +msgid "" +"If not selected, Wavelog will attempt to determine DXCC information " +"automatically." +msgstr "" +"(Si cochée, Wavelog tentera de déterminer automatiquement les informations " +"DXCC)." #: application/views/adif/import.php:143 msgid "Always use login-callsign as operator-name on import" -msgstr "Toujours utiliser l'indicatif de connexion comme nom d'opérateur lors de l'import" +msgstr "" +"Toujours utiliser l'indicatif de connexion comme nom d'opérateur lors de " +"l'import" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:21 @@ -2550,8 +2617,12 @@ msgid "Ignore Stationcallsign on import" msgstr "Ignorer l'indicatif de la station lors de l'import" #: application/views/adif/import.php:154 -msgid "If selected, Wavelog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location." -msgstr "(Si cochée, Wavelog tentera d'importer TOUS les QSO de l'ADIF, qu'ils correspondent ou non à l'emplacement de la station choisie)." +msgid "" +"If selected, Wavelog will try to import all QSO's of the ADIF, " +"regardless if they match to the chosen station-location." +msgstr "" +"(Si cochée, Wavelog tentera d'importer TOUS les QSO de l'ADIF, qu'ils " +"correspondent ou non à l'emplacement de la station choisie)." #: application/views/adif/import.php:158 application/views/adif/import.php:273 #: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 @@ -2564,8 +2635,13 @@ msgid "Take your logbook file anywhere!" msgstr "Emportez votre fichier journal de trafic partout !" #: application/views/adif/import.php:166 -msgid "Exporting ADIFs allows you to import contacts into third party applications like LoTW, Awards or just for keeping a backup." -msgstr "L'export de fichier ADIF vous permet d'importer vos QSO dans des applications tierces comme LoTW, Awards ou simplement pour conserver une sauvegarde." +msgid "" +"Exporting ADIFs allows you to import contacts into third party applications " +"like LoTW, Awards or just for keeping a backup." +msgstr "" +"L'export de fichier ADIF vous permet d'importer vos QSO dans des " +"applications tierces comme LoTW, Awards ou simplement pour conserver une " +"sauvegarde." #: application/views/adif/import.php:176 application/views/adif/import.php:222 #: application/views/cfd/index.php:15 application/views/csv/index.php:118 @@ -2620,7 +2696,11 @@ msgstr "Marquer les QSO comme étant \"téléchargé sur LoTW\"" #: application/views/adif/import.php:242 #, php-format -msgid "Go to %s and export your logbook with confirmed DOKs. To speed up the process you can select only DL QSOs to download (i.e. put 'DL' into Prefix List). The downloaded ADIF file can be uploaded here in order to update QSOs with DOK info." +msgid "" +"Go to %s and export your logbook with confirmed DOKs. To speed up the " +"process you can select only DL QSOs to download (i.e. put 'DL' into Prefix " +"List). The downloaded ADIF file can be uploaded here in order to update QSOs " +"with DOK info." msgstr "" #: application/views/adif/import.php:249 @@ -2628,23 +2708,33 @@ msgid "Only import DOK data from QSOs confirmed on DCL." msgstr "Importez uniquement les données DOK des QSO confirmés sur DCL." #: application/views/adif/import.php:251 -msgid "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL." -msgstr "(Décoché, si vous souhaitez également mettre à jour DOK, avec les données des QSO non confirmés dans DCL)." +msgid "" +"Uncheck if you also want to update DOK with data from unconfirmed QSOs in " +"DCL." +msgstr "" +"(Décoché, si vous souhaitez également mettre à jour DOK, avec les données " +"des QSO non confirmés dans DCL)." #: application/views/adif/import.php:258 msgid "Overwrites exisiting DOK in log by DCL (if different)." msgstr "" #: application/views/adif/import.php:260 -msgid "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log." -msgstr "(Si cochée, Wavelog écrasera de force le DOK existant par le DOK du journal DCL)." +msgid "" +"If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " +"log." +msgstr "" +"(Si cochée, Wavelog écrasera de force le DOK existant par le DOK du journal " +"DCL)." #: application/views/adif/import.php:267 msgid "Ignore QSOs that cannot be matched." msgstr "Ignorer les QSO qui ne correspondent pas." #: application/views/adif/import.php:269 -msgid "If unchecked, information about QSOs which could not be found in Wavelog will be displayed." +msgid "" +"If unchecked, information about QSOs which could not be found in Wavelog " +"will be displayed." msgstr "" #: application/views/adif/import_success.php:15 @@ -2668,8 +2758,12 @@ msgid "ADIF Errors" msgstr "Erreurs ADIF" #: application/views/adif/import_success.php:25 -msgid "You have ADIF errors, the QSOs have still been added but these fields have not been populated." -msgstr "Vous avez des erreurs ADIF, les QSO ont quand même été ajoutés mais ces champs n'ont pas été renseignés." +msgid "" +"You have ADIF errors, the QSOs have still been added but these fields have " +"not been populated." +msgstr "" +"Vous avez des erreurs ADIF, les QSO ont quand même été ajoutés mais ces " +"champs n'ont pas été renseignés." #: application/views/adif/mark_lotw.php:12 #: application/views/hrdlog/mark_hrdlog.php:12 @@ -2718,11 +2812,18 @@ msgid "API Keys" msgstr "" #: application/views/api/help.php:17 -msgid "The Wavelog API (Application Programming Interface) lets third party systems access Wavelog in a controlled way. Access to the API is managed via API keys." +msgid "" +"The Wavelog API (Application Programming Interface) lets third party systems " +"access Wavelog in a controlled way. Access to the API is managed via API " +"keys." msgstr "" #: application/views/api/help.php:18 -msgid "You will need to generate an API key for each tool you wish to use (e.g. WLgate). Generate a read-write key if the application needs to send data to Wavelog. Generate a read-only key if the application only needs to obtain data from Wavelog." +msgid "" +"You will need to generate an API key for each tool you wish to use (e.g. " +"WLgate). Generate a read-write key if the application needs to send data to " +"Wavelog. Generate a read-only key if the application only needs to obtain " +"data from Wavelog." msgstr "" #: application/views/api/help.php:19 @@ -2752,7 +2853,9 @@ msgid "Info" msgstr "Information" #: application/views/api/help.php:20 -msgid "It's good practice to delete a key if you are no longer using the associated application." +msgid "" +"It's good practice to delete a key if you are no longer using the associated " +"application." msgstr "" #: application/views/api/help.php:27 @@ -2874,11 +2977,17 @@ msgstr "" #: application/views/awards/counties/index.php:8 #, php-format -msgid "The United States of America Counties Award (USA-CA), sponsored by CQ magazine, is issued for confirmed two-way radio contacts with specified numbers of U.S. counties under rules and conditions you can find %s." +msgid "" +"The United States of America Counties Award (USA-CA), sponsored by CQ " +"magazine, is issued for confirmed two-way radio contacts with specified " +"numbers of U.S. counties under rules and conditions you can find %s." msgstr "" #: application/views/awards/counties/index.php:9 -msgid "USA-CA is available to all licensed amateurs worldwide and is issued to individuals for all county contacts made, regardless of callsigns used, operating locations, or dates." +msgid "" +"USA-CA is available to all licensed amateurs worldwide and is issued to " +"individuals for all county contacts made, regardless of callsigns used, " +"operating locations, or dates." msgstr "" #: application/views/awards/counties/index.php:10 @@ -2923,11 +3032,16 @@ msgid "CQ Magazine WAZ Award" msgstr "" #: application/views/awards/cq/index.php:19 -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." +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 "" #: 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." +msgid "" +"The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " +"all 40 CQ Zones along with the corresponding confirmation." msgstr "" #: application/views/awards/cq/index.php:21 @@ -3125,17 +3239,29 @@ msgid "DOK Award" msgstr "" #: application/views/awards/dok/index.php:8 -msgid "Germany extends over 630 km from East to West and nearly 900 km from North to South. Around 70,000 of Germany's 82 million inhabitants are licensed hams, with more than 40,000 of them being members of DARC. DOK is a system that provides individual local chapters with an identifier and means 'Deutscher Ortsverband Kenner' (English: 'German Local Association Identifier')." +msgid "" +"Germany extends over 630 km from East to West and nearly 900 km from North " +"to South. Around 70,000 of Germany's 82 million inhabitants are licensed " +"hams, with more than 40,000 of them being members of DARC. DOK is a system " +"that provides individual local chapters with an identifier and means " +"'Deutscher Ortsverband Kenner' (English: 'German Local Association " +"Identifier')." msgstr "" #: application/views/awards/dok/index.php:9 -msgid "The DOK consists of a letter for the district and a two-digit number for the local chapter, like P03 Friedrichshafen (city of the 'Hamradio exhibition') or F41 Baunatal (location of the DARC headquarters). Note: A zero in a DOK is a common mistake, often being logged as the letter O." +msgid "" +"The DOK consists of a letter for the district and a two-digit number for the " +"local chapter, like P03 Friedrichshafen (city of the 'Hamradio exhibition') " +"or F41 Baunatal (location of the DARC headquarters). Note: A zero in a DOK " +"is a common mistake, often being logged as the letter O." msgstr "" #: application/views/awards/dok/index.php:10 #, php-format msgctxt "uses 'DARC Website' and 'here'" -msgid "This information is provided by the %s. Information about the DOK Awards and its rules can be found %s." +msgid "" +"This information is provided by the %s. Information about the DOK Awards and " +"its rules can be found %s." msgstr "" #: application/views/awards/dok/index.php:20 @@ -3178,7 +3304,10 @@ msgstr "" #: application/views/awards/dxcc/index.php:15 #, php-format -msgid "DXCC stands for 'DX Century Club,' an award based on worked countries. The DXCC List is based on an article created in 1935 by Clinton B. DeSoto, W1CBD, titled %s." +msgid "" +"DXCC stands for 'DX Century Club,' an award based on worked countries. The " +"DXCC List is based on an article created in 1935 by Clinton B. DeSoto, " +"W1CBD, titled %s." msgstr "" #: application/views/awards/dxcc/index.php:16 @@ -3191,7 +3320,12 @@ msgid "You can find all information about the DXCC Award on the %s." msgstr "" #: application/views/awards/dxcc/index.php:17 -msgid "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Wavelog. Be aware that these DXCC entities are outdated and no longer valid." +msgid "" +"Important Note: Over time, the criteria for the DXCC List have changed. The " +"List remains unchanged until an entity no longer satisfies the criteria " +"under which it was added, at which time it is moved to the Deleted List. You " +"will find Deleted DXCC entities also in the lists on Wavelog. Be aware that " +"these DXCC entities are outdated and no longer valid." msgstr "" #: application/views/awards/dxcc/index.php:32 @@ -3283,11 +3417,16 @@ msgid "Fred Fish Memorial Award" msgstr "" #: application/views/awards/ffma/index.php:9 -msgid "The Fred Fish Memorial Award was created in honor of Fred Fish, W5FF (SK), who was the first amateur to have worked and confirmed all 488 Maidenhead grid squares in the 48 contiguous United States on 6 Meters." +msgid "" +"The Fred Fish Memorial Award was created in honor of Fred Fish, W5FF (SK), " +"who was the first amateur to have worked and confirmed all 488 Maidenhead " +"grid squares in the 48 contiguous United States on 6 Meters." msgstr "" #: application/views/awards/ffma/index.php:10 -msgid "The award will be given to any amateur who can duplicate W5FF's accomplishment." +msgid "" +"The award will be given to any amateur who can duplicate W5FF's " +"accomplishment." msgstr "" #: application/views/awards/ffma/index.php:11 @@ -3300,12 +3439,24 @@ msgid "US Gridmaster Award" msgstr "" #: application/views/awards/gridmaster/index.php:8 -msgid "The GridMaster Award is the most prestigious AMSAT award, first introduced in 2014 by the Star Comm Group. It is available to all amateur radio operators worldwide who manage to work all 488 grid squares in the USA via satellite and can provide QSL confirmations for each contact." +msgid "" +"The GridMaster Award is the most prestigious AMSAT award, first introduced " +"in 2014 by the Star Comm Group. It is available to all amateur radio " +"operators worldwide who manage to work all 488 grid squares in the USA via " +"satellite and can provide QSL confirmations for each contact." msgstr "" #: application/views/awards/gridmaster/index.php:9 #, php-format -msgid "Official information from the %s: Two-way communication must be established via amateur satellite with each grid. There is no minimum signal report required. Contacts must be made from the same location or from locations no two of which are more than 200 kilometers apart. The applicant's attestation in the award application serves as affirmation of abidance by the distance rule. Individuals may apply for and be granted multiple GridMaster awards when achieved from another location, which is in a different 200-kilometer circle." +msgid "" +"Official information from the %s: Two-way communication must be established " +"via amateur satellite with each grid. There is no minimum signal report " +"required. Contacts must be made from the same location or from locations no " +"two of which are more than 200 kilometers apart. The applicant's attestation " +"in the award application serves as affirmation of abidance by the distance " +"rule. Individuals may apply for and be granted multiple GridMaster awards " +"when achieved from another location, which is in a different 200-kilometer " +"circle." msgstr "" #: application/views/awards/gridmaster/index.php:9 @@ -3321,11 +3472,18 @@ msgid "HELVETIA 26 | SWITZERLAND AWARD" msgstr "" #: application/views/awards/helvetia/index.php:19 -msgid "The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting activities on the bands by encouraging contacts across as many Swiss cantons as possible on multiple bands." +msgid "" +"The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the " +"HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting " +"activities on the bands by encouraging contacts across as many Swiss cantons " +"as possible on multiple bands." msgstr "" #: application/views/awards/helvetia/index.php:20 -msgid "These awards come in two versions: one for HF bands and the other for VHF (including SHF and UHF) bands. Valid connections for these awards date back to January 1, 1980" +msgid "" +"These awards come in two versions: one for HF bands and the other for VHF " +"(including SHF and UHF) bands. Valid connections for these awards date back " +"to January 1, 1980" msgstr "" #: application/views/awards/helvetia/index.php:21 @@ -3356,11 +3514,27 @@ msgid "IOTA Awards" msgstr "" #: application/views/awards/iota/index.php:17 -msgid "IOTA is an exciting and innovative activity program that has captured the interest of thousands of radio amateurs worldwide. Established in 1964, it promotes radio contacts with stations located on islands around the world to enhance the experience of all those active on the amateur bands. To achieve this, it draws on the widespread mystique surrounding islands." +msgid "" +"IOTA is an exciting and innovative activity program that has captured the " +"interest of thousands of radio amateurs worldwide. Established in 1964, it " +"promotes radio contacts with stations located on islands around the world to " +"enhance the experience of all those active on the amateur bands. To achieve " +"this, it draws on the widespread mystique surrounding islands." msgstr "" #: application/views/awards/iota/index.php:18 -msgid "It is administered by Islands On The Air (IOTA) Ltd (referred to as IOTA Management) in partnership with the Radio Society of Great Britain (RSGB). IOTA Management has grouped the world's islands into approximately 1200 'IOTA groups,' each having varying numbers of 'counters,' which are qualifying islands. These listings are published in the IOTA Directory and on the IOTA website. The objective for the IOTA Island Chaser is to make radio contact with at least one counter in as many of these groups as possible. The program has a well-defined set of rules and encourages friendly competition among chasers by publishing participant performance in an Honor Roll and annual listings, as well as recognizing it with certificates and prestigious awards." +msgid "" +"It is administered by Islands On The Air (IOTA) Ltd (referred to as IOTA " +"Management) in partnership with the Radio Society of Great Britain (RSGB). " +"IOTA Management has grouped the world's islands into approximately 1200 " +"'IOTA groups,' each having varying numbers of 'counters,' which are " +"qualifying islands. These listings are published in the IOTA Directory and " +"on the IOTA website. The objective for the IOTA Island Chaser is to make " +"radio contact with at least one counter in as many of these groups as " +"possible. The program has a well-defined set of rules and encourages " +"friendly competition among chasers by publishing participant performance in " +"an Honor Roll and annual listings, as well as recognizing it with " +"certificates and prestigious awards." msgstr "" #: application/views/awards/iota/index.php:19 @@ -3407,7 +3581,11 @@ msgid "Deleted" msgstr "" #: application/views/awards/itu/index.php:19 -msgid "The Classic Worked ITU Zones award may be claimed by producing evidence of having contacted land based amateur radio stations in at least 70 of the 75 broadcasting zones as defined by the International Telecommunications Union (ITU)." +msgid "" +"The Classic Worked ITU Zones award may be claimed by producing evidence of " +"having contacted land based amateur radio stations in at least 70 of the 75 " +"broadcasting zones as defined by the International Telecommunications Union " +"(ITU)." msgstr "" #: application/views/awards/itu/index.php:20 @@ -3439,11 +3617,17 @@ msgid "JCC - Japan Century Cities Award" msgstr "" #: application/views/awards/jcc/index.php:17 -msgid "May be claimed for having contacted (heard) and received a QSL card from an amateur station located in each of at least 100 different cities of Japan." +msgid "" +"May be claimed for having contacted (heard) and received a QSL card from an " +"amateur station located in each of at least 100 different cities of Japan." msgstr "" #: application/views/awards/jcc/index.php:18 -msgid "JCC-200, 300, 400, 500, 600, 700 and 800 will be issued as separate awards. A list of QSL cards should be arranged in order of JCC reference number, however names of city may be omitted. An additional sticker will be issued at every 50 contacts like 150, 250, 350, 450, 550, 650, 750 cities." +msgid "" +"JCC-200, 300, 400, 500, 600, 700 and 800 will be issued as separate awards. " +"A list of QSL cards should be arranged in order of JCC reference number, " +"however names of city may be omitted. An additional sticker will be issued " +"at every 50 contacts like 150, 250, 350, 450, 550, 650, 750 cities." msgstr "" #: application/views/awards/jcc/index.php:115 @@ -3485,17 +3669,25 @@ msgid "POTA Awards" msgstr "" #: application/views/awards/pota/index.php:8 -msgid "Parks on the Air® (POTA) started in early 2017 when the ARRL's National Parks on the Air special event ended. A group of volunteers wanted to continue the fun beyond the one-year event, and thus, POTA was born." +msgid "" +"Parks on the Air® (POTA) started in early 2017 when the ARRL's National " +"Parks on the Air special event ended. A group of volunteers wanted to " +"continue the fun beyond the one-year event, and thus, POTA was born." msgstr "" #: application/views/awards/pota/index.php:9 -msgid "POTA works similarly to SOTA, with Activators and Hunters. For the awards, there are several categories based on the number of parks, geographic areas, and more." +msgid "" +"POTA works similarly to SOTA, with Activators and Hunters. For the awards, " +"there are several categories based on the number of parks, geographic areas, " +"and more." msgstr "" #: application/views/awards/pota/index.php:10 #, php-format msgctxt "uses 'the website'" -msgid "For more information about the available awards and categories, please visit the %s." +msgid "" +"For more information about the available awards and categories, please visit " +"the %s." msgstr "" #: application/views/awards/pota/index.php:31 @@ -3516,15 +3708,23 @@ msgid "SIG Information" msgstr "" #: application/views/awards/sig/index.php:8 -msgid "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog." +msgid "" +"The SIG or Signature Category provides the possibility to use any kind of " +"'Award Signature' for awards that are not implemented in Wavelog." msgstr "" #: application/views/awards/sig/index.php:9 -msgid "The reason for this is that the common ADIF format provides only a few dedicated fields for certain awards. SIG still makes it possible to use and evaluate all other types of signature markers." +msgid "" +"The reason for this is that the common ADIF format provides only a few " +"dedicated fields for certain awards. SIG still makes it possible to use and " +"evaluate all other types of signature markers." msgstr "" #: application/views/awards/sig/index.php:10 -msgid "In the QSO processing, you will find two fields: 'SIG' contains the actual marker, which is also visible in the award evaluation, and 'SIG INFO,' which contains a description of the signature. Both fields are freely customizable." +msgid "" +"In the QSO processing, you will find two fields: 'SIG' contains the actual " +"marker, which is also visible in the award evaluation, and 'SIG INFO,' which " +"contains a description of the signature. Both fields are freely customizable." msgstr "" #: application/views/awards/sig/index.php:21 @@ -3578,11 +3778,20 @@ msgid "SOTA Awards" msgstr "" #: application/views/awards/sota/index.php:8 -msgid "SOTA (Summits On The Air) is an award scheme for radio amateurs that encourages portable operation in mountainous areas." +msgid "" +"SOTA (Summits On The Air) is an award scheme for radio amateurs that " +"encourages portable operation in mountainous areas." msgstr "" #: application/views/awards/sota/index.php:9 -msgid "It is fully operational in nearly a hundred countries worldwide. Each country has its own Association that defines the recognized SOTA summits within that Association. Each summit earns the activators and chasers a score related to the height of the summit. Certificates are available for various scores, leading to the prestigious 'Mountain Goat' and 'Shack Sloth' trophies. An Honor Roll for Activators and Chasers is maintained in the SOTA online database." +msgid "" +"It is fully operational in nearly a hundred countries worldwide. Each " +"country has its own Association that defines the recognized SOTA summits " +"within that Association. Each summit earns the activators and chasers a " +"score related to the height of the summit. Certificates are available for " +"various scores, leading to the prestigious 'Mountain Goat' and 'Shack Sloth' " +"trophies. An Honor Roll for Activators and Chasers is maintained in the SOTA " +"online database." msgstr "" #: application/views/awards/vucc/index.php:7 @@ -3590,7 +3799,9 @@ msgid "VUCC - VHF/UHF Century Club Award" msgstr "" #: application/views/awards/vucc/index.php:8 -msgid "The VHF/UHF Century Club Award is given for a minimum number of worked and confirmed gridsquares on a desired band." +msgid "" +"The VHF/UHF Century Club Award is given for a minimum number of worked and " +"confirmed gridsquares on a desired band." msgstr "" #: application/views/awards/vucc/index.php:9 @@ -3615,11 +3826,15 @@ msgid "WAB - Worked All Britain Award" msgstr "" #: application/views/awards/wab/index.php:13 -msgid "WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham radio operators to work all the squares in Great Britain." +msgid "" +"WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham " +"radio operators to work all the squares in Great Britain." msgstr "" #: application/views/awards/wab/index.php:14 -msgid "May be claimed for having contacted an amateur station located in the required amount of squares, described on the page linked below." +msgid "" +"May be claimed for having contacted an amateur station located in the " +"required amount of squares, described on the page linked below." msgstr "" #: application/views/awards/wab/index.php:109 @@ -3635,11 +3850,17 @@ msgid "WAJA - Worked All Japan prefectures Award" msgstr "" #: application/views/awards/waja/index.php:18 -msgid "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan." +msgid "" +"WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " +"radio operators to work all the prefectures in Japan." msgstr "" #: application/views/awards/waja/index.php:19 -msgid "May be claimed for having contacted (heard) and received a QSL card from an amateur station located in each of the 47 prefectures of Japan. A list of QSL cards should be arranged in order of WAJA (HAJA) reference number, however names of prefectures may be omitted." +msgid "" +"May be claimed for having contacted (heard) and received a QSL card from an " +"amateur station located in each of the 47 prefectures of Japan. A list of " +"QSL cards should be arranged in order of WAJA (HAJA) reference number, " +"however names of prefectures may be omitted." msgstr "" #: application/views/awards/waja/index.php:116 @@ -3655,11 +3876,20 @@ msgid "WAS Award" msgstr "" #: application/views/awards/was/index.php:19 -msgid "ARRL's most popular award is the Worked All States Award. Thousands upon thousands of awards have been issued to hams around the world. In ARRL's 101st year, they have redesigned the certificates and the program in hopes of streamlining and improving the award program." +msgid "" +"ARRL's most popular award is the Worked All States Award. Thousands upon " +"thousands of awards have been issued to hams around the world. In ARRL's " +"101st year, they have redesigned the certificates and the program in hopes " +"of streamlining and improving the award program." msgstr "" #: application/views/awards/was/index.php:20 -msgid "The WAS (Worked All States) Award is available to all amateurs worldwide who submit proof with written confirmation of contacts with each of the 50 states of the United States of America. Amateurs in the U.S. and its possessions must be members of ARRL to apply for a WAS. Applicants from outside the U.S. are exempt from this requirement." +msgid "" +"The WAS (Worked All States) Award is available to all amateurs worldwide who " +"submit proof with written confirmation of contacts with each of the 50 " +"states of the United States of America. Amateurs in the U.S. and its " +"possessions must be members of ARRL to apply for a WAS. Applicants from " +"outside the U.S. are exempt from this requirement." msgstr "" #: application/views/awards/was/index.php:21 @@ -3677,11 +3907,17 @@ msgid "WWFF - World Wide Flora and Fauna Award" msgstr "" #: application/views/awards/wwff/index.php:8 -msgid "WWFF, World Wide Flora and Fauna in Amateur Radio, encourages licensed ham radio operators to leave their shacks and operate portable in Protected Flora & Fauna areas (PFF) worldwide." +msgid "" +"WWFF, World Wide Flora and Fauna in Amateur Radio, encourages licensed ham " +"radio operators to leave their shacks and operate portable in Protected " +"Flora & Fauna areas (PFF) worldwide." msgstr "" #: application/views/awards/wwff/index.php:9 -msgid "More than 26,000 Protected Flora & Fauna (PFF) areas worldwide are already registered in the WWFF Directory. Hunters and Activators can apply for colorful awards, both globally and nationally." +msgid "" +"More than 26,000 Protected Flora & Fauna (PFF) areas worldwide are already " +"registered in the WWFF Directory. Hunters and Activators can apply for " +"colorful awards, both globally and nationally." msgstr "" #: application/views/awards/wwff/index.php:31 @@ -3694,7 +3930,8 @@ msgid "WWFF Reference" msgstr "Référence WWFF" #: application/views/backup/adif_view.php:7 -msgid "The backup of your log completed successfully. The output can be found at" +msgid "" +"The backup of your log completed successfully. The output can be found at" msgstr "" #: application/views/backup/adif_view.php:9 @@ -3704,15 +3941,20 @@ msgstr "" #: application/views/backup/adif_view.php:13 #: application/views/backup/notes_view.php:13 -msgid "Something went wrong during the backup process. Check that the backup folder exists and is writeable by your web server user / group." +msgid "" +"Something went wrong during the backup process. Check that the backup folder " +"exists and is writeable by your web server user / group." msgstr "" #: application/views/backup/main.php:17 -msgid "Some of the data stored in Wavelog can be exported so that you can keep a backup copy elsewhere." +msgid "" +"Some of the data stored in Wavelog can be exported so that you can keep a " +"backup copy elsewhere." msgstr "" #: application/views/backup/main.php:18 -msgid "It's recommended to create backups on a regular basis to protect your data." +msgid "" +"It's recommended to create backups on a regular basis to protect your data." msgstr "" #: application/views/backup/main.php:19 @@ -3724,7 +3966,8 @@ msgid "Backup Notes" msgstr "" #: application/views/backup/notes_view.php:7 -msgid "The backup of your notes completed successfully. The output can be found at" +msgid "" +"The backup of your notes completed successfully. The output can be found at" msgstr "" #: application/views/bandmap/index.php:15 application/views/bandmap/list.php:49 @@ -3813,11 +4056,15 @@ msgid "Frequency for CW QRG in band (must be in Hz)" msgstr "" #: application/views/bands/index.php:36 -msgid "Using the band list you can control which bands are shown when creating a new QSO." +msgid "" +"Using the band list you can control which bands are shown when creating a " +"new QSO." msgstr "" #: application/views/bands/index.php:39 -msgid "Active bands will be shown in the QSO 'Band' drop-down, while inactive bands will be hidden and cannot be selected." +msgid "" +"Active bands will be shown in the QSO 'Band' drop-down, while inactive bands " +"will be hidden and cannot be selected." msgstr "" #: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:350 @@ -4093,12 +4340,21 @@ msgid "Next Week" msgstr "" #: application/views/contesting/add.php:16 -msgid "Using the contest list, you can control which Contests are shown when logging QSOs in a contest." -msgstr "En utilisant la liste des concours, vous pouvez contrôler quels concours sont affichés lors de l'enregistrement des QSO dans un concours." +msgid "" +"Using the contest list, you can control which Contests are shown when " +"logging QSOs in a contest." +msgstr "" +"En utilisant la liste des concours, vous pouvez contrôler quels concours " +"sont affichés lors de l'enregistrement des QSO dans un concours." #: application/views/contesting/add.php:19 -msgid "Active contests will be shown in the Contest Name drop-down, while inactive contests will be hidden and cannot be selected." -msgstr "Les concours actifs seront affichés dans la liste déroulante 'Nom du concours' sur les pages Contest Logging, tandis que les concours inactifs seront masqués et ne pourront pas être sélectionnés." +msgid "" +"Active contests will be shown in the Contest Name drop-down, while inactive " +"contests will be hidden and cannot be selected." +msgstr "" +"Les concours actifs seront affichés dans la liste déroulante 'Nom du " +"concours' sur les pages Contest Logging, tandis que les concours inactifs " +"seront masqués et ne pourront pas être sélectionnés." #: application/views/contesting/add.php:26 #: application/views/contesting/create.php:30 @@ -4139,7 +4395,9 @@ msgstr "" #: application/views/contesting/add.php:55 msgid "Warning! Are you sure you want to delete the following contest: " -msgstr "ATTENTION ! Etes vous certain de vouloir supprimer le concours : " +msgstr "" +"ATTENTION ! Etes vous certain de vouloir supprimer le " +"concours : " #: application/views/contesting/add.php:56 msgid "Warning! Are you sure you want to activate all contests?" @@ -4147,7 +4405,8 @@ msgstr "ATTENTION ! Etes vous certain de vouloir activer tous les concours ?" #: application/views/contesting/add.php:57 msgid "Warning! Are you sure you want to deactivate all contests?" -msgstr "ATTENTION ! Etes vous certain de vouloir désactiver tous les concours ?" +msgstr "" +"ATTENTION ! Etes vous certain de vouloir désactiver tous les concours ?" #: application/views/contesting/add.php:73 #: application/views/contesting/add.php:76 @@ -4375,11 +4634,15 @@ msgid "How it works" msgstr "" #: application/views/cron/index.php:15 -msgid "The Cron Manager assists the administrator in managing cron jobs without requiring CLI access." +msgid "" +"The Cron Manager assists the administrator in managing cron jobs without " +"requiring CLI access." msgstr "" #: application/views/cron/index.php:18 -msgid "To execute cron jobs based on the data below, remove all old cron jobs and create a new one:" +msgid "" +"To execute cron jobs based on the data below, remove all old cron jobs and " +"create a new one:" msgstr "" #: application/views/cron/index.php:27 application/views/cron/index.php:31 @@ -4401,6 +4664,7 @@ msgstr "" #: application/views/cron/index.php:50 #: application/views/stationsetup/stationsetup.php:121 +#: application/views/stationsetup/stationsetup.php:118 msgid "ID" msgstr "" @@ -4434,16 +4698,22 @@ msgid "Your Mastercron isn't running." msgstr "" #: application/views/cron/index.php:99 -msgid "Copy the cron above to a external cron service or into your server's cron to use this cron manager." +msgid "" +"Copy the cron above to a external cron service or into your server's cron to " +"use this cron manager." msgstr "" #: application/views/cron/index.php:100 -msgid "On a basic linux server with shell access use this command to edit your crons:" +msgid "" +"On a basic linux server with shell access use this command to edit your " +"crons:" msgstr "" #: application/views/cron/index.php:107 #, php-format -msgid "You need to upgrade your PHP version. Minimum version is %s. Your Version is %s" +msgid "" +"You need to upgrade your PHP version. Minimum version is %s. Your Version is " +"%s" msgstr "" #: application/views/csv/index.php:7 @@ -4614,8 +4884,11 @@ msgid "RSTR" msgstr "" #: application/views/dashboard/index.php:56 -msgid "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" -msgstr "Vous devez mettre à jour votre version PHP. La version minimale est 7.4. Votre version est" +msgid "" +"You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "" +"Vous devez mettre à jour votre version PHP. La version minimale est 7.4. " +"Votre version est" #: application/views/dashboard/index.php:63 #, php-format @@ -4644,14 +4917,17 @@ msgstr[1] "" #: application/views/dashboard/index.php:97 msgid "You have made no QSOs today; time to turn on the radio!" -msgstr "Vous n'avez réalisé aucun QSO aujourd'hui. Il est temps d'allumer la radio !" +msgstr "" +"Vous n'avez réalisé aucun QSO aujourd'hui. Il est temps d'allumer la radio !" #: application/views/dashboard/index.php:104 msgid "Attention: you need to set an active station location." msgstr "ATTENTION : vous devez activer le profil d'une station." #: application/views/dashboard/index.php:110 -msgid "You have themes without defined theme mode. Please ask the admin to edit the themes." +msgid "" +"You have themes without defined theme mode. Please ask the admin to edit the " +"themes." msgstr "" #: application/views/dashboard/index.php:119 @@ -4825,7 +5101,9 @@ msgid "Current streak (continuous days with QSOs)" msgstr "" #: application/views/dayswithqso/index.php:101 -msgid "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!" +msgid "" +"If you make a QSO today, you can continue to extend your streak... or else " +"your current streak will be broken!" msgstr "" #: application/views/dayswithqso/index.php:122 @@ -4893,7 +5171,9 @@ msgid "Folder Permissions" msgstr "" #: application/views/debug/index.php:95 -msgid "This verifies that the folders used by Wavelog have read and write permissions by PHP." +msgid "" +"This verifies that the folders used by Wavelog have read and write " +"permissions by PHP." msgstr "" #: application/views/debug/index.php:101 application/views/debug/index.php:112 @@ -4920,7 +5200,9 @@ msgid "Please edit your %s File:" msgstr "" #: application/views/debug/index.php:156 -msgid "Go to your application/config Folder and compare config.sample.php with your config.php" +msgid "" +"Go to your application/config Folder and compare config.sample.php with your " +"config.php" msgstr "" #: application/views/debug/index.php:157 @@ -4941,7 +5223,9 @@ msgid "Migrate Userdata" msgstr "" #: application/views/debug/index.php:172 -msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." +msgid "" +"Here you can migrate existing QSL cards and eQSL cards to the new userdata " +"folder." msgstr "" #: application/views/debug/index.php:185 @@ -5052,7 +5336,8 @@ msgstr "" #: application/views/debug/index.php:498 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" -msgid_plural "The Database contains %d QSOs without a station-profile (location)" +msgid_plural "" +"The Database contains %d QSOs without a station-profile (location)" msgstr[0] "" msgstr[1] "" @@ -5063,6 +5348,7 @@ msgstr[1] "" #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 +#: application/views/stationsetup/stationsetup.php:120 msgid "Station Callsign" msgstr "" @@ -5155,7 +5441,8 @@ msgstr "Données du QSO" #: application/views/distances/index.php:9 msgid "contacts were plotted.
Your furthest contact was with" -msgstr "contacts utilisés pour le graphique.
Le dernier contact réalisé est" +msgstr "" +"contacts utilisés pour le graphique.
Le dernier contact réalisé est" #: application/views/distances/index.php:10 msgid "in gridsquare" @@ -5178,8 +5465,12 @@ msgid "DX Atlas Export" msgstr "DX Atlas - Export" #: application/views/dxatlas/index.php:7 -msgid "Export your logbook for use in DX Atlas to display worked / confirmed gridsquares." -msgstr "Exportez votre journal de trafic pour l'utiliser dans DX Atlas et afficher les Locator réalisés/confirmés." +msgid "" +"Export your logbook for use in DX Atlas to display worked / confirmed " +"gridsquares." +msgstr "" +"Exportez votre journal de trafic pour l'utiliser dans DX Atlas et afficher " +"les Locator réalisés/confirmés." #: application/views/dxatlas/index.php:11 application/views/kml/index.php:11 msgid "Only QSOs with a gridsquare defined will be exported!" @@ -5249,7 +5540,9 @@ msgid "There are no QSO confirmations waiting for you at eQSL.cc" msgstr "" #: application/views/eqsl/download.php:31 -msgid "Below is a table of QSOs that have been confirmed on eQSL but QSL images have not been downloaded yet." +msgid "" +"Below is a table of QSOs that have been confirmed on eQSL but QSL images " +"have not been downloaded yet." msgstr "" #: application/views/eqsl/download.php:43 @@ -5261,15 +5554,23 @@ msgid "View/Download" msgstr "" #: application/views/eqsl/download.php:71 application/views/eqsl/import.php:50 -msgid "Wavelog will use the eQSL credentials from your Wavelog user profile to connect to eQSL and download confirmations." +msgid "" +"Wavelog will use the eQSL credentials from your Wavelog user profile to " +"connect to eQSL and download confirmations." msgstr "" #: application/views/eqsl/download.php:73 -msgid "Due to a rate limit of approximately 10 seconds per eQSL picture download calling this function will take a long time to complete! Thus you may have 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." +msgid "" +"Due to a rate limit of approximately 10 seconds per eQSL picture download " +"calling this function will take a long time to complete! Thus you may have " +"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 "" #: application/views/eqsl/download.php:81 -msgid "There are no QSOs whose eQSL card images have not yet been downloaded. Go log some more QSOs!" +msgid "" +"There are no QSOs whose eQSL card images have not yet been downloaded. Go " +"log some more QSOs!" msgstr "" #: application/views/eqsl/export.php:31 @@ -5277,7 +5578,9 @@ msgid "Below is a table of QSOs that have not yet been sent to eQSL." msgstr "" #: application/views/eqsl/export.php:33 -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." +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 "" #: application/views/eqsl/export.php:37 @@ -5289,7 +5592,9 @@ msgid "The following QSOs were sent to eQSL." msgstr "" #: application/views/eqsl/export.php:51 -msgid "There are no QSOs that need to be sent to eQSL at this time. Go log some more QSOs!" +msgid "" +"There are no QSOs that need to be sent to eQSL at this time. Go log some " +"more QSOs!" msgstr "" #: application/views/eqsl/import.php:30 @@ -5302,7 +5607,9 @@ msgstr "" #: application/views/eqsl/import.php:33 #, php-format -msgid "Upload the Exported ADIF file from eQSL from the %s page, to mark QSOs as confirmed on eQSL." +msgid "" +"Upload the Exported ADIF file from eQSL from the %s page, to mark QSOs as " +"confirmed on eQSL." msgstr "" #: application/views/eqsl/import.php:34 @@ -5322,8 +5629,12 @@ msgid "Mark All QSOs as Sent to eQSL" msgstr "" #: application/views/eqsl/tools.php:26 -msgid "Use this if you have lots of QSOs to upload to eQSL it will save the server timing out." -msgstr "Utilisez cette fonction si vous avez beaucoup de QSO à télécharger sur eQSL, cela évitera au serveur de perdre du temps." +msgid "" +"Use this if you have lots of QSOs to upload to eQSL it will save the server " +"timing out." +msgstr "" +"Utilisez cette fonction si vous avez beaucoup de QSO à télécharger sur eQSL, " +"cela évitera au serveur de perdre du temps." #: application/views/eqslcard/index.php:10 #, php-format @@ -5359,7 +5670,9 @@ msgstr "" #: application/views/hamsat/index.php:22 #, php-format -msgid "Cannot filter workable passes only without private feed key. Please set the feed key in %s." +msgid "" +"Cannot filter workable passes only without private feed key. Please set the " +"feed key in %s." msgstr "" #: application/views/hamsat/index.php:22 @@ -5377,11 +5690,15 @@ msgid "Mark QSOs" msgstr "" #: application/views/hrdlog/export.php:22 -msgid "Here you can see all QSOs which have not been previously uploaded to a HRDLog logbook." +msgid "" +"Here you can see all QSOs which have not been previously uploaded to a " +"HRDLog logbook." msgstr "" #: application/views/hrdlog/export.php:23 -msgid "You need to set a HRDLog Logbook API Code in your station profile. Only station profiles with an API Key set are displayed." +msgid "" +"You need to set a HRDLog Logbook API Code in your station profile. Only " +"station profiles with an API Key set are displayed." msgstr "" #: application/views/hrdlog/export.php:24 @@ -5420,7 +5737,9 @@ msgid "Total QSOs uploaded" msgstr "" #: application/views/hrdlog/export.php:60 -msgid "No Station Locations with valid HRDlog-Settings found. Check the HRDlog Credentials in the Station Location Settings!" +msgid "" +"No Station Locations with valid HRDlog-Settings found. Check the HRDlog " +"Credentials in the Station Location Settings!" msgstr "" #: application/views/hrdlog/export.php:87 @@ -5483,7 +5802,10 @@ msgid "Version Info" msgstr "" #: application/views/interface_assets/footer.php:633 -msgid "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. Check which DXCC for this particular location is the correct one. If you are sure, ignore this warning." +msgid "" +"Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " +"Check which DXCC for this particular location is the correct one. If you are " +"sure, ignore this warning." msgstr "" #: application/views/interface_assets/footer.php:1327 @@ -5619,6 +5941,7 @@ msgstr "" #: application/views/interface_assets/header.php:257 #: application/views/station_profile/index.php:33 #: application/views/stationsetup/stationsetup.php:113 +#: application/views/stationsetup/stationsetup.php:110 msgid "Admin" msgstr "" @@ -5710,10 +6033,14 @@ msgstr "" #: application/views/kml/index.php:7 msgid "Export your logbook to a KML file for use in Google Earth." -msgstr "Exportez votre journal de trafic vers un fichier KML pour l'utiliser dans Google Earth." +msgstr "" +"Exportez votre journal de trafic vers un fichier KML pour l'utiliser dans " +"Google Earth." #: application/views/labels/create.php:24 -msgid "Label name used for display purposes, so pick something meaningful, perhaps the label style." +msgid "" +"Label name used for display purposes, so pick something meaningful, perhaps " +"the label style." msgstr "" #: application/views/labels/create.php:39 @@ -5879,7 +6206,9 @@ msgid "Save Paper Type" msgstr "" #: application/views/labels/edit.php:24 -msgid "Label name used for display purposes so pick something meaningful perhaps the label style." +msgid "" +"Label name used for display purposes so pick something meaningful perhaps " +"the label style." msgstr "" #: application/views/labels/index.php:29 @@ -5953,7 +6282,8 @@ msgstr "Ajouter le Locator ?" #: application/views/labels/startatform.php:9 #: application/views/logbookadvanced/startatform.php:9 -msgid "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" +msgid "" +"Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" msgstr "" #: application/views/labels/startatform.php:15 @@ -6245,7 +6575,9 @@ msgstr "" #: application/views/logbookadvanced/index.php:414 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" -msgstr "ATTENTION ! Etes vous certain de vouloir supprimer les QSO sélectionnés ?" +msgstr "" +"ATTENTION ! Etes vous certain de vouloir supprimer les QSO " +"sélectionnés ?" #: application/views/logbookadvanced/index.php:417 msgid "With selected: " @@ -6537,7 +6869,9 @@ msgstr "" #: application/views/lotw/import.php:24 #, php-format -msgid "Upload the Exported ADIF file from LoTW from the %s Area, to mark QSOs as confirmed on LoTW." +msgid "" +"Upload the Exported ADIF file from LoTW from the %s Area, to mark QSOs as " +"confirmed on LoTW." msgstr "" #: application/views/lotw/import.php:27 @@ -6553,8 +6887,17 @@ msgid "Select callsign to pull LoTW confirmations for." msgstr "" #: application/views/lotw/import.php:61 -msgid "Wavelog will use the LoTW username and password stored in your user profile to download a report from LoTW for you. The report Wavelog downloads will have all confirmations since chosen date, or since your last LoTW confirmation (fetched from your log), up until now." -msgstr "Wavelog utilisera le nom d'utilisateur et le mot de passe LoTW stockés dans votre profil utilisateur pour télécharger le journal vers LoTW.
Les téléchargements du journal Wavelog auront toutes les confirmations depuis la date choisie, ou depuis votre dernière confirmation LoTW (récupérée de votre journal), jusqu'à présent." +msgid "" +"Wavelog will use the LoTW username and password stored in your user profile " +"to download a report from LoTW for you. The report Wavelog downloads will " +"have all confirmations since chosen date, or since your last LoTW " +"confirmation (fetched from your log), up until now." +msgstr "" +"Wavelog utilisera le nom d'utilisateur et le mot de passe LoTW stockés dans " +"votre profil utilisateur pour télécharger le journal vers LoTW.
Les " +"téléchargements du journal Wavelog auront toutes les confirmations depuis la " +"date choisie, ou depuis votre dernière confirmation LoTW (récupérée de votre " +"journal), jusqu'à présent." #: application/views/lotw/import.php:64 msgid "Import LoTW Matches" @@ -6700,11 +7043,15 @@ msgid "Update mode" msgstr "" #: application/views/mode/index.php:19 -msgid "Using the modes list you can control which modes are shown when creating a new QSO." +msgid "" +"Using the modes list you can control which modes are shown when creating a " +"new QSO." msgstr "" #: application/views/mode/index.php:22 -msgid "Active modes will be shown in the QSO 'Mode' drop-down, while inactive modes will be hidden and cannot be selected." +msgid "" +"Active modes will be shown in the QSO 'Mode' drop-down, while inactive modes " +"will be hidden and cannot be selected." msgstr "" #: application/views/mode/index.php:29 @@ -6755,15 +7102,24 @@ msgid "Your Notes" msgstr "Vos Notes" #: application/views/notes/main.php:32 -msgid "You don't currently have any notes, these are a fantastic way of storing data like ATU settings, beacons and general station notes and its better than paper as you can't lose them!" -msgstr "Vous n'avez actuellement aucune note.
C'est une manière fantastique de conserver vos données comme les réglages de boite d'accord, balises, notes sur les stations etc... et c'est bien mieux que des notes papiers que vous finirez par perdre !" +msgid "" +"You don't currently have any notes, these are a fantastic way of storing " +"data like ATU settings, beacons and general station notes and its better " +"than paper as you can't lose them!" +msgstr "" +"Vous n'avez actuellement aucune note.
C'est une manière fantastique de " +"conserver vos données comme les réglages de boite d'accord, balises, notes " +"sur les stations etc... et c'est bien mieux que des notes papiers que vous " +"finirez par perdre !" #: application/views/notes/view.php:21 msgid "Delete Note" msgstr "Supprimer" #: application/views/operator/index.php:9 -msgid "Please provide your personal call sign. This makes sure that QSOs are logged and exported with correct operator information." +msgid "" +"Please provide your personal call sign. This makes sure that QSOs are logged " +"and exported with correct operator information." msgstr "" #: application/views/operator/index.php:13 @@ -6800,7 +7156,8 @@ msgid "Map at right" msgstr "" #: application/views/options/appearance.php:76 -msgid "This allows the map on the dashboard to be disabled or placed on the right." +msgid "" +"This allows the map on the dashboard to be disabled or placed on the right." msgstr "" #: application/views/options/appearance.php:80 @@ -6816,7 +7173,9 @@ msgid "Public Maps" msgstr "" #: application/views/options/appearance.php:94 -msgid "This allows to disable all maps in the public view. This affects the main map and the gridsquares map." +msgid "" +"This allows to disable all maps in the public view. This affects the main " +"map and the gridsquares map." msgstr "" #: application/views/options/appearance.php:98 @@ -6837,7 +7196,9 @@ msgstr "" #: application/views/options/dxcluster.php:39 #, php-format -msgid "The Provider of the DXCluster-Cache. You can set up your own Cache with %s or use a public one" +msgid "" +"The Provider of the DXCluster-Cache. You can set up your own Cache with %s " +"or use a public one" msgstr "" #: application/views/options/dxcluster.php:41 @@ -6907,7 +7268,8 @@ msgid "Email Address" msgstr "Email" #: application/views/options/email.php:75 -msgid "The email address from which the emails are sent, e.g. 'wavelog@example.com'" +msgid "" +"The email address from which the emails are sent, e.g. 'wavelog@example.com'" msgstr "" #: application/views/options/email.php:80 @@ -6915,7 +7277,9 @@ msgid "SMTP Host" msgstr "" #: application/views/options/email.php:83 -msgid "The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' or 'tls://')" +msgid "" +"The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' " +"or 'tls://')" msgstr "" #: application/views/options/email.php:88 @@ -6923,7 +7287,9 @@ msgid "SMTP Port" msgstr "" #: application/views/options/email.php:91 -msgid "The SMTP port of the mail server, e.g. if TLS is used -> '587', if SSL is used -> '465'" +msgid "" +"The SMTP port of the mail server, e.g. if TLS is used -> '587', if SSL is " +"used -> '465'" msgstr "" #: application/views/options/email.php:96 @@ -6931,7 +7297,9 @@ msgid "SMTP Username" msgstr "" #: application/views/options/email.php:99 -msgid "The username to log in to the mail server, usually this is the email address that is used." +msgid "" +"The username to log in to the mail server, usually this is the email address " +"that is used." msgstr "" #: application/views/options/email.php:104 @@ -6951,7 +7319,9 @@ msgid "The email will be sent to the address defined in your account settings." msgstr "" #: application/views/options/index.php:13 -msgid "Wavelog Options are global settings used for all users of the installation, which are overridden if there's a setting on a user level." +msgid "" +"Wavelog Options are global settings used for all users of the installation, " +"which are overridden if there's a setting on a user level." msgstr "" #: application/views/options/oqrs.php:39 @@ -6959,7 +7329,8 @@ msgid "Global text" msgstr "" #: application/views/options/oqrs.php:41 -msgid "This text is an optional text that can be displayed on top of the OQRS page." +msgid "" +"This text is an optional text that can be displayed on top of the OQRS page." msgstr "" #: application/views/options/oqrs.php:45 @@ -6975,7 +7346,9 @@ msgid "On" msgstr "" #: application/views/options/oqrs.php:50 -msgid "When this is on, all station locations with OQRS active, will be searched at once." +msgid "" +"When this is on, all station locations with OQRS active, will be searched at " +"once." msgstr "" #: application/views/options/oqrs.php:54 @@ -6983,7 +7356,9 @@ msgid "Show station location name in grouped search results" msgstr "" #: application/views/options/oqrs.php:59 -msgid "If grouped search is ON, you can decide if the name of the station location shall be shown in the results table." +msgid "" +"If grouped search is ON, you can decide if the name of the station location " +"shall be shown in the results table." msgstr "" #: application/views/options/radios.php:38 @@ -6991,7 +7366,9 @@ msgid "Radio Timeout Warning" msgstr "" #: application/views/options/radios.php:39 -msgid "The Radio Timeout Warning is used on the QSO entry panel to alert you to radio interface disconnects." +msgid "" +"The Radio Timeout Warning is used on the QSO entry panel to alert you to " +"radio interface disconnects." msgstr "" #: application/views/options/radios.php:41 @@ -7027,7 +7404,10 @@ msgid "Release Notes and Custom Text" msgstr "" #: application/views/options/version_dialog.php:68 -msgid "The Version Info is shown to every user. The user has the option to dismiss the dialog after he read it. Select if you want to show only release notes (fetched from github), only custom text or both." +msgid "" +"The Version Info is shown to every user. The user has the option to dismiss " +"the dialog after he read it. Select if you want to show only release notes " +"(fetched from github), only custom text or both." msgstr "" #: application/views/options/version_dialog.php:72 @@ -7047,7 +7427,9 @@ msgid "Show for all Users" msgstr "" #: application/views/options/version_dialog.php:99 -msgid "This will show the version dialog automatically to all users on their next page reload." +msgid "" +"This will show the version dialog automatically to all users on their next " +"page reload." msgstr "" #: application/views/options/version_dialog.php:104 @@ -7055,7 +7437,8 @@ msgid "Hide for all Users" msgstr "" #: application/views/options/version_dialog.php:106 -msgid "This will deactivate the automatic popup of the version dialog for all users." +msgid "" +"This will deactivate the automatic popup of the version dialog for all users." msgstr "" #: application/views/oqrs/index.php:9 @@ -7079,7 +7462,9 @@ msgid "No stations found that are using Wavelog OQRS." msgstr "" #: application/views/oqrs/notinlogform.php:2 -msgid "If you can't find your QSO in the log, please fill out the form below. You will be contacted after the log has been checked." +msgid "" +"If you can't find your QSO in the log, please fill out the form below. You " +"will be contacted after the log has been checked." msgstr "" #: application/views/oqrs/notinlogform.php:9 @@ -7165,7 +7550,9 @@ msgstr "" #: application/views/oqrs/request.php:9 #: application/views/oqrs/request_grouped.php:3 -msgid "The following QSO(s) were found. Please fill out the date and time and submit your request." +msgid "" +"The following QSO(s) were found. Please fill out the date and time and " +"submit your request." msgstr "" #: application/views/oqrs/request.php:40 @@ -7289,15 +7676,21 @@ msgid "Calculate" msgstr "" #: application/views/qrz/export.php:27 -msgid "Here you can see all QSOs which have not been previously uploaded to a QRZ logbook." +msgid "" +"Here you can see all QSOs which have not been previously uploaded to a QRZ " +"logbook." msgstr "" #: application/views/qrz/export.php:28 -msgid "You need to set a QRZ Logbook API key in your station profile. Only station profiles with an API Key set are displayed." +msgid "" +"You need to set a QRZ Logbook API key in your station profile. Only station " +"profiles with an API Key set are displayed." msgstr "" #: application/views/qrz/export.php:73 -msgid "If no startdate is given then all QSOs after last confirmation will be downloaded/updated!" +msgid "" +"If no startdate is given then all QSOs after last confirmation will be " +"downloaded/updated!" msgstr "" #: application/views/qrz/export.php:81 @@ -7346,11 +7739,15 @@ msgid "Export Requested QSLs for Printing" msgstr "" #: application/views/qslprint/index.php:29 -msgid "Here you can export requested QSLs as CSV or ADIF files for printing and, optionally, mark them as sent." +msgid "" +"Here you can export requested QSLs as CSV or ADIF files for printing and, " +"optionally, mark them as sent." msgstr "" #: application/views/qslprint/index.php:30 -msgid "Requested QSLs are any QSOs with a value of 'Requested' or 'Queued' in their 'QSL Sent' field." +msgid "" +"Requested QSLs are any QSOs with a value of 'Requested' or 'Queued' in their " +"'QSL Sent' field." msgstr "" #: application/views/qslprint/qslprint.php:30 @@ -7408,7 +7805,9 @@ msgid "No QSLs to print were found!" msgstr "" #: application/views/qslprint/qsolist.php:201 -msgid "No additional QSO's were found. That means they are probably already in the queue." +msgid "" +"No additional QSO's were found. That means they are probably already in the " +"queue." msgstr "" #: application/views/qso/components/winkeysettings.php:7 @@ -7656,8 +8055,12 @@ msgid "Satellite Mode" msgstr "Mode du Satellite" #: application/views/qso/index.php:538 -msgid "Note content is used within Wavelog only and is not exported to other services." -msgstr "A noter : le contenu est utilisé par Wavelog uniquement et n'est pas exporté vers d'autre services." +msgid "" +"Note content is used within Wavelog only and is not exported to other " +"services." +msgstr "" +"A noter : le contenu est utilisé par Wavelog uniquement et n'est pas exporté " +"vers d'autre services." #: application/views/qso/index.php:604 msgid "Reset to Default" @@ -7692,7 +8095,9 @@ msgid "Below is a list of active radios that are connected to Wavelog." msgstr "" #: application/views/radio/index.php:20 -msgid "If you haven't connected any radios yet, see the API page to generate API keys." +msgid "" +"If you haven't connected any radios yet, see the API page to generate API " +"keys." msgstr "" #: application/views/radio/index.php:27 application/views/search/filter.php:69 @@ -7791,7 +8196,9 @@ msgstr "" #: application/views/sattimers/index.php:15 #, php-format -msgid "This data comes from %s and is calculated for the current stationlocation grid %s." +msgid "" +"This data comes from %s and is calculated for the current stationlocation " +"grid %s." msgstr "" #: application/views/sattimers/index.php:40 @@ -7843,7 +8250,9 @@ msgid "Station location:" msgstr "" #: application/views/search/cqzones_result.php:3 -msgid "The following QSOs were found to have an incorrect CQ zone that this DXCC normally has:" +msgid "" +"The following QSOs were found to have an incorrect CQ zone that this DXCC " +"normally has:" msgstr "" #: application/views/search/cqzones_result.php:14 @@ -7883,7 +8292,9 @@ msgid "Search Results" msgstr "" #: application/views/search/lotw_unconfirmed.php:26 -msgid "The search displays QSOs which are unconfirmed on LoTW, but the callsign worked has uploaded to LoTW after your QSO date." +msgid "" +"The search displays QSOs which are unconfirmed on LoTW, but the callsign " +"worked has uploaded to LoTW after your QSO date." msgstr "" #: application/views/search/lotw_unconfirmed.php:29 @@ -7981,16 +8392,25 @@ msgid "Simple Fast Log Entry (FLE)" msgstr "" #: application/views/simplefle/index.php:13 -msgid "'Fast Log Entry', or simply 'FLE' is a system to log QSOs very quickly and efficiently. Due to its syntax, only a minimum of input is required to log many QSOs with as little effort as possible." +msgid "" +"'Fast Log Entry', or simply 'FLE' is a system to log QSOs very quickly and " +"efficiently. Due to its syntax, only a minimum of input is required to log " +"many QSOs with as little effort as possible." msgstr "" #: application/views/simplefle/index.php:14 -msgid "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs." +msgid "" +"FLE was originally written by DF3CB. He offers a program for Windows on his " +"website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides " +"a web interface to log QSOs." msgstr "" #: application/views/simplefle/index.php:15 #, php-format -msgid "A common use-case is if you have to import your paperlogs from an outdoor session and now SimpleFLE is also available in Wavelog. Information about the syntax and how FLE works can be found %s." +msgid "" +"A common use-case is if you have to import your paperlogs from an outdoor " +"session and now SimpleFLE is also available in Wavelog. Information about " +"the syntax and how FLE works can be found %s." msgstr "" #: application/views/simplefle/index.php:16 @@ -8035,19 +8455,26 @@ msgid "Warning! Do you really want to reset everything?" msgstr "" #: application/views/simplefle/index.php:31 -msgid "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!" +msgid "" +"Warning! You can't log the QSO List, because some QSO don't have band and/or " +"mode defined!" msgstr "" #: application/views/simplefle/index.php:32 -msgid "Warning! You can't log the QSO List, because some QSO don't have a time defined!" +msgid "" +"Warning! You can't log the QSO List, because some QSO don't have a time " +"defined!" msgstr "" #: application/views/simplefle/index.php:33 -msgid "Attention! The Data Field containes example data. First Clear Logging Session!" +msgid "" +"Attention! The Data Field containes example data. First Clear Logging " +"Session!" msgstr "" #: application/views/simplefle/index.php:34 -msgid "Are you sure that you want to add these QSO to the Log and clear the session?" +msgid "" +"Are you sure that you want to add these QSO to the Log and clear the session?" msgstr "" #: application/views/simplefle/index.php:35 @@ -8091,7 +8518,8 @@ msgid "Refs" msgstr "" #: application/views/simplefle/index.php:147 -msgid "The Refs can be either SOTA, IOTA, POTA or WWFF" +msgid "" +"The Refs can be either SOTA, IOTA, POTA or WWFF" msgstr "" #: application/views/simplefle/index.php:154 @@ -8119,11 +8547,16 @@ msgid "- Each new QSO should be on a new line." msgstr "" #: application/views/simplefle/syntax_help.php:3 -msgid "- On each new line, only write data that has changed from the previous QSO." +msgid "" +"- On each new line, only write data that has changed from the previous QSO." msgstr "" #: application/views/simplefle/syntax_help.php:4 -msgid "To begin, ensure you have already filled in the form on the left with the date, station call, and operator's call. The main data includes the band (or QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the first QSO, which is essentially the callsign." +msgid "" +"To begin, ensure you have already filled in the form on the left with the " +"date, station call, and operator's call. The main data includes the band (or " +"QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the " +"first QSO, which is essentially the callsign." msgstr "" #: application/views/simplefle/syntax_help.php:9 @@ -8131,21 +8564,33 @@ msgid "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB." msgstr "" #: application/views/simplefle/syntax_help.php:10 -msgid "If you don't provide any RST information, the syntax will use 59 (599 for data). Our next QSO wasn't 59 on both sides, so we provide the information with the sent RST first. It was 2 minutes later than the first QSO." +msgid "" +"If you don't provide any RST information, the syntax will use 59 (599 for " +"data). Our next QSO wasn't 59 on both sides, so we provide the information " +"with the sent RST first. It was 2 minutes later than the first QSO." msgstr "" #: application/views/simplefle/syntax_help.php:16 -msgid "The first QSO was at 21:34, and the second one 2 minutes later at 21:36. We write down 6 because this is the only data that changed here. The information about band and mode didn't change, so this data is omitted." +msgid "" +"The first QSO was at 21:34, and the second one 2 minutes later at 21:36. We " +"write down 6 because this is the only data that changed here. The " +"information about band and mode didn't change, so this data is omitted." msgstr "" #: application/views/simplefle/syntax_help.php:17 -msgid "For our next QSO at 21:40 on 14th May, 2021, we changed the band to 40m but still on SSB. If no RST information is given, the syntax will use 59 for every new QSO. Therefore we can add another QSO which took place at the exact same time two days later. The date must be in format YYYY-MM-DD." +msgid "" +"For our next QSO at 21:40 on 14th May, 2021, we changed the band to 40m but " +"still on SSB. If no RST information is given, the syntax will use 59 for " +"every new QSO. Therefore we can add another QSO which took place at the " +"exact same time two days later. The date must be in format YYYY-MM-DD." msgstr "" #: application/views/simplefle/syntax_help.php:28 #, php-format msgctxt "uses 'this article'" -msgid "A full summary of all commands and the necessary syntax can be found in %s of our Wiki." +msgid "" +"A full summary of all commands and the necessary syntax can be found in %s " +"of our Wiki." msgstr "" #: application/views/station_profile/create.php:32 @@ -8260,12 +8705,16 @@ msgstr "Trouver le Locator" #: application/views/station_profile/edit.php:179 #, php-format msgctxt "uses 'click here'" -msgid "Station gridsquare. For example: HM54AP. If you don't know your grid square then %s!" +msgid "" +"Station gridsquare. For example: HM54AP. If you don't know your grid square " +"then %s!" msgstr "" #: application/views/station_profile/create.php:126 #: application/views/station_profile/edit.php:180 -msgid "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88." +msgid "" +"If you are located on a grid line, enter multiple grid squares separated " +"with commas. For example: IO77,IO78,IO87,IO88." msgstr "" #: application/views/station_profile/create.php:141 @@ -8314,7 +8763,9 @@ msgstr "" #: application/views/station_profile/create.php:160 #: application/views/station_profile/edit.php:247 #, php-format -msgid "Station POTA reference(s). Multiple comma separated values allowed. You can look up POTA references at the %s." +msgid "" +"Station POTA reference(s). Multiple comma separated values allowed. You can " +"look up POTA references at the %s." msgstr "" #: application/views/station_profile/create.php:164 @@ -8355,8 +8806,12 @@ msgstr "Message (QSLMSG) par défaut" #: application/views/station_profile/create.php:185 #: application/views/station_profile/edit.php:289 -msgid "Define a default message that will be populated and sent for each QSO for this station location." -msgstr "Vous pouvez définir un message par défaut qui sera renseigné et envoyé pour chaque QSO pour ce lieu station." +msgid "" +"Define a default message that will be populated and sent for each QSO for " +"this station location." +msgstr "" +"Vous pouvez définir un message par défaut qui sera renseigné et envoyé pour " +"chaque QSO pour ce lieu station." #: application/views/station_profile/create.php:188 #: application/views/station_profile/edit.php:328 @@ -8365,7 +8820,10 @@ msgstr "" #: application/views/station_profile/create.php:193 #: application/views/station_profile/edit.php:333 -msgid "If enabled, the QSOs made from this location will not be uploaded to Clublog. If this is deactivated on it's own please check if the Call is properly configured at Clublog" +msgid "" +"If enabled, the QSOs made from this location will not be uploaded to " +"Clublog. If this is deactivated on it's own please check if the Call is " +"properly configured at Clublog" msgstr "" #: application/views/station_profile/create.php:196 @@ -8380,7 +8838,8 @@ msgstr "" #: application/views/station_profile/create.php:207 #: application/views/station_profile/edit.php:354 -msgid "The username you are registered with at HRDlog.net (usually your callsign)." +msgid "" +"The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" #: application/views/station_profile/create.php:210 @@ -8499,47 +8958,64 @@ msgstr "" #: application/views/station_profile/index.php:15 #: application/views/stationsetup/stationsetup.php:95 -msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." +#: application/views/stationsetup/stationsetup.php:94 +msgid "" +"Station Locations define operating locations, such as your QTH, a friends " +"QTH, or a portable station." msgstr "" #: application/views/station_profile/index.php:16 #: application/views/stationsetup/stationsetup.php:96 +#: application/views/stationsetup/stationsetup.php:95 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" #: application/views/station_profile/index.php:17 #: application/views/stationsetup/stationsetup.php:97 -msgid "Only one station may be active at a time. In the table below this is shown with the -Active Station- badge." +#: application/views/stationsetup/stationsetup.php:96 +msgid "" +"Only one station may be active at a time. In the table below this is shown " +"with the -Active Station- badge." msgstr "" #: application/views/station_profile/index.php:19 #: application/views/stationsetup/stationsetup.php:101 +#: application/views/stationsetup/stationsetup.php:98 msgid "Create a Station Location" msgstr "" #: application/views/station_profile/index.php:25 #: application/views/stationsetup/stationsetup.php:105 -msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." +#: application/views/stationsetup/stationsetup.php:102 +msgid "" +"Attention: You need to set an active station location. Go to Callsign-" +">Station Location to select one." msgstr "" #: application/views/station_profile/index.php:31 #: application/views/stationsetup/stationsetup.php:111 -msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." +#: application/views/stationsetup/stationsetup.php:108 +msgid "" +"Due to recent changes within Wavelog you need to reassign QSOs to your " +"station profiles." msgstr "" #: application/views/station_profile/index.php:33 #: application/views/stationsetup/stationsetup.php:113 +#: application/views/stationsetup/stationsetup.php:110 msgid "Maintenance" msgstr "" #: application/views/station_profile/index.php:33 #: application/views/stationsetup/stationsetup.php:113 +#: application/views/stationsetup/stationsetup.php:110 msgid "Please reassign them at " msgstr "" #: application/views/station_profile/index.php:41 #: application/views/stationsetup/linkedlocations.php:31 #: application/views/stationsetup/stationsetup.php:122 +#: application/views/stationsetup/stationsetup.php:119 msgid "Profile Name" msgstr "" @@ -8595,8 +9071,17 @@ msgid "Unlink Station Location" msgstr "" #: application/views/stationsetup/stationsetup.php:21 -msgid "Station Logbooks allow you to group Station Locations, this allows you to see all the locations across one session from the logbook areas to the analytics. Great for when your operating in multiple locations but they are part of the same DXCC or VUCC Circle." -msgstr "Les \"journaux de trafic\" des stations vous permettent de regrouper les emplacements des stations.
Cela vous permet d'avoir tous les emplacements au sein d'une même session ; visible dans le journal de trafic, jusqu'aux statistiques.
Idéal lorsque vous travaillez sur plusieurs sites, mais qu'ils font partie du même cercle DXCC ou VUCC." +msgid "" +"Station Logbooks allow you to group Station Locations, this allows you to " +"see all the locations across one session from the logbook areas to the " +"analytics. Great for when your operating in multiple locations but they are " +"part of the same DXCC or VUCC Circle." +msgstr "" +"Les \"journaux de trafic\" des stations vous permettent de regrouper les " +"emplacements des stations.
Cela vous permet d'avoir tous les emplacements " +"au sein d'une même session ; visible dans le journal de trafic, jusqu'aux " +"statistiques.
Idéal lorsque vous travaillez sur plusieurs sites, mais " +"qu'ils font partie du même cercle DXCC ou VUCC." #: application/views/stationsetup/stationsetup.php:32 msgid "Linked locations" @@ -8611,7 +9096,9 @@ msgid "Station Locations" msgstr "" #: application/views/stationsetup/stationsetup.php:98 -msgid "The 'Linked' column shows if the station location is linked with the Active Logbook selected above." +msgid "" +"The 'Linked' column shows if the station location is linked with the Active " +"Logbook selected above." msgstr "" #: application/views/stationsetup/stationsetup.php:127 @@ -8619,15 +9106,19 @@ msgid "Linked" msgstr "" #: application/views/stationsetup/stationsetup.php:134 +#: application/views/stationsetup/stationsetup.php:130 msgid "Favorite" msgstr "" #: application/views/stationsetup/stationsetup.php:180 +#: application/views/stationsetup/stationsetup.php:175 msgid "mark/unmark as favorite" msgstr "" #: application/views/stationsetup/visitor.php:2 -msgid "Setting a public slug allows you to share your logbook with anyone via a custom website address, this slug can contain letters & numbers only." +msgid "" +"Setting a public slug allows you to share your logbook with anyone via a " +"custom website address, this slug can contain letters & numbers only." msgstr "" #: application/views/stationsetup/visitor.php:3 @@ -8698,7 +9189,9 @@ msgid "Folder Name" msgstr "" #: application/views/themes/add.php:12 application/views/themes/edit.php:12 -msgid "This is the name of the folder where your CSS-files are placed under assets/css." +msgid "" +"This is the name of the folder where your CSS-files are placed under assets/" +"css." msgstr "" #: application/views/themes/add.php:16 application/views/themes/edit.php:16 @@ -8730,7 +9223,9 @@ msgstr "" #: application/views/themes/add.php:27 application/views/themes/edit.php:27 #, php-format -msgid "This is the name of the file which is used as %s small %s Logo in the header placed in assets/logo." +msgid "" +"This is the name of the file which is used as %s small %s Logo in the header " +"placed in assets/logo." msgstr "" #: application/views/themes/add.php:31 application/views/themes/edit.php:31 @@ -8740,7 +9235,9 @@ msgstr "" #: application/views/themes/add.php:33 application/views/themes/edit.php:33 #, php-format -msgid "This is the name of the file which is used as %s big %s Logo in the login screen placed in assets/logo." +msgid "" +"This is the name of the file which is used as %s big %s Logo in the login " +"screen placed in assets/logo." msgstr "" #: application/views/themes/add.php:36 @@ -8748,7 +9245,9 @@ msgid "Add theme" msgstr "" #: application/views/themes/edit.php:21 -msgid "This defines wherever the theme is a light or a dark one. On this basis the Logo is chosen." +msgid "" +"This defines wherever the theme is a light or a dark one. On this basis the " +"Logo is chosen." msgstr "" #: application/views/themes/edit.php:36 @@ -8760,7 +9259,10 @@ msgid "Themes list" msgstr "" #: application/views/themes/index.php:28 -msgid "In this menu you can add and edit themes to Wavelog. The process of adding a theme is not really straightforward and should only be done by an admin who is aware of their actions." +msgid "" +"In this menu you can add and edit themes to Wavelog. The process of adding a " +"theme is not really straightforward and should only be done by an admin who " +"is aware of their actions." msgstr "" #: application/views/themes/index.php:29 @@ -8777,7 +9279,9 @@ msgstr "" #: application/views/themes/index.php:44 #, php-format -msgid "Create a new folder in 'assets/css/' and upload a 'bootstrap.min.css' file which contains basic styling rules. We use the themes from %s" +msgid "" +"Create a new folder in 'assets/css/' and upload a 'bootstrap.min.css' file " +"which contains basic styling rules. We use the themes from %s" msgstr "" #: application/views/themes/index.php:50 @@ -8785,7 +9289,9 @@ msgid "2. Step" msgstr "" #: application/views/themes/index.php:53 -msgid "Create a file in this folder called 'overrides.css'. Place your custom CSS code in there." +msgid "" +"Create a file in this folder called 'overrides.css'. Place your custom CSS " +"code in there." msgstr "" #: application/views/themes/index.php:59 @@ -8793,11 +9299,15 @@ msgid "3. Step" msgstr "" #: application/views/themes/index.php:62 -msgid "For each new theme, you need two logo files. One for the login screen and one for the header." +msgid "" +"For each new theme, you need two logo files. One for the login screen and " +"one for the header." msgstr "" #: application/views/themes/index.php:63 -msgid "Only PNG files are allowed, and they should have a pixel ratio of 1:1 (e.g., 1000px height and 1000px width)." +msgid "" +"Only PNG files are allowed, and they should have a pixel ratio of 1:1 (e.g., " +"1000px height and 1000px width)." msgstr "" #: application/views/themes/index.php:64 @@ -8809,7 +9319,9 @@ msgid "4. Step" msgstr "" #: application/views/themes/index.php:73 -msgid "Click here on 'Add a Theme' and type in the necessary data. Type in the filenames for the logos without the file extension '.png'" +msgid "" +"Click here on 'Add a Theme' and type in the necessary data. Type in the " +"filenames for the logos without the file extension '.png'" msgstr "" #: application/views/themes/index.php:83 @@ -8841,7 +9353,9 @@ msgid "Callsign(s) worked (max 5)" msgstr "" #: application/views/timeplotter/index.php:10 -msgid "The Timeplotter is used to analyze your logbook and find out at what times you worked certain CQ zones or DXCC countries on a selected band." +msgid "" +"The Timeplotter is used to analyze your logbook and find out at what times " +"you worked certain CQ zones or DXCC countries on a selected band." msgstr "" #: application/views/update/index.php:8 @@ -8853,7 +9367,9 @@ msgid "Distance Data" msgstr "" #: application/views/update/index.php:19 -msgid "Here you can update the DXCC lookup data that is used for displaying callsign information." +msgid "" +"Here you can update the DXCC lookup data that is used for displaying " +"callsign information." msgstr "" #: application/views/update/index.php:20 @@ -8878,8 +9394,10 @@ msgstr "" #: application/views/update/index.php:36 msgid "" -"After updating, Wavelog can fill in missing callsign information in the logbook using the newly-obtained DXCC data.\n" -"\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that are missing DXCC metadata or to re-check the entire logbook\n" +"After updating, Wavelog can fill in missing callsign information in the " +"logbook using the newly-obtained DXCC data.\n" +"\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that are " +"missing DXCC metadata or to re-check the entire logbook\n" "\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." msgstr "" @@ -8896,7 +9414,9 @@ msgid "Apply Continent Data to Logbook" msgstr "" #: application/views/update/index.php:47 -msgid "This function can be used to update QSO continent information for all QSOs in Wavelog missing that information." +msgid "" +"This function can be used to update QSO continent information for all QSOs " +"in Wavelog missing that information." msgstr "" #: application/views/update/index.php:49 @@ -9053,16 +9573,28 @@ msgid "Log End Times for QSOs Separately" msgstr "Enregistrer les heures de fin des QSO séparément" #: application/views/user/edit.php:350 -msgid "Choose yes here if you want to log QSO start and end times separately. If set to 'No' the end time will be the same as start time." -msgstr "(Choisissez 'oui', si vous souhaitez enregistrer les heures de début et de fin des QSO séparément. Si la valeur est 'Non', l'heure de fin sera la même que l'heure de début)." +msgid "" +"Choose yes here if you want to log QSO start and end times separately. If " +"set to 'No' the end time will be the same as start time." +msgstr "" +"(Choisissez 'oui', si vous souhaitez enregistrer les heures de début et de " +"fin des QSO séparément. Si la valeur est 'Non', l'heure de fin sera la même " +"que l'heure de début)." #: application/views/user/edit.php:355 -msgid "Show profile picture of QSO partner from qrz.com/hamqth.com profile in the log QSO section." -msgstr "Affiche l'image de profil du contact (depuis qrz.com/hamqth.com) dans la session QSO." +msgid "" +"Show profile picture of QSO partner from qrz.com/hamqth.com profile in the " +"log QSO section." +msgstr "" +"Affiche l'image de profil du contact (depuis qrz.com/hamqth.com) dans la " +"session QSO." #: application/views/user/edit.php:361 -msgid "Please set your qrz.com/hamqth.com credentials in the general config file." -msgstr "(Indiquer les éléments d'authentification pour qrz.com/hamqth.com dans le fichier de configuration (config.php))." +msgid "" +"Please set your qrz.com/hamqth.com credentials in the general config file." +msgstr "" +"(Indiquer les éléments d'authentification pour qrz.com/hamqth.com dans le " +"fichier de configuration (config.php))." #: application/views/user/edit.php:366 msgid "Location auto lookup." @@ -9078,12 +9610,16 @@ msgstr "SOTA : Renseigner automatiquement le Locator et le nom du sommet." #: application/views/user/edit.php:382 application/views/user/edit.php:392 #: application/views/user/edit.php:402 -msgid "If set, name and gridsquare is fetched from the API and filled in location and locator." -msgstr "(Si 'oui', le nom et le Locator seront récupérés depuis l'API et renseignés)." +msgid "" +"If set, name and gridsquare is fetched from the API and filled in location " +"and locator." +msgstr "" +"(Si 'oui', le nom et le Locator seront récupérés depuis l'API et renseignés)." #: application/views/user/edit.php:386 msgid "WWFF auto lookup gridsquare and name for reference." -msgstr "WWFF : Renseigner automatiquement le Locator et le nom de la référence." +msgstr "" +"WWFF : Renseigner automatiquement le Locator et le nom de la référence." #: application/views/user/edit.php:396 msgid "POTA auto lookup gridsquare and name for park." @@ -9102,8 +9638,12 @@ msgid "Quicklog Field" msgstr "Champ Quicklog" #: application/views/user/edit.php:433 -msgid "With this feature, you can log callsigns using the search field in the header." -msgstr "(Si 'oui', vous pouvez enregistrer les indicatifs d'appel en utilisant le champ de recherche dans la barre du haut)." +msgid "" +"With this feature, you can log callsigns using the search field in the " +"header." +msgstr "" +"(Si 'oui', vous pouvez enregistrer les indicatifs d'appel en utilisant le " +"champ de recherche dans la barre du haut)." #: application/views/user/edit.php:437 msgid "Quicklog - Action on press Enter" @@ -9114,8 +9654,10 @@ msgid "Log Callsign" msgstr "Enregistre l'indicatif" #: application/views/user/edit.php:443 -msgid "What action should be performed when Enter is pressed in the quicklog field?" -msgstr "Action effectuée lorsque vous appuyez sur 'Entrée' dans le champ quicklog ?" +msgid "" +"What action should be performed when Enter is pressed in the quicklog field?" +msgstr "" +"Action effectuée lorsque vous appuyez sur 'Entrée' dans le champ quicklog ?" #: application/views/user/edit.php:449 msgid "Station Locations Quickswitch" @@ -9167,7 +9709,9 @@ msgstr "Type de QSL pour le statut" #: application/views/user/edit.php:559 msgid "Select the type of QSL to show in the previous QSOs section." -msgstr "Sélectionner le type de QSL pour le statut à afficher dans la session 'Contacts précédents'." +msgstr "" +"Sélectionner le type de QSL pour le statut à afficher dans la session " +"'Contacts précédents'." #: application/views/user/edit.php:565 msgid "QRZ" @@ -9178,7 +9722,8 @@ msgid "Show Reference Fields on QSO Tab" msgstr "" #: application/views/user/edit.php:580 -msgid "The enabled items will be shown on the QSO tab rather than the General tab." +msgid "" +"The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" #: application/views/user/edit.php:619 @@ -9272,7 +9817,9 @@ msgstr "Activer Winkeyer" #: application/views/user/edit.php:836 #, php-format -msgid "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s before enabling." +msgid "" +"Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " +"before enabling." msgstr "" #: application/views/user/edit.php:847 @@ -9294,7 +9841,9 @@ msgid "Show Workable Passes Only" msgstr "" #: application/views/user/edit.php:861 -msgid "If enabled shows only workable passes based on the gridsquare set in your hams.at account. Requires private feed key to be set." +msgid "" +"If enabled shows only workable passes based on the gridsquare set in your " +"hams.at account. Requires private feed key to be set." msgstr "" #: application/views/user/edit.php:873 @@ -9339,15 +9888,26 @@ msgid "Wavelog needs at least one user configured in order to operate." msgstr "Wavelog a besoin d'au moins un utilisateur configuré pour fonctionner." #: application/views/user/main.php:34 -msgid "Users can be assigned roles which give them different permissions, such as adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "Les utilisateurs peuvent se voir attribuer des rôles qui leur donnent différentes autorisations, telles que l'ajout de QSO au journal de trafic et l'accès aux API Wavelog." +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" +"Les utilisateurs peuvent se voir attribuer des rôles qui leur donnent " +"différentes autorisations, telles que l'ajout de QSO au journal de trafic et " +"l'accès aux API Wavelog." #: application/views/user/main.php:35 -msgid "The currently logged-in user is displayed at the upper-right of each page." -msgstr "L'utilisateur actuellement connecté est affiché en haut à droite de chaque page." +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" +"L'utilisateur actuellement connecté est affiché en haut à droite de chaque " +"page." #: application/views/user/main.php:36 -msgid "With the password reset button, you can send a user an email containing a link to reset their password. To achieve this, ensure that the email settings in the global options are configured correctly." +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." msgstr "" #: application/views/user/main.php:38 @@ -9427,7 +9987,8 @@ msgid "Don't show again" msgstr "" #: application/views/view_log/index.php:4 -msgid "Displaying all QSOs of station locations which are linked to this logbook" +msgid "" +"Displaying all QSOs of station locations which are linked to this logbook" msgstr "" #: application/views/view_log/qso.php:6 @@ -9562,15 +10123,21 @@ msgid "Please enter a callsign!" msgstr "" #: application/views/webadif/export.php:22 -msgid "Here you can see and upload all QSOs which have not been previously uploaded to QO-100 Dx Club." +msgid "" +"Here you can see and upload all QSOs which have not been previously uploaded " +"to QO-100 Dx Club." msgstr "" #: application/views/webadif/export.php:33 -msgid "You need to set a QO-100 Dx Club API key in your station profile. Only station profiles with an API Key are displayed." +msgid "" +"You need to set a QO-100 Dx Club API key in your station profile. Only " +"station profiles with an API Key are displayed." msgstr "" #: application/views/webadif/export.php:63 -msgid "There are currently no outstanding QSOs that need to be uploaded to the QO-100 Dx Club's API." +msgid "" +"There are currently no outstanding QSOs that need to be uploaded to the " +"QO-100 Dx Club's API." msgstr "" #: application/views/webadif/export.php:64 @@ -9579,7 +10146,9 @@ msgstr "" #: application/views/webadif/export.php:73 #: application/views/webadif/export.php:113 -msgid "None of your Logbooks are configured to export data to the QO-100 Dx Club's API." +msgid "" +"None of your Logbooks are configured to export data to the QO-100 Dx Club's " +"API." msgstr "" #: application/views/webadif/export.php:74 @@ -9590,17 +10159,23 @@ msgstr "QO-100 Dx Club" #: application/views/webadif/export.php:74 #: application/views/webadif/export.php:114 #, php-format -msgid "To configure this feature, go to your profile page at the %s and %s Create %s an API key." +msgid "" +"To configure this feature, go to your profile page at the %s and %s Create " +"%s an API key." msgstr "" #: application/views/webadif/export.php:75 #: application/views/webadif/export.php:115 #, php-format -msgid "Then, navigate to your %s and configure your station with the key you have created at the club." +msgid "" +"Then, navigate to your %s and configure your station with the key you have " +"created at the club." msgstr "" #: application/views/webadif/export.php:83 -msgid "Here you can mark as uploaded your QSOs which have not been previously uploaded to QO-100 Dx Club." +msgid "" +"Here you can mark as uploaded your QSOs which have not been previously " +"uploaded to QO-100 Dx Club." msgstr "" #: application/views/webadif/export.php:107 @@ -9650,5 +10225,9 @@ msgstr "Les QSO sont marqués comme exportés vers QO-100 Dx Club." #~ msgid "Overwrite exisiting DOK in log by DCL (if different)." #~ msgstr "Remplacer le DOC existant dans le journal par DCL (si différent)" -#~ msgid "If unchecked information about QSO which could not be found in Wavelog will be displayed." -#~ msgstr "(Si non cochée, les informations sur les QSO qui n'ont pas pu être trouvées dans Wavelog seront affichées)" +#~ msgid "" +#~ "If unchecked information about QSO which could not be found in Wavelog " +#~ "will be displayed." +#~ msgstr "" +#~ "(Si non cochée, les informations sur les QSO qui n'ont pas pu être " +#~ "trouvées dans Wavelog seront affichées)" From 81873cc62a1dbe93a6358e9cf7330e6b6e327fb5 Mon Sep 17 00:00:00 2001 From: Andreas Kristiansen <6977712+AndreasK79@users.noreply.github.com> Date: Wed, 3 Jul 2024 14:30:36 +0200 Subject: [PATCH 15/24] [IOTA Award] Fix second table loading, and add PK to speed up --- application/config/migration.php | 2 +- application/controllers/Awards.php | 10 +++---- application/migrations/207_add_pk_iota.php | 33 ++++++++++++++++++++++ 3 files changed, 39 insertions(+), 6 deletions(-) create mode 100644 application/migrations/207_add_pk_iota.php diff --git a/application/config/migration.php b/application/config/migration.php index 292abe539..52637be5f 100644 --- a/application/config/migration.php +++ b/application/config/migration.php @@ -22,7 +22,7 @@ $config['migration_enabled'] = TRUE; | */ -$config['migration_version'] = 206; +$config['migration_version'] = 207; /* |-------------------------------------------------------------------------- diff --git a/application/controllers/Awards.php b/application/controllers/Awards.php index 2bf0483a2..754fceda5 100644 --- a/application/controllers/Awards.php +++ b/application/controllers/Awards.php @@ -800,11 +800,11 @@ class Awards extends CI_Controller { $data['modes'] = $this->modes->active(); // Used in the view for mode select if($this->input->method() === 'post') { - $postdata['qsl'] = $this->input->post('qsl') == 0 ? NULL: 1; - $postdata['lotw'] = $this->input->post('lotw') == 0 ? NULL: 1; - $postdata['eqsl'] = $this->input->post('eqsl') == 0 ? NULL: 1; - $postdata['qrz'] = $this->input->post('qrz') == 0 ? NULL: 1; - $postdata['clublog'] = $this->input->post('clublog') == 0 ? NULL: 1; + $postdata['qsl'] = 1; + $postdata['lotw'] = 1; + $postdata['eqsl'] = 0; + $postdata['qrz'] = 0; + $postdata['clublog'] = 0; $postdata['worked'] = $this->security->xss_clean($this->input->post('worked')) ?? NULL; $postdata['confirmed'] = $this->security->xss_clean($this->input->post('confirmed')) ?? NULL; $postdata['notworked'] = $this->security->xss_clean($this->input->post('notworked')) ?? NULL; diff --git a/application/migrations/207_add_pk_iota.php b/application/migrations/207_add_pk_iota.php new file mode 100644 index 000000000..15e2809e0 --- /dev/null +++ b/application/migrations/207_add_pk_iota.php @@ -0,0 +1,33 @@ +add_ix('iota','idx_iota_Tag','`tag`'); + } + + // CREATE UNIQUE INDEX `idx_iota_Tag` ON `iota` (Tag) COMMENT '' ALGORITHM DEFAULT LOCK DEFAULT; + + public function down() { + $this->rm_ix('iota','idx_iota_Tag'); + } + + private function add_ix($table_name,$index,$cols) { + $ix_exist = $this->db->query("SHOW INDEX FROM ".$table_name." WHERE Key_name = '".$index."'")->num_rows(); + if ($ix_exist == 0) { + $sql = "CREATE UNIQUE INDEX `idx_iota_Tag` ON `iota` (Tag) COMMENT '' ALGORITHM DEFAULT LOCK DEFAULT"; + $this->db->query($sql); + } + } + + private function rm_ix($table_name,$index) { + $ix_exist = $this->db->query("SHOW INDEX FROM ".$table_name." WHERE Key_name = '".$index."'")->num_rows(); + if ($ix_exist >= 1) { + $sql = "ALTER TABLE ".$table_name." DROP INDEX `".$index."`;"; + $this->db->query($sql); + } + } + +} From 2e0eeb68d177842e14e3a5c9fcf29ae5bbdbbf43 Mon Sep 17 00:00:00 2001 From: Andreas Kristiansen <6977712+AndreasK79@users.noreply.github.com> Date: Wed, 3 Jul 2024 14:34:07 +0200 Subject: [PATCH 16/24] Removed comment --- application/migrations/207_add_pk_iota.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/application/migrations/207_add_pk_iota.php b/application/migrations/207_add_pk_iota.php index 15e2809e0..df1af8541 100644 --- a/application/migrations/207_add_pk_iota.php +++ b/application/migrations/207_add_pk_iota.php @@ -8,8 +8,6 @@ class Migration_add_pk_iota extends CI_Migration { $this->add_ix('iota','idx_iota_Tag','`tag`'); } - // CREATE UNIQUE INDEX `idx_iota_Tag` ON `iota` (Tag) COMMENT '' ALGORITHM DEFAULT LOCK DEFAULT; - public function down() { $this->rm_ix('iota','idx_iota_Tag'); } From 7bfc3f077291ddd13e00292df701106cb0cd333d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Dorgeist?= Date: Wed, 3 Jul 2024 10:41:54 +0000 Subject: [PATCH 17/24] Translated using Weblate (German) Currently translated at 100.0% (1788 of 1788 strings) Translation: Wavelog/Main Translation Translate-URL: https://translate.wavelog.org/projects/wavelog/main-translation/de/ --- application/locale/de_DE/LC_MESSAGES/messages.po | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/application/locale/de_DE/LC_MESSAGES/messages.po b/application/locale/de_DE/LC_MESSAGES/messages.po index 60b8c91ff..fbdebb23e 100644 --- a/application/locale/de_DE/LC_MESSAGES/messages.po +++ b/application/locale/de_DE/LC_MESSAGES/messages.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" "POT-Creation-Date: 2024-07-03 06:10+0000\n" -"PO-Revision-Date: 2024-07-01 19:10+0000\n" -"Last-Translator: Fabian Berg \n" +"PO-Revision-Date: 2024-07-03 13:12+0000\n" +"Last-Translator: Jörg Dorgeist \n" "Language-Team: German \n" "Language: de_DE\n" "MIME-Version: 1.0\n" @@ -6229,11 +6229,11 @@ msgstr "LoTW erhalten" #: application/views/logbookadvanced/index.php:354 msgid "Clublog sent" -msgstr "" +msgstr "Clublog gesendet" #: application/views/logbookadvanced/index.php:365 msgid "Clublog received" -msgstr "" +msgstr "Clublog erhalten" #: application/views/logbookadvanced/index.php:376 msgid "eQSL sent" @@ -8616,11 +8616,11 @@ msgstr "Stationsstandorte" #: application/views/stationsetup/stationsetup.php:98 msgid "The 'Linked' column shows if the station location is linked with the Active Logbook selected above." -msgstr "" +msgstr "Die Spalte 'verlinkt' zeigt an, ob der Standort mit dem aktiven Logbuch verknüpft wurde." #: application/views/stationsetup/stationsetup.php:127 msgid "Linked" -msgstr "" +msgstr "Verlinkt" #: application/views/stationsetup/stationsetup.php:134 msgid "Favorite" From bfa6883e11c0af346eecf3fd21263194c6a20eab Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 3 Jul 2024 13:13:56 +0000 Subject: [PATCH 18/24] Run po_gen.sh script to update translation files --- .../locale/de_DE/LC_MESSAGES/messages.mo | Bin 165816 -> 166183 bytes .../locale/fr_FR/LC_MESSAGES/messages.mo | Bin 45807 -> 45919 bytes .../locale/fr_FR/LC_MESSAGES/messages.po | 1047 ++++------------- assets/lang_src/messages.pot | 2 +- 4 files changed, 235 insertions(+), 814 deletions(-) diff --git a/application/locale/de_DE/LC_MESSAGES/messages.mo b/application/locale/de_DE/LC_MESSAGES/messages.mo index db1c0cf42f4178ee7d0cc2bf54fe107e87671424..395e7d527660fc39944d54670c7b9140dd369645 100644 GIT binary patch delta 38728 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 diff --git a/application/locale/fr_FR/LC_MESSAGES/messages.mo b/application/locale/fr_FR/LC_MESSAGES/messages.mo index 7b2ab84c1a59c7c9f2e7fda0082e3696aaafb110..61b51fd7de53f915120cadef64a50177535e6e89 100644 GIT binary patch delta 13683 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\n" -"Language-Team: French \n" +"Language-Team: French \n" "Language: fr_FR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -683,9 +682,7 @@ msgstr "" #: application/controllers/Labels.php:132 #: application/controllers/Labels.php:471 -msgid "" -"Your paper could not be saved. Remember that it can't have the same name as " -"existing paper types." +msgid "Your paper could not be saved. Remember that it can't have the same name as existing paper types." msgstr "" #: application/controllers/Labels.php:205 @@ -700,9 +697,7 @@ msgstr "" #: application/controllers/Labels.php:225 #: application/controllers/Labels.php:228 -msgid "" -"Something went wrong! The label could not be generated. Check label size and " -"font size." +msgid "Something went wrong! The label could not be generated. Check label size and font size." msgstr "" #: application/controllers/Labels.php:251 @@ -734,12 +729,8 @@ msgid "Paper was deleted." msgstr "" #: application/controllers/Logbook.php:37 -msgid "" -"No logbooks were found. You need to define a logbook under Station Logbooks! " -"Do it here:" -msgstr "" -"Aucun journal de trafic n'a été trouvé. Vous devez en définir un via le menu " -"'Station Logbooks' ! Faites-le ici :" +msgid "No logbooks were found. You need to define a logbook under Station Logbooks! Do it here:" +msgstr "Aucun journal de trafic n'a été trouvé. Vous devez en définir un via le menu 'Station Logbooks' ! Faites-le ici :" #: application/controllers/Logbook.php:37 #: application/views/stationsetup/stationsetup.php:18 @@ -1009,7 +1000,6 @@ msgstr "RST (R)" #: application/views/view_log/qso.php:235 #: application/views/view_log/qso.php:528 #: application/views/visitor/index.php:15 -#: application/views/stationsetup/stationsetup.php:121 msgid "Country" msgstr "Pays" @@ -1104,7 +1094,6 @@ msgstr "Etat" #: application/views/view_log/partial/log_ajax.php:13 #: application/views/view_log/qso.php:515 #: application/views/visitor/index.php:27 -#: application/views/stationsetup/stationsetup.php:122 msgid "Gridsquare" msgstr "Locator" @@ -1273,8 +1262,6 @@ msgstr "Opérateur" #: application/views/view_log/partial/log_ajax.php:29 #: application/views/view_log/qso.php:236 #: application/views/view_log/qso.php:529 -#: application/controllers/Stationsetup.php:373 -#: application/views/stationsetup/stationsetup.php:146 msgid "Deleted DXCC" msgstr "DXCC Supprimé" @@ -1417,9 +1404,7 @@ msgstr "Les paramètres ont été sauvegardés avec succès." #: application/controllers/Options.php:299 msgid "Something went wrong with saving the settings. Try again." -msgstr "" -"Problème rencontré lors de l'enregistrement des paramètres. Merci de " -"réessayer." +msgstr "Problème rencontré lors de l'enregistrement des paramètres. Merci de réessayer." #: application/controllers/Options.php:310 #: application/controllers/Options.php:320 @@ -1579,9 +1564,7 @@ msgid "Incorrectly logged CQ zones" msgstr "" #: application/controllers/Search.php:70 -msgid "" -"QSOs unconfirmed on LoTW, but the callsign has uploaded to LoTW after QSO " -"date" +msgid "QSOs unconfirmed on LoTW, but the callsign has uploaded to LoTW after QSO date" msgstr "" #: application/controllers/Station.php:35 @@ -1623,8 +1606,6 @@ msgstr "" #: application/controllers/Stationsetup.php:68 #: application/controllers/Stationsetup.php:395 #: application/controllers/Stationsetup.php:409 -#: application/controllers/Stationsetup.php:387 -#: application/controllers/Stationsetup.php:401 msgid "Not allowed" msgstr "" @@ -1636,7 +1617,6 @@ msgstr "" #: application/controllers/Stationsetup.php:152 #: application/controllers/Stationsetup.php:436 #: application/views/qso/index.php:608 -#: application/controllers/Stationsetup.php:428 msgid "Error" msgstr "" @@ -1690,9 +1670,7 @@ msgstr "" #: application/controllers/Stationsetup.php:270 #: application/views/stationsetup/stationsetup.php:55 -msgid "" -"Are you sure you want to delete the following station logbook? You must re-" -"link any locations linked here to another logbook.: " +msgid "Are you sure you want to delete the following station logbook? You must re-link any locations linked here to another logbook.: " msgstr "" #: application/controllers/Stationsetup.php:280 @@ -1707,25 +1685,18 @@ msgstr "" #: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 -#: application/controllers/Stationsetup.php:341 -#: application/views/stationsetup/stationsetup.php:150 -msgid "" -"Are you sure you want to make the following station the active station: " +msgid "Are you sure you want to make the following station the active station: " msgstr "" #: application/controllers/Stationsetup.php:349 #: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 -#: application/controllers/Stationsetup.php:341 -#: application/views/stationsetup/stationsetup.php:150 msgid "Set Active" msgstr "" #: application/controllers/Stationsetup.php:351 #: application/views/station_profile/index.php:71 #: application/views/stationsetup/stationsetup.php:156 -#: application/controllers/Stationsetup.php:343 -#: application/views/stationsetup/stationsetup.php:152 msgid "Active Station" msgstr "" @@ -1736,8 +1707,6 @@ msgstr "" #: application/views/station_profile/index.php:76 #: application/views/stationsetup/stationsetup.php:161 #: application/views/user/main.php:87 application/views/user/main.php:89 -#: application/controllers/Stationsetup.php:346 -#: application/views/stationsetup/stationsetup.php:157 msgid "QSO" msgstr "" @@ -1754,17 +1723,12 @@ msgstr "" #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 #: application/views/themes/index.php:104 application/views/user/main.php:52 -#: application/controllers/Stationsetup.php:351 -#: application/views/stationsetup/stationsetup.php:124 -#: application/views/stationsetup/stationsetup.php:160 msgid "Edit" msgstr "Editer" #: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:99 #: application/views/stationsetup/stationsetup.php:185 -#: application/controllers/Stationsetup.php:355 -#: application/views/stationsetup/stationsetup.php:180 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "Etes-vous certain de supprimer tous les QSO de cette station ?" @@ -1773,9 +1737,6 @@ msgstr "Etes-vous certain de supprimer tous les QSO de cette station ?" #: application/views/station_profile/index.php:101 #: application/views/stationsetup/stationsetup.php:136 #: application/views/stationsetup/stationsetup.php:187 -#: application/controllers/Stationsetup.php:355 -#: application/views/stationsetup/stationsetup.php:132 -#: application/views/stationsetup/stationsetup.php:182 msgid "Empty Log" msgstr "Journal vide" @@ -1784,24 +1745,15 @@ msgstr "Journal vide" #: application/views/station_profile/index.php:82 #: application/views/stationsetup/stationsetup.php:129 #: application/views/stationsetup/stationsetup.php:168 -#: application/controllers/Stationsetup.php:359 -#: application/views/stationsetup/stationsetup.php:125 -#: application/views/stationsetup/stationsetup.php:163 msgid "Copy" msgstr "Copier" #: application/controllers/Stationsetup.php:372 #: application/views/station_profile/index.php:105 #: application/views/stationsetup/stationsetup.php:191 -#: application/controllers/Stationsetup.php:364 -#: application/views/stationsetup/stationsetup.php:186 #, php-format -msgid "" -"Are you sure you want delete station profile '%s'? This will delete all QSOs " -"within this station profile." -msgstr "" -"Etes-vous certain de supprimer le profil de station '%s' ? Cela supprimera " -"tous les QSO de cette station." +msgid "Are you sure you want delete station profile '%s'? This will delete all QSOs within this station profile." +msgstr "Etes-vous certain de supprimer le profil de station '%s' ? Cela supprimera tous les QSO de cette station." #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 @@ -1821,20 +1773,15 @@ msgstr "" #: application/views/stationsetup/stationsetup.php:192 #: application/views/themes/index.php:107 application/views/user/main.php:54 #: application/views/view_log/qso.php:613 -#: application/controllers/Stationsetup.php:364 -#: application/views/stationsetup/stationsetup.php:133 -#: application/views/stationsetup/stationsetup.php:187 msgid "Delete" msgstr "Supprimer" #: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:220 -#: application/controllers/Stationsetup.php:371 msgid "NONE" msgstr "AUCUNE" #: application/controllers/Stationsetup.php:462 -#: application/controllers/Stationsetup.php:454 msgid "Edit Export Map options" msgstr "" @@ -1934,10 +1881,7 @@ msgid "User logged in" msgstr "" #: application/controllers/User.php:804 -msgid "" -"Sorry. This instance is currently in maintenance mode. If this message " -"appears unexpectedly or keeps showing up, please contact an administrator. " -"Only administrators are currently allowed to log in." +msgid "Sorry. This instance is currently in maintenance mode. If this message appears unexpectedly or keeps showing up, please contact an administrator. Only administrators are currently allowed to log in." msgstr "" #: application/controllers/User.php:807 @@ -1988,8 +1932,7 @@ msgid "QO-100 Dx Club Upload" msgstr "" #: application/models/Hrdlog_model.php:22 -msgid "" -"HRDlog: QSOs have been uploaded to hrdlog.net for the station callsign: " +msgid "HRDlog: QSOs have been uploaded to hrdlog.net for the station callsign: " msgstr "" #: application/models/Hrdlog_model.php:25 @@ -2538,7 +2481,6 @@ msgstr "La taille maximum d'un fichier à télécharger est " #: application/views/view_log/qso.php:622 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 -#: application/views/stationsetup/stationsetup.php:108 msgid "Warning" msgstr "Attention" @@ -2576,36 +2518,27 @@ msgstr "(A cocher, si l'ADIF à importer ne contient pas ces informations)." #: application/views/adif/import.php:103 msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" -msgstr "" -"Indiquer que les QSO importés ont été téléchargés dans le journal HRDLog.net" +msgstr "Indiquer que les QSO importés ont été téléchargés dans le journal HRDLog.net" #: application/views/adif/import.php:113 msgid "Mark imported QSOs as uploaded to QRZ Logbook" -msgstr "" -"Indiquer que les QSO importés ont été téléchargés dans le journal QRZ.com" +msgstr "Indiquer que les QSO importés ont été téléchargés dans le journal QRZ.com" #: application/views/adif/import.php:123 msgid "Mark imported QSOs as uploaded to Clublog Logbook" -msgstr "" -"Indiquer que les QSO importés ont été téléchargés dans le journal Clublog" +msgstr "Indiquer que les QSO importés ont été téléchargés dans le journal Clublog" #: application/views/adif/import.php:133 msgid "Use DXCC information from ADIF" msgstr "Utiliser l'information du DXCC issue du fichier ADIF" #: application/views/adif/import.php:135 -msgid "" -"If not selected, Wavelog will attempt to determine DXCC information " -"automatically." -msgstr "" -"(Si cochée, Wavelog tentera de déterminer automatiquement les informations " -"DXCC)." +msgid "If not selected, Wavelog will attempt to determine DXCC information automatically." +msgstr "(Si cochée, Wavelog tentera de déterminer automatiquement les informations DXCC)." #: application/views/adif/import.php:143 msgid "Always use login-callsign as operator-name on import" -msgstr "" -"Toujours utiliser l'indicatif de connexion comme nom d'opérateur lors de " -"l'import" +msgstr "Toujours utiliser l'indicatif de connexion comme nom d'opérateur lors de l'import" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:21 @@ -2617,12 +2550,8 @@ msgid "Ignore Stationcallsign on import" msgstr "Ignorer l'indicatif de la station lors de l'import" #: application/views/adif/import.php:154 -msgid "" -"If selected, Wavelog will try to import all QSO's of the ADIF, " -"regardless if they match to the chosen station-location." -msgstr "" -"(Si cochée, Wavelog tentera d'importer TOUS les QSO de l'ADIF, qu'ils " -"correspondent ou non à l'emplacement de la station choisie)." +msgid "If selected, Wavelog will try to import all QSO's of the ADIF, regardless if they match to the chosen station-location." +msgstr "(Si cochée, Wavelog tentera d'importer TOUS les QSO de l'ADIF, qu'ils correspondent ou non à l'emplacement de la station choisie)." #: application/views/adif/import.php:158 application/views/adif/import.php:273 #: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 @@ -2635,13 +2564,8 @@ msgid "Take your logbook file anywhere!" msgstr "Emportez votre fichier journal de trafic partout !" #: application/views/adif/import.php:166 -msgid "" -"Exporting ADIFs allows you to import contacts into third party applications " -"like LoTW, Awards or just for keeping a backup." -msgstr "" -"L'export de fichier ADIF vous permet d'importer vos QSO dans des " -"applications tierces comme LoTW, Awards ou simplement pour conserver une " -"sauvegarde." +msgid "Exporting ADIFs allows you to import contacts into third party applications like LoTW, Awards or just for keeping a backup." +msgstr "L'export de fichier ADIF vous permet d'importer vos QSO dans des applications tierces comme LoTW, Awards ou simplement pour conserver une sauvegarde." #: application/views/adif/import.php:176 application/views/adif/import.php:222 #: application/views/cfd/index.php:15 application/views/csv/index.php:118 @@ -2696,11 +2620,7 @@ msgstr "Marquer les QSO comme étant \"téléchargé sur LoTW\"" #: application/views/adif/import.php:242 #, php-format -msgid "" -"Go to %s and export your logbook with confirmed DOKs. To speed up the " -"process you can select only DL QSOs to download (i.e. put 'DL' into Prefix " -"List). The downloaded ADIF file can be uploaded here in order to update QSOs " -"with DOK info." +msgid "Go to %s and export your logbook with confirmed DOKs. To speed up the process you can select only DL QSOs to download (i.e. put 'DL' into Prefix List). The downloaded ADIF file can be uploaded here in order to update QSOs with DOK info." msgstr "" #: application/views/adif/import.php:249 @@ -2708,33 +2628,23 @@ msgid "Only import DOK data from QSOs confirmed on DCL." msgstr "Importez uniquement les données DOK des QSO confirmés sur DCL." #: application/views/adif/import.php:251 -msgid "" -"Uncheck if you also want to update DOK with data from unconfirmed QSOs in " -"DCL." -msgstr "" -"(Décoché, si vous souhaitez également mettre à jour DOK, avec les données " -"des QSO non confirmés dans DCL)." +msgid "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL." +msgstr "(Décoché, si vous souhaitez également mettre à jour DOK, avec les données des QSO non confirmés dans DCL)." #: application/views/adif/import.php:258 msgid "Overwrites exisiting DOK in log by DCL (if different)." msgstr "" #: application/views/adif/import.php:260 -msgid "" -"If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " -"log." -msgstr "" -"(Si cochée, Wavelog écrasera de force le DOK existant par le DOK du journal " -"DCL)." +msgid "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log." +msgstr "(Si cochée, Wavelog écrasera de force le DOK existant par le DOK du journal DCL)." #: application/views/adif/import.php:267 msgid "Ignore QSOs that cannot be matched." msgstr "Ignorer les QSO qui ne correspondent pas." #: application/views/adif/import.php:269 -msgid "" -"If unchecked, information about QSOs which could not be found in Wavelog " -"will be displayed." +msgid "If unchecked, information about QSOs which could not be found in Wavelog will be displayed." msgstr "" #: application/views/adif/import_success.php:15 @@ -2758,12 +2668,8 @@ msgid "ADIF Errors" msgstr "Erreurs ADIF" #: application/views/adif/import_success.php:25 -msgid "" -"You have ADIF errors, the QSOs have still been added but these fields have " -"not been populated." -msgstr "" -"Vous avez des erreurs ADIF, les QSO ont quand même été ajoutés mais ces " -"champs n'ont pas été renseignés." +msgid "You have ADIF errors, the QSOs have still been added but these fields have not been populated." +msgstr "Vous avez des erreurs ADIF, les QSO ont quand même été ajoutés mais ces champs n'ont pas été renseignés." #: application/views/adif/mark_lotw.php:12 #: application/views/hrdlog/mark_hrdlog.php:12 @@ -2812,18 +2718,11 @@ msgid "API Keys" msgstr "" #: application/views/api/help.php:17 -msgid "" -"The Wavelog API (Application Programming Interface) lets third party systems " -"access Wavelog in a controlled way. Access to the API is managed via API " -"keys." +msgid "The Wavelog API (Application Programming Interface) lets third party systems access Wavelog in a controlled way. Access to the API is managed via API keys." msgstr "" #: application/views/api/help.php:18 -msgid "" -"You will need to generate an API key for each tool you wish to use (e.g. " -"WLgate). Generate a read-write key if the application needs to send data to " -"Wavelog. Generate a read-only key if the application only needs to obtain " -"data from Wavelog." +msgid "You will need to generate an API key for each tool you wish to use (e.g. WLgate). Generate a read-write key if the application needs to send data to Wavelog. Generate a read-only key if the application only needs to obtain data from Wavelog." msgstr "" #: application/views/api/help.php:19 @@ -2853,9 +2752,7 @@ msgid "Info" msgstr "Information" #: application/views/api/help.php:20 -msgid "" -"It's good practice to delete a key if you are no longer using the associated " -"application." +msgid "It's good practice to delete a key if you are no longer using the associated application." msgstr "" #: application/views/api/help.php:27 @@ -2977,17 +2874,11 @@ msgstr "" #: application/views/awards/counties/index.php:8 #, php-format -msgid "" -"The United States of America Counties Award (USA-CA), sponsored by CQ " -"magazine, is issued for confirmed two-way radio contacts with specified " -"numbers of U.S. counties under rules and conditions you can find %s." +msgid "The United States of America Counties Award (USA-CA), sponsored by CQ magazine, is issued for confirmed two-way radio contacts with specified numbers of U.S. counties under rules and conditions you can find %s." msgstr "" #: application/views/awards/counties/index.php:9 -msgid "" -"USA-CA is available to all licensed amateurs worldwide and is issued to " -"individuals for all county contacts made, regardless of callsigns used, " -"operating locations, or dates." +msgid "USA-CA is available to all licensed amateurs worldwide and is issued to individuals for all county contacts made, regardless of callsigns used, operating locations, or dates." msgstr "" #: application/views/awards/counties/index.php:10 @@ -3032,16 +2923,11 @@ msgid "CQ Magazine WAZ Award" msgstr "" #: application/views/awards/cq/index.php:19 -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." +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 "" #: 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." +msgid "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to all 40 CQ Zones along with the corresponding confirmation." msgstr "" #: application/views/awards/cq/index.php:21 @@ -3239,29 +3125,17 @@ msgid "DOK Award" msgstr "" #: application/views/awards/dok/index.php:8 -msgid "" -"Germany extends over 630 km from East to West and nearly 900 km from North " -"to South. Around 70,000 of Germany's 82 million inhabitants are licensed " -"hams, with more than 40,000 of them being members of DARC. DOK is a system " -"that provides individual local chapters with an identifier and means " -"'Deutscher Ortsverband Kenner' (English: 'German Local Association " -"Identifier')." +msgid "Germany extends over 630 km from East to West and nearly 900 km from North to South. Around 70,000 of Germany's 82 million inhabitants are licensed hams, with more than 40,000 of them being members of DARC. DOK is a system that provides individual local chapters with an identifier and means 'Deutscher Ortsverband Kenner' (English: 'German Local Association Identifier')." msgstr "" #: application/views/awards/dok/index.php:9 -msgid "" -"The DOK consists of a letter for the district and a two-digit number for the " -"local chapter, like P03 Friedrichshafen (city of the 'Hamradio exhibition') " -"or F41 Baunatal (location of the DARC headquarters). Note: A zero in a DOK " -"is a common mistake, often being logged as the letter O." +msgid "The DOK consists of a letter for the district and a two-digit number for the local chapter, like P03 Friedrichshafen (city of the 'Hamradio exhibition') or F41 Baunatal (location of the DARC headquarters). Note: A zero in a DOK is a common mistake, often being logged as the letter O." msgstr "" #: application/views/awards/dok/index.php:10 #, php-format msgctxt "uses 'DARC Website' and 'here'" -msgid "" -"This information is provided by the %s. Information about the DOK Awards and " -"its rules can be found %s." +msgid "This information is provided by the %s. Information about the DOK Awards and its rules can be found %s." msgstr "" #: application/views/awards/dok/index.php:20 @@ -3304,10 +3178,7 @@ msgstr "" #: application/views/awards/dxcc/index.php:15 #, php-format -msgid "" -"DXCC stands for 'DX Century Club,' an award based on worked countries. The " -"DXCC List is based on an article created in 1935 by Clinton B. DeSoto, " -"W1CBD, titled %s." +msgid "DXCC stands for 'DX Century Club,' an award based on worked countries. The DXCC List is based on an article created in 1935 by Clinton B. DeSoto, W1CBD, titled %s." msgstr "" #: application/views/awards/dxcc/index.php:16 @@ -3320,12 +3191,7 @@ msgid "You can find all information about the DXCC Award on the %s." msgstr "" #: application/views/awards/dxcc/index.php:17 -msgid "" -"Important Note: Over time, the criteria for the DXCC List have changed. The " -"List remains unchanged until an entity no longer satisfies the criteria " -"under which it was added, at which time it is moved to the Deleted List. You " -"will find Deleted DXCC entities also in the lists on Wavelog. Be aware that " -"these DXCC entities are outdated and no longer valid." +msgid "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Wavelog. Be aware that these DXCC entities are outdated and no longer valid." msgstr "" #: application/views/awards/dxcc/index.php:32 @@ -3417,16 +3283,11 @@ msgid "Fred Fish Memorial Award" msgstr "" #: application/views/awards/ffma/index.php:9 -msgid "" -"The Fred Fish Memorial Award was created in honor of Fred Fish, W5FF (SK), " -"who was the first amateur to have worked and confirmed all 488 Maidenhead " -"grid squares in the 48 contiguous United States on 6 Meters." +msgid "The Fred Fish Memorial Award was created in honor of Fred Fish, W5FF (SK), who was the first amateur to have worked and confirmed all 488 Maidenhead grid squares in the 48 contiguous United States on 6 Meters." msgstr "" #: application/views/awards/ffma/index.php:10 -msgid "" -"The award will be given to any amateur who can duplicate W5FF's " -"accomplishment." +msgid "The award will be given to any amateur who can duplicate W5FF's accomplishment." msgstr "" #: application/views/awards/ffma/index.php:11 @@ -3439,24 +3300,12 @@ msgid "US Gridmaster Award" msgstr "" #: application/views/awards/gridmaster/index.php:8 -msgid "" -"The GridMaster Award is the most prestigious AMSAT award, first introduced " -"in 2014 by the Star Comm Group. It is available to all amateur radio " -"operators worldwide who manage to work all 488 grid squares in the USA via " -"satellite and can provide QSL confirmations for each contact." +msgid "The GridMaster Award is the most prestigious AMSAT award, first introduced in 2014 by the Star Comm Group. It is available to all amateur radio operators worldwide who manage to work all 488 grid squares in the USA via satellite and can provide QSL confirmations for each contact." msgstr "" #: application/views/awards/gridmaster/index.php:9 #, php-format -msgid "" -"Official information from the %s: Two-way communication must be established " -"via amateur satellite with each grid. There is no minimum signal report " -"required. Contacts must be made from the same location or from locations no " -"two of which are more than 200 kilometers apart. The applicant's attestation " -"in the award application serves as affirmation of abidance by the distance " -"rule. Individuals may apply for and be granted multiple GridMaster awards " -"when achieved from another location, which is in a different 200-kilometer " -"circle." +msgid "Official information from the %s: Two-way communication must be established via amateur satellite with each grid. There is no minimum signal report required. Contacts must be made from the same location or from locations no two of which are more than 200 kilometers apart. The applicant's attestation in the award application serves as affirmation of abidance by the distance rule. Individuals may apply for and be granted multiple GridMaster awards when achieved from another location, which is in a different 200-kilometer circle." msgstr "" #: application/views/awards/gridmaster/index.php:9 @@ -3472,18 +3321,11 @@ msgid "HELVETIA 26 | SWITZERLAND AWARD" msgstr "" #: application/views/awards/helvetia/index.php:19 -msgid "" -"The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the " -"HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting " -"activities on the bands by encouraging contacts across as many Swiss cantons " -"as possible on multiple bands." +msgid "The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting activities on the bands by encouraging contacts across as many Swiss cantons as possible on multiple bands." msgstr "" #: application/views/awards/helvetia/index.php:20 -msgid "" -"These awards come in two versions: one for HF bands and the other for VHF " -"(including SHF and UHF) bands. Valid connections for these awards date back " -"to January 1, 1980" +msgid "These awards come in two versions: one for HF bands and the other for VHF (including SHF and UHF) bands. Valid connections for these awards date back to January 1, 1980" msgstr "" #: application/views/awards/helvetia/index.php:21 @@ -3514,27 +3356,11 @@ msgid "IOTA Awards" msgstr "" #: application/views/awards/iota/index.php:17 -msgid "" -"IOTA is an exciting and innovative activity program that has captured the " -"interest of thousands of radio amateurs worldwide. Established in 1964, it " -"promotes radio contacts with stations located on islands around the world to " -"enhance the experience of all those active on the amateur bands. To achieve " -"this, it draws on the widespread mystique surrounding islands." +msgid "IOTA is an exciting and innovative activity program that has captured the interest of thousands of radio amateurs worldwide. Established in 1964, it promotes radio contacts with stations located on islands around the world to enhance the experience of all those active on the amateur bands. To achieve this, it draws on the widespread mystique surrounding islands." msgstr "" #: application/views/awards/iota/index.php:18 -msgid "" -"It is administered by Islands On The Air (IOTA) Ltd (referred to as IOTA " -"Management) in partnership with the Radio Society of Great Britain (RSGB). " -"IOTA Management has grouped the world's islands into approximately 1200 " -"'IOTA groups,' each having varying numbers of 'counters,' which are " -"qualifying islands. These listings are published in the IOTA Directory and " -"on the IOTA website. The objective for the IOTA Island Chaser is to make " -"radio contact with at least one counter in as many of these groups as " -"possible. The program has a well-defined set of rules and encourages " -"friendly competition among chasers by publishing participant performance in " -"an Honor Roll and annual listings, as well as recognizing it with " -"certificates and prestigious awards." +msgid "It is administered by Islands On The Air (IOTA) Ltd (referred to as IOTA Management) in partnership with the Radio Society of Great Britain (RSGB). IOTA Management has grouped the world's islands into approximately 1200 'IOTA groups,' each having varying numbers of 'counters,' which are qualifying islands. These listings are published in the IOTA Directory and on the IOTA website. The objective for the IOTA Island Chaser is to make radio contact with at least one counter in as many of these groups as possible. The program has a well-defined set of rules and encourages friendly competition among chasers by publishing participant performance in an Honor Roll and annual listings, as well as recognizing it with certificates and prestigious awards." msgstr "" #: application/views/awards/iota/index.php:19 @@ -3581,11 +3407,7 @@ msgid "Deleted" msgstr "" #: application/views/awards/itu/index.php:19 -msgid "" -"The Classic Worked ITU Zones award may be claimed by producing evidence of " -"having contacted land based amateur radio stations in at least 70 of the 75 " -"broadcasting zones as defined by the International Telecommunications Union " -"(ITU)." +msgid "The Classic Worked ITU Zones award may be claimed by producing evidence of having contacted land based amateur radio stations in at least 70 of the 75 broadcasting zones as defined by the International Telecommunications Union (ITU)." msgstr "" #: application/views/awards/itu/index.php:20 @@ -3617,17 +3439,11 @@ msgid "JCC - Japan Century Cities Award" msgstr "" #: application/views/awards/jcc/index.php:17 -msgid "" -"May be claimed for having contacted (heard) and received a QSL card from an " -"amateur station located in each of at least 100 different cities of Japan." +msgid "May be claimed for having contacted (heard) and received a QSL card from an amateur station located in each of at least 100 different cities of Japan." msgstr "" #: application/views/awards/jcc/index.php:18 -msgid "" -"JCC-200, 300, 400, 500, 600, 700 and 800 will be issued as separate awards. " -"A list of QSL cards should be arranged in order of JCC reference number, " -"however names of city may be omitted. An additional sticker will be issued " -"at every 50 contacts like 150, 250, 350, 450, 550, 650, 750 cities." +msgid "JCC-200, 300, 400, 500, 600, 700 and 800 will be issued as separate awards. A list of QSL cards should be arranged in order of JCC reference number, however names of city may be omitted. An additional sticker will be issued at every 50 contacts like 150, 250, 350, 450, 550, 650, 750 cities." msgstr "" #: application/views/awards/jcc/index.php:115 @@ -3669,25 +3485,17 @@ msgid "POTA Awards" msgstr "" #: application/views/awards/pota/index.php:8 -msgid "" -"Parks on the Air® (POTA) started in early 2017 when the ARRL's National " -"Parks on the Air special event ended. A group of volunteers wanted to " -"continue the fun beyond the one-year event, and thus, POTA was born." +msgid "Parks on the Air® (POTA) started in early 2017 when the ARRL's National Parks on the Air special event ended. A group of volunteers wanted to continue the fun beyond the one-year event, and thus, POTA was born." msgstr "" #: application/views/awards/pota/index.php:9 -msgid "" -"POTA works similarly to SOTA, with Activators and Hunters. For the awards, " -"there are several categories based on the number of parks, geographic areas, " -"and more." +msgid "POTA works similarly to SOTA, with Activators and Hunters. For the awards, there are several categories based on the number of parks, geographic areas, and more." msgstr "" #: application/views/awards/pota/index.php:10 #, php-format msgctxt "uses 'the website'" -msgid "" -"For more information about the available awards and categories, please visit " -"the %s." +msgid "For more information about the available awards and categories, please visit the %s." msgstr "" #: application/views/awards/pota/index.php:31 @@ -3708,23 +3516,15 @@ msgid "SIG Information" msgstr "" #: application/views/awards/sig/index.php:8 -msgid "" -"The SIG or Signature Category provides the possibility to use any kind of " -"'Award Signature' for awards that are not implemented in Wavelog." +msgid "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog." msgstr "" #: application/views/awards/sig/index.php:9 -msgid "" -"The reason for this is that the common ADIF format provides only a few " -"dedicated fields for certain awards. SIG still makes it possible to use and " -"evaluate all other types of signature markers." +msgid "The reason for this is that the common ADIF format provides only a few dedicated fields for certain awards. SIG still makes it possible to use and evaluate all other types of signature markers." msgstr "" #: application/views/awards/sig/index.php:10 -msgid "" -"In the QSO processing, you will find two fields: 'SIG' contains the actual " -"marker, which is also visible in the award evaluation, and 'SIG INFO,' which " -"contains a description of the signature. Both fields are freely customizable." +msgid "In the QSO processing, you will find two fields: 'SIG' contains the actual marker, which is also visible in the award evaluation, and 'SIG INFO,' which contains a description of the signature. Both fields are freely customizable." msgstr "" #: application/views/awards/sig/index.php:21 @@ -3778,20 +3578,11 @@ msgid "SOTA Awards" msgstr "" #: application/views/awards/sota/index.php:8 -msgid "" -"SOTA (Summits On The Air) is an award scheme for radio amateurs that " -"encourages portable operation in mountainous areas." +msgid "SOTA (Summits On The Air) is an award scheme for radio amateurs that encourages portable operation in mountainous areas." msgstr "" #: application/views/awards/sota/index.php:9 -msgid "" -"It is fully operational in nearly a hundred countries worldwide. Each " -"country has its own Association that defines the recognized SOTA summits " -"within that Association. Each summit earns the activators and chasers a " -"score related to the height of the summit. Certificates are available for " -"various scores, leading to the prestigious 'Mountain Goat' and 'Shack Sloth' " -"trophies. An Honor Roll for Activators and Chasers is maintained in the SOTA " -"online database." +msgid "It is fully operational in nearly a hundred countries worldwide. Each country has its own Association that defines the recognized SOTA summits within that Association. Each summit earns the activators and chasers a score related to the height of the summit. Certificates are available for various scores, leading to the prestigious 'Mountain Goat' and 'Shack Sloth' trophies. An Honor Roll for Activators and Chasers is maintained in the SOTA online database." msgstr "" #: application/views/awards/vucc/index.php:7 @@ -3799,9 +3590,7 @@ msgid "VUCC - VHF/UHF Century Club Award" msgstr "" #: application/views/awards/vucc/index.php:8 -msgid "" -"The VHF/UHF Century Club Award is given for a minimum number of worked and " -"confirmed gridsquares on a desired band." +msgid "The VHF/UHF Century Club Award is given for a minimum number of worked and confirmed gridsquares on a desired band." msgstr "" #: application/views/awards/vucc/index.php:9 @@ -3826,15 +3615,11 @@ msgid "WAB - Worked All Britain Award" msgstr "" #: application/views/awards/wab/index.php:13 -msgid "" -"WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham " -"radio operators to work all the squares in Great Britain." +msgid "WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham radio operators to work all the squares in Great Britain." msgstr "" #: application/views/awards/wab/index.php:14 -msgid "" -"May be claimed for having contacted an amateur station located in the " -"required amount of squares, described on the page linked below." +msgid "May be claimed for having contacted an amateur station located in the required amount of squares, described on the page linked below." msgstr "" #: application/views/awards/wab/index.php:109 @@ -3850,17 +3635,11 @@ msgid "WAJA - Worked All Japan prefectures Award" msgstr "" #: application/views/awards/waja/index.php:18 -msgid "" -"WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " -"radio operators to work all the prefectures in Japan." +msgid "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan." msgstr "" #: application/views/awards/waja/index.php:19 -msgid "" -"May be claimed for having contacted (heard) and received a QSL card from an " -"amateur station located in each of the 47 prefectures of Japan. A list of " -"QSL cards should be arranged in order of WAJA (HAJA) reference number, " -"however names of prefectures may be omitted." +msgid "May be claimed for having contacted (heard) and received a QSL card from an amateur station located in each of the 47 prefectures of Japan. A list of QSL cards should be arranged in order of WAJA (HAJA) reference number, however names of prefectures may be omitted." msgstr "" #: application/views/awards/waja/index.php:116 @@ -3876,20 +3655,11 @@ msgid "WAS Award" msgstr "" #: application/views/awards/was/index.php:19 -msgid "" -"ARRL's most popular award is the Worked All States Award. Thousands upon " -"thousands of awards have been issued to hams around the world. In ARRL's " -"101st year, they have redesigned the certificates and the program in hopes " -"of streamlining and improving the award program." +msgid "ARRL's most popular award is the Worked All States Award. Thousands upon thousands of awards have been issued to hams around the world. In ARRL's 101st year, they have redesigned the certificates and the program in hopes of streamlining and improving the award program." msgstr "" #: application/views/awards/was/index.php:20 -msgid "" -"The WAS (Worked All States) Award is available to all amateurs worldwide who " -"submit proof with written confirmation of contacts with each of the 50 " -"states of the United States of America. Amateurs in the U.S. and its " -"possessions must be members of ARRL to apply for a WAS. Applicants from " -"outside the U.S. are exempt from this requirement." +msgid "The WAS (Worked All States) Award is available to all amateurs worldwide who submit proof with written confirmation of contacts with each of the 50 states of the United States of America. Amateurs in the U.S. and its possessions must be members of ARRL to apply for a WAS. Applicants from outside the U.S. are exempt from this requirement." msgstr "" #: application/views/awards/was/index.php:21 @@ -3907,17 +3677,11 @@ msgid "WWFF - World Wide Flora and Fauna Award" msgstr "" #: application/views/awards/wwff/index.php:8 -msgid "" -"WWFF, World Wide Flora and Fauna in Amateur Radio, encourages licensed ham " -"radio operators to leave their shacks and operate portable in Protected " -"Flora & Fauna areas (PFF) worldwide." +msgid "WWFF, World Wide Flora and Fauna in Amateur Radio, encourages licensed ham radio operators to leave their shacks and operate portable in Protected Flora & Fauna areas (PFF) worldwide." msgstr "" #: application/views/awards/wwff/index.php:9 -msgid "" -"More than 26,000 Protected Flora & Fauna (PFF) areas worldwide are already " -"registered in the WWFF Directory. Hunters and Activators can apply for " -"colorful awards, both globally and nationally." +msgid "More than 26,000 Protected Flora & Fauna (PFF) areas worldwide are already registered in the WWFF Directory. Hunters and Activators can apply for colorful awards, both globally and nationally." msgstr "" #: application/views/awards/wwff/index.php:31 @@ -3930,8 +3694,7 @@ msgid "WWFF Reference" msgstr "Référence WWFF" #: application/views/backup/adif_view.php:7 -msgid "" -"The backup of your log completed successfully. The output can be found at" +msgid "The backup of your log completed successfully. The output can be found at" msgstr "" #: application/views/backup/adif_view.php:9 @@ -3941,20 +3704,15 @@ msgstr "" #: application/views/backup/adif_view.php:13 #: application/views/backup/notes_view.php:13 -msgid "" -"Something went wrong during the backup process. Check that the backup folder " -"exists and is writeable by your web server user / group." +msgid "Something went wrong during the backup process. Check that the backup folder exists and is writeable by your web server user / group." msgstr "" #: application/views/backup/main.php:17 -msgid "" -"Some of the data stored in Wavelog can be exported so that you can keep a " -"backup copy elsewhere." +msgid "Some of the data stored in Wavelog can be exported so that you can keep a backup copy elsewhere." msgstr "" #: application/views/backup/main.php:18 -msgid "" -"It's recommended to create backups on a regular basis to protect your data." +msgid "It's recommended to create backups on a regular basis to protect your data." msgstr "" #: application/views/backup/main.php:19 @@ -3966,8 +3724,7 @@ msgid "Backup Notes" msgstr "" #: application/views/backup/notes_view.php:7 -msgid "" -"The backup of your notes completed successfully. The output can be found at" +msgid "The backup of your notes completed successfully. The output can be found at" msgstr "" #: application/views/bandmap/index.php:15 application/views/bandmap/list.php:49 @@ -4056,15 +3813,11 @@ msgid "Frequency for CW QRG in band (must be in Hz)" msgstr "" #: application/views/bands/index.php:36 -msgid "" -"Using the band list you can control which bands are shown when creating a " -"new QSO." +msgid "Using the band list you can control which bands are shown when creating a new QSO." msgstr "" #: application/views/bands/index.php:39 -msgid "" -"Active bands will be shown in the QSO 'Band' drop-down, while inactive bands " -"will be hidden and cannot be selected." +msgid "Active bands will be shown in the QSO 'Band' drop-down, while inactive bands will be hidden and cannot be selected." msgstr "" #: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:350 @@ -4340,21 +4093,12 @@ msgid "Next Week" msgstr "" #: application/views/contesting/add.php:16 -msgid "" -"Using the contest list, you can control which Contests are shown when " -"logging QSOs in a contest." -msgstr "" -"En utilisant la liste des concours, vous pouvez contrôler quels concours " -"sont affichés lors de l'enregistrement des QSO dans un concours." +msgid "Using the contest list, you can control which Contests are shown when logging QSOs in a contest." +msgstr "En utilisant la liste des concours, vous pouvez contrôler quels concours sont affichés lors de l'enregistrement des QSO dans un concours." #: application/views/contesting/add.php:19 -msgid "" -"Active contests will be shown in the Contest Name drop-down, while inactive " -"contests will be hidden and cannot be selected." -msgstr "" -"Les concours actifs seront affichés dans la liste déroulante 'Nom du " -"concours' sur les pages Contest Logging, tandis que les concours inactifs " -"seront masqués et ne pourront pas être sélectionnés." +msgid "Active contests will be shown in the Contest Name drop-down, while inactive contests will be hidden and cannot be selected." +msgstr "Les concours actifs seront affichés dans la liste déroulante 'Nom du concours' sur les pages Contest Logging, tandis que les concours inactifs seront masqués et ne pourront pas être sélectionnés." #: application/views/contesting/add.php:26 #: application/views/contesting/create.php:30 @@ -4395,9 +4139,7 @@ msgstr "" #: application/views/contesting/add.php:55 msgid "Warning! Are you sure you want to delete the following contest: " -msgstr "" -"ATTENTION ! Etes vous certain de vouloir supprimer le " -"concours : " +msgstr "ATTENTION ! Etes vous certain de vouloir supprimer le concours : " #: application/views/contesting/add.php:56 msgid "Warning! Are you sure you want to activate all contests?" @@ -4405,8 +4147,7 @@ msgstr "ATTENTION ! Etes vous certain de vouloir activer tous les concours ?" #: application/views/contesting/add.php:57 msgid "Warning! Are you sure you want to deactivate all contests?" -msgstr "" -"ATTENTION ! Etes vous certain de vouloir désactiver tous les concours ?" +msgstr "ATTENTION ! Etes vous certain de vouloir désactiver tous les concours ?" #: application/views/contesting/add.php:73 #: application/views/contesting/add.php:76 @@ -4634,15 +4375,11 @@ msgid "How it works" msgstr "" #: application/views/cron/index.php:15 -msgid "" -"The Cron Manager assists the administrator in managing cron jobs without " -"requiring CLI access." +msgid "The Cron Manager assists the administrator in managing cron jobs without requiring CLI access." msgstr "" #: application/views/cron/index.php:18 -msgid "" -"To execute cron jobs based on the data below, remove all old cron jobs and " -"create a new one:" +msgid "To execute cron jobs based on the data below, remove all old cron jobs and create a new one:" msgstr "" #: application/views/cron/index.php:27 application/views/cron/index.php:31 @@ -4664,7 +4401,6 @@ msgstr "" #: application/views/cron/index.php:50 #: application/views/stationsetup/stationsetup.php:121 -#: application/views/stationsetup/stationsetup.php:118 msgid "ID" msgstr "" @@ -4698,22 +4434,16 @@ msgid "Your Mastercron isn't running." msgstr "" #: application/views/cron/index.php:99 -msgid "" -"Copy the cron above to a external cron service or into your server's cron to " -"use this cron manager." +msgid "Copy the cron above to a external cron service or into your server's cron to use this cron manager." msgstr "" #: application/views/cron/index.php:100 -msgid "" -"On a basic linux server with shell access use this command to edit your " -"crons:" +msgid "On a basic linux server with shell access use this command to edit your crons:" msgstr "" #: application/views/cron/index.php:107 #, php-format -msgid "" -"You need to upgrade your PHP version. Minimum version is %s. Your Version is " -"%s" +msgid "You need to upgrade your PHP version. Minimum version is %s. Your Version is %s" msgstr "" #: application/views/csv/index.php:7 @@ -4884,11 +4614,8 @@ msgid "RSTR" msgstr "" #: application/views/dashboard/index.php:56 -msgid "" -"You need to upgrade your PHP version. Minimum version is 7.4. Your version is" -msgstr "" -"Vous devez mettre à jour votre version PHP. La version minimale est 7.4. " -"Votre version est" +msgid "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "Vous devez mettre à jour votre version PHP. La version minimale est 7.4. Votre version est" #: application/views/dashboard/index.php:63 #, php-format @@ -4917,17 +4644,14 @@ msgstr[1] "" #: application/views/dashboard/index.php:97 msgid "You have made no QSOs today; time to turn on the radio!" -msgstr "" -"Vous n'avez réalisé aucun QSO aujourd'hui. Il est temps d'allumer la radio !" +msgstr "Vous n'avez réalisé aucun QSO aujourd'hui. Il est temps d'allumer la radio !" #: application/views/dashboard/index.php:104 msgid "Attention: you need to set an active station location." msgstr "ATTENTION : vous devez activer le profil d'une station." #: application/views/dashboard/index.php:110 -msgid "" -"You have themes without defined theme mode. Please ask the admin to edit the " -"themes." +msgid "You have themes without defined theme mode. Please ask the admin to edit the themes." msgstr "" #: application/views/dashboard/index.php:119 @@ -5101,9 +4825,7 @@ msgid "Current streak (continuous days with QSOs)" msgstr "" #: application/views/dayswithqso/index.php:101 -msgid "" -"If you make a QSO today, you can continue to extend your streak... or else " -"your current streak will be broken!" +msgid "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!" msgstr "" #: application/views/dayswithqso/index.php:122 @@ -5171,9 +4893,7 @@ msgid "Folder Permissions" msgstr "" #: application/views/debug/index.php:95 -msgid "" -"This verifies that the folders used by Wavelog have read and write " -"permissions by PHP." +msgid "This verifies that the folders used by Wavelog have read and write permissions by PHP." msgstr "" #: application/views/debug/index.php:101 application/views/debug/index.php:112 @@ -5200,9 +4920,7 @@ msgid "Please edit your %s File:" msgstr "" #: application/views/debug/index.php:156 -msgid "" -"Go to your application/config Folder and compare config.sample.php with your " -"config.php" +msgid "Go to your application/config Folder and compare config.sample.php with your config.php" msgstr "" #: application/views/debug/index.php:157 @@ -5223,9 +4941,7 @@ msgid "Migrate Userdata" msgstr "" #: application/views/debug/index.php:172 -msgid "" -"Here you can migrate existing QSL cards and eQSL cards to the new userdata " -"folder." +msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." msgstr "" #: application/views/debug/index.php:185 @@ -5336,8 +5052,7 @@ msgstr "" #: application/views/debug/index.php:498 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" -msgid_plural "" -"The Database contains %d QSOs without a station-profile (location)" +msgid_plural "The Database contains %d QSOs without a station-profile (location)" msgstr[0] "" msgstr[1] "" @@ -5348,7 +5063,6 @@ msgstr[1] "" #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 -#: application/views/stationsetup/stationsetup.php:120 msgid "Station Callsign" msgstr "" @@ -5441,8 +5155,7 @@ msgstr "Données du QSO" #: application/views/distances/index.php:9 msgid "contacts were plotted.
Your furthest contact was with" -msgstr "" -"contacts utilisés pour le graphique.
Le dernier contact réalisé est" +msgstr "contacts utilisés pour le graphique.
Le dernier contact réalisé est" #: application/views/distances/index.php:10 msgid "in gridsquare" @@ -5465,12 +5178,8 @@ msgid "DX Atlas Export" msgstr "DX Atlas - Export" #: application/views/dxatlas/index.php:7 -msgid "" -"Export your logbook for use in DX Atlas to display worked / confirmed " -"gridsquares." -msgstr "" -"Exportez votre journal de trafic pour l'utiliser dans DX Atlas et afficher " -"les Locator réalisés/confirmés." +msgid "Export your logbook for use in DX Atlas to display worked / confirmed gridsquares." +msgstr "Exportez votre journal de trafic pour l'utiliser dans DX Atlas et afficher les Locator réalisés/confirmés." #: application/views/dxatlas/index.php:11 application/views/kml/index.php:11 msgid "Only QSOs with a gridsquare defined will be exported!" @@ -5540,9 +5249,7 @@ msgid "There are no QSO confirmations waiting for you at eQSL.cc" msgstr "" #: application/views/eqsl/download.php:31 -msgid "" -"Below is a table of QSOs that have been confirmed on eQSL but QSL images " -"have not been downloaded yet." +msgid "Below is a table of QSOs that have been confirmed on eQSL but QSL images have not been downloaded yet." msgstr "" #: application/views/eqsl/download.php:43 @@ -5554,23 +5261,15 @@ msgid "View/Download" msgstr "" #: application/views/eqsl/download.php:71 application/views/eqsl/import.php:50 -msgid "" -"Wavelog will use the eQSL credentials from your Wavelog user profile to " -"connect to eQSL and download confirmations." +msgid "Wavelog will use the eQSL credentials from your Wavelog user profile to connect to eQSL and download confirmations." msgstr "" #: application/views/eqsl/download.php:73 -msgid "" -"Due to a rate limit of approximately 10 seconds per eQSL picture download " -"calling this function will take a long time to complete! Thus you may have " -"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." +msgid "Due to a rate limit of approximately 10 seconds per eQSL picture download calling this function will take a long time to complete! Thus you may have 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 "" #: application/views/eqsl/download.php:81 -msgid "" -"There are no QSOs whose eQSL card images have not yet been downloaded. Go " -"log some more QSOs!" +msgid "There are no QSOs whose eQSL card images have not yet been downloaded. Go log some more QSOs!" msgstr "" #: application/views/eqsl/export.php:31 @@ -5578,9 +5277,7 @@ msgid "Below is a table of QSOs that have not yet been sent to eQSL." msgstr "" #: application/views/eqsl/export.php:33 -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." +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 "" #: application/views/eqsl/export.php:37 @@ -5592,9 +5289,7 @@ msgid "The following QSOs were sent to eQSL." msgstr "" #: application/views/eqsl/export.php:51 -msgid "" -"There are no QSOs that need to be sent to eQSL at this time. Go log some " -"more QSOs!" +msgid "There are no QSOs that need to be sent to eQSL at this time. Go log some more QSOs!" msgstr "" #: application/views/eqsl/import.php:30 @@ -5607,9 +5302,7 @@ msgstr "" #: application/views/eqsl/import.php:33 #, php-format -msgid "" -"Upload the Exported ADIF file from eQSL from the %s page, to mark QSOs as " -"confirmed on eQSL." +msgid "Upload the Exported ADIF file from eQSL from the %s page, to mark QSOs as confirmed on eQSL." msgstr "" #: application/views/eqsl/import.php:34 @@ -5629,12 +5322,8 @@ msgid "Mark All QSOs as Sent to eQSL" msgstr "" #: application/views/eqsl/tools.php:26 -msgid "" -"Use this if you have lots of QSOs to upload to eQSL it will save the server " -"timing out." -msgstr "" -"Utilisez cette fonction si vous avez beaucoup de QSO à télécharger sur eQSL, " -"cela évitera au serveur de perdre du temps." +msgid "Use this if you have lots of QSOs to upload to eQSL it will save the server timing out." +msgstr "Utilisez cette fonction si vous avez beaucoup de QSO à télécharger sur eQSL, cela évitera au serveur de perdre du temps." #: application/views/eqslcard/index.php:10 #, php-format @@ -5670,9 +5359,7 @@ msgstr "" #: application/views/hamsat/index.php:22 #, php-format -msgid "" -"Cannot filter workable passes only without private feed key. Please set the " -"feed key in %s." +msgid "Cannot filter workable passes only without private feed key. Please set the feed key in %s." msgstr "" #: application/views/hamsat/index.php:22 @@ -5690,15 +5377,11 @@ msgid "Mark QSOs" msgstr "" #: application/views/hrdlog/export.php:22 -msgid "" -"Here you can see all QSOs which have not been previously uploaded to a " -"HRDLog logbook." +msgid "Here you can see all QSOs which have not been previously uploaded to a HRDLog logbook." msgstr "" #: application/views/hrdlog/export.php:23 -msgid "" -"You need to set a HRDLog Logbook API Code in your station profile. Only " -"station profiles with an API Key set are displayed." +msgid "You need to set a HRDLog Logbook API Code in your station profile. Only station profiles with an API Key set are displayed." msgstr "" #: application/views/hrdlog/export.php:24 @@ -5737,9 +5420,7 @@ msgid "Total QSOs uploaded" msgstr "" #: application/views/hrdlog/export.php:60 -msgid "" -"No Station Locations with valid HRDlog-Settings found. Check the HRDlog " -"Credentials in the Station Location Settings!" +msgid "No Station Locations with valid HRDlog-Settings found. Check the HRDlog Credentials in the Station Location Settings!" msgstr "" #: application/views/hrdlog/export.php:87 @@ -5802,10 +5483,7 @@ msgid "Version Info" msgstr "" #: application/views/interface_assets/footer.php:633 -msgid "" -"Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " -"Check which DXCC for this particular location is the correct one. If you are " -"sure, ignore this warning." +msgid "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. Check which DXCC for this particular location is the correct one. If you are sure, ignore this warning." msgstr "" #: application/views/interface_assets/footer.php:1327 @@ -5941,7 +5619,6 @@ msgstr "" #: application/views/interface_assets/header.php:257 #: application/views/station_profile/index.php:33 #: application/views/stationsetup/stationsetup.php:113 -#: application/views/stationsetup/stationsetup.php:110 msgid "Admin" msgstr "" @@ -6033,14 +5710,10 @@ msgstr "" #: application/views/kml/index.php:7 msgid "Export your logbook to a KML file for use in Google Earth." -msgstr "" -"Exportez votre journal de trafic vers un fichier KML pour l'utiliser dans " -"Google Earth." +msgstr "Exportez votre journal de trafic vers un fichier KML pour l'utiliser dans Google Earth." #: application/views/labels/create.php:24 -msgid "" -"Label name used for display purposes, so pick something meaningful, perhaps " -"the label style." +msgid "Label name used for display purposes, so pick something meaningful, perhaps the label style." msgstr "" #: application/views/labels/create.php:39 @@ -6206,9 +5879,7 @@ msgid "Save Paper Type" msgstr "" #: application/views/labels/edit.php:24 -msgid "" -"Label name used for display purposes so pick something meaningful perhaps " -"the label style." +msgid "Label name used for display purposes so pick something meaningful perhaps the label style." msgstr "" #: application/views/labels/index.php:29 @@ -6282,8 +5953,7 @@ msgstr "Ajouter le Locator ?" #: application/views/labels/startatform.php:9 #: application/views/logbookadvanced/startatform.php:9 -msgid "" -"Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" +msgid "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" msgstr "" #: application/views/labels/startatform.php:15 @@ -6575,9 +6245,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:414 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" -msgstr "" -"ATTENTION ! Etes vous certain de vouloir supprimer les QSO " -"sélectionnés ?" +msgstr "ATTENTION ! Etes vous certain de vouloir supprimer les QSO sélectionnés ?" #: application/views/logbookadvanced/index.php:417 msgid "With selected: " @@ -6869,9 +6537,7 @@ msgstr "" #: application/views/lotw/import.php:24 #, php-format -msgid "" -"Upload the Exported ADIF file from LoTW from the %s Area, to mark QSOs as " -"confirmed on LoTW." +msgid "Upload the Exported ADIF file from LoTW from the %s Area, to mark QSOs as confirmed on LoTW." msgstr "" #: application/views/lotw/import.php:27 @@ -6887,17 +6553,8 @@ msgid "Select callsign to pull LoTW confirmations for." msgstr "" #: application/views/lotw/import.php:61 -msgid "" -"Wavelog will use the LoTW username and password stored in your user profile " -"to download a report from LoTW for you. The report Wavelog downloads will " -"have all confirmations since chosen date, or since your last LoTW " -"confirmation (fetched from your log), up until now." -msgstr "" -"Wavelog utilisera le nom d'utilisateur et le mot de passe LoTW stockés dans " -"votre profil utilisateur pour télécharger le journal vers LoTW.
Les " -"téléchargements du journal Wavelog auront toutes les confirmations depuis la " -"date choisie, ou depuis votre dernière confirmation LoTW (récupérée de votre " -"journal), jusqu'à présent." +msgid "Wavelog will use the LoTW username and password stored in your user profile to download a report from LoTW for you. The report Wavelog downloads will have all confirmations since chosen date, or since your last LoTW confirmation (fetched from your log), up until now." +msgstr "Wavelog utilisera le nom d'utilisateur et le mot de passe LoTW stockés dans votre profil utilisateur pour télécharger le journal vers LoTW.
Les téléchargements du journal Wavelog auront toutes les confirmations depuis la date choisie, ou depuis votre dernière confirmation LoTW (récupérée de votre journal), jusqu'à présent." #: application/views/lotw/import.php:64 msgid "Import LoTW Matches" @@ -7043,15 +6700,11 @@ msgid "Update mode" msgstr "" #: application/views/mode/index.php:19 -msgid "" -"Using the modes list you can control which modes are shown when creating a " -"new QSO." +msgid "Using the modes list you can control which modes are shown when creating a new QSO." msgstr "" #: application/views/mode/index.php:22 -msgid "" -"Active modes will be shown in the QSO 'Mode' drop-down, while inactive modes " -"will be hidden and cannot be selected." +msgid "Active modes will be shown in the QSO 'Mode' drop-down, while inactive modes will be hidden and cannot be selected." msgstr "" #: application/views/mode/index.php:29 @@ -7102,24 +6755,15 @@ msgid "Your Notes" msgstr "Vos Notes" #: application/views/notes/main.php:32 -msgid "" -"You don't currently have any notes, these are a fantastic way of storing " -"data like ATU settings, beacons and general station notes and its better " -"than paper as you can't lose them!" -msgstr "" -"Vous n'avez actuellement aucune note.
C'est une manière fantastique de " -"conserver vos données comme les réglages de boite d'accord, balises, notes " -"sur les stations etc... et c'est bien mieux que des notes papiers que vous " -"finirez par perdre !" +msgid "You don't currently have any notes, these are a fantastic way of storing data like ATU settings, beacons and general station notes and its better than paper as you can't lose them!" +msgstr "Vous n'avez actuellement aucune note.
C'est une manière fantastique de conserver vos données comme les réglages de boite d'accord, balises, notes sur les stations etc... et c'est bien mieux que des notes papiers que vous finirez par perdre !" #: application/views/notes/view.php:21 msgid "Delete Note" msgstr "Supprimer" #: application/views/operator/index.php:9 -msgid "" -"Please provide your personal call sign. This makes sure that QSOs are logged " -"and exported with correct operator information." +msgid "Please provide your personal call sign. This makes sure that QSOs are logged and exported with correct operator information." msgstr "" #: application/views/operator/index.php:13 @@ -7156,8 +6800,7 @@ msgid "Map at right" msgstr "" #: application/views/options/appearance.php:76 -msgid "" -"This allows the map on the dashboard to be disabled or placed on the right." +msgid "This allows the map on the dashboard to be disabled or placed on the right." msgstr "" #: application/views/options/appearance.php:80 @@ -7173,9 +6816,7 @@ msgid "Public Maps" msgstr "" #: application/views/options/appearance.php:94 -msgid "" -"This allows to disable all maps in the public view. This affects the main " -"map and the gridsquares map." +msgid "This allows to disable all maps in the public view. This affects the main map and the gridsquares map." msgstr "" #: application/views/options/appearance.php:98 @@ -7196,9 +6837,7 @@ msgstr "" #: application/views/options/dxcluster.php:39 #, php-format -msgid "" -"The Provider of the DXCluster-Cache. You can set up your own Cache with %s " -"or use a public one" +msgid "The Provider of the DXCluster-Cache. You can set up your own Cache with %s or use a public one" msgstr "" #: application/views/options/dxcluster.php:41 @@ -7268,8 +6907,7 @@ msgid "Email Address" msgstr "Email" #: application/views/options/email.php:75 -msgid "" -"The email address from which the emails are sent, e.g. 'wavelog@example.com'" +msgid "The email address from which the emails are sent, e.g. 'wavelog@example.com'" msgstr "" #: application/views/options/email.php:80 @@ -7277,9 +6915,7 @@ msgid "SMTP Host" msgstr "" #: application/views/options/email.php:83 -msgid "" -"The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' " -"or 'tls://')" +msgid "The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' or 'tls://')" msgstr "" #: application/views/options/email.php:88 @@ -7287,9 +6923,7 @@ msgid "SMTP Port" msgstr "" #: application/views/options/email.php:91 -msgid "" -"The SMTP port of the mail server, e.g. if TLS is used -> '587', if SSL is " -"used -> '465'" +msgid "The SMTP port of the mail server, e.g. if TLS is used -> '587', if SSL is used -> '465'" msgstr "" #: application/views/options/email.php:96 @@ -7297,9 +6931,7 @@ msgid "SMTP Username" msgstr "" #: application/views/options/email.php:99 -msgid "" -"The username to log in to the mail server, usually this is the email address " -"that is used." +msgid "The username to log in to the mail server, usually this is the email address that is used." msgstr "" #: application/views/options/email.php:104 @@ -7319,9 +6951,7 @@ msgid "The email will be sent to the address defined in your account settings." msgstr "" #: application/views/options/index.php:13 -msgid "" -"Wavelog Options are global settings used for all users of the installation, " -"which are overridden if there's a setting on a user level." +msgid "Wavelog Options are global settings used for all users of the installation, which are overridden if there's a setting on a user level." msgstr "" #: application/views/options/oqrs.php:39 @@ -7329,8 +6959,7 @@ msgid "Global text" msgstr "" #: application/views/options/oqrs.php:41 -msgid "" -"This text is an optional text that can be displayed on top of the OQRS page." +msgid "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" #: application/views/options/oqrs.php:45 @@ -7346,9 +6975,7 @@ msgid "On" msgstr "" #: application/views/options/oqrs.php:50 -msgid "" -"When this is on, all station locations with OQRS active, will be searched at " -"once." +msgid "When this is on, all station locations with OQRS active, will be searched at once." msgstr "" #: application/views/options/oqrs.php:54 @@ -7356,9 +6983,7 @@ msgid "Show station location name in grouped search results" msgstr "" #: application/views/options/oqrs.php:59 -msgid "" -"If grouped search is ON, you can decide if the name of the station location " -"shall be shown in the results table." +msgid "If grouped search is ON, you can decide if the name of the station location shall be shown in the results table." msgstr "" #: application/views/options/radios.php:38 @@ -7366,9 +6991,7 @@ msgid "Radio Timeout Warning" msgstr "" #: application/views/options/radios.php:39 -msgid "" -"The Radio Timeout Warning is used on the QSO entry panel to alert you to " -"radio interface disconnects." +msgid "The Radio Timeout Warning is used on the QSO entry panel to alert you to radio interface disconnects." msgstr "" #: application/views/options/radios.php:41 @@ -7404,10 +7027,7 @@ msgid "Release Notes and Custom Text" msgstr "" #: application/views/options/version_dialog.php:68 -msgid "" -"The Version Info is shown to every user. The user has the option to dismiss " -"the dialog after he read it. Select if you want to show only release notes " -"(fetched from github), only custom text or both." +msgid "The Version Info is shown to every user. The user has the option to dismiss the dialog after he read it. Select if you want to show only release notes (fetched from github), only custom text or both." msgstr "" #: application/views/options/version_dialog.php:72 @@ -7427,9 +7047,7 @@ msgid "Show for all Users" msgstr "" #: application/views/options/version_dialog.php:99 -msgid "" -"This will show the version dialog automatically to all users on their next " -"page reload." +msgid "This will show the version dialog automatically to all users on their next page reload." msgstr "" #: application/views/options/version_dialog.php:104 @@ -7437,8 +7055,7 @@ msgid "Hide for all Users" msgstr "" #: application/views/options/version_dialog.php:106 -msgid "" -"This will deactivate the automatic popup of the version dialog for all users." +msgid "This will deactivate the automatic popup of the version dialog for all users." msgstr "" #: application/views/oqrs/index.php:9 @@ -7462,9 +7079,7 @@ msgid "No stations found that are using Wavelog OQRS." msgstr "" #: application/views/oqrs/notinlogform.php:2 -msgid "" -"If you can't find your QSO in the log, please fill out the form below. You " -"will be contacted after the log has been checked." +msgid "If you can't find your QSO in the log, please fill out the form below. You will be contacted after the log has been checked." msgstr "" #: application/views/oqrs/notinlogform.php:9 @@ -7550,9 +7165,7 @@ msgstr "" #: application/views/oqrs/request.php:9 #: application/views/oqrs/request_grouped.php:3 -msgid "" -"The following QSO(s) were found. Please fill out the date and time and " -"submit your request." +msgid "The following QSO(s) were found. Please fill out the date and time and submit your request." msgstr "" #: application/views/oqrs/request.php:40 @@ -7676,21 +7289,15 @@ msgid "Calculate" msgstr "" #: application/views/qrz/export.php:27 -msgid "" -"Here you can see all QSOs which have not been previously uploaded to a QRZ " -"logbook." +msgid "Here you can see all QSOs which have not been previously uploaded to a QRZ logbook." msgstr "" #: application/views/qrz/export.php:28 -msgid "" -"You need to set a QRZ Logbook API key in your station profile. Only station " -"profiles with an API Key set are displayed." +msgid "You need to set a QRZ Logbook API key in your station profile. Only station profiles with an API Key set are displayed." msgstr "" #: application/views/qrz/export.php:73 -msgid "" -"If no startdate is given then all QSOs after last confirmation will be " -"downloaded/updated!" +msgid "If no startdate is given then all QSOs after last confirmation will be downloaded/updated!" msgstr "" #: application/views/qrz/export.php:81 @@ -7739,15 +7346,11 @@ msgid "Export Requested QSLs for Printing" msgstr "" #: application/views/qslprint/index.php:29 -msgid "" -"Here you can export requested QSLs as CSV or ADIF files for printing and, " -"optionally, mark them as sent." +msgid "Here you can export requested QSLs as CSV or ADIF files for printing and, optionally, mark them as sent." msgstr "" #: application/views/qslprint/index.php:30 -msgid "" -"Requested QSLs are any QSOs with a value of 'Requested' or 'Queued' in their " -"'QSL Sent' field." +msgid "Requested QSLs are any QSOs with a value of 'Requested' or 'Queued' in their 'QSL Sent' field." msgstr "" #: application/views/qslprint/qslprint.php:30 @@ -7805,9 +7408,7 @@ msgid "No QSLs to print were found!" msgstr "" #: application/views/qslprint/qsolist.php:201 -msgid "" -"No additional QSO's were found. That means they are probably already in the " -"queue." +msgid "No additional QSO's were found. That means they are probably already in the queue." msgstr "" #: application/views/qso/components/winkeysettings.php:7 @@ -8055,12 +7656,8 @@ msgid "Satellite Mode" msgstr "Mode du Satellite" #: application/views/qso/index.php:538 -msgid "" -"Note content is used within Wavelog only and is not exported to other " -"services." -msgstr "" -"A noter : le contenu est utilisé par Wavelog uniquement et n'est pas exporté " -"vers d'autre services." +msgid "Note content is used within Wavelog only and is not exported to other services." +msgstr "A noter : le contenu est utilisé par Wavelog uniquement et n'est pas exporté vers d'autre services." #: application/views/qso/index.php:604 msgid "Reset to Default" @@ -8095,9 +7692,7 @@ msgid "Below is a list of active radios that are connected to Wavelog." msgstr "" #: application/views/radio/index.php:20 -msgid "" -"If you haven't connected any radios yet, see the API page to generate API " -"keys." +msgid "If you haven't connected any radios yet, see the API page to generate API keys." msgstr "" #: application/views/radio/index.php:27 application/views/search/filter.php:69 @@ -8196,9 +7791,7 @@ msgstr "" #: application/views/sattimers/index.php:15 #, php-format -msgid "" -"This data comes from %s and is calculated for the current stationlocation " -"grid %s." +msgid "This data comes from %s and is calculated for the current stationlocation grid %s." msgstr "" #: application/views/sattimers/index.php:40 @@ -8250,9 +7843,7 @@ msgid "Station location:" msgstr "" #: application/views/search/cqzones_result.php:3 -msgid "" -"The following QSOs were found to have an incorrect CQ zone that this DXCC " -"normally has:" +msgid "The following QSOs were found to have an incorrect CQ zone that this DXCC normally has:" msgstr "" #: application/views/search/cqzones_result.php:14 @@ -8292,9 +7883,7 @@ msgid "Search Results" msgstr "" #: application/views/search/lotw_unconfirmed.php:26 -msgid "" -"The search displays QSOs which are unconfirmed on LoTW, but the callsign " -"worked has uploaded to LoTW after your QSO date." +msgid "The search displays QSOs which are unconfirmed on LoTW, but the callsign worked has uploaded to LoTW after your QSO date." msgstr "" #: application/views/search/lotw_unconfirmed.php:29 @@ -8392,25 +7981,16 @@ msgid "Simple Fast Log Entry (FLE)" msgstr "" #: application/views/simplefle/index.php:13 -msgid "" -"'Fast Log Entry', or simply 'FLE' is a system to log QSOs very quickly and " -"efficiently. Due to its syntax, only a minimum of input is required to log " -"many QSOs with as little effort as possible." +msgid "'Fast Log Entry', or simply 'FLE' is a system to log QSOs very quickly and efficiently. Due to its syntax, only a minimum of input is required to log many QSOs with as little effort as possible." msgstr "" #: application/views/simplefle/index.php:14 -msgid "" -"FLE was originally written by DF3CB. He offers a program for Windows on his " -"website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides " -"a web interface to log QSOs." +msgid "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs." msgstr "" #: application/views/simplefle/index.php:15 #, php-format -msgid "" -"A common use-case is if you have to import your paperlogs from an outdoor " -"session and now SimpleFLE is also available in Wavelog. Information about " -"the syntax and how FLE works can be found %s." +msgid "A common use-case is if you have to import your paperlogs from an outdoor session and now SimpleFLE is also available in Wavelog. Information about the syntax and how FLE works can be found %s." msgstr "" #: application/views/simplefle/index.php:16 @@ -8455,26 +8035,19 @@ msgid "Warning! Do you really want to reset everything?" msgstr "" #: application/views/simplefle/index.php:31 -msgid "" -"Warning! You can't log the QSO List, because some QSO don't have band and/or " -"mode defined!" +msgid "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!" msgstr "" #: application/views/simplefle/index.php:32 -msgid "" -"Warning! You can't log the QSO List, because some QSO don't have a time " -"defined!" +msgid "Warning! You can't log the QSO List, because some QSO don't have a time defined!" msgstr "" #: application/views/simplefle/index.php:33 -msgid "" -"Attention! The Data Field containes example data. First Clear Logging " -"Session!" +msgid "Attention! The Data Field containes example data. First Clear Logging Session!" msgstr "" #: application/views/simplefle/index.php:34 -msgid "" -"Are you sure that you want to add these QSO to the Log and clear the session?" +msgid "Are you sure that you want to add these QSO to the Log and clear the session?" msgstr "" #: application/views/simplefle/index.php:35 @@ -8518,8 +8091,7 @@ msgid "Refs" msgstr "" #: application/views/simplefle/index.php:147 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +msgid "The Refs can be either SOTA, IOTA, POTA or WWFF" msgstr "" #: application/views/simplefle/index.php:154 @@ -8547,16 +8119,11 @@ msgid "- Each new QSO should be on a new line." msgstr "" #: application/views/simplefle/syntax_help.php:3 -msgid "" -"- On each new line, only write data that has changed from the previous QSO." +msgid "- On each new line, only write data that has changed from the previous QSO." msgstr "" #: application/views/simplefle/syntax_help.php:4 -msgid "" -"To begin, ensure you have already filled in the form on the left with the " -"date, station call, and operator's call. The main data includes the band (or " -"QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the " -"first QSO, which is essentially the callsign." +msgid "To begin, ensure you have already filled in the form on the left with the date, station call, and operator's call. The main data includes the band (or QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the first QSO, which is essentially the callsign." msgstr "" #: application/views/simplefle/syntax_help.php:9 @@ -8564,33 +8131,21 @@ msgid "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB." msgstr "" #: application/views/simplefle/syntax_help.php:10 -msgid "" -"If you don't provide any RST information, the syntax will use 59 (599 for " -"data). Our next QSO wasn't 59 on both sides, so we provide the information " -"with the sent RST first. It was 2 minutes later than the first QSO." +msgid "If you don't provide any RST information, the syntax will use 59 (599 for data). Our next QSO wasn't 59 on both sides, so we provide the information with the sent RST first. It was 2 minutes later than the first QSO." msgstr "" #: application/views/simplefle/syntax_help.php:16 -msgid "" -"The first QSO was at 21:34, and the second one 2 minutes later at 21:36. We " -"write down 6 because this is the only data that changed here. The " -"information about band and mode didn't change, so this data is omitted." +msgid "The first QSO was at 21:34, and the second one 2 minutes later at 21:36. We write down 6 because this is the only data that changed here. The information about band and mode didn't change, so this data is omitted." msgstr "" #: application/views/simplefle/syntax_help.php:17 -msgid "" -"For our next QSO at 21:40 on 14th May, 2021, we changed the band to 40m but " -"still on SSB. If no RST information is given, the syntax will use 59 for " -"every new QSO. Therefore we can add another QSO which took place at the " -"exact same time two days later. The date must be in format YYYY-MM-DD." +msgid "For our next QSO at 21:40 on 14th May, 2021, we changed the band to 40m but still on SSB. If no RST information is given, the syntax will use 59 for every new QSO. Therefore we can add another QSO which took place at the exact same time two days later. The date must be in format YYYY-MM-DD." msgstr "" #: application/views/simplefle/syntax_help.php:28 #, php-format msgctxt "uses 'this article'" -msgid "" -"A full summary of all commands and the necessary syntax can be found in %s " -"of our Wiki." +msgid "A full summary of all commands and the necessary syntax can be found in %s of our Wiki." msgstr "" #: application/views/station_profile/create.php:32 @@ -8705,16 +8260,12 @@ msgstr "Trouver le Locator" #: application/views/station_profile/edit.php:179 #, php-format msgctxt "uses 'click here'" -msgid "" -"Station gridsquare. For example: HM54AP. If you don't know your grid square " -"then %s!" +msgid "Station gridsquare. For example: HM54AP. If you don't know your grid square then %s!" msgstr "" #: application/views/station_profile/create.php:126 #: application/views/station_profile/edit.php:180 -msgid "" -"If you are located on a grid line, enter multiple grid squares separated " -"with commas. For example: IO77,IO78,IO87,IO88." +msgid "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88." msgstr "" #: application/views/station_profile/create.php:141 @@ -8763,9 +8314,7 @@ msgstr "" #: application/views/station_profile/create.php:160 #: application/views/station_profile/edit.php:247 #, php-format -msgid "" -"Station POTA reference(s). Multiple comma separated values allowed. You can " -"look up POTA references at the %s." +msgid "Station POTA reference(s). Multiple comma separated values allowed. You can look up POTA references at the %s." msgstr "" #: application/views/station_profile/create.php:164 @@ -8806,12 +8355,8 @@ msgstr "Message (QSLMSG) par défaut" #: application/views/station_profile/create.php:185 #: application/views/station_profile/edit.php:289 -msgid "" -"Define a default message that will be populated and sent for each QSO for " -"this station location." -msgstr "" -"Vous pouvez définir un message par défaut qui sera renseigné et envoyé pour " -"chaque QSO pour ce lieu station." +msgid "Define a default message that will be populated and sent for each QSO for this station location." +msgstr "Vous pouvez définir un message par défaut qui sera renseigné et envoyé pour chaque QSO pour ce lieu station." #: application/views/station_profile/create.php:188 #: application/views/station_profile/edit.php:328 @@ -8820,10 +8365,7 @@ msgstr "" #: application/views/station_profile/create.php:193 #: application/views/station_profile/edit.php:333 -msgid "" -"If enabled, the QSOs made from this location will not be uploaded to " -"Clublog. If this is deactivated on it's own please check if the Call is " -"properly configured at Clublog" +msgid "If enabled, the QSOs made from this location will not be uploaded to Clublog. If this is deactivated on it's own please check if the Call is properly configured at Clublog" msgstr "" #: application/views/station_profile/create.php:196 @@ -8838,8 +8380,7 @@ msgstr "" #: application/views/station_profile/create.php:207 #: application/views/station_profile/edit.php:354 -msgid "" -"The username you are registered with at HRDlog.net (usually your callsign)." +msgid "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" #: application/views/station_profile/create.php:210 @@ -8958,64 +8499,47 @@ msgstr "" #: application/views/station_profile/index.php:15 #: application/views/stationsetup/stationsetup.php:95 -#: application/views/stationsetup/stationsetup.php:94 -msgid "" -"Station Locations define operating locations, such as your QTH, a friends " -"QTH, or a portable station." +msgid "Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station." msgstr "" #: application/views/station_profile/index.php:16 #: application/views/stationsetup/stationsetup.php:96 -#: application/views/stationsetup/stationsetup.php:95 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" #: application/views/station_profile/index.php:17 #: application/views/stationsetup/stationsetup.php:97 -#: application/views/stationsetup/stationsetup.php:96 -msgid "" -"Only one station may be active at a time. In the table below this is shown " -"with the -Active Station- badge." +msgid "Only one station may be active at a time. In the table below this is shown with the -Active Station- badge." msgstr "" #: application/views/station_profile/index.php:19 #: application/views/stationsetup/stationsetup.php:101 -#: application/views/stationsetup/stationsetup.php:98 msgid "Create a Station Location" msgstr "" #: application/views/station_profile/index.php:25 #: application/views/stationsetup/stationsetup.php:105 -#: application/views/stationsetup/stationsetup.php:102 -msgid "" -"Attention: You need to set an active station location. Go to Callsign-" -">Station Location to select one." +msgid "Attention: You need to set an active station location. Go to Callsign->Station Location to select one." msgstr "" #: application/views/station_profile/index.php:31 #: application/views/stationsetup/stationsetup.php:111 -#: application/views/stationsetup/stationsetup.php:108 -msgid "" -"Due to recent changes within Wavelog you need to reassign QSOs to your " -"station profiles." +msgid "Due to recent changes within Wavelog you need to reassign QSOs to your station profiles." msgstr "" #: application/views/station_profile/index.php:33 #: application/views/stationsetup/stationsetup.php:113 -#: application/views/stationsetup/stationsetup.php:110 msgid "Maintenance" msgstr "" #: application/views/station_profile/index.php:33 #: application/views/stationsetup/stationsetup.php:113 -#: application/views/stationsetup/stationsetup.php:110 msgid "Please reassign them at " msgstr "" #: application/views/station_profile/index.php:41 #: application/views/stationsetup/linkedlocations.php:31 #: application/views/stationsetup/stationsetup.php:122 -#: application/views/stationsetup/stationsetup.php:119 msgid "Profile Name" msgstr "" @@ -9071,17 +8595,8 @@ msgid "Unlink Station Location" msgstr "" #: application/views/stationsetup/stationsetup.php:21 -msgid "" -"Station Logbooks allow you to group Station Locations, this allows you to " -"see all the locations across one session from the logbook areas to the " -"analytics. Great for when your operating in multiple locations but they are " -"part of the same DXCC or VUCC Circle." -msgstr "" -"Les \"journaux de trafic\" des stations vous permettent de regrouper les " -"emplacements des stations.
Cela vous permet d'avoir tous les emplacements " -"au sein d'une même session ; visible dans le journal de trafic, jusqu'aux " -"statistiques.
Idéal lorsque vous travaillez sur plusieurs sites, mais " -"qu'ils font partie du même cercle DXCC ou VUCC." +msgid "Station Logbooks allow you to group Station Locations, this allows you to see all the locations across one session from the logbook areas to the analytics. Great for when your operating in multiple locations but they are part of the same DXCC or VUCC Circle." +msgstr "Les \"journaux de trafic\" des stations vous permettent de regrouper les emplacements des stations.
Cela vous permet d'avoir tous les emplacements au sein d'une même session ; visible dans le journal de trafic, jusqu'aux statistiques.
Idéal lorsque vous travaillez sur plusieurs sites, mais qu'ils font partie du même cercle DXCC ou VUCC." #: application/views/stationsetup/stationsetup.php:32 msgid "Linked locations" @@ -9096,9 +8611,7 @@ msgid "Station Locations" msgstr "" #: application/views/stationsetup/stationsetup.php:98 -msgid "" -"The 'Linked' column shows if the station location is linked with the Active " -"Logbook selected above." +msgid "The 'Linked' column shows if the station location is linked with the Active Logbook selected above." msgstr "" #: application/views/stationsetup/stationsetup.php:127 @@ -9106,19 +8619,15 @@ msgid "Linked" msgstr "" #: application/views/stationsetup/stationsetup.php:134 -#: application/views/stationsetup/stationsetup.php:130 msgid "Favorite" msgstr "" #: application/views/stationsetup/stationsetup.php:180 -#: application/views/stationsetup/stationsetup.php:175 msgid "mark/unmark as favorite" msgstr "" #: application/views/stationsetup/visitor.php:2 -msgid "" -"Setting a public slug allows you to share your logbook with anyone via a " -"custom website address, this slug can contain letters & numbers only." +msgid "Setting a public slug allows you to share your logbook with anyone via a custom website address, this slug can contain letters & numbers only." msgstr "" #: application/views/stationsetup/visitor.php:3 @@ -9189,9 +8698,7 @@ msgid "Folder Name" msgstr "" #: application/views/themes/add.php:12 application/views/themes/edit.php:12 -msgid "" -"This is the name of the folder where your CSS-files are placed under assets/" -"css." +msgid "This is the name of the folder where your CSS-files are placed under assets/css." msgstr "" #: application/views/themes/add.php:16 application/views/themes/edit.php:16 @@ -9223,9 +8730,7 @@ msgstr "" #: application/views/themes/add.php:27 application/views/themes/edit.php:27 #, php-format -msgid "" -"This is the name of the file which is used as %s small %s Logo in the header " -"placed in assets/logo." +msgid "This is the name of the file which is used as %s small %s Logo in the header placed in assets/logo." msgstr "" #: application/views/themes/add.php:31 application/views/themes/edit.php:31 @@ -9235,9 +8740,7 @@ msgstr "" #: application/views/themes/add.php:33 application/views/themes/edit.php:33 #, php-format -msgid "" -"This is the name of the file which is used as %s big %s Logo in the login " -"screen placed in assets/logo." +msgid "This is the name of the file which is used as %s big %s Logo in the login screen placed in assets/logo." msgstr "" #: application/views/themes/add.php:36 @@ -9245,9 +8748,7 @@ msgid "Add theme" msgstr "" #: application/views/themes/edit.php:21 -msgid "" -"This defines wherever the theme is a light or a dark one. On this basis the " -"Logo is chosen." +msgid "This defines wherever the theme is a light or a dark one. On this basis the Logo is chosen." msgstr "" #: application/views/themes/edit.php:36 @@ -9259,10 +8760,7 @@ msgid "Themes list" msgstr "" #: application/views/themes/index.php:28 -msgid "" -"In this menu you can add and edit themes to Wavelog. The process of adding a " -"theme is not really straightforward and should only be done by an admin who " -"is aware of their actions." +msgid "In this menu you can add and edit themes to Wavelog. The process of adding a theme is not really straightforward and should only be done by an admin who is aware of their actions." msgstr "" #: application/views/themes/index.php:29 @@ -9279,9 +8777,7 @@ msgstr "" #: application/views/themes/index.php:44 #, php-format -msgid "" -"Create a new folder in 'assets/css/' and upload a 'bootstrap.min.css' file " -"which contains basic styling rules. We use the themes from %s" +msgid "Create a new folder in 'assets/css/' and upload a 'bootstrap.min.css' file which contains basic styling rules. We use the themes from %s" msgstr "" #: application/views/themes/index.php:50 @@ -9289,9 +8785,7 @@ msgid "2. Step" msgstr "" #: application/views/themes/index.php:53 -msgid "" -"Create a file in this folder called 'overrides.css'. Place your custom CSS " -"code in there." +msgid "Create a file in this folder called 'overrides.css'. Place your custom CSS code in there." msgstr "" #: application/views/themes/index.php:59 @@ -9299,15 +8793,11 @@ msgid "3. Step" msgstr "" #: application/views/themes/index.php:62 -msgid "" -"For each new theme, you need two logo files. One for the login screen and " -"one for the header." +msgid "For each new theme, you need two logo files. One for the login screen and one for the header." msgstr "" #: application/views/themes/index.php:63 -msgid "" -"Only PNG files are allowed, and they should have a pixel ratio of 1:1 (e.g., " -"1000px height and 1000px width)." +msgid "Only PNG files are allowed, and they should have a pixel ratio of 1:1 (e.g., 1000px height and 1000px width)." msgstr "" #: application/views/themes/index.php:64 @@ -9319,9 +8809,7 @@ msgid "4. Step" msgstr "" #: application/views/themes/index.php:73 -msgid "" -"Click here on 'Add a Theme' and type in the necessary data. Type in the " -"filenames for the logos without the file extension '.png'" +msgid "Click here on 'Add a Theme' and type in the necessary data. Type in the filenames for the logos without the file extension '.png'" msgstr "" #: application/views/themes/index.php:83 @@ -9353,9 +8841,7 @@ msgid "Callsign(s) worked (max 5)" msgstr "" #: application/views/timeplotter/index.php:10 -msgid "" -"The Timeplotter is used to analyze your logbook and find out at what times " -"you worked certain CQ zones or DXCC countries on a selected band." +msgid "The Timeplotter is used to analyze your logbook and find out at what times you worked certain CQ zones or DXCC countries on a selected band." msgstr "" #: application/views/update/index.php:8 @@ -9367,9 +8853,7 @@ msgid "Distance Data" msgstr "" #: application/views/update/index.php:19 -msgid "" -"Here you can update the DXCC lookup data that is used for displaying " -"callsign information." +msgid "Here you can update the DXCC lookup data that is used for displaying callsign information." msgstr "" #: application/views/update/index.php:20 @@ -9394,10 +8878,8 @@ msgstr "" #: application/views/update/index.php:36 msgid "" -"After updating, Wavelog can fill in missing callsign information in the " -"logbook using the newly-obtained DXCC data.\n" -"\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that are " -"missing DXCC metadata or to re-check the entire logbook\n" +"After updating, Wavelog can fill in missing callsign information in the logbook using the newly-obtained DXCC data.\n" +"\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that are missing DXCC metadata or to re-check the entire logbook\n" "\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." msgstr "" @@ -9414,9 +8896,7 @@ msgid "Apply Continent Data to Logbook" msgstr "" #: application/views/update/index.php:47 -msgid "" -"This function can be used to update QSO continent information for all QSOs " -"in Wavelog missing that information." +msgid "This function can be used to update QSO continent information for all QSOs in Wavelog missing that information." msgstr "" #: application/views/update/index.php:49 @@ -9573,28 +9053,16 @@ msgid "Log End Times for QSOs Separately" msgstr "Enregistrer les heures de fin des QSO séparément" #: application/views/user/edit.php:350 -msgid "" -"Choose yes here if you want to log QSO start and end times separately. If " -"set to 'No' the end time will be the same as start time." -msgstr "" -"(Choisissez 'oui', si vous souhaitez enregistrer les heures de début et de " -"fin des QSO séparément. Si la valeur est 'Non', l'heure de fin sera la même " -"que l'heure de début)." +msgid "Choose yes here if you want to log QSO start and end times separately. If set to 'No' the end time will be the same as start time." +msgstr "(Choisissez 'oui', si vous souhaitez enregistrer les heures de début et de fin des QSO séparément. Si la valeur est 'Non', l'heure de fin sera la même que l'heure de début)." #: application/views/user/edit.php:355 -msgid "" -"Show profile picture of QSO partner from qrz.com/hamqth.com profile in the " -"log QSO section." -msgstr "" -"Affiche l'image de profil du contact (depuis qrz.com/hamqth.com) dans la " -"session QSO." +msgid "Show profile picture of QSO partner from qrz.com/hamqth.com profile in the log QSO section." +msgstr "Affiche l'image de profil du contact (depuis qrz.com/hamqth.com) dans la session QSO." #: application/views/user/edit.php:361 -msgid "" -"Please set your qrz.com/hamqth.com credentials in the general config file." -msgstr "" -"(Indiquer les éléments d'authentification pour qrz.com/hamqth.com dans le " -"fichier de configuration (config.php))." +msgid "Please set your qrz.com/hamqth.com credentials in the general config file." +msgstr "(Indiquer les éléments d'authentification pour qrz.com/hamqth.com dans le fichier de configuration (config.php))." #: application/views/user/edit.php:366 msgid "Location auto lookup." @@ -9610,16 +9078,12 @@ msgstr "SOTA : Renseigner automatiquement le Locator et le nom du sommet." #: application/views/user/edit.php:382 application/views/user/edit.php:392 #: application/views/user/edit.php:402 -msgid "" -"If set, name and gridsquare is fetched from the API and filled in location " -"and locator." -msgstr "" -"(Si 'oui', le nom et le Locator seront récupérés depuis l'API et renseignés)." +msgid "If set, name and gridsquare is fetched from the API and filled in location and locator." +msgstr "(Si 'oui', le nom et le Locator seront récupérés depuis l'API et renseignés)." #: application/views/user/edit.php:386 msgid "WWFF auto lookup gridsquare and name for reference." -msgstr "" -"WWFF : Renseigner automatiquement le Locator et le nom de la référence." +msgstr "WWFF : Renseigner automatiquement le Locator et le nom de la référence." #: application/views/user/edit.php:396 msgid "POTA auto lookup gridsquare and name for park." @@ -9638,12 +9102,8 @@ msgid "Quicklog Field" msgstr "Champ Quicklog" #: application/views/user/edit.php:433 -msgid "" -"With this feature, you can log callsigns using the search field in the " -"header." -msgstr "" -"(Si 'oui', vous pouvez enregistrer les indicatifs d'appel en utilisant le " -"champ de recherche dans la barre du haut)." +msgid "With this feature, you can log callsigns using the search field in the header." +msgstr "(Si 'oui', vous pouvez enregistrer les indicatifs d'appel en utilisant le champ de recherche dans la barre du haut)." #: application/views/user/edit.php:437 msgid "Quicklog - Action on press Enter" @@ -9654,10 +9114,8 @@ msgid "Log Callsign" msgstr "Enregistre l'indicatif" #: application/views/user/edit.php:443 -msgid "" -"What action should be performed when Enter is pressed in the quicklog field?" -msgstr "" -"Action effectuée lorsque vous appuyez sur 'Entrée' dans le champ quicklog ?" +msgid "What action should be performed when Enter is pressed in the quicklog field?" +msgstr "Action effectuée lorsque vous appuyez sur 'Entrée' dans le champ quicklog ?" #: application/views/user/edit.php:449 msgid "Station Locations Quickswitch" @@ -9709,9 +9167,7 @@ msgstr "Type de QSL pour le statut" #: application/views/user/edit.php:559 msgid "Select the type of QSL to show in the previous QSOs section." -msgstr "" -"Sélectionner le type de QSL pour le statut à afficher dans la session " -"'Contacts précédents'." +msgstr "Sélectionner le type de QSL pour le statut à afficher dans la session 'Contacts précédents'." #: application/views/user/edit.php:565 msgid "QRZ" @@ -9722,8 +9178,7 @@ msgid "Show Reference Fields on QSO Tab" msgstr "" #: application/views/user/edit.php:580 -msgid "" -"The enabled items will be shown on the QSO tab rather than the General tab." +msgid "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" #: application/views/user/edit.php:619 @@ -9817,9 +9272,7 @@ msgstr "Activer Winkeyer" #: application/views/user/edit.php:836 #, php-format -msgid "" -"Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " -"before enabling." +msgid "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s before enabling." msgstr "" #: application/views/user/edit.php:847 @@ -9841,9 +9294,7 @@ msgid "Show Workable Passes Only" msgstr "" #: application/views/user/edit.php:861 -msgid "" -"If enabled shows only workable passes based on the gridsquare set in your " -"hams.at account. Requires private feed key to be set." +msgid "If enabled shows only workable passes based on the gridsquare set in your hams.at account. Requires private feed key to be set." msgstr "" #: application/views/user/edit.php:873 @@ -9888,26 +9339,15 @@ msgid "Wavelog needs at least one user configured in order to operate." msgstr "Wavelog a besoin d'au moins un utilisateur configuré pour fonctionner." #: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" -"Les utilisateurs peuvent se voir attribuer des rôles qui leur donnent " -"différentes autorisations, telles que l'ajout de QSO au journal de trafic et " -"l'accès aux API Wavelog." +msgid "Users can be assigned roles which give them different permissions, such as adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "Les utilisateurs peuvent se voir attribuer des rôles qui leur donnent différentes autorisations, telles que l'ajout de QSO au journal de trafic et l'accès aux API Wavelog." #: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" -"L'utilisateur actuellement connecté est affiché en haut à droite de chaque " -"page." +msgid "The currently logged-in user is displayed at the upper-right of each page." +msgstr "L'utilisateur actuellement connecté est affiché en haut à droite de chaque page." #: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." +msgid "With the password reset button, you can send a user an email containing a link to reset their password. To achieve this, ensure that the email settings in the global options are configured correctly." msgstr "" #: application/views/user/main.php:38 @@ -9987,8 +9427,7 @@ msgid "Don't show again" msgstr "" #: application/views/view_log/index.php:4 -msgid "" -"Displaying all QSOs of station locations which are linked to this logbook" +msgid "Displaying all QSOs of station locations which are linked to this logbook" msgstr "" #: application/views/view_log/qso.php:6 @@ -10123,21 +9562,15 @@ msgid "Please enter a callsign!" msgstr "" #: application/views/webadif/export.php:22 -msgid "" -"Here you can see and upload all QSOs which have not been previously uploaded " -"to QO-100 Dx Club." +msgid "Here you can see and upload all QSOs which have not been previously uploaded to QO-100 Dx Club." msgstr "" #: application/views/webadif/export.php:33 -msgid "" -"You need to set a QO-100 Dx Club API key in your station profile. Only " -"station profiles with an API Key are displayed." +msgid "You need to set a QO-100 Dx Club API key in your station profile. Only station profiles with an API Key are displayed." msgstr "" #: application/views/webadif/export.php:63 -msgid "" -"There are currently no outstanding QSOs that need to be uploaded to the " -"QO-100 Dx Club's API." +msgid "There are currently no outstanding QSOs that need to be uploaded to the QO-100 Dx Club's API." msgstr "" #: application/views/webadif/export.php:64 @@ -10146,9 +9579,7 @@ msgstr "" #: application/views/webadif/export.php:73 #: application/views/webadif/export.php:113 -msgid "" -"None of your Logbooks are configured to export data to the QO-100 Dx Club's " -"API." +msgid "None of your Logbooks are configured to export data to the QO-100 Dx Club's API." msgstr "" #: application/views/webadif/export.php:74 @@ -10159,23 +9590,17 @@ msgstr "QO-100 Dx Club" #: application/views/webadif/export.php:74 #: application/views/webadif/export.php:114 #, php-format -msgid "" -"To configure this feature, go to your profile page at the %s and %s Create " -"%s an API key." +msgid "To configure this feature, go to your profile page at the %s and %s Create %s an API key." msgstr "" #: application/views/webadif/export.php:75 #: application/views/webadif/export.php:115 #, php-format -msgid "" -"Then, navigate to your %s and configure your station with the key you have " -"created at the club." +msgid "Then, navigate to your %s and configure your station with the key you have created at the club." msgstr "" #: application/views/webadif/export.php:83 -msgid "" -"Here you can mark as uploaded your QSOs which have not been previously " -"uploaded to QO-100 Dx Club." +msgid "Here you can mark as uploaded your QSOs which have not been previously uploaded to QO-100 Dx Club." msgstr "" #: application/views/webadif/export.php:107 @@ -10225,9 +9650,5 @@ msgstr "Les QSO sont marqués comme exportés vers QO-100 Dx Club." #~ msgid "Overwrite exisiting DOK in log by DCL (if different)." #~ msgstr "Remplacer le DOC existant dans le journal par DCL (si différent)" -#~ msgid "" -#~ "If unchecked information about QSO which could not be found in Wavelog " -#~ "will be displayed." -#~ msgstr "" -#~ "(Si non cochée, les informations sur les QSO qui n'ont pas pu être " -#~ "trouvées dans Wavelog seront affichées)" +#~ msgid "If unchecked information about QSO which could not be found in Wavelog will be displayed." +#~ msgstr "(Si non cochée, les informations sur les QSO qui n'ont pas pu être trouvées dans Wavelog seront affichées)" diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index 4042d8398..ade2fe542 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-03 06:10+0000\n" +"POT-Creation-Date: 2024-07-03 13:13+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 5158c0d391d2e98b14787211d7da21bbbf7d811f Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Wed, 3 Jul 2024 16:20:35 +0200 Subject: [PATCH 19/24] we should not use double quotes in translations --- .../locale/de_DE/LC_MESSAGES/messages.po | 2 +- .../locale/fr_FR/LC_MESSAGES/messages.po | 20 +++++----- .../locale/ru_RU/LC_MESSAGES/messages.po | 40 +++++++++---------- 3 files changed, 31 insertions(+), 31 deletions(-) diff --git a/application/locale/de_DE/LC_MESSAGES/messages.po b/application/locale/de_DE/LC_MESSAGES/messages.po index fbdebb23e..34249fb8b 100644 --- a/application/locale/de_DE/LC_MESSAGES/messages.po +++ b/application/locale/de_DE/LC_MESSAGES/messages.po @@ -8370,7 +8370,7 @@ msgstr "Ignoriere Clublog-Upload" #: application/views/station_profile/create.php:193 #: application/views/station_profile/edit.php:333 msgid "If enabled, the QSOs made from this location will not be uploaded to Clublog. If this is deactivated on it's own please check if the Call is properly configured at Clublog" -msgstr "Wenn aktiviert, werden die QSOs, die von diesem Standort gemacht wurden, beim Clublog-Upload ignoriert.
Sofern das Feld \"von allein\" auf deaktiviert springt, bitte bei Clublog die Einstellungen für diesen Call überprüfen" +msgstr "Wenn aktiviert, werden die QSOs, die von diesem Standort gemacht wurden, beim Clublog-Upload ignoriert.
Sofern das Feld 'von allein' auf deaktiviert springt, bitte bei Clublog die Einstellungen für diesen Call überprüfen" #: application/views/station_profile/create.php:196 #: application/views/station_profile/edit.php:336 diff --git a/application/locale/fr_FR/LC_MESSAGES/messages.po b/application/locale/fr_FR/LC_MESSAGES/messages.po index b56297351..b4420b935 100644 --- a/application/locale/fr_FR/LC_MESSAGES/messages.po +++ b/application/locale/fr_FR/LC_MESSAGES/messages.po @@ -2616,7 +2616,7 @@ msgstr "Si aucune date n'est renseignées, tous les QSO seront marqués !" #: application/views/adif/import.php:228 msgid "Mark QSOs as exported to LoTW" -msgstr "Marquer les QSO comme étant \"téléchargé sur LoTW\"" +msgstr "Marquer les QSO comme étant 'téléchargé sur LoTW'" #: application/views/adif/import.php:242 #, php-format @@ -2971,7 +2971,7 @@ msgstr "Réalisés" #: application/views/awards/waja/index.php:35 #: application/views/awards/was/index.php:35 msgid "Show worked" -msgstr "Voir les \"réalisés\"" +msgstr "Voir les 'réalisés'" #: application/views/awards/cq/index.php:40 #: application/views/awards/dok/index.php:45 @@ -2984,7 +2984,7 @@ msgstr "Voir les \"réalisés\"" #: application/views/awards/waja/index.php:39 #: application/views/awards/was/index.php:39 msgid "Show confirmed" -msgstr "Voir les \"confirmés\"" +msgstr "Voir les 'confirmés'" #: application/views/awards/cq/index.php:44 #: application/views/awards/dxcc/index.php:51 @@ -2996,7 +2996,7 @@ msgstr "Voir les \"confirmés\"" #: application/views/awards/waja/index.php:43 #: application/views/awards/was/index.php:43 msgid "Show not worked" -msgstr "Voir les \"non réalisés\"" +msgstr "Voir les 'non réalisés'" #: application/views/awards/cq/index.php:50 #: application/views/awards/dok/index.php:51 @@ -3107,7 +3107,7 @@ msgstr "Résumé" #: application/views/awards/waja/index.php:182 #: application/views/awards/was/index.php:181 msgid "Total worked" -msgstr "Total \"réalisés\"" +msgstr "Total 'réalisés'" #: application/views/awards/cq/index.php:185 #: application/views/awards/dok/index.php:185 @@ -3118,7 +3118,7 @@ msgstr "Total \"réalisés\"" #: application/views/awards/waja/index.php:189 #: application/views/awards/was/index.php:188 msgid "Total confirmed" -msgstr "Total \"confirmés\"" +msgstr "Total 'confirmés'" #: application/views/awards/dok/index.php:7 msgid "DOK Award" @@ -3901,7 +3901,7 @@ msgstr "Aucun concours trouvé pour ce lieu de station !" #: application/views/cabrillo/index.php:16 msgid "Export a contest to a Cabrillo log" -msgstr "Exporter un concours au format de fichier \"Cabrillo\"" +msgstr "Exporter un concours au format de fichier 'Cabrillo'" #: application/views/cabrillo/index.php:28 msgid "Select Station Location:" @@ -8596,7 +8596,7 @@ msgstr "" #: application/views/stationsetup/stationsetup.php:21 msgid "Station Logbooks allow you to group Station Locations, this allows you to see all the locations across one session from the logbook areas to the analytics. Great for when your operating in multiple locations but they are part of the same DXCC or VUCC Circle." -msgstr "Les \"journaux de trafic\" des stations vous permettent de regrouper les emplacements des stations.
Cela vous permet d'avoir tous les emplacements au sein d'une même session ; visible dans le journal de trafic, jusqu'aux statistiques.
Idéal lorsque vous travaillez sur plusieurs sites, mais qu'ils font partie du même cercle DXCC ou VUCC." +msgstr "Les 'journaux de trafic' des stations vous permettent de regrouper les emplacements des stations.
Cela vous permet d'avoir tous les emplacements au sein d'une même session ; visible dans le journal de trafic, jusqu'aux statistiques.
Idéal lorsque vous travaillez sur plusieurs sites, mais qu'ils font partie du même cercle DXCC ou VUCC." #: application/views/stationsetup/stationsetup.php:32 msgid "Linked locations" @@ -9519,7 +9519,7 @@ msgstr "" #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" -msgstr "Sélectionner l'image \"recto\" de la QSL" +msgstr "Sélectionner l'image 'recto' de la QSL" #: application/views/view_log/qso.php:635 msgid "Upload QSL Card image" @@ -9527,7 +9527,7 @@ msgstr "Télécharger le(s) image(s) de la QSL" #: application/views/view_log/qso.php:640 msgid "Uploaded QSL Card back image" -msgstr "Sélectionner l'image \"verso\" de la QSL" +msgstr "Sélectionner l'image 'verso' de la QSL" #: application/views/view_log/qso.php:656 msgid "Mark QSL Received (Electronic)" diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.po b/application/locale/ru_RU/LC_MESSAGES/messages.po index f4a010e78..37b64fa7c 100644 --- a/application/locale/ru_RU/LC_MESSAGES/messages.po +++ b/application/locale/ru_RU/LC_MESSAGES/messages.po @@ -731,7 +731,7 @@ msgstr "" #: application/controllers/Logbook.php:37 msgid "No logbooks were found. You need to define a logbook under Station Logbooks! Do it here:" -msgstr "Журнал не найден. Вам необходимо указать журнал в разделе \"Журналы\"! Тут:" +msgstr "Журнал не найден. Вам необходимо указать журнал в разделе 'Журналы'! Тут:" #: application/controllers/Logbook.php:37 #: application/views/stationsetup/stationsetup.php:18 @@ -2724,7 +2724,7 @@ msgstr "API (Application Programming Interface) Wavelog позволяет ст #: application/views/api/help.php:18 msgid "You will need to generate an API key for each tool you wish to use (e.g. WLgate). Generate a read-write key if the application needs to send data to Wavelog. Generate a read-only key if the application only needs to obtain data from Wavelog." -msgstr "Вам нужно сгенерировать ключ API для каждого инструмента, который вы используете (к примеру, WLgate). Сгенерируйте ключ с правами \"Чтение и Запись\" для приложений, которым нужно отправлять данные в Wavelog. Сгенерируйте ключ с правами \"Только Чтение\" для приложений, которым нужно только получать данные от Wavelog." +msgstr "Вам нужно сгенерировать ключ API для каждого инструмента, который вы используете (к примеру, WLgate). Сгенерируйте ключ с правами 'Чтение и Запись' для приложений, которым нужно отправлять данные в Wavelog. Сгенерируйте ключ с правами 'Только Чтение' для приложений, которым нужно только получать данные от Wavelog." #: application/views/api/help.php:19 msgid "API URL" @@ -2813,11 +2813,11 @@ msgstr "У вас нет ключей API." #: application/views/api/help.php:75 msgid "Create a read & write key" -msgstr "Создать ключ с правами \"Чтение и Запись\"" +msgstr "Создать ключ с правами 'Чтение и Запись'" #: application/views/api/help.php:76 msgid "Create a read-only key" -msgstr "Создать ключ с правами \"Только Чтение\"" +msgstr "Создать ключ с правами 'Только Чтение'" #: application/views/awards/counties/details.php:4 #: application/views/awards/details.php:1 @@ -2929,7 +2929,7 @@ msgstr "CQ Magazine находится в США и является одним #: 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 расшифровывается как \"Работал со всеми зонами\" и требует проведения радиосвязи со всеми 40 зонами CQ, а также соответствующего подтверждения." +msgstr "Диплом WAZ расшифровывается как 'Работал со всеми зонами' и требует проведения радиосвязи со всеми 40 зонами CQ, а также соответствующего подтверждения." #: application/views/awards/cq/index.php:21 #, php-format @@ -3127,7 +3127,7 @@ msgstr "Диплом DOK" #: application/views/awards/dok/index.php:8 msgid "Germany extends over 630 km from East to West and nearly 900 km from North to South. Around 70,000 of Germany's 82 million inhabitants are licensed hams, with more than 40,000 of them being members of DARC. DOK is a system that provides individual local chapters with an identifier and means 'Deutscher Ortsverband Kenner' (English: 'German Local Association Identifier')." -msgstr "Германия простирается на 630 км с востока на запад и почти на 900 км с севера на юг. Около 70 000 из 82 миллионов жителей Германии являются лицензированными радиолюбителями, и более 40 000 из них - члены DARC. DOK - это система, которая предоставляет отдельным местным отделениям идентификатор и означает \"Deutscher Ortsverband Kenner\" (\"Немецкий идентификатор местной ассоциации\")." +msgstr "Германия простирается на 630 км с востока на запад и почти на 900 км с севера на юг. Около 70 000 из 82 миллионов жителей Германии являются лицензированными радиолюбителями, и более 40 000 из них - члены DARC. DOK - это система, которая предоставляет отдельным местным отделениям идентификатор и означает 'Deutscher Ortsverband Kenner' ('Немецкий идентификатор местной ассоциации')." #: application/views/awards/dok/index.php:9 msgid "The DOK consists of a letter for the district and a two-digit number for the local chapter, like P03 Friedrichshafen (city of the 'Hamradio exhibition') or F41 Baunatal (location of the DARC headquarters). Note: A zero in a DOK is a common mistake, often being logged as the letter O." @@ -3180,7 +3180,7 @@ msgstr "'Как считать страны, новая система подс #: application/views/awards/dxcc/index.php:15 #, php-format msgid "DXCC stands for 'DX Century Club,' an award based on worked countries. The DXCC List is based on an article created in 1935 by Clinton B. DeSoto, W1CBD, titled %s." -msgstr "DXCC означает \"DX Century Club\", диплом, основанный на сработанных странах. Список DXCC основан на статье, созданной в 1935 году Клинтоном Б. ДеСото, W1CBD, под названием %s." +msgstr "DXCC означает 'DX Century Club', диплом, основанный на сработанных странах. Список DXCC основан на статье, созданной в 1935 году Клинтоном Б. ДеСото, W1CBD, под названием %s." #: application/views/awards/dxcc/index.php:16 msgid "ARRL website" @@ -3362,7 +3362,7 @@ msgstr "IOTA - это захватывающая и инновационная #: application/views/awards/iota/index.php:18 msgid "It is administered by Islands On The Air (IOTA) Ltd (referred to as IOTA Management) in partnership with the Radio Society of Great Britain (RSGB). IOTA Management has grouped the world's islands into approximately 1200 'IOTA groups,' each having varying numbers of 'counters,' which are qualifying islands. These listings are published in the IOTA Directory and on the IOTA website. The objective for the IOTA Island Chaser is to make radio contact with at least one counter in as many of these groups as possible. The program has a well-defined set of rules and encourages friendly competition among chasers by publishing participant performance in an Honor Roll and annual listings, as well as recognizing it with certificates and prestigious awards." -msgstr "Она управляется компанией Islands On The Air (IOTA) Ltd (именуемой IOTA Management) в партнерстве с Radio Society of Great Britain (RSGB). Руководство IOTA сгруппировало острова мира примерно в 1200 \"групп IOTA\", каждая из которых имеет различное количество \" жетонов\", являющихся квалификационными островами. Эти списки публикуются в Справочнике IOTA и на сайте IOTA. Цель программы IOTA Island Chaser - установить радиосвязь хотя бы с одним \"жетоном\"в как можно большем количестве этих групп. Программа имеет четко определенные правила и поощряет дружескую конкуренцию между охотниками, публикуя результаты участников в Почетном списке и ежегодных списках, а также отмечая их сертификатами и престижными наградами." +msgstr "Она управляется компанией Islands On The Air (IOTA) Ltd (именуемой IOTA Management) в партнерстве с Radio Society of Great Britain (RSGB). Руководство IOTA сгруппировало острова мира примерно в 1200 'групп IOTA', каждая из которых имеет различное количество ' жетонов', являющихся квалификационными островами. Эти списки публикуются в Справочнике IOTA и на сайте IOTA. Цель программы IOTA Island Chaser - установить радиосвязь хотя бы с одним 'жетоном'в как можно большем количестве этих групп. Программа имеет четко определенные правила и поощряет дружескую конкуренцию между охотниками, публикуя результаты участников в Почетном списке и ежегодных списках, а также отмечая их сертификатами и престижными наградами." #: application/views/awards/iota/index.php:19 #, php-format @@ -3487,7 +3487,7 @@ msgstr "Дипломы POTA" #: application/views/awards/pota/index.php:8 msgid "Parks on the Air® (POTA) started in early 2017 when the ARRL's National Parks on the Air special event ended. A group of volunteers wanted to continue the fun beyond the one-year event, and thus, POTA was born." -msgstr "Дипломная программа Parks on the Air® (POTA) была создана в начале 2017 года, когда закончилось специальное мероприятие ARRL \"Национальные парки в эфире\". Группа волонтеров захотела продолжить веселье после окончания мероприятия, которое длилось один год, и так родилась POTA." +msgstr "Дипломная программа Parks on the Air® (POTA) была создана в начале 2017 года, когда закончилось специальное мероприятие ARRL 'Национальные парки в эфире'. Группа волонтеров захотела продолжить веселье после окончания мероприятия, которое длилось один год, и так родилась POTA." #: application/views/awards/pota/index.php:9 msgid "POTA works similarly to SOTA, with Activators and Hunters. For the awards, there are several categories based on the number of parks, geographic areas, and more." @@ -3518,7 +3518,7 @@ msgstr "Информация SIG" #: application/views/awards/sig/index.php:8 msgid "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog." -msgstr "SIG или Signature Category предоставляет возможность использовать любой вид \"Award Signature\" для дипломов, которые не реализованы в Wavelog." +msgstr "SIG или Signature Category предоставляет возможность использовать любой вид 'Award Signature' для дипломов, которые не реализованы в Wavelog." #: application/views/awards/sig/index.php:9 msgid "The reason for this is that the common ADIF format provides only a few dedicated fields for certain awards. SIG still makes it possible to use and evaluate all other types of signature markers." @@ -3526,7 +3526,7 @@ msgstr "Причина в том, что обычный формат ADIF пре #: application/views/awards/sig/index.php:10 msgid "In the QSO processing, you will find two fields: 'SIG' contains the actual marker, which is also visible in the award evaluation, and 'SIG INFO,' which contains a description of the signature. Both fields are freely customizable." -msgstr "При обработке QSO вы увидите два поля: \"SIG\" содержит фактическую метку, которая также видна при выполнении условий диплома, и \"SIG INFO\", содержащее описание подписи. Оба поля можно свободно настраивать." +msgstr "При обработке QSO вы увидите два поля: 'SIG' содержит фактическую метку, которая также видна при выполнении условий диплома, и 'SIG INFO', содержащее описание подписи. Оба поля можно свободно настраивать." #: application/views/awards/sig/index.php:21 msgid "Award Type" @@ -3584,7 +3584,7 @@ msgstr "SOTA (Summits On The Air) - это дипломная программа #: application/views/awards/sota/index.php:9 msgid "It is fully operational in nearly a hundred countries worldwide. Each country has its own Association that defines the recognized SOTA summits within that Association. Each summit earns the activators and chasers a score related to the height of the summit. Certificates are available for various scores, leading to the prestigious 'Mountain Goat' and 'Shack Sloth' trophies. An Honor Roll for Activators and Chasers is maintained in the SOTA online database." -msgstr "Она полностью функционирует почти в ста странах мира. В каждой стране есть своя Ассоциация, которая определяет признанные вершины SOTA в рамках этой Ассоциации. Каждая вершина приносит активаторам и охотникам баллы, зависящие от высоты вершины. За определённое количество баллов можно получить сертификаты, в том числе престижные трофеи \"Горный козел\" и \"Хижина ленивца\". Почетный список активаторов и преследователей ведется в онлайн-базе данных SOTA." +msgstr "Она полностью функционирует почти в ста странах мира. В каждой стране есть своя Ассоциация, которая определяет признанные вершины SOTA в рамках этой Ассоциации. Каждая вершина приносит активаторам и охотникам баллы, зависящие от высоты вершины. За определённое количество баллов можно получить сертификаты, в том числе престижные трофеи 'Горный козел' и 'Хижина ленивца'. Почетный список активаторов и преследователей ведется в онлайн-базе данных SOTA." #: application/views/awards/vucc/index.php:7 msgid "VUCC - VHF/UHF Century Club Award" @@ -3657,7 +3657,7 @@ msgstr "Диплом WAS" #: application/views/awards/was/index.php:19 msgid "ARRL's most popular award is the Worked All States Award. Thousands upon thousands of awards have been issued to hams around the world. In ARRL's 101st year, they have redesigned the certificates and the program in hopes of streamlining and improving the award program." -msgstr "Самый популярный диплом ARRL - это \"Worked All States Award\". Тысячи и тысячи дипломов были выданы радиолюбителям всего мира. В 101-й год существования ARRL изменила дизайн сертификатов и программы в надежде упростить и улучшить дипломную программу." +msgstr "Самый популярный диплом ARRL - это 'Worked All States Award'. Тысячи и тысячи дипломов были выданы радиолюбителям всего мира. В 101-й год существования ARRL изменила дизайн сертификатов и программы в надежде упростить и улучшить дипломную программу." #: application/views/awards/was/index.php:20 msgid "The WAS (Worked All States) Award is available to all amateurs worldwide who submit proof with written confirmation of contacts with each of the 50 states of the United States of America. Amateurs in the U.S. and its possessions must be members of ARRL to apply for a WAS. Applicants from outside the U.S. are exempt from this requirement." @@ -5285,7 +5285,7 @@ msgstr "Убедитесь, что поле 'eQSL QTH Nickname' установл #: application/views/eqsl/export.php:37 msgid "Clicking 'Upload QSOs' will send QSO information to eQSL.cc." -msgstr "Нажав кнопку \"Upload QSOs\", вы отправите информацию о QSO на сайт eQSL.cc." +msgstr "Нажав кнопку 'Upload QSOs', вы отправите информацию о QSO на сайт eQSL.cc." #: application/views/eqsl/export.php:46 msgid "The following QSOs were sent to eQSL." @@ -6654,7 +6654,7 @@ msgstr "Кликните правой кнопкой по выбранному #: application/views/lotw_views/upload_cert.php:24 msgid "Click 'Save Callsign Certificate File' and do not add a password" -msgstr "Нажмите \"Сохранить файл сертификата позывного\" и не добавляйте пароль" +msgstr "Нажмите 'Сохранить файл сертификата позывного' и не добавляйте пароль" #: application/views/lotw_views/upload_cert.php:25 msgid "Upload File below." @@ -7118,7 +7118,7 @@ msgstr "Ваш адрес электронной почты, по котором #: application/views/oqrs/notinlogform.php:40 msgid "Send not in log request" -msgstr "Отправить запрос \"не в журнале\"" +msgstr "Отправить запрос 'не в журнале'" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:29 @@ -7233,7 +7233,7 @@ msgstr "Открыть запрос" #: application/views/oqrs/showrequests.php:6 #: application/views/oqrs/showrequests.php:51 msgid "Not in log request" -msgstr "Запрос \"не в журнале\"" +msgstr "Запрос 'не в журнале'" #: application/views/oqrs/showrequests.php:7 #: application/views/oqrs/showrequests.php:52 @@ -8808,7 +8808,7 @@ msgstr "Допускаются только файлы PNG, соотношени #: application/views/themes/index.php:64 msgid "Place the two logo files in the folder 'assets/logo/'" -msgstr "Поместите два файла логотипа в папку \"assets/logo/\"" +msgstr "Поместите два файла логотипа в папку 'assets/logo/'" #: application/views/themes/index.php:70 msgid "4. Step" @@ -8816,7 +8816,7 @@ msgstr "4. Шаг" #: application/views/themes/index.php:73 msgid "Click here on 'Add a Theme' and type in the necessary data. Type in the filenames for the logos without the file extension '.png'" -msgstr "Кликните по \"Добавить тему\" и укажите необходимые данные. Укажите имена файлов для логотипов без расширения файла '.png'" +msgstr "Кликните по 'Добавить тему' и укажите необходимые данные. Укажите имена файлов для логотипов без расширения файла '.png'" #: application/views/themes/index.php:83 msgid "Foldername" @@ -8848,7 +8848,7 @@ msgstr "Позывных сработано (максимум 5)" #: application/views/timeplotter/index.php:10 msgid "The Timeplotter is used to analyze your logbook and find out at what times you worked certain CQ zones or DXCC countries on a selected band." -msgstr "\"Распределение времени\" используется для анализа вашего журнала и выяснения того, в какое время вы работали в определённых CQ-зонах или DXCC-странах на выбранном диапазоне." +msgstr "'Распределение времени' используется для анализа вашего журнала и выяснения того, в какое время вы работали в определённых CQ-зонах или DXCC-странах на выбранном диапазоне." #: application/views/update/index.php:8 msgid "DXCC Lookup Data" From 868139ae92784cb77eee9f1a303d19a6354d794d Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 3 Jul 2024 14:26:45 +0000 Subject: [PATCH 20/24] Run po_gen.sh script to update translation files --- assets/lang_src/messages.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index ade2fe542..46445f600 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-03 13:13+0000\n" +"POT-Creation-Date: 2024-07-03 14:26+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 1271d2a1c96b545e48bfe0c2b106109f734a3185 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Wed, 3 Jul 2024 16:43:23 +0200 Subject: [PATCH 21/24] refactored the getDataTablesLanguageUrl function --- application/views/interface_assets/footer.php | 33 ++++++++++++++-- application/views/visitor/layout/footer.php | 39 ++++++++++++++++--- 2 files changed, 63 insertions(+), 9 deletions(-) diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index 9b3e6613a..179e4dcb0 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -68,12 +68,39 @@ }); - + diff --git a/application/views/visitor/layout/footer.php b/application/views/visitor/layout/footer.php index 43bd5c205..03a92e196 100644 --- a/application/views/visitor/layout/footer.php +++ b/application/views/visitor/layout/footer.php @@ -20,6 +20,39 @@ var icon_dot_url = "assets/images/dot.png"; + + + + + + - From feb57a2be483e139777769fb3086a5d0a64c48b6 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Wed, 3 Jul 2024 17:44:35 +0200 Subject: [PATCH 22/24] fix language selection for other users --- application/views/user/edit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/views/user/edit.php b/application/views/user/edit.php index 0e58ca567..cd39557be 100644 --- a/application/views/user/edit.php +++ b/application/views/user/edit.php @@ -171,7 +171,7 @@ foreach ($existing_languages as $lang) { $options[$lang['folder']] = $lang['name_en']; } - echo form_dropdown('user_language', $options, $language['folder']); + echo form_dropdown('user_language', $options, $user_language); ?> From 441d8ea8d52f68291a00daf1a6f4966569ebe7b3 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 3 Jul 2024 17:31:05 +0000 Subject: [PATCH 23/24] Run po_gen.sh script to update translation files --- .../locale/bg_BG/LC_MESSAGES/messages.po | 28 +++++++++--------- .../locale/cs_CZ/LC_MESSAGES/messages.po | 28 +++++++++--------- .../locale/de_DE/LC_MESSAGES/messages.mo | Bin 166183 -> 166183 bytes .../locale/de_DE/LC_MESSAGES/messages.po | 28 +++++++++--------- .../locale/el_GR/LC_MESSAGES/messages.po | 28 +++++++++--------- .../locale/es_ES/LC_MESSAGES/messages.po | 28 +++++++++--------- .../locale/fi_FI/LC_MESSAGES/messages.po | 28 +++++++++--------- .../locale/fr_FR/LC_MESSAGES/messages.mo | Bin 45919 -> 45919 bytes .../locale/fr_FR/LC_MESSAGES/messages.po | 28 +++++++++--------- .../locale/it_IT/LC_MESSAGES/messages.po | 28 +++++++++--------- .../locale/nl_NL/LC_MESSAGES/messages.po | 28 +++++++++--------- .../locale/pl_PL/LC_MESSAGES/messages.po | 28 +++++++++--------- .../locale/ru_RU/LC_MESSAGES/messages.mo | Bin 208228 -> 208228 bytes .../locale/ru_RU/LC_MESSAGES/messages.po | 28 +++++++++--------- .../locale/sv_SE/LC_MESSAGES/messages.po | 28 +++++++++--------- .../locale/tr_TR/LC_MESSAGES/messages.po | 28 +++++++++--------- .../locale/zh_CN/LC_MESSAGES/messages.po | 28 +++++++++--------- assets/lang_src/messages.pot | 28 +++++++++--------- 18 files changed, 210 insertions(+), 210 deletions(-) diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index 6f1b73f4c..e3a53004e 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-03 06:10+0000\n" +"POT-Creation-Date: 2024-07-03 17:31+0000\n" "PO-Revision-Date: 2024-06-05 15:12+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -1243,7 +1243,7 @@ msgstr "" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:657 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 @@ -5471,31 +5471,31 @@ msgstr "" #: application/views/interface_assets/footer.php:33 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:211 +#: application/views/visitor/layout/footer.php:244 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:88 +#: application/views/interface_assets/footer.php:115 #: application/views/interface_assets/header.php:425 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:660 msgid "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. Check which DXCC for this particular location is the correct one. If you are sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1327 -#: application/views/interface_assets/footer.php:1331 -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1471 -#: application/views/interface_assets/footer.php:1475 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1354 +#: application/views/interface_assets/footer.php:1358 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1498 +#: application/views/interface_assets/footer.php:1502 +#: application/views/interface_assets/footer.php:1505 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1505 msgid "Total count" msgstr "" @@ -9544,7 +9544,7 @@ msgstr "Маркирайте QSL карта като поискана(Дирек msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:207 +#: application/views/visitor/layout/footer.php:240 msgid "CSV" msgstr "" diff --git a/application/locale/cs_CZ/LC_MESSAGES/messages.po b/application/locale/cs_CZ/LC_MESSAGES/messages.po index 1550d863b..772f13667 100644 --- a/application/locale/cs_CZ/LC_MESSAGES/messages.po +++ b/application/locale/cs_CZ/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-03 06:10+0000\n" +"POT-Creation-Date: 2024-07-03 17:31+0000\n" "PO-Revision-Date: 2024-06-25 13:16+0000\n" "Last-Translator: Ondřej Koloničný \n" "Language-Team: Czech \n" @@ -1245,7 +1245,7 @@ msgstr "Operátor" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:657 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 @@ -5475,31 +5475,31 @@ msgstr "" #: application/views/interface_assets/footer.php:33 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:211 +#: application/views/visitor/layout/footer.php:244 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:88 +#: application/views/interface_assets/footer.php:115 #: application/views/interface_assets/header.php:425 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:660 msgid "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. Check which DXCC for this particular location is the correct one. If you are sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1327 -#: application/views/interface_assets/footer.php:1331 -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1471 -#: application/views/interface_assets/footer.php:1475 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1354 +#: application/views/interface_assets/footer.php:1358 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1498 +#: application/views/interface_assets/footer.php:1502 +#: application/views/interface_assets/footer.php:1505 msgid "grid square" msgstr "lokátor" -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1505 msgid "Total count" msgstr "Celkový počet" @@ -9551,7 +9551,7 @@ msgstr "Označit QSL lístek jak odeslaný (Direct)" msgid "eQSL picture" msgstr "obrázek eQSL" -#: application/views/visitor/layout/footer.php:207 +#: application/views/visitor/layout/footer.php:240 msgid "CSV" msgstr "CSV" diff --git a/application/locale/de_DE/LC_MESSAGES/messages.mo b/application/locale/de_DE/LC_MESSAGES/messages.mo index 395e7d527660fc39944d54670c7b9140dd369645..6c176d566c071d97198859115a5ed9019db4de4f 100644 GIT binary patch delta 30 mcmZ2JiEH^Ju7)j)y=QpT%kuLS5_57=GxOB9&pgA}w+8^gF$}%{ delta 30 mcmZ2JiEH^Ju7)j)y=Qoo%JTCR5_57=GxL\n" "Language-Team: German \n" @@ -1248,7 +1248,7 @@ msgstr "Operator" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:657 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 @@ -5476,31 +5476,31 @@ msgstr "Nicht gearbeitet" #: application/views/interface_assets/footer.php:33 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:211 +#: application/views/visitor/layout/footer.php:244 msgid "Clear" msgstr "Zurücksetzen" -#: application/views/interface_assets/footer.php:88 +#: application/views/interface_assets/footer.php:115 #: application/views/interface_assets/header.php:425 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "Versionsinfo" -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:660 msgid "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. Check which DXCC for this particular location is the correct one. If you are sure, ignore this warning." msgstr "Stoppe hier für einen Moment. Das von dir gewählte DXCC ist abgelaufen und nicht mehr gültig. Überprüfe, welches das richtige DXCC für den Standort der Station ist. Als Beispiel: Deutschland ist nicht mehr 'Germany' sondern 'Federal Republic of Germany'. Wenn du dir sicher bist, ignoriere diese Warnung." -#: application/views/interface_assets/footer.php:1327 -#: application/views/interface_assets/footer.php:1331 -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1471 -#: application/views/interface_assets/footer.php:1475 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1354 +#: application/views/interface_assets/footer.php:1358 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1498 +#: application/views/interface_assets/footer.php:1502 +#: application/views/interface_assets/footer.php:1505 msgid "grid square" msgstr "Planquadrate" -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1505 msgid "Total count" msgstr "Summe" @@ -9552,7 +9552,7 @@ msgstr "Markiere QSL Karte als angefragt (Direkt)" msgid "eQSL picture" msgstr "eQSL Bild" -#: application/views/visitor/layout/footer.php:207 +#: application/views/visitor/layout/footer.php:240 msgid "CSV" msgstr "CSV" diff --git a/application/locale/el_GR/LC_MESSAGES/messages.po b/application/locale/el_GR/LC_MESSAGES/messages.po index 0f0b421bc..05c678f9a 100644 --- a/application/locale/el_GR/LC_MESSAGES/messages.po +++ b/application/locale/el_GR/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-03 06:10+0000\n" +"POT-Creation-Date: 2024-07-03 17:31+0000\n" "PO-Revision-Date: 2024-06-05 15:13+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -1243,7 +1243,7 @@ msgstr "Χειριστής" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:657 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 @@ -5471,31 +5471,31 @@ msgstr "" #: application/views/interface_assets/footer.php:33 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:211 +#: application/views/visitor/layout/footer.php:244 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:88 +#: application/views/interface_assets/footer.php:115 #: application/views/interface_assets/header.php:425 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:660 msgid "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. Check which DXCC for this particular location is the correct one. If you are sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1327 -#: application/views/interface_assets/footer.php:1331 -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1471 -#: application/views/interface_assets/footer.php:1475 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1354 +#: application/views/interface_assets/footer.php:1358 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1498 +#: application/views/interface_assets/footer.php:1502 +#: application/views/interface_assets/footer.php:1505 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1505 msgid "Total count" msgstr "" @@ -9544,7 +9544,7 @@ msgstr "Σημείωση QSL ζητήθηκε (Απευθείας)" msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:207 +#: application/views/visitor/layout/footer.php:240 msgid "CSV" msgstr "" diff --git a/application/locale/es_ES/LC_MESSAGES/messages.po b/application/locale/es_ES/LC_MESSAGES/messages.po index 506f1bb95..17874d0d5 100644 --- a/application/locale/es_ES/LC_MESSAGES/messages.po +++ b/application/locale/es_ES/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-03 06:10+0000\n" +"POT-Creation-Date: 2024-07-03 17:31+0000\n" "PO-Revision-Date: 2024-06-28 20:16+0000\n" "Last-Translator: CieNTi \n" "Language-Team: Spanish \n" @@ -1244,7 +1244,7 @@ msgstr "Operador" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:657 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 @@ -5472,31 +5472,31 @@ msgstr "No logrados" #: application/views/interface_assets/footer.php:33 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:211 +#: application/views/visitor/layout/footer.php:244 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:88 +#: application/views/interface_assets/footer.php:115 #: application/views/interface_assets/header.php:425 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "Información de Versión" -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:660 msgid "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. Check which DXCC for this particular location is the correct one. If you are sure, ignore this warning." msgstr "Deténgase un momento. El DXCC escogido está desactualizado y ya no es válido. Revise cuál DXCC es el correcto para su localización particular. Si está totalmente seguro, ignore esta advertencia." -#: application/views/interface_assets/footer.php:1327 -#: application/views/interface_assets/footer.php:1331 -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1471 -#: application/views/interface_assets/footer.php:1475 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1354 +#: application/views/interface_assets/footer.php:1358 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1498 +#: application/views/interface_assets/footer.php:1502 +#: application/views/interface_assets/footer.php:1505 msgid "grid square" msgstr "grid squares" -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1505 msgid "Total count" msgstr "Cuenta total" @@ -9545,7 +9545,7 @@ msgstr "Marcar QSL como Solicitada (Directa)" msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:207 +#: application/views/visitor/layout/footer.php:240 msgid "CSV" msgstr "" diff --git a/application/locale/fi_FI/LC_MESSAGES/messages.po b/application/locale/fi_FI/LC_MESSAGES/messages.po index df7f03ded..e83d001d5 100644 --- a/application/locale/fi_FI/LC_MESSAGES/messages.po +++ b/application/locale/fi_FI/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-03 06:10+0000\n" +"POT-Creation-Date: 2024-07-03 17:31+0000\n" "PO-Revision-Date: 2024-06-05 15:14+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -1243,7 +1243,7 @@ msgstr "" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:657 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 @@ -5471,31 +5471,31 @@ msgstr "" #: application/views/interface_assets/footer.php:33 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:211 +#: application/views/visitor/layout/footer.php:244 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:88 +#: application/views/interface_assets/footer.php:115 #: application/views/interface_assets/header.php:425 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:660 msgid "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. Check which DXCC for this particular location is the correct one. If you are sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1327 -#: application/views/interface_assets/footer.php:1331 -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1471 -#: application/views/interface_assets/footer.php:1475 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1354 +#: application/views/interface_assets/footer.php:1358 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1498 +#: application/views/interface_assets/footer.php:1502 +#: application/views/interface_assets/footer.php:1505 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1505 msgid "Total count" msgstr "" @@ -9544,7 +9544,7 @@ msgstr "Merkitse QSL-kortti pyydetyksi (Direct)" msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:207 +#: application/views/visitor/layout/footer.php:240 msgid "CSV" msgstr "" diff --git a/application/locale/fr_FR/LC_MESSAGES/messages.mo b/application/locale/fr_FR/LC_MESSAGES/messages.mo index 61b51fd7de53f915120cadef64a50177535e6e89..e866ae824c375e6de06951bc9cf994f68759e7eb 100644 GIT binary patch delta 185 zcmccrjOqR}rVWL4TK_7o\n" "Language-Team: French \n" @@ -1244,7 +1244,7 @@ msgstr "Opérateur" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:657 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 @@ -5472,31 +5472,31 @@ msgstr "Non réalisés" #: application/views/interface_assets/footer.php:33 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:211 +#: application/views/visitor/layout/footer.php:244 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:88 +#: application/views/interface_assets/footer.php:115 #: application/views/interface_assets/header.php:425 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:660 msgid "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. Check which DXCC for this particular location is the correct one. If you are sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1327 -#: application/views/interface_assets/footer.php:1331 -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1471 -#: application/views/interface_assets/footer.php:1475 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1354 +#: application/views/interface_assets/footer.php:1358 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1498 +#: application/views/interface_assets/footer.php:1502 +#: application/views/interface_assets/footer.php:1505 msgid "grid square" msgstr "Grilles des Locators" -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1505 msgid "Total count" msgstr "Total" @@ -9545,7 +9545,7 @@ msgstr "Marquer Carte QSL comme demandé (Direct)" msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:207 +#: application/views/visitor/layout/footer.php:240 msgid "CSV" msgstr "" diff --git a/application/locale/it_IT/LC_MESSAGES/messages.po b/application/locale/it_IT/LC_MESSAGES/messages.po index d7ecfc081..a75815ec6 100644 --- a/application/locale/it_IT/LC_MESSAGES/messages.po +++ b/application/locale/it_IT/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-03 06:10+0000\n" +"POT-Creation-Date: 2024-07-03 17:31+0000\n" "PO-Revision-Date: 2024-06-05 12:34\n" "Last-Translator: \n" "Language-Team: Italian\n" @@ -1242,7 +1242,7 @@ msgstr "Operatore" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:657 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 @@ -5470,31 +5470,31 @@ msgstr "" #: application/views/interface_assets/footer.php:33 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:211 +#: application/views/visitor/layout/footer.php:244 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:88 +#: application/views/interface_assets/footer.php:115 #: application/views/interface_assets/header.php:425 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:660 msgid "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. Check which DXCC for this particular location is the correct one. If you are sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1327 -#: application/views/interface_assets/footer.php:1331 -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1471 -#: application/views/interface_assets/footer.php:1475 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1354 +#: application/views/interface_assets/footer.php:1358 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1498 +#: application/views/interface_assets/footer.php:1502 +#: application/views/interface_assets/footer.php:1505 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1505 msgid "Total count" msgstr "" @@ -9543,7 +9543,7 @@ msgstr "Segna QSL come richiesto (Diretta)" msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:207 +#: application/views/visitor/layout/footer.php:240 msgid "CSV" msgstr "" diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.po b/application/locale/nl_NL/LC_MESSAGES/messages.po index 1f5fc1da3..e12bcf236 100644 --- a/application/locale/nl_NL/LC_MESSAGES/messages.po +++ b/application/locale/nl_NL/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-03 06:10+0000\n" +"POT-Creation-Date: 2024-07-03 17:31+0000\n" "PO-Revision-Date: 2024-06-05 15:15+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -1243,7 +1243,7 @@ msgstr "" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:657 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 @@ -5471,31 +5471,31 @@ msgstr "" #: application/views/interface_assets/footer.php:33 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:211 +#: application/views/visitor/layout/footer.php:244 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:88 +#: application/views/interface_assets/footer.php:115 #: application/views/interface_assets/header.php:425 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:660 msgid "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. Check which DXCC for this particular location is the correct one. If you are sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1327 -#: application/views/interface_assets/footer.php:1331 -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1471 -#: application/views/interface_assets/footer.php:1475 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1354 +#: application/views/interface_assets/footer.php:1358 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1498 +#: application/views/interface_assets/footer.php:1502 +#: application/views/interface_assets/footer.php:1505 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1505 msgid "Total count" msgstr "" @@ -9544,7 +9544,7 @@ msgstr "Markeer QSL Kort anmodet om (Direct)" msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:207 +#: application/views/visitor/layout/footer.php:240 msgid "CSV" msgstr "" diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.po b/application/locale/pl_PL/LC_MESSAGES/messages.po index 1eaf02ab4..2806aaabc 100644 --- a/application/locale/pl_PL/LC_MESSAGES/messages.po +++ b/application/locale/pl_PL/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-03 06:10+0000\n" +"POT-Creation-Date: 2024-07-03 17:31+0000\n" "PO-Revision-Date: 2024-06-05 15:16+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -1244,7 +1244,7 @@ msgstr "" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:657 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 @@ -5474,31 +5474,31 @@ msgstr "" #: application/views/interface_assets/footer.php:33 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:211 +#: application/views/visitor/layout/footer.php:244 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:88 +#: application/views/interface_assets/footer.php:115 #: application/views/interface_assets/header.php:425 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:660 msgid "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. Check which DXCC for this particular location is the correct one. If you are sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1327 -#: application/views/interface_assets/footer.php:1331 -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1471 -#: application/views/interface_assets/footer.php:1475 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1354 +#: application/views/interface_assets/footer.php:1358 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1498 +#: application/views/interface_assets/footer.php:1502 +#: application/views/interface_assets/footer.php:1505 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1505 msgid "Total count" msgstr "" @@ -9550,7 +9550,7 @@ msgstr "Zaznacz QSL zgodnie z żądaniem (Bezpośredni)" msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:207 +#: application/views/visitor/layout/footer.php:240 msgid "CSV" msgstr "" diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.mo b/application/locale/ru_RU/LC_MESSAGES/messages.mo index bdf986fe329e6f06b204d204ed57c8ac1d939a43..35a430637c429b98c9b38e83c419d44051273c1e 100644 GIT binary patch delta 537 zcmZ`$&ubG=5O!u;FeMU~wpg*$cTlF1l29*RyEZ7fxRzK6h=mOeMF>slwiFL3+2&@2 zDng%l5Iq=ALYpQ&wM}~y1P`-W} z@c42s<+3+PUytGQzQ|PBTQ^)X-59>;wTXAaYFOg~K2TZrjzfAQfp=|E{GMCk8t-#k zUW3f91dhU4`YXIgCS~Jv&j|4|-VdwX4%hjk;!jdyxW&67^Ffh*J%|^ioAw}Pk|MDg z)}mbA;@xnajO`#EI;{n6Z0!ME@6>sG*&<$yxChXI1XO+`K0%ERrrX@Tcgn{=h4uAM9WyI>7NB%H~b7 kjb94lM)x=^<20q`4IO@mem$nFsxZ-Q{$)nYv9gNs6Y{Lu0ssI2 delta 537 zcmZ`$&ubG=5O!u;FcOJNTdY{>V^CU2NzjYet_?~qt|e9iVqrr=DTJnUTf{?3*4(U6 zMd%X`q6gziXw$@}wrOudp@&()OAlU>KS8`$sIw;#@$mR&=9~H6{OBIWyNB^=6Dk3a zUJ2kVkXa94@}juUD%hugy@jh{r|RGcEY#tgz~ef6IZaawrLs4pCUdS&=KedFjtMpG zCC239vhI&YilJ+{_O2K9a zo?PmsT=pjE>oI(BDl%2})(w|TH-;~JZQ`x48rFD^_f*!sO?v<{Ns(9& zYf&z5@OHRL#&&ST8YBs{6gTAKKQy<<+|HoeFT=gg;}sG4n#XIHAkX)UOMbdko-L>8 zgbrRozZtuSMjlyREU^O_F7L7yH|R#lkjHvcli=2%(9_;1Vi*!}\n" "Language-Team: Russian \n" @@ -1245,7 +1245,7 @@ msgstr "Оператор" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:657 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 @@ -5475,31 +5475,31 @@ msgstr "Не сработано" #: application/views/interface_assets/footer.php:33 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:211 +#: application/views/visitor/layout/footer.php:244 msgid "Clear" msgstr "Очистить" -#: application/views/interface_assets/footer.php:88 +#: application/views/interface_assets/footer.php:115 #: application/views/interface_assets/header.php:425 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "Информация о версии" -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:660 msgid "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. Check which DXCC for this particular location is the correct one. If you are sure, ignore this warning." msgstr "Остановитесь на мгновение. Выбранный вами DXCC устарел и больше не действителен. Проверьте, какой DXCC для данного конкретного места является правильным. Если вы уверены, проигнорируйте это предупреждение." -#: application/views/interface_assets/footer.php:1327 -#: application/views/interface_assets/footer.php:1331 -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1471 -#: application/views/interface_assets/footer.php:1475 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1354 +#: application/views/interface_assets/footer.php:1358 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1498 +#: application/views/interface_assets/footer.php:1502 +#: application/views/interface_assets/footer.php:1505 msgid "grid square" msgstr "квадрат(/-а/-ов)" -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1505 msgid "Total count" msgstr "Всего" @@ -9554,7 +9554,7 @@ msgstr "Отметить запрос QSL-карточки (напрямую)" msgid "eQSL picture" msgstr "изображение eQSL-карточки" -#: application/views/visitor/layout/footer.php:207 +#: application/views/visitor/layout/footer.php:240 msgid "CSV" msgstr "CSV" diff --git a/application/locale/sv_SE/LC_MESSAGES/messages.po b/application/locale/sv_SE/LC_MESSAGES/messages.po index 28d60d34e..03009f516 100644 --- a/application/locale/sv_SE/LC_MESSAGES/messages.po +++ b/application/locale/sv_SE/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-03 06:10+0000\n" +"POT-Creation-Date: 2024-07-03 17:31+0000\n" "PO-Revision-Date: 2024-06-05 15:19+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -1243,7 +1243,7 @@ msgstr "Operatör" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:657 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 @@ -5471,31 +5471,31 @@ msgstr "" #: application/views/interface_assets/footer.php:33 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:211 +#: application/views/visitor/layout/footer.php:244 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:88 +#: application/views/interface_assets/footer.php:115 #: application/views/interface_assets/header.php:425 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:660 msgid "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. Check which DXCC for this particular location is the correct one. If you are sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1327 -#: application/views/interface_assets/footer.php:1331 -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1471 -#: application/views/interface_assets/footer.php:1475 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1354 +#: application/views/interface_assets/footer.php:1358 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1498 +#: application/views/interface_assets/footer.php:1502 +#: application/views/interface_assets/footer.php:1505 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1505 msgid "Total count" msgstr "Totalt antal" @@ -9544,7 +9544,7 @@ msgstr "Ange QSL Karta Begärda (Direkt)" msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:207 +#: application/views/visitor/layout/footer.php:240 msgid "CSV" msgstr "" diff --git a/application/locale/tr_TR/LC_MESSAGES/messages.po b/application/locale/tr_TR/LC_MESSAGES/messages.po index 9c4ec493e..48c8b8faf 100644 --- a/application/locale/tr_TR/LC_MESSAGES/messages.po +++ b/application/locale/tr_TR/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-03 06:10+0000\n" +"POT-Creation-Date: 2024-07-03 17:31+0000\n" "PO-Revision-Date: 2024-06-05 15:20+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -1243,7 +1243,7 @@ msgstr "Operatör" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:657 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 @@ -5471,31 +5471,31 @@ msgstr "" #: application/views/interface_assets/footer.php:33 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:211 +#: application/views/visitor/layout/footer.php:244 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:88 +#: application/views/interface_assets/footer.php:115 #: application/views/interface_assets/header.php:425 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:660 msgid "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. Check which DXCC for this particular location is the correct one. If you are sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1327 -#: application/views/interface_assets/footer.php:1331 -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1471 -#: application/views/interface_assets/footer.php:1475 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1354 +#: application/views/interface_assets/footer.php:1358 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1498 +#: application/views/interface_assets/footer.php:1502 +#: application/views/interface_assets/footer.php:1505 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1505 msgid "Total count" msgstr "" @@ -9544,7 +9544,7 @@ msgstr "QSL'i gerektiği gibi işaretleyin" msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:207 +#: application/views/visitor/layout/footer.php:240 msgid "CSV" msgstr "" diff --git a/application/locale/zh_CN/LC_MESSAGES/messages.po b/application/locale/zh_CN/LC_MESSAGES/messages.po index a82d22241..46fd05052 100644 --- a/application/locale/zh_CN/LC_MESSAGES/messages.po +++ b/application/locale/zh_CN/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-03 06:10+0000\n" +"POT-Creation-Date: 2024-07-03 17:31+0000\n" "PO-Revision-Date: 2024-07-01 05:27+0000\n" "Last-Translator: Karuru \n" "Language-Team: Chinese (Simplified) \n" @@ -1243,7 +1243,7 @@ msgstr "操作员" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:657 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 @@ -5469,31 +5469,31 @@ msgstr "未通联" #: application/views/interface_assets/footer.php:33 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:211 +#: application/views/visitor/layout/footer.php:244 msgid "Clear" msgstr "清除" -#: application/views/interface_assets/footer.php:88 +#: application/views/interface_assets/footer.php:115 #: application/views/interface_assets/header.php:425 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "版本信息" -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:660 msgid "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. Check which DXCC for this particular location is the correct one. If you are sure, ignore this warning." msgstr "请稍等,您选择的 DXCC 已经失效,请确认最新的 DXCC 实体,如果您十分确认,请忽略该警告。" -#: application/views/interface_assets/footer.php:1327 -#: application/views/interface_assets/footer.php:1331 -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1471 -#: application/views/interface_assets/footer.php:1475 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1354 +#: application/views/interface_assets/footer.php:1358 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1498 +#: application/views/interface_assets/footer.php:1502 +#: application/views/interface_assets/footer.php:1505 msgid "grid square" msgstr "网格" -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1505 msgid "Total count" msgstr "总数" @@ -9539,7 +9539,7 @@ msgstr "标记 已请求卡片(直邮)" msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:207 +#: application/views/visitor/layout/footer.php:240 msgid "CSV" msgstr "" diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index 46445f600..d8befcf23 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-03 14:26+0000\n" +"POT-Creation-Date: 2024-07-03 17:31+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1243,7 +1243,7 @@ msgstr "" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:657 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:154 #: application/views/lookup/index.php:31 @@ -5471,31 +5471,31 @@ msgstr "" #: application/views/interface_assets/footer.php:33 #: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:211 +#: application/views/visitor/layout/footer.php:244 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:88 +#: application/views/interface_assets/footer.php:115 #: application/views/interface_assets/header.php:425 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:660 msgid "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. Check which DXCC for this particular location is the correct one. If you are sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1327 -#: application/views/interface_assets/footer.php:1331 -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1471 -#: application/views/interface_assets/footer.php:1475 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1354 +#: application/views/interface_assets/footer.php:1358 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1498 +#: application/views/interface_assets/footer.php:1502 +#: application/views/interface_assets/footer.php:1505 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1334 -#: application/views/interface_assets/footer.php:1478 +#: application/views/interface_assets/footer.php:1361 +#: application/views/interface_assets/footer.php:1505 msgid "Total count" msgstr "" @@ -9544,7 +9544,7 @@ msgstr "" msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:207 +#: application/views/visitor/layout/footer.php:240 msgid "CSV" msgstr "" From afbe1b6ebff823ce31f9c5801ce620a97414c31e Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 4 Jul 2024 05:23:29 +0000 Subject: [PATCH 24/24] Run po_gen.sh script to update translation files --- assets/lang_src/messages.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index d8befcf23..22f7368e2 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-03 17:31+0000\n" +"POT-Creation-Date: 2024-07-04 05:23+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n"