From 4fc175c0fbd0395dd7162729ea268f8201f22105 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Mon, 11 Nov 2024 20:25:59 +0100 Subject: [PATCH 01/35] fixed a bug in simplefle and added cache clearing --- application/controllers/Simplefle.php | 14 ++++++++++---- application/views/simplefle/index.php | 1 + assets/js/sections/simplefle.js | 14 +++++++++----- 3 files changed, 20 insertions(+), 9 deletions(-) diff --git a/application/controllers/Simplefle.php b/application/controllers/Simplefle.php index 1d60686b8..261d662eb 100644 --- a/application/controllers/Simplefle.php +++ b/application/controllers/Simplefle.php @@ -87,11 +87,11 @@ class SimpleFLE extends CI_Controller { $one_result = $this->logbook_model->import($qso, $qso['station_id']); // if the returner is not empty we have an error and should log it - if ($result != '' && strpos(json_encode($one_result), 'Duplicate for') == false) { - log_message('error', 'SimpleFLE, save_qsos(); For QSO: ' . $qso['call'] . ' on ' . $qso['qso_date'] . ' Error: ' . json_encode($result)); + if (json_encode($result) != '[]' && strpos(json_encode($one_result), __("Duplicate for")) == false) { + log_message('error', 'SimpleFLE, save_qsos(); For QSO: ' . $qso['call'] . ' on ' . $qso['qso_date'] . ' Error: ' . json_encode($one_result)); } - if (strpos(json_encode($one_result), 'Duplicate for') !== false) { - log_message('debug', 'SimpleFLE, save_qsos(); For QSO: ' . $qso['call'] . ' on ' . $qso['qso_date'] . ' Warning: ' . json_encode($result)); + if (strpos(json_encode($one_result), __("Duplicate for")) !== false) { + log_message('debug', 'SimpleFLE, save_qsos(); For QSO: ' . $qso['call'] . ' on ' . $qso['qso_date'] . ' Warning: ' . json_encode($one_result)); } if ($one_result != '') { @@ -99,6 +99,12 @@ class SimpleFLE extends CI_Controller { } } + // Also clean up static map images + if (!$this->load->is_loaded('staticmap_model')) { + $this->load->model('staticmap_model'); + } + $this->staticmap_model->remove_static_map_image($qso['station_id']); + if (empty($result)) { echo "success"; } else { diff --git a/application/views/simplefle/index.php b/application/views/simplefle/index.php index 26a832ae9..552a62b63 100644 --- a/application/views/simplefle/index.php +++ b/application/views/simplefle/index.php @@ -37,6 +37,7 @@ var lang_qso_simplefle_success_save_to_log = ""; var lang_qso_simplefle_error_save_to_log_header = ""; var lang_qso_simplefle_error_save_to_log = ""; + var lang_duplicate_for = "";

diff --git a/assets/js/sections/simplefle.js b/assets/js/sections/simplefle.js index eb1999aca..6c9d1f3c4 100644 --- a/assets/js/sections/simplefle.js +++ b/assets/js/sections/simplefle.js @@ -912,7 +912,7 @@ $(".js-save-to-log").click(function () { btnOKClass: "btn-info", callback: function (result) { if (result) { - var wait_dialog = BootstrapDialog.show({ + const wait_dialog = BootstrapDialog.show({ title: lang_general_word_please_wait, message: '
', closable: false, @@ -977,8 +977,7 @@ $(".js-save-to-log").click(function () { type: "post", data: { qsos: JSON.stringify(qsos) }, success: function (result) { - wait_dialog.close(); - if (result == 'success' || result.includes("Duplicate for")) { + if (result == 'success' || result.includes(lang_duplicate_for)) { BootstrapDialog.alert({ title: lang_qso_simplefle_success_save_to_log_header, message: lang_qso_simplefle_success_save_to_log, @@ -986,27 +985,32 @@ $(".js-save-to-log").click(function () { btnOKLabel: lang_general_word_ok, btnOKClass: "btn-info", callback: function (result) { + wait_dialog.close(); clearSession(); } }); } else { - wait_dialog.close(); BootstrapDialog.alert({ title: lang_general_word_error, message: lang_qso_simplefle_error_save_to_log + "

" + JSON.stringify(result) + "
", size: BootstrapDialog.SIZE_WIDE, type: BootstrapDialog.TYPE_DANGER, + callback: function (result) { + wait_dialog.close(); + } }); console.error(result); } }, error: function (result) { - wait_dialog.close(); BootstrapDialog.alert({ title: lang_general_word_error, message: lang_qso_simplefle_error_save_to_log + "

" + JSON.stringify(result) + "
", size: BootstrapDialog.SIZE_WIDE, type: BootstrapDialog.TYPE_DANGER, + callback: function (result) { + wait_dialog.close(); + } }); console.error(result); }, From b2826377fc7d207fabb7b9116c64a66b761c7aa2 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Mon, 11 Nov 2024 20:33:17 +0100 Subject: [PATCH 02/35] make sure the cache clearing does not run more often then needed --- application/controllers/Adif.php | 6 ------ application/controllers/Station.php | 2 +- application/models/Logbook_model.php | 14 ++++++++------ 3 files changed, 9 insertions(+), 13 deletions(-) diff --git a/application/controllers/Adif.php b/application/controllers/Adif.php index 7ead333e8..5c90e35ef 100644 --- a/application/controllers/Adif.php +++ b/application/controllers/Adif.php @@ -256,12 +256,6 @@ class adif extends CI_Controller { $custom_errors=__("Station Profile not valid for User"); } - // Lets clean up static maps cache for this station - if (!$this->load->is_loaded('staticmap_model')) { - $this->load->model('staticmap_model'); - } - $this->staticmap_model->remove_static_map_image($this->input->post('station_profile', TRUE)); - log_message("Error","ADIF End"); $data['adif_errors'] = $custom_errors; $data['skip_dupes'] = $this->input->post('skipDuplicate'); diff --git a/application/controllers/Station.php b/application/controllers/Station.php index 8c509b90c..f7afddada 100644 --- a/application/controllers/Station.php +++ b/application/controllers/Station.php @@ -60,7 +60,7 @@ class Station extends CI_Controller if ($this->stations->edit()) { $data['notice'] = __("Station Location") . $this->security->xss_clean($this->input->post('station_profile_name', true)) . " Updated"; } - // Also clean up static map images first + // Also clean up static map images if (!$this->load->is_loaded('staticmap_model')) { $this->load->model('staticmap_model'); } diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index c70d6c084..9362d1a2c 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -3659,6 +3659,14 @@ class Logbook_model extends CI_Model { } } } + + // if there are any static map images for this station, remove them so they can be regenerated + if (!$this->load->is_loaded('staticmap_model')) { + $this->load->model('staticmap_model'); + } + $this->staticmap_model->remove_static_map_image($station_id); + log_message('error', 'Cache-Clearing called in ' . $this->router->class.'_'.$this->router->method); + $records = ''; gc_collect_cycles(); if (count($a_qsos) > 0) { @@ -4373,12 +4381,6 @@ class Logbook_model extends CI_Model { } else { $this->add_qso($data, $skipexport); } - - // if there are any static map images for this station, remove them so they can be regenerated - if (!$this->load->is_loaded('staticmap_model')) { - $this->load->model('staticmap_model'); - } - $this->staticmap_model->remove_static_map_image($station_id); } else { $my_error .= "Date/Time: " . ($time_on ?? 'N/A') . " Callsign: " . ($record['call'] ?? 'N/A') . " Band: " . ($band ?? 'N/A') . " ".__("Duplicate for")." ". ($station_profile_call ?? 'N/A') . "
"; From c1cdd189f57fe74b4481433278f9d74ce5b1d1ec Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Mon, 11 Nov 2024 21:45:12 +0100 Subject: [PATCH 03/35] show qrg unit based on band --- application/controllers/User_options.php | 8 ++++++++ application/views/qso/index.php | 5 ++++- assets/js/sections/qso.js | 23 +++++++++++++++++++++++ 3 files changed, 35 insertions(+), 1 deletion(-) diff --git a/application/controllers/User_options.php b/application/controllers/User_options.php index 3312ea4b5..cfe7222b5 100644 --- a/application/controllers/User_options.php +++ b/application/controllers/User_options.php @@ -50,6 +50,14 @@ class User_Options extends CI_Controller { public function dismissVersionDialog() { $this->user_options_model->set_option('version_dialog', 'confirmed', array('boolean' => 'true')); } + + public function get_qrg_unit() { + $band = $this->input->post('band', true); + $this->load->library('frequency'); + $unit = $this->frequency->qrg_unit($band); + header('Content-Type: application/json'); + echo json_encode($unit); + } } diff --git a/application/views/qso/index.php b/application/views/qso/index.php index d99dc2fac..99fe2a3f8 100644 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -170,7 +170,10 @@
- +
+ + +
diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js index ae6dacf8c..e214187c5 100644 --- a/assets/js/sections/qso.js +++ b/assets/js/sections/qso.js @@ -1177,11 +1177,33 @@ function testTimeOffConsistency() { return true; } +function set_qrg_unit(band) { + $.ajax({ + url: base_url + 'index.php/user_options/get_qrg_unit', + type: 'post', + data: { + band: $('#band').val(), + }, + success: function (data) { + $("#qrg_unit").html(data); + }, + error: function () { + $("#qrg_unit").html('n/a'); + }, + }); +} + +$('#band').on('change', function () { + set_qrg_unit($(this).val()); +}); + $(document).ready(function () { clearTimeout(); set_timers(); updateStateDropdown('#dxcc_id', '#stateInputLabel', '#location_us_county', '#stationCntyInputQso'); + set_qrg_unit($('#band').val()); + $("#locator").popover({ placement: 'top', title: 'Gridsquare Formatting', content: "Enter multiple (4-digit) grids separated with commas. For example: IO77,IO78" }) .focus(function () { $('#locator').popover('show'); @@ -1401,6 +1423,7 @@ $(document).ready(function () { $.get(base_url + 'index.php/qso/band_to_freq/' + $('#band').val() + '/' + $('.mode').val(), function (result) { $('#frequency').val(result); $('#frequency_rx').val(""); + set_qrg_unit($('#band').val()); }); } From b56e9ff17b05c4a6377a725af246c544f99c2e24 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Tue, 12 Nov 2024 00:46:20 +0100 Subject: [PATCH 04/35] make the qrg input dynamic --- application/views/interface_assets/footer.php | 1 + application/views/qso/index.php | 3 +- assets/js/sections/qso.js | 95 ++++++++++++++++--- 3 files changed, 87 insertions(+), 12 deletions(-) diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index 48b1187c4..bb05e0690 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -1209,6 +1209,7 @@ $($('#callsign')).on('keypress',function(e) { $(".radio_login_error" ).remove(); } cat2UI($('#frequency'),data.frequency,false,true,function(d){ + $('#frequency').trigger('change'); if ($("#band").val() != frequencyToBand(d)) { $("#band").val(frequencyToBand(d)).trigger('change'); // Let's only change if we really have a different band! } diff --git a/application/views/qso/index.php b/application/views/qso/index.php index 99fe2a3f8..c4b982f35 100644 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -171,9 +171,10 @@
- +
+
diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js index e214187c5..c69fb654b 100644 --- a/assets/js/sections/qso.js +++ b/assets/js/sections/qso.js @@ -201,7 +201,7 @@ $(document).on("click", "#fav_recall", function (event) { $('#band_rx').val(favs[this.innerText].band_rx); $('#band').val(favs[this.innerText].band); $('#frequency_rx').val(favs[this.innerText].frequency_rx); - $('#frequency').val(favs[this.innerText].frequency); + $('#frequency').val(favs[this.innerText].frequency).trigger("change"); $('#selectPropagation').val(favs[this.innerText].prop_mode); $('#mode').val(favs[this.innerText].mode).on("change"); }); @@ -284,7 +284,7 @@ bc.onmessage = function (ev) { } setTimeout(() => { if (ev.data.frequency != null) { - $('#frequency').val(ev.data.frequency); + $('#frequency').val(ev.data.frequency).trigger("change"); $("#band").val(frequencyToBand(ev.data.frequency)); } if (ev.data.frequency_rx != "") { @@ -868,7 +868,7 @@ $('#start_date').on('change', function () { $('.mode').on('change', function () { if ($('#radio').val() == 0) { $.get(base_url + 'index.php/qso/band_to_freq/' + $('#band').val() + '/' + $('.mode').val(), function (result) { - $('#frequency').val(result); + $('#frequency').val(result).trigger("change"); }); } $('#frequency_rx').val(""); @@ -879,7 +879,7 @@ $('.mode').on('change', function () { $('#band').on('change', function () { if ($('#radio').val() == 0) { $.get(base_url + 'index.php/qso/band_to_freq/' + $(this).val() + '/' + $('.mode').val(), function (result) { - $('#frequency').val(result); + $('#frequency').val(result).trigger("change"); }); } $('#frequency_rx').val(""); @@ -887,6 +887,7 @@ $('#band').on('change', function () { $("#selectPropagation").val(""); $("#sat_name").val(""); $("#sat_mode").val(""); + set_qrg(); }); /* On Key up Calculate Bearing and Distance */ @@ -1177,32 +1178,104 @@ function testTimeOffConsistency() { return true; } -function set_qrg_unit(band) { +function set_qrg() { + + frequency = $('#frequency').val(); + band = $('#band').val(); + + console.log(frequency, band); + $.ajax({ url: base_url + 'index.php/user_options/get_qrg_unit', type: 'post', data: { - band: $('#band').val(), + band: band, }, success: function (data) { $("#qrg_unit").html(data); + + if (data == 'Hz') { + $("#freq_calculated").val(frequency); + } else if (data == 'kHz') { + $("#freq_calculated").val(frequency / 1000); + } else if (data == 'MHz') { + $("#freq_calculated").val(frequency / 1000000); + } else if (data == 'GHz') { + $("#freq_calculated").val(frequency / 1000000000); + } }, error: function () { $("#qrg_unit").html('n/a'); + $("#freq_calculated").val('0'); }, }); } -$('#band').on('change', function () { - set_qrg_unit($(this).val()); +$('#frequency').on('change', function () { + set_qrg(); }); +$('#freq_calculated').on('keydown', function (e) { + if (e.which === 13) { + e.preventDefault(); + + let new_qrg = $('#freq_calculated').val().trim(); + let parsed_qrg = parseFloat(new_qrg); + let unit = $('#qrg_unit').html(); + + // check if the input contains a unit and parse the qrg + if (/^\d+(\.\d+)?\s*hz$/i.test(new_qrg)) { + unit = 'Hz'; + parsed_qrg = parseFloat(new_qrg); + } else if (/^\d+(\.\d+)?\s*khz$/i.test(new_qrg)) { + unit = 'kHz'; + parsed_qrg = parseFloat(new_qrg); + } else if (/^\d+(\.\d+)?\s*mhz$/i.test(new_qrg)) { + unit = 'MHz'; + parsed_qrg = parseFloat(new_qrg); + } else if (/^\d+(\.\d+)?\s*ghz$/i.test(new_qrg)) { + unit = 'GHz'; + parsed_qrg = parseFloat(new_qrg); + } + + // update the unit if there was any change + $('#qrg_unit').html(unit); + + // calculate the other stuff + let qrg_hz; + switch (unit) { + case 'Hz': + qrg_hz = parsed_qrg; + break; + case 'kHz': + qrg_hz = parsed_qrg * 1000; + break; + case 'MHz': + qrg_hz = parsed_qrg * 1000000; + break; + case 'GHz': + qrg_hz = parsed_qrg * 1000000000; + break; + default: + qrg_hz = 0; + console.error('Invalid unit'); + } + + $('#frequency').val(qrg_hz); + $('#freq_calculated').val(parsed_qrg); + $('#band').val(frequencyToBand(qrg_hz)); + + $("#callsign").trigger("focus"); + } +}); + + $(document).ready(function () { clearTimeout(); set_timers(); updateStateDropdown('#dxcc_id', '#stateInputLabel', '#location_us_county', '#stationCntyInputQso'); - set_qrg_unit($('#band').val()); + set_qrg(); $("#locator").popover({ placement: 'top', title: 'Gridsquare Formatting', content: "Enter multiple (4-digit) grids separated with commas. For example: IO77,IO78" }) .focus(function () { @@ -1421,9 +1494,9 @@ $(document).ready(function () { // Only set the frequency when not set by userdata/PHP. if ($('#frequency').val() == "") { $.get(base_url + 'index.php/qso/band_to_freq/' + $('#band').val() + '/' + $('.mode').val(), function (result) { - $('#frequency').val(result); + $('#frequency').val(result).trigger("change"); $('#frequency_rx').val(""); - set_qrg_unit($('#band').val()); + set_qrg(); }); } From 3ad31dffcd229023b535faff2958b13037877293 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Tue, 12 Nov 2024 11:14:47 +0100 Subject: [PATCH 05/35] fix qso time bug --- assets/js/sections/qso.js | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js index c69fb654b..a52bbd348 100644 --- a/assets/js/sections/qso.js +++ b/assets/js/sections/qso.js @@ -22,15 +22,11 @@ function resetTimers(qso_manual) { function getUTCTimeStamp(el) { var now = new Date(); - var localTime = now.getTime(); - var utc = localTime + (now.getTimezoneOffset() * 60000); $(el).attr('value', ("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2) + ':' + ("0" + now.getUTCSeconds()).slice(-2)); } function getUTCDateStamp(el) { var now = new Date(); - var localTime = now.getTime(); - var utc = localTime + (now.getTimezoneOffset() * 60000); $(el).attr('value', ("0" + now.getUTCDate()).slice(-2) + '-' + ("0" + (now.getUTCMonth() + 1)).slice(-2) + '-' + now.getUTCFullYear()); } @@ -153,9 +149,7 @@ $("#qso_input").off('submit').on('submit', function (e) { $('#reset_time').on("click", function () { var now = new Date(); - var localTime = now.getTime(); - var utc = localTime + (now.getTimezoneOffset() * 60000); - $('#start_time').val(("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2) + ':' + ("0" + now.getUTCSeconds()).slice(-2)); + $('#start_time').attr('value', ("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2) + ':' + ("0" + now.getUTCSeconds()).slice(-2)); $("[id='start_time']").each(function () { $(this).attr("value", ("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2) + ':' + ("0" + now.getUTCSeconds()).slice(-2)); }); @@ -163,25 +157,21 @@ $('#reset_time').on("click", function () { $('#reset_start_time').on("click", function () { var now = new Date(); - var localTime = now.getTime(); - var utc = localTime + (now.getTimezoneOffset() * 60000); - $('#start_time').val(("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2)); + $('#start_time').attr('value', ("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2)); $("[id='start_time']").each(function () { $(this).attr("value", ("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2) + ':' + ("0" + now.getUTCSeconds()).slice(-2)); }); - $('#end_time').val(("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2)); + $('#end_time').attr('value', ("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2)); $("[id='end_time']").each(function () { $(this).attr("value", ("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2) + ':' + ("0" + now.getUTCSeconds()).slice(-2)); }); // update date (today, for "post qso") // - $('#start_date').val(("0" + now.getUTCDate()).slice(-2) + '-' + ("0" + (now.getUTCMonth() + 1)).slice(-2) + '-' + now.getUTCFullYear()); + $('#start_date').attr('value', ("0" + now.getUTCDate()).slice(-2) + '-' + ("0" + (now.getUTCMonth() + 1)).slice(-2) + '-' + now.getUTCFullYear()); }); $('#reset_end_time').on("click", function () { var now = new Date(); - var localTime = now.getTime(); - var utc = localTime + (now.getTimezoneOffset() * 60000); - $('#end_time').val(("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2)); + $('#end_time').attr('value', ("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2)); $("[id='end_time']").each(function () { $(this).attr("value", ("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2) + ':' + ("0" + now.getUTCSeconds()).slice(-2)); }); From 6bbea550a63bff80bac9eac595ae0405861598d5 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Tue, 12 Nov 2024 11:23:08 +0100 Subject: [PATCH 06/35] Revert "fix qso time bug", needs to be in a dedicated PR This reverts commit 3ad31dffcd229023b535faff2958b13037877293. --- assets/js/sections/qso.js | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js index a52bbd348..c69fb654b 100644 --- a/assets/js/sections/qso.js +++ b/assets/js/sections/qso.js @@ -22,11 +22,15 @@ function resetTimers(qso_manual) { function getUTCTimeStamp(el) { var now = new Date(); + var localTime = now.getTime(); + var utc = localTime + (now.getTimezoneOffset() * 60000); $(el).attr('value', ("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2) + ':' + ("0" + now.getUTCSeconds()).slice(-2)); } function getUTCDateStamp(el) { var now = new Date(); + var localTime = now.getTime(); + var utc = localTime + (now.getTimezoneOffset() * 60000); $(el).attr('value', ("0" + now.getUTCDate()).slice(-2) + '-' + ("0" + (now.getUTCMonth() + 1)).slice(-2) + '-' + now.getUTCFullYear()); } @@ -149,7 +153,9 @@ $("#qso_input").off('submit').on('submit', function (e) { $('#reset_time').on("click", function () { var now = new Date(); - $('#start_time').attr('value', ("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2) + ':' + ("0" + now.getUTCSeconds()).slice(-2)); + var localTime = now.getTime(); + var utc = localTime + (now.getTimezoneOffset() * 60000); + $('#start_time').val(("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2) + ':' + ("0" + now.getUTCSeconds()).slice(-2)); $("[id='start_time']").each(function () { $(this).attr("value", ("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2) + ':' + ("0" + now.getUTCSeconds()).slice(-2)); }); @@ -157,21 +163,25 @@ $('#reset_time').on("click", function () { $('#reset_start_time').on("click", function () { var now = new Date(); - $('#start_time').attr('value', ("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2)); + var localTime = now.getTime(); + var utc = localTime + (now.getTimezoneOffset() * 60000); + $('#start_time').val(("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2)); $("[id='start_time']").each(function () { $(this).attr("value", ("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2) + ':' + ("0" + now.getUTCSeconds()).slice(-2)); }); - $('#end_time').attr('value', ("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2)); + $('#end_time').val(("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2)); $("[id='end_time']").each(function () { $(this).attr("value", ("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2) + ':' + ("0" + now.getUTCSeconds()).slice(-2)); }); // update date (today, for "post qso") // - $('#start_date').attr('value', ("0" + now.getUTCDate()).slice(-2) + '-' + ("0" + (now.getUTCMonth() + 1)).slice(-2) + '-' + now.getUTCFullYear()); + $('#start_date').val(("0" + now.getUTCDate()).slice(-2) + '-' + ("0" + (now.getUTCMonth() + 1)).slice(-2) + '-' + now.getUTCFullYear()); }); $('#reset_end_time').on("click", function () { var now = new Date(); - $('#end_time').attr('value', ("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2)); + var localTime = now.getTime(); + var utc = localTime + (now.getTimezoneOffset() * 60000); + $('#end_time').val(("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2)); $("[id='end_time']").each(function () { $(this).attr("value", ("0" + now.getUTCHours()).slice(-2) + ':' + ("0" + now.getUTCMinutes()).slice(-2) + ':' + ("0" + now.getUTCSeconds()).slice(-2)); }); From 0502d672087979019ff2044344c6b72a967b40da Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Tue, 12 Nov 2024 11:44:00 +0100 Subject: [PATCH 07/35] added the ability to switch qrg unit by clicking on the button --- application/views/qso/index.php | 2 +- assets/js/sections/qso.js | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/application/views/qso/index.php b/application/views/qso/index.php index c4b982f35..71e4fe4ad 100644 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -172,7 +172,7 @@
- +
diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js index c69fb654b..3382f7c6b 100644 --- a/assets/js/sections/qso.js +++ b/assets/js/sections/qso.js @@ -1178,6 +1178,22 @@ function testTimeOffConsistency() { return true; } +$('#qrg_unit').on('click', function () { + if ($(this).html() == 'Hz') { + $(this).html('kHz'); + $("#freq_calculated").val($("#frequency").val() / 1000); + } else if ($(this).html() == 'kHz') { + $(this).html('MHz'); + $("#freq_calculated").val($("#frequency").val() / 1000000); + } else if ($(this).html() == 'MHz') { + $(this).html('GHz'); + $("#freq_calculated").val($("#frequency").val() / 1000000000); + } else if ($(this).html() == 'GHz') { + $(this).html('Hz'); + $("#freq_calculated").val($("#frequency").val()); + } +}); + function set_qrg() { frequency = $('#frequency').val(); From 189c2c14bcd7743b36632c9b1f8c5d882625a9a9 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Tue, 12 Nov 2024 20:54:39 +0100 Subject: [PATCH 08/35] reduce ajax calls by using localStorage for qrgUnits --- application/controllers/User_options.php | 17 +++++-- assets/js/sections/qso.js | 59 +++++++++++++----------- 2 files changed, 45 insertions(+), 31 deletions(-) diff --git a/application/controllers/User_options.php b/application/controllers/User_options.php index cfe7222b5..6e89a13c9 100644 --- a/application/controllers/User_options.php +++ b/application/controllers/User_options.php @@ -51,12 +51,19 @@ class User_Options extends CI_Controller { $this->user_options_model->set_option('version_dialog', 'confirmed', array('boolean' => 'true')); } - public function get_qrg_unit() { - $band = $this->input->post('band', true); - $this->load->library('frequency'); - $unit = $this->frequency->qrg_unit($band); + public function get_qrg_units() { + + $qrg_units = []; + + foreach($this->session->get_userdata() as $key => $value) { + if (strpos($key, 'qrgunit_') === 0) { + $band = str_replace('qrgunit_', '', $key); + $qrg_units[$band] = $value; + } + } + header('Content-Type: application/json'); - echo json_encode($unit); + echo json_encode($qrg_units); } } diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js index 0210b4120..c218beb7a 100644 --- a/assets/js/sections/qso.js +++ b/assets/js/sections/qso.js @@ -1171,49 +1171,50 @@ $('#qrg_unit').on('click', function () { if ($(this).html() == 'Hz') { $(this).html('kHz'); $("#freq_calculated").val($("#frequency").val() / 1000); + localStorage.setItem('qrgunit_' + $('#band').val(), 'kHz'); } else if ($(this).html() == 'kHz') { $(this).html('MHz'); $("#freq_calculated").val($("#frequency").val() / 1000000); + localStorage.setItem('qrgunit_' + $('#band').val(), 'MHz'); } else if ($(this).html() == 'MHz') { $(this).html('GHz'); $("#freq_calculated").val($("#frequency").val() / 1000000000); + localStorage.setItem('qrgunit_' + $('#band').val(), 'GHz'); } else if ($(this).html() == 'GHz') { $(this).html('Hz'); $("#freq_calculated").val($("#frequency").val()); + localStorage.setItem('qrgunit_' + $('#band').val(), 'Hz'); } }); function set_qrg() { - frequency = $('#frequency').val(); - band = $('#band').val(); + let frequency = $('#frequency').val(); + let band = $('#band').val(); - console.log(frequency, band); + // check if there are qrgunits in the localStorage + if (!localStorage.getItem('qrgunit_' + band)) { + console.log('fetching qrg units'); + $.getJSON(base_url + 'index.php/user_options/get_qrg_units', async function (result) { + $.each(result, function(key, value) { + localStorage.setItem('qrgunit_' + key, value); + }); + }); + } - $.ajax({ - url: base_url + 'index.php/user_options/get_qrg_unit', - type: 'post', - data: { - band: band, - }, - success: function (data) { - $("#qrg_unit").html(data); + let qrgunit = localStorage.getItem('qrgunit_' + band); - if (data == 'Hz') { - $("#freq_calculated").val(frequency); - } else if (data == 'kHz') { - $("#freq_calculated").val(frequency / 1000); - } else if (data == 'MHz') { - $("#freq_calculated").val(frequency / 1000000); - } else if (data == 'GHz') { - $("#freq_calculated").val(frequency / 1000000000); - } - }, - error: function () { - $("#qrg_unit").html('n/a'); - $("#freq_calculated").val('0'); - }, - }); + $('#qrg_unit').html(localStorage.getItem('qrgunit_' + band)); + + if (qrgunit == 'Hz') { + $("#freq_calculated").val(frequency); + } else if (qrgunit == 'kHz') { + $("#freq_calculated").val(frequency / 1000); + } else if (qrgunit == 'MHz') { + $("#freq_calculated").val(frequency / 1000000); + } else if (qrgunit == 'GHz') { + $("#freq_calculated").val(frequency / 1000000000); + } } $('#frequency').on('change', function () { @@ -1251,15 +1252,19 @@ $('#freq_calculated').on('keydown', function (e) { switch (unit) { case 'Hz': qrg_hz = parsed_qrg; + localStorage.setItem('qrgunit_' + $('#band').val(), 'Hz'); break; case 'kHz': qrg_hz = parsed_qrg * 1000; + localStorage.setItem('qrgunit_' + $('#band').val(), 'kHz'); break; case 'MHz': qrg_hz = parsed_qrg * 1000000; + localStorage.setItem('qrgunit_' + $('#band').val(), 'MHz'); break; case 'GHz': qrg_hz = parsed_qrg * 1000000000; + localStorage.setItem('qrgunit_' + $('#band').val(), 'GHz'); break; default: qrg_hz = 0; @@ -1280,6 +1285,8 @@ $(document).ready(function () { set_timers(); updateStateDropdown('#dxcc_id', '#stateInputLabel', '#location_us_county', '#stationCntyInputQso'); + // Clear the localStorage for the qrg units + localStorage.clear(); set_qrg(); $("#locator").popover({ placement: 'top', title: 'Gridsquare Formatting', content: "Enter multiple (4-digit) grids separated with commas. For example: IO77,IO78" }) From 75b0d00060bf343176fe319657a7ae3448897ee2 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Tue, 12 Nov 2024 20:58:16 +0100 Subject: [PATCH 09/35] unit button looks better if it has some content --- application/views/qso/index.php | 2 +- assets/js/sections/qso.js | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/application/views/qso/index.php b/application/views/qso/index.php index 6b884fdd4..6fad82494 100644 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -172,7 +172,7 @@
- + ...
diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js index c218beb7a..a295da5a9 100644 --- a/assets/js/sections/qso.js +++ b/assets/js/sections/qso.js @@ -1204,7 +1204,11 @@ function set_qrg() { let qrgunit = localStorage.getItem('qrgunit_' + band); - $('#qrg_unit').html(localStorage.getItem('qrgunit_' + band)); + if (qrgunit != null) { + $('#qrg_unit').html(localStorage.getItem('qrgunit_' + band)); + } else { + $('#qrg_unit').html('...'); + } if (qrgunit == 'Hz') { $("#freq_calculated").val(frequency); From b56449577ccd635cc9a83bd94a4a34d1e68ceec2 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Tue, 12 Nov 2024 21:36:20 +0100 Subject: [PATCH 10/35] port everything for contesting aswell. qrgunits are now handled in qrg_handler.js --- application/views/contesting/index.php | 6 +- application/views/interface_assets/footer.php | 1 + assets/js/sections/contesting.js | 24 ++-- assets/js/sections/qrg_handler.js | 115 +++++++++++++++++ assets/js/sections/qso.js | 117 ------------------ 5 files changed, 136 insertions(+), 127 deletions(-) create mode 100644 assets/js/sections/qrg_handler.js diff --git a/application/views/contesting/index.php b/application/views/contesting/index.php index 75be220dd..39aa613af 100644 --- a/application/views/contesting/index.php +++ b/application/views/contesting/index.php @@ -141,7 +141,11 @@
- +
+ + ... +
+
diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index bb05e0690..d48c9b140 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -1158,6 +1158,7 @@ $($('#callsign')).on('keypress',function(e) { uri->segment(1) == "qso" || ($this->uri->segment(1) == "contesting" && $this->uri->segment(2) != "add")) { ?> + diff --git a/assets/js/sections/contesting.js b/assets/js/sections/contesting.js index b3aca98fe..2ca079a07 100644 --- a/assets/js/sections/contesting.js +++ b/assets/js/sections/contesting.js @@ -7,6 +7,10 @@ $(document).ready(async function () { await restoreContestSession(sessiondata); // wait for restoring until finished setRst($("#mode").val()); $('#contestname').val($('#contestname_select').val()); + + // Clear the localStorage for the qrg units + localStorage.clear(); + set_qrg(); }); // Always update the contestname @@ -471,8 +475,9 @@ function highlight(term, base) { // Only set the frequency when not set by userdata/PHP. if ($('#frequency').val() == "") { $.get('qso/band_to_freq/' + $('#band').val() + '/' + $('.mode').val(), function (result) { - $('#frequency').val(result); + $('#frequency').val(result).trigger("change"); $('#frequency_rx').val(""); + set_qrg(); }); } @@ -480,7 +485,7 @@ if ($('#frequency').val() == "") { $('#mode').change(function () { if ($('#radio').val() == '0') { $.get('qso/band_to_freq/' + $('#band').val() + '/' + $('.mode').val(), function (result) { - $('#frequency').val(result); + $('#frequency').val(result).trigger("change"); $('#frequency_rx').val(""); }); } @@ -491,12 +496,13 @@ $('#mode').change(function () { /* Calculate Frequency */ /* on band change */ $('#band').change(function () { - if ($('#radio').val() == '0') { - $.get('qso/band_to_freq/' + $(this).val() + '/' + $('.mode').val(), function (result) { - $('#frequency').val(result); - $('#frequency_rx').val(""); - }); + if ($('#radio').val() == '0') { + $.get('qso/band_to_freq/' + $(this).val() + '/' + $('.mode').val(), function (result) { + $('#frequency').val(result).trigger("change"); + $('#frequency_rx').val(""); + }); } + set_qrg(); checkIfWorkedBefore(); }); @@ -507,7 +513,7 @@ $('#band').change(function () { $('#radio').change(function () { if ($('#radio').val() == '0') { $.get('qso/band_to_freq/' + $('#band').val() + '/' + $('.mode').val(), function (result) { - $('#frequency').val(result); + $('#frequency').val(result).trigger("change"); $('#frequency_rx').val(""); }); } @@ -767,7 +773,7 @@ async function restoreContestSession(data) { $("#frequency").val(settings.freq_display); } else { $.get('qso/band_to_freq/' + settings.band + '/' + settings.mode, function (result) { - $('#frequency').val(result); + $('#frequency').val(result).trigger("change"); }); } } diff --git a/assets/js/sections/qrg_handler.js b/assets/js/sections/qrg_handler.js new file mode 100644 index 000000000..e5a2e9066 --- /dev/null +++ b/assets/js/sections/qrg_handler.js @@ -0,0 +1,115 @@ +$('#qrg_unit').on('click', function () { + if ($(this).html() == 'Hz') { + $(this).html('kHz'); + $("#freq_calculated").val($("#frequency").val() / 1000); + localStorage.setItem('qrgunit_' + $('#band').val(), 'kHz'); + } else if ($(this).html() == 'kHz') { + $(this).html('MHz'); + $("#freq_calculated").val($("#frequency").val() / 1000000); + localStorage.setItem('qrgunit_' + $('#band').val(), 'MHz'); + } else if ($(this).html() == 'MHz') { + $(this).html('GHz'); + $("#freq_calculated").val($("#frequency").val() / 1000000000); + localStorage.setItem('qrgunit_' + $('#band').val(), 'GHz'); + } else if ($(this).html() == 'GHz') { + $(this).html('Hz'); + $("#freq_calculated").val($("#frequency").val()); + localStorage.setItem('qrgunit_' + $('#band').val(), 'Hz'); + } +}); + +async function set_qrg() { + + let frequency = $('#frequency').val(); + let band = $('#band').val(); + + // check if there are qrgunits in the localStorage + if (!localStorage.getItem('qrgunit_' + band)) { + console.log('fetching qrg units'); + await $.getJSON(base_url + 'index.php/user_options/get_qrg_units', async function (result) { + $.each(result, function(key, value) { + localStorage.setItem('qrgunit_' + key, value); + }); + }); + } + + let qrgunit = localStorage.getItem('qrgunit_' + band); + + if (qrgunit != null) { + $('#qrg_unit').html(localStorage.getItem('qrgunit_' + band)); + } else { + $('#qrg_unit').html('...'); + } + + if (qrgunit == 'Hz') { + $("#freq_calculated").val(frequency); + } else if (qrgunit == 'kHz') { + $("#freq_calculated").val(frequency / 1000); + } else if (qrgunit == 'MHz') { + $("#freq_calculated").val(frequency / 1000000); + } else if (qrgunit == 'GHz') { + $("#freq_calculated").val(frequency / 1000000000); + } +} + +$('#frequency').on('change', function () { + set_qrg(); +}); + +$('#freq_calculated').on('keydown', function (e) { + if (e.which === 13) { + e.preventDefault(); + + let new_qrg = $('#freq_calculated').val().trim(); + let parsed_qrg = parseFloat(new_qrg); + let unit = $('#qrg_unit').html(); + + // check if the input contains a unit and parse the qrg + if (/^\d+(\.\d+)?\s*hz$/i.test(new_qrg)) { + unit = 'Hz'; + parsed_qrg = parseFloat(new_qrg); + } else if (/^\d+(\.\d+)?\s*khz$/i.test(new_qrg)) { + unit = 'kHz'; + parsed_qrg = parseFloat(new_qrg); + } else if (/^\d+(\.\d+)?\s*mhz$/i.test(new_qrg)) { + unit = 'MHz'; + parsed_qrg = parseFloat(new_qrg); + } else if (/^\d+(\.\d+)?\s*ghz$/i.test(new_qrg)) { + unit = 'GHz'; + parsed_qrg = parseFloat(new_qrg); + } + + // update the unit if there was any change + $('#qrg_unit').html(unit); + + // calculate the other stuff + let qrg_hz; + switch (unit) { + case 'Hz': + qrg_hz = parsed_qrg; + localStorage.setItem('qrgunit_' + $('#band').val(), 'Hz'); + break; + case 'kHz': + qrg_hz = parsed_qrg * 1000; + localStorage.setItem('qrgunit_' + $('#band').val(), 'kHz'); + break; + case 'MHz': + qrg_hz = parsed_qrg * 1000000; + localStorage.setItem('qrgunit_' + $('#band').val(), 'MHz'); + break; + case 'GHz': + qrg_hz = parsed_qrg * 1000000000; + localStorage.setItem('qrgunit_' + $('#band').val(), 'GHz'); + break; + default: + qrg_hz = 0; + console.error('Invalid unit'); + } + + $('#frequency').val(qrg_hz); + $('#freq_calculated').val(parsed_qrg); + $('#band').val(frequencyToBand(qrg_hz)); + + $("#callsign").trigger("focus"); + } +}); \ No newline at end of file diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js index a295da5a9..3bc145231 100644 --- a/assets/js/sections/qso.js +++ b/assets/js/sections/qso.js @@ -1167,123 +1167,6 @@ function testTimeOffConsistency() { return true; } -$('#qrg_unit').on('click', function () { - if ($(this).html() == 'Hz') { - $(this).html('kHz'); - $("#freq_calculated").val($("#frequency").val() / 1000); - localStorage.setItem('qrgunit_' + $('#band').val(), 'kHz'); - } else if ($(this).html() == 'kHz') { - $(this).html('MHz'); - $("#freq_calculated").val($("#frequency").val() / 1000000); - localStorage.setItem('qrgunit_' + $('#band').val(), 'MHz'); - } else if ($(this).html() == 'MHz') { - $(this).html('GHz'); - $("#freq_calculated").val($("#frequency").val() / 1000000000); - localStorage.setItem('qrgunit_' + $('#band').val(), 'GHz'); - } else if ($(this).html() == 'GHz') { - $(this).html('Hz'); - $("#freq_calculated").val($("#frequency").val()); - localStorage.setItem('qrgunit_' + $('#band').val(), 'Hz'); - } -}); - -function set_qrg() { - - let frequency = $('#frequency').val(); - let band = $('#band').val(); - - // check if there are qrgunits in the localStorage - if (!localStorage.getItem('qrgunit_' + band)) { - console.log('fetching qrg units'); - $.getJSON(base_url + 'index.php/user_options/get_qrg_units', async function (result) { - $.each(result, function(key, value) { - localStorage.setItem('qrgunit_' + key, value); - }); - }); - } - - let qrgunit = localStorage.getItem('qrgunit_' + band); - - if (qrgunit != null) { - $('#qrg_unit').html(localStorage.getItem('qrgunit_' + band)); - } else { - $('#qrg_unit').html('...'); - } - - if (qrgunit == 'Hz') { - $("#freq_calculated").val(frequency); - } else if (qrgunit == 'kHz') { - $("#freq_calculated").val(frequency / 1000); - } else if (qrgunit == 'MHz') { - $("#freq_calculated").val(frequency / 1000000); - } else if (qrgunit == 'GHz') { - $("#freq_calculated").val(frequency / 1000000000); - } -} - -$('#frequency').on('change', function () { - set_qrg(); -}); - -$('#freq_calculated').on('keydown', function (e) { - if (e.which === 13) { - e.preventDefault(); - - let new_qrg = $('#freq_calculated').val().trim(); - let parsed_qrg = parseFloat(new_qrg); - let unit = $('#qrg_unit').html(); - - // check if the input contains a unit and parse the qrg - if (/^\d+(\.\d+)?\s*hz$/i.test(new_qrg)) { - unit = 'Hz'; - parsed_qrg = parseFloat(new_qrg); - } else if (/^\d+(\.\d+)?\s*khz$/i.test(new_qrg)) { - unit = 'kHz'; - parsed_qrg = parseFloat(new_qrg); - } else if (/^\d+(\.\d+)?\s*mhz$/i.test(new_qrg)) { - unit = 'MHz'; - parsed_qrg = parseFloat(new_qrg); - } else if (/^\d+(\.\d+)?\s*ghz$/i.test(new_qrg)) { - unit = 'GHz'; - parsed_qrg = parseFloat(new_qrg); - } - - // update the unit if there was any change - $('#qrg_unit').html(unit); - - // calculate the other stuff - let qrg_hz; - switch (unit) { - case 'Hz': - qrg_hz = parsed_qrg; - localStorage.setItem('qrgunit_' + $('#band').val(), 'Hz'); - break; - case 'kHz': - qrg_hz = parsed_qrg * 1000; - localStorage.setItem('qrgunit_' + $('#band').val(), 'kHz'); - break; - case 'MHz': - qrg_hz = parsed_qrg * 1000000; - localStorage.setItem('qrgunit_' + $('#band').val(), 'MHz'); - break; - case 'GHz': - qrg_hz = parsed_qrg * 1000000000; - localStorage.setItem('qrgunit_' + $('#band').val(), 'GHz'); - break; - default: - qrg_hz = 0; - console.error('Invalid unit'); - } - - $('#frequency').val(qrg_hz); - $('#freq_calculated').val(parsed_qrg); - $('#band').val(frequencyToBand(qrg_hz)); - - $("#callsign").trigger("focus"); - } -}); - - $(document).ready(function () { clearTimeout(); set_timers(); From 879b4f9e0d7929aacf94f7481b3249f06f6443aa Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Tue, 12 Nov 2024 22:02:00 +0100 Subject: [PATCH 11/35] little UI adjustment in bands table --- application/views/bands/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/views/bands/index.php b/application/views/bands/index.php index 782919631..e83bce99b 100644 --- a/application/views/bands/index.php +++ b/application/views/bands/index.php @@ -94,7 +94,7 @@ $wwff = 0; data;?> cw;?> - From b92c561425b13a981a857dde836c660611b4e19c Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Wed, 13 Nov 2024 09:46:11 +0100 Subject: [PATCH 12/35] fix handling if no enter was pressed --- assets/js/sections/qrg_handler.js | 115 ++++++++++++++++-------------- 1 file changed, 62 insertions(+), 53 deletions(-) diff --git a/assets/js/sections/qrg_handler.js b/assets/js/sections/qrg_handler.js index e5a2e9066..dfef6ff34 100644 --- a/assets/js/sections/qrg_handler.js +++ b/assets/js/sections/qrg_handler.js @@ -52,64 +52,73 @@ async function set_qrg() { } } +function set_new_qrg() { + let new_qrg = $('#freq_calculated').val().trim(); + let parsed_qrg = parseFloat(new_qrg); + let unit = $('#qrg_unit').html(); + + // check if the input contains a unit and parse the qrg + if (/^\d+(\.\d+)?\s*hz$/i.test(new_qrg)) { + unit = 'Hz'; + parsed_qrg = parseFloat(new_qrg); + } else if (/^\d+(\.\d+)?\s*khz$/i.test(new_qrg)) { + unit = 'kHz'; + parsed_qrg = parseFloat(new_qrg); + } else if (/^\d+(\.\d+)?\s*mhz$/i.test(new_qrg)) { + unit = 'MHz'; + parsed_qrg = parseFloat(new_qrg); + } else if (/^\d+(\.\d+)?\s*ghz$/i.test(new_qrg)) { + unit = 'GHz'; + parsed_qrg = parseFloat(new_qrg); + } + + // update the unit if there was any change + $('#qrg_unit').html(unit); + + // calculate the other stuff + let qrg_hz; + switch (unit) { + case 'Hz': + qrg_hz = parsed_qrg; + localStorage.setItem('qrgunit_' + $('#band').val(), 'Hz'); + break; + case 'kHz': + qrg_hz = parsed_qrg * 1000; + localStorage.setItem('qrgunit_' + $('#band').val(), 'kHz'); + break; + case 'MHz': + qrg_hz = parsed_qrg * 1000000; + localStorage.setItem('qrgunit_' + $('#band').val(), 'MHz'); + break; + case 'GHz': + qrg_hz = parsed_qrg * 1000000000; + localStorage.setItem('qrgunit_' + $('#band').val(), 'GHz'); + break; + default: + qrg_hz = 0; + console.error('Invalid unit'); + } + + $('#frequency').val(qrg_hz); + $('#freq_calculated').val(parsed_qrg); + $('#band').val(frequencyToBand(qrg_hz)); + +} + $('#frequency').on('change', function () { + console.log('frequency changed'); set_qrg(); }); +$('#freq_calculated').on('change', function () { + console.log('freq_calculated changed'); + set_new_qrg(); +}); + $('#freq_calculated').on('keydown', function (e) { - if (e.which === 13) { - e.preventDefault(); - - let new_qrg = $('#freq_calculated').val().trim(); - let parsed_qrg = parseFloat(new_qrg); - let unit = $('#qrg_unit').html(); - - // check if the input contains a unit and parse the qrg - if (/^\d+(\.\d+)?\s*hz$/i.test(new_qrg)) { - unit = 'Hz'; - parsed_qrg = parseFloat(new_qrg); - } else if (/^\d+(\.\d+)?\s*khz$/i.test(new_qrg)) { - unit = 'kHz'; - parsed_qrg = parseFloat(new_qrg); - } else if (/^\d+(\.\d+)?\s*mhz$/i.test(new_qrg)) { - unit = 'MHz'; - parsed_qrg = parseFloat(new_qrg); - } else if (/^\d+(\.\d+)?\s*ghz$/i.test(new_qrg)) { - unit = 'GHz'; - parsed_qrg = parseFloat(new_qrg); - } - - // update the unit if there was any change - $('#qrg_unit').html(unit); - - // calculate the other stuff - let qrg_hz; - switch (unit) { - case 'Hz': - qrg_hz = parsed_qrg; - localStorage.setItem('qrgunit_' + $('#band').val(), 'Hz'); - break; - case 'kHz': - qrg_hz = parsed_qrg * 1000; - localStorage.setItem('qrgunit_' + $('#band').val(), 'kHz'); - break; - case 'MHz': - qrg_hz = parsed_qrg * 1000000; - localStorage.setItem('qrgunit_' + $('#band').val(), 'MHz'); - break; - case 'GHz': - qrg_hz = parsed_qrg * 1000000000; - localStorage.setItem('qrgunit_' + $('#band').val(), 'GHz'); - break; - default: - qrg_hz = 0; - console.error('Invalid unit'); - } - - $('#frequency').val(qrg_hz); - $('#freq_calculated').val(parsed_qrg); - $('#band').val(frequencyToBand(qrg_hz)); - + if (e.which === 13) { + e.preventDefault(); + set_new_qrg(); $("#callsign").trigger("focus"); } }); \ No newline at end of file From 8fc39e30c625fcbafa386b0e9ba1701ef89bff65 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Wed, 13 Nov 2024 09:46:52 +0100 Subject: [PATCH 13/35] remove debugging --- assets/js/sections/qrg_handler.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/js/sections/qrg_handler.js b/assets/js/sections/qrg_handler.js index dfef6ff34..56bab1c1d 100644 --- a/assets/js/sections/qrg_handler.js +++ b/assets/js/sections/qrg_handler.js @@ -106,12 +106,12 @@ function set_new_qrg() { } $('#frequency').on('change', function () { - console.log('frequency changed'); + // console.log('frequency changed'); set_qrg(); }); $('#freq_calculated').on('change', function () { - console.log('freq_calculated changed'); + // console.log('freq_calculated changed'); set_new_qrg(); }); From 05db82f94a48012a2718064255977f57285e910e Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Wed, 13 Nov 2024 09:58:47 +0100 Subject: [PATCH 14/35] syntax bug --- assets/js/sections/qso.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js index 3bc145231..84a573170 100644 --- a/assets/js/sections/qso.js +++ b/assets/js/sections/qso.js @@ -591,7 +591,7 @@ $("#callsign").on("focusout", function () { lookupCall = $.getJSON(base_url + 'index.php/logbook/json/' + find_callsign + '/' + json_band + '/' + json_mode + '/' + $('#stationProfile').val() + '/' + $('#start_date').val(), async function (result) { // Make sure the typed callsign and json result match - if ($('#callsign').val = result.callsign) { + if ($('#callsign').val == result.callsign) { // Reset QSO fields resetDefaultQSOFields(); From 3cb68e99f67faacb6bb327db02994cb821f9d0fc Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Wed, 13 Nov 2024 09:59:13 +0100 Subject: [PATCH 15/35] now it's better --- assets/js/sections/qso.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js index 84a573170..961a0f681 100644 --- a/assets/js/sections/qso.js +++ b/assets/js/sections/qso.js @@ -591,7 +591,7 @@ $("#callsign").on("focusout", function () { lookupCall = $.getJSON(base_url + 'index.php/logbook/json/' + find_callsign + '/' + json_band + '/' + json_mode + '/' + $('#stationProfile').val() + '/' + $('#start_date').val(), async function (result) { // Make sure the typed callsign and json result match - if ($('#callsign').val == result.callsign) { + if ($('#callsign').val() == result.callsign) { // Reset QSO fields resetDefaultQSOFields(); From d37f78cdc64c8a2c5fcc90e7f704bf74f53578d5 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Wed, 13 Nov 2024 10:07:36 +0100 Subject: [PATCH 16/35] the pretty zero.. --- assets/js/sections/qso.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js index 961a0f681..cdfd7b80b 100644 --- a/assets/js/sections/qso.js +++ b/assets/js/sections/qso.js @@ -591,7 +591,7 @@ $("#callsign").on("focusout", function () { lookupCall = $.getJSON(base_url + 'index.php/logbook/json/' + find_callsign + '/' + json_band + '/' + json_mode + '/' + $('#stationProfile').val() + '/' + $('#start_date').val(), async function (result) { // Make sure the typed callsign and json result match - if ($('#callsign').val() == result.callsign) { + if ($('#callsign').val().toUpperCase().replace('Ø', '0') == result.callsign) { // Reset QSO fields resetDefaultQSOFields(); @@ -813,6 +813,10 @@ $("#callsign").on("focusout", function () { // Get DXX Summary getDxccResult(result.dxcc.adif, convert_case(result.dxcc.entity)); + } else { + console.log("Callsigns do not match, skipping lookup"); + console.log("Typed Callsign: " + $('#callsign').val()); + console.log("Returned Callsign: " + result.callsign); } }); } else { From 9c622c97318a92d6d19b03d38082da221b349bc9 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Wed, 13 Nov 2024 10:08:02 +0100 Subject: [PATCH 17/35] commented debugging out --- assets/js/sections/qso.js | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js index cdfd7b80b..45fd2de95 100644 --- a/assets/js/sections/qso.js +++ b/assets/js/sections/qso.js @@ -813,11 +813,12 @@ $("#callsign").on("focusout", function () { // Get DXX Summary getDxccResult(result.dxcc.adif, convert_case(result.dxcc.entity)); - } else { - console.log("Callsigns do not match, skipping lookup"); - console.log("Typed Callsign: " + $('#callsign').val()); - console.log("Returned Callsign: " + result.callsign); - } + } + // else { + // console.log("Callsigns do not match, skipping lookup"); + // console.log("Typed Callsign: " + $('#callsign').val()); + // console.log("Returned Callsign: " + result.callsign); + // } }); } else { // Reset QSO fields From c084c8e48e60ba122c18fb92626e75fbfcef2e7c Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Wed, 13 Nov 2024 10:23:45 +0100 Subject: [PATCH 18/35] make sure the new qrg was set but still allow pressing enter to save the qso --- assets/js/sections/qrg_handler.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/assets/js/sections/qrg_handler.js b/assets/js/sections/qrg_handler.js index 56bab1c1d..701f70d1c 100644 --- a/assets/js/sections/qrg_handler.js +++ b/assets/js/sections/qrg_handler.js @@ -25,7 +25,7 @@ async function set_qrg() { // check if there are qrgunits in the localStorage if (!localStorage.getItem('qrgunit_' + band)) { - console.log('fetching qrg units'); + // console.log('fetching qrg units'); await $.getJSON(base_url + 'index.php/user_options/get_qrg_units', async function (result) { $.each(result, function(key, value) { localStorage.setItem('qrgunit_' + key, value); @@ -52,7 +52,7 @@ async function set_qrg() { } } -function set_new_qrg() { +async function set_new_qrg() { let new_qrg = $('#freq_calculated').val().trim(); let parsed_qrg = parseFloat(new_qrg); let unit = $('#qrg_unit').html(); @@ -118,7 +118,8 @@ $('#freq_calculated').on('change', function () { $('#freq_calculated').on('keydown', function (e) { if (e.which === 13) { e.preventDefault(); - set_new_qrg(); - $("#callsign").trigger("focus"); + set_new_qrg().then(() => { + $("#qso_input").trigger('submit'); + }); } }); \ No newline at end of file From 5eb0104d5ce2eae93ca013899c6b2115754bb423 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Wed, 13 Nov 2024 10:58:42 +0100 Subject: [PATCH 19/35] we should hide the callsign empty warning if a callsign was entered --- assets/js/sections/qso.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js index 45fd2de95..0cecf6659 100644 --- a/assets/js/sections/qso.js +++ b/assets/js/sections/qso.js @@ -568,6 +568,8 @@ function reset_fields() { $("#callsign").on("focusout", function () { if ($(this).val().length >= 3 && preventLookup == false) { + $("#noticer").fadeOut(1000); + // Temp store the callsign var temp_callsign = $(this).val(); From 01a7db19c4794ada30b07d1f7525d37fd2308552 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Wed, 13 Nov 2024 11:15:57 +0100 Subject: [PATCH 20/35] fix behaviour on sat selection --- assets/js/sections/qso.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js index 0cecf6659..ac43079bc 100644 --- a/assets/js/sections/qso.js +++ b/assets/js/sections/qso.js @@ -365,7 +365,7 @@ $(document).on('change', 'input', function () { } $("#band").val(frequencyToBand(val2[0].Uplink_Freq)); $("#band_rx").val(frequencyToBand(val2[0].Downlink_Freq)); - $("#frequency").val(val2[0].Uplink_Freq); + $("#frequency").val(val2[0].Uplink_Freq).trigger("change"); $("#frequency_rx").val(val2[0].Downlink_Freq); $("#selectPropagation").val('SAT'); } From 8504eff18792de9bed0b656eef39516cd41d8dc4 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Wed, 13 Nov 2024 11:38:20 +0100 Subject: [PATCH 21/35] comma should be always replaced by a point --- assets/js/sections/qrg_handler.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/assets/js/sections/qrg_handler.js b/assets/js/sections/qrg_handler.js index 701f70d1c..df3adea6c 100644 --- a/assets/js/sections/qrg_handler.js +++ b/assets/js/sections/qrg_handler.js @@ -110,6 +110,10 @@ $('#frequency').on('change', function () { set_qrg(); }); +$('#freq_calculated').on('input', function () { + $(this).val($(this).val().replace(',', '.')); +}); + $('#freq_calculated').on('change', function () { // console.log('freq_calculated changed'); set_new_qrg(); From a7a5244504aff839049889a960e8e8d0d8452b1a Mon Sep 17 00:00:00 2001 From: github-actions Date: Sun, 17 Nov 2024 16:50:33 +0000 Subject: [PATCH 22/35] po/mo updates --- .../locale/bg_BG/LC_MESSAGES/messages.po | 336 ++++++++--------- application/locale/bs/LC_MESSAGES/messages.po | 340 +++++++++--------- .../locale/cnr/LC_MESSAGES/messages.po | 336 ++++++++--------- .../locale/cs_CZ/LC_MESSAGES/messages.po | 336 ++++++++--------- .../locale/de_DE/LC_MESSAGES/messages.po | 340 +++++++++--------- .../locale/el_GR/LC_MESSAGES/messages.po | 336 ++++++++--------- .../locale/es_ES/LC_MESSAGES/messages.po | 336 ++++++++--------- application/locale/et/LC_MESSAGES/messages.po | 336 ++++++++--------- .../locale/fi_FI/LC_MESSAGES/messages.po | 336 ++++++++--------- .../locale/fr_FR/LC_MESSAGES/messages.po | 336 ++++++++--------- application/locale/hr/LC_MESSAGES/messages.po | 336 ++++++++--------- .../locale/it_IT/LC_MESSAGES/messages.po | 336 ++++++++--------- application/locale/lt/LC_MESSAGES/messages.po | 336 ++++++++--------- application/locale/lv/LC_MESSAGES/messages.po | 336 ++++++++--------- .../locale/nl_NL/LC_MESSAGES/messages.po | 336 ++++++++--------- .../locale/pl_PL/LC_MESSAGES/messages.po | 336 ++++++++--------- .../locale/pt_PT/LC_MESSAGES/messages.po | 336 ++++++++--------- .../locale/ru_RU/LC_MESSAGES/messages.po | 336 ++++++++--------- application/locale/sq/LC_MESSAGES/messages.po | 336 ++++++++--------- application/locale/sr/LC_MESSAGES/messages.po | 336 ++++++++--------- .../locale/sv_SE/LC_MESSAGES/messages.po | 336 ++++++++--------- .../locale/tr_TR/LC_MESSAGES/messages.po | 336 ++++++++--------- .../locale/zh_CN/LC_MESSAGES/messages.po | 336 ++++++++--------- assets/lang_src/messages.pot | 336 ++++++++--------- 24 files changed, 4036 insertions(+), 4036 deletions(-) diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index d8a3f34a6..fffd0da4b 100644 --- a/application/locale/bg_BG/LC_MESSAGES/messages.po +++ b/application/locale/bg_BG/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-11-15 15:56+0000\n" +"POT-Creation-Date: 2024-11-17 16:50+0000\n" "PO-Revision-Date: 2024-11-01 08:53+0000\n" "Last-Translator: Plamen Panteleev \n" "Language-Team: Bulgarian \n" -"Language-Team: Bosnian \n" +"Language-Team: Bosnian \n" "Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -271,8 +271,8 @@ msgstr "" #: application/views/interface_assets/header.php:198 #: application/views/logbookadvanced/index.php:658 #: application/views/logbookadvanced/useroptions.php:114 -#: application/views/qso/edit_ajax.php:387 application/views/qso/index.php:267 -#: application/views/qso/index.php:524 application/views/user/edit.php:603 +#: application/views/qso/edit_ajax.php:387 application/views/qso/index.php:271 +#: application/views/qso/index.php:528 application/views/user/edit.php:603 #: application/views/view_log/qso.php:433 msgid "DOK" msgstr "" @@ -290,7 +290,7 @@ msgstr "" #: application/views/logbookadvanced/useroptions.php:86 #: application/views/lookup/index.php:4 #: application/views/lotw_views/index.php:36 -#: application/views/qso/edit_ajax.php:232 application/views/qso/index.php:364 +#: application/views/qso/edit_ajax.php:232 application/views/qso/index.php:368 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 #: application/views/search/result.php:27 @@ -1086,7 +1086,7 @@ msgstr "" #: application/views/awards/was/index.php:87 #: application/views/components/hamsat/table.php:30 #: application/views/contesting/index.php:113 -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:259 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 #: application/views/debug/index.php:573 @@ -1143,8 +1143,8 @@ msgstr "" #: application/controllers/Logbook.php:1357 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:170 -#: application/views/contesting/index.php:256 +#: application/views/contesting/index.php:174 +#: application/views/contesting/index.php:260 #: application/views/logbookadvanced/index.php:601 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 @@ -1155,7 +1155,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:11 #: application/views/qso/components/previous_contacts.php:78 -#: application/views/qso/edit_ajax.php:141 application/views/qso/index.php:180 +#: application/views/qso/edit_ajax.php:141 application/views/qso/index.php:184 #: application/views/search/search_result_ajax.php:5 #: application/views/simplefle/index.php:153 #: application/views/user/edit.php:230 application/views/user/edit.php:252 @@ -1170,8 +1170,8 @@ msgstr "" #: application/controllers/Logbook.php:1358 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:194 -#: application/views/contesting/index.php:257 +#: application/views/contesting/index.php:198 +#: application/views/contesting/index.php:261 #: application/views/logbookadvanced/index.php:604 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 @@ -1182,7 +1182,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:12 #: application/views/qso/components/previous_contacts.php:79 -#: application/views/qso/edit_ajax.php:146 application/views/qso/index.php:185 +#: application/views/qso/edit_ajax.php:146 application/views/qso/index.php:189 #: application/views/search/search_result_ajax.php:6 #: application/views/simplefle/index.php:154 #: application/views/user/edit.php:231 application/views/user/edit.php:253 @@ -1278,7 +1278,7 @@ msgstr "" #: application/views/awards/gridmaster/index.php:40 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:21 -#: application/views/contesting/index.php:262 +#: application/views/contesting/index.php:266 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 @@ -1295,7 +1295,7 @@ msgstr "" #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 #: application/views/qso/components/previous_contacts.php:86 -#: application/views/qso/edit_ajax.php:155 application/views/qso/index.php:282 +#: application/views/qso/edit_ajax.php:155 application/views/qso/index.php:286 #: application/views/satellite/pass.php:28 #: application/views/search/cqzones_result.php:12 #: application/views/search/ituzones_result.php:12 @@ -1365,7 +1365,7 @@ msgstr "" #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:45 #: application/views/contesting/index.php:126 -#: application/views/contesting/index.php:254 +#: application/views/contesting/index.php:258 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:574 application/views/dxatlas/index.php:31 @@ -1470,7 +1470,7 @@ msgstr "" #: application/views/lookup/index.php:44 #: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 -#: application/views/qso/edit_ajax.php:250 application/views/qso/index.php:373 +#: application/views/qso/edit_ajax.php:250 application/views/qso/index.php:377 #: application/views/station_profile/create.php:73 #: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 @@ -1566,7 +1566,7 @@ msgstr "" #: application/views/notes/view.php:6 application/views/notes/view.php:9 #: application/views/qso/edit_ajax.php:36 #: application/views/qso/edit_ajax.php:395 application/views/qso/index.php:41 -#: application/views/qso/index.php:573 application/views/view_log/qso.php:14 +#: application/views/qso/index.php:577 application/views/view_log/qso.php:14 #: application/views/view_log/qso.php:679 msgid "Notes" msgstr "" @@ -1811,8 +1811,8 @@ msgstr "" #: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:63 -#: application/views/contesting/index.php:148 -#: application/views/qso/index.php:315 +#: application/views/contesting/index.php:152 +#: application/views/qso/index.php:319 msgid "Radio" msgstr "" @@ -1832,13 +1832,13 @@ msgid "Options" msgstr "" #: application/controllers/Radio.php:53 application/views/debug/index.php:308 -#: application/views/qso/index.php:680 +#: application/views/qso/index.php:684 msgid "Settings" msgstr "" #: application/controllers/Radio.php:91 -#: application/views/contesting/index.php:152 -#: application/views/qso/index.php:319 +#: application/views/contesting/index.php:156 +#: application/views/qso/index.php:323 msgid "last updated" msgstr "" @@ -1870,10 +1870,10 @@ msgstr "" #: application/controllers/Radio.php:107 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2374 -#: application/views/interface_assets/footer.php:2392 -#: application/views/interface_assets/footer.php:2413 -#: application/views/interface_assets/footer.php:2431 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 +#: application/views/interface_assets/footer.php:2415 +#: application/views/interface_assets/footer.php:2433 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:568 #: application/views/lotw_views/index.php:114 @@ -2010,7 +2010,7 @@ msgstr "" #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 #: application/views/logbookadvanced/edit.php:21 -#: application/views/qslprint/index.php:20 application/views/qso/index.php:303 +#: application/views/qslprint/index.php:20 application/views/qso/index.php:307 #: application/views/search/search_result_ajax.php:18 #: application/views/station_profile/create.php:305 #: application/views/station_profile/edit.php:455 @@ -2045,7 +2045,7 @@ msgstr "" #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 #: application/controllers/Stationsetup.php:436 -#: application/views/qso/index.php:639 application/views/simplefle/index.php:38 +#: application/views/qso/index.php:643 application/views/simplefle/index.php:38 msgid "Error" msgstr "" @@ -2698,8 +2698,8 @@ msgstr "" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1624 +#: application/views/interface_assets/footer.php:1487 +#: application/views/interface_assets/footer.php:1626 #: 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 @@ -2807,7 +2807,7 @@ msgstr "" #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:44 application/views/kml/index.php:80 #: application/views/logbookadvanced/index.php:251 -#: application/views/qso/edit_ajax.php:190 application/views/qso/index.php:420 +#: application/views/qso/edit_ajax.php:190 application/views/qso/index.php:424 #: application/views/timeline/index.php:80 #: application/views/view_log/qso.php:213 msgctxt "Propagation Mode" @@ -2819,7 +2819,7 @@ msgstr "" #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:45 application/views/kml/index.php:81 #: application/views/logbookadvanced/index.php:252 -#: application/views/qso/edit_ajax.php:191 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:191 application/views/qso/index.php:425 #: application/views/timeline/index.php:81 #: application/views/view_log/qso.php:216 msgctxt "Propagation Mode" @@ -2831,7 +2831,7 @@ msgstr "" #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:46 application/views/kml/index.php:82 #: application/views/logbookadvanced/index.php:253 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:422 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:426 #: application/views/timeline/index.php:82 #: application/views/view_log/qso.php:219 msgctxt "Propagation Mode" @@ -2843,7 +2843,7 @@ msgstr "" #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:47 application/views/kml/index.php:83 #: application/views/logbookadvanced/index.php:254 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:423 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:427 #: application/views/timeline/index.php:83 #: application/views/view_log/qso.php:222 msgctxt "Propagation Mode" @@ -2855,7 +2855,7 @@ msgstr "" #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:48 application/views/kml/index.php:84 #: application/views/logbookadvanced/index.php:255 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:424 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:428 #: application/views/timeline/index.php:84 #: application/views/view_log/qso.php:225 msgctxt "Propagation Mode" @@ -2867,7 +2867,7 @@ msgstr "" #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:49 application/views/kml/index.php:85 #: application/views/logbookadvanced/index.php:256 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:425 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:429 #: application/views/timeline/index.php:85 #: application/views/view_log/qso.php:228 msgctxt "Propagation Mode" @@ -2879,7 +2879,7 @@ msgstr "" #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:50 application/views/kml/index.php:86 #: application/views/logbookadvanced/index.php:257 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:426 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:430 #: application/views/timeline/index.php:86 #: application/views/view_log/qso.php:231 msgctxt "Propagation Mode" @@ -2891,7 +2891,7 @@ msgstr "" #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:51 application/views/kml/index.php:87 #: application/views/logbookadvanced/index.php:258 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:427 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:431 #: application/views/timeline/index.php:87 #: application/views/view_log/qso.php:234 msgctxt "Propagation Mode" @@ -2903,7 +2903,7 @@ msgstr "" #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:52 application/views/kml/index.php:88 #: application/views/logbookadvanced/index.php:259 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:428 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:432 #: application/views/timeline/index.php:88 #: application/views/view_log/qso.php:237 msgctxt "Propagation Mode" @@ -2915,7 +2915,7 @@ msgstr "" #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:53 application/views/kml/index.php:89 #: application/views/logbookadvanced/index.php:260 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:429 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:433 #: application/views/timeline/index.php:89 #: application/views/view_log/qso.php:240 msgctxt "Propagation Mode" @@ -2927,7 +2927,7 @@ msgstr "" #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:54 application/views/kml/index.php:90 #: application/views/logbookadvanced/index.php:261 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:430 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:434 #: application/views/timeline/index.php:90 #: application/views/view_log/qso.php:243 msgctxt "Propagation Mode" @@ -2939,7 +2939,7 @@ msgstr "" #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:55 application/views/kml/index.php:91 #: application/views/logbookadvanced/index.php:262 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:431 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:435 #: application/views/timeline/index.php:91 #: application/views/view_log/qso.php:246 msgctxt "Propagation Mode" @@ -2951,7 +2951,7 @@ msgstr "" #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:56 application/views/kml/index.php:92 #: application/views/logbookadvanced/index.php:263 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:432 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:436 #: application/views/timeline/index.php:92 #: application/views/view_log/qso.php:249 msgctxt "Propagation Mode" @@ -2963,7 +2963,7 @@ msgstr "" #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:57 application/views/kml/index.php:93 #: application/views/logbookadvanced/index.php:264 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:433 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:437 #: application/views/timeline/index.php:93 #: application/views/view_log/qso.php:252 msgctxt "Propagation Mode" @@ -2975,7 +2975,7 @@ msgstr "" #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:58 application/views/kml/index.php:94 #: application/views/logbookadvanced/index.php:265 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:438 #: application/views/timeline/index.php:94 #: application/views/view_log/qso.php:255 msgctxt "Propagation Mode" @@ -2987,7 +2987,7 @@ msgstr "" #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:59 application/views/kml/index.php:95 #: application/views/logbookadvanced/index.php:266 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:439 #: application/views/timeline/index.php:95 #: application/views/view_log/qso.php:258 msgctxt "Propagation Mode" @@ -2999,7 +2999,7 @@ msgstr "" #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:60 application/views/kml/index.php:96 #: application/views/logbookadvanced/index.php:267 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:436 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:440 #: application/views/timeline/index.php:96 #: application/views/view_log/qso.php:261 msgctxt "Propagation Mode" @@ -3011,7 +3011,7 @@ msgstr "" #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:61 application/views/kml/index.php:97 #: application/views/logbookadvanced/index.php:268 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:441 #: application/views/timeline/index.php:97 #: application/views/view_log/qso.php:264 msgctxt "Propagation Mode" @@ -3178,7 +3178,7 @@ msgstr "" #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:161 +#: application/views/contesting/index.php:165 #: application/views/csv/index.php:23 application/views/dashboard/index.php:175 #: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 @@ -3267,7 +3267,7 @@ msgstr "" #: application/views/bandmap/list.php:112 #: application/views/components/hamsat/table.php:25 #: application/views/contesting/index.php:98 -#: application/views/contesting/index.php:252 +#: application/views/contesting/index.php:256 #: application/views/dashboard/index.php:170 #: application/views/debug/index.php:570 #: application/views/distancerecords/index.php:16 @@ -3311,7 +3311,7 @@ msgstr "" #: application/views/bandmap/list.php:112 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:103 -#: application/views/contesting/index.php:252 +#: application/views/contesting/index.php:256 #: application/views/dashboard/index.php:173 #: application/views/debug/index.php:571 #: application/views/distancerecords/index.php:17 @@ -3340,7 +3340,7 @@ msgstr "" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:114 -#: application/views/contesting/index.php:253 +#: application/views/contesting/index.php:257 #: application/views/debug/index.php:572 application/views/debug/index.php:607 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -3473,7 +3473,7 @@ msgstr "" #: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:32 #: application/views/interface_assets/footer.php:510 -#: application/views/interface_assets/footer.php:2170 +#: application/views/interface_assets/footer.php:2172 msgid "DANGER" msgstr "" @@ -3906,7 +3906,7 @@ msgstr "" #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:94 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:306 -#: application/views/qso/index.php:396 +#: application/views/qso/index.php:400 #: application/views/search/cqzones_result.php:13 #: application/views/station_profile/create.php:106 #: application/views/station_profile/edit.php:153 @@ -4028,7 +4028,7 @@ msgstr "" #: application/views/awards/cq/index.php:56 #: application/views/awards/itu/index.php:56 #: application/views/awards/wac/index.php:44 -#: application/views/interface_assets/footer.php:2149 +#: application/views/interface_assets/footer.php:2151 #: application/views/qso/edit_ajax.php:405 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -4238,7 +4238,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:155 #: application/views/logbookadvanced/index.php:335 #: application/views/options/dxcluster.php:56 -#: application/views/qso/edit_ajax.php:264 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:264 application/views/qso/index.php:391 #: application/views/view_log/qso.php:323 msgid "Antarctica" msgstr "" @@ -4249,7 +4249,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:154 #: application/views/logbookadvanced/index.php:334 #: application/views/options/dxcluster.php:55 -#: application/views/qso/edit_ajax.php:263 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:263 application/views/qso/index.php:390 #: application/views/view_log/qso.php:320 msgid "Africa" msgstr "" @@ -4260,7 +4260,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:157 #: application/views/logbookadvanced/index.php:337 #: application/views/options/dxcluster.php:57 -#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:388 +#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:392 #: application/views/view_log/qso.php:326 msgid "Asia" msgstr "" @@ -4271,7 +4271,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:158 #: application/views/logbookadvanced/index.php:338 #: application/views/options/dxcluster.php:58 -#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:389 +#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:393 #: application/views/view_log/qso.php:329 msgid "Europe" msgstr "" @@ -4282,7 +4282,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:156 #: application/views/logbookadvanced/index.php:336 #: application/views/options/dxcluster.php:59 -#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:390 +#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:394 #: application/views/view_log/qso.php:332 msgid "North America" msgstr "" @@ -4293,7 +4293,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:159 #: application/views/logbookadvanced/index.php:339 #: application/views/options/dxcluster.php:61 -#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:396 #: application/views/view_log/qso.php:338 msgid "South America" msgstr "" @@ -4304,7 +4304,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:160 #: application/views/logbookadvanced/index.php:340 #: application/views/options/dxcluster.php:60 -#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:395 #: application/views/view_log/qso.php:335 msgid "Oceania" msgstr "" @@ -4494,13 +4494,13 @@ msgstr "" #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 #: application/views/contesting/index.php:59 -#: application/views/contesting/index.php:219 +#: application/views/contesting/index.php:223 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 #: application/views/logbookadvanced/index.php:613 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 -#: application/views/qso/edit_ajax.php:170 application/views/qso/index.php:191 +#: application/views/qso/edit_ajax.php:170 application/views/qso/index.php:195 #: application/views/satellite/edit.php:34 #: application/views/satellite/index.php:21 #: application/views/search/result.php:16 @@ -4528,7 +4528,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:646 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 application/views/qso/edit_ajax.php:314 -#: application/views/qso/index.php:406 +#: application/views/qso/index.php:410 #: application/views/search/ituzones_result.php:13 #: application/views/station_profile/create.php:120 #: application/views/station_profile/edit.php:170 @@ -4637,7 +4637,7 @@ msgid "" msgstr "" #: application/views/awards/pota/index.php:31 -#: application/views/qso/index.php:239 application/views/qso/index.php:498 +#: application/views/qso/index.php:243 application/views/qso/index.php:502 #: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:272 #: application/views/user/edit.php:595 application/views/view_log/qso.php:376 @@ -4817,7 +4817,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:330 #: application/views/logbookadvanced/index.php:682 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:260 application/views/qso/index.php:383 +#: application/views/qso/edit_ajax.php:260 application/views/qso/index.php:387 #: application/views/view_log/qso.php:315 msgid "Continent" msgstr "" @@ -4917,7 +4917,7 @@ msgid "" msgstr "" #: application/views/awards/wwff/index.php:31 -#: application/views/qso/index.php:227 application/views/qso/index.php:485 +#: application/views/qso/index.php:231 application/views/qso/index.php:489 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:259 #: application/views/user/edit.php:591 application/views/view_log/qso.php:369 @@ -4977,8 +4977,8 @@ msgstr "" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:65 #: application/views/contesting/index.php:19 #: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:150 -#: application/views/qso/index.php:317 +#: application/views/contesting/index.php:154 +#: application/views/qso/index.php:321 msgid "None" msgstr "" @@ -5062,14 +5062,14 @@ msgid "" msgstr "" #: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 -#: application/views/qso/index.php:251 application/views/qso/index.php:510 +#: application/views/qso/index.php:255 application/views/qso/index.php:514 #: application/views/user/edit.php:599 application/views/view_log/qso.php:398 #: application/views/view_log/qso.php:666 msgid "Sig" msgstr "" #: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:346 -#: application/views/qso/index.php:449 +#: application/views/qso/index.php:453 msgid "USA County" msgstr "" @@ -5197,7 +5197,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:553 -#: application/views/qso/index.php:275 +#: application/views/qso/index.php:279 #: application/views/station_profile/edit.php:92 msgid "Location" msgstr "" @@ -5317,7 +5317,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:522 #: application/views/qso/edit_ajax.php:535 #: application/views/qso/edit_ajax.php:551 -#: application/views/qso/edit_ajax.php:565 application/views/qso/index.php:587 +#: application/views/qso/edit_ajax.php:565 application/views/qso/index.php:591 #: application/views/search/result.php:74 #: application/views/station_profile/create.php:209 #: application/views/station_profile/create.php:217 @@ -5361,7 +5361,7 @@ msgstr "Da" #: application/views/qso/edit_ajax.php:521 #: application/views/qso/edit_ajax.php:534 #: application/views/qso/edit_ajax.php:550 -#: application/views/qso/edit_ajax.php:564 application/views/qso/index.php:586 +#: application/views/qso/edit_ajax.php:564 application/views/qso/index.php:590 #: application/views/search/result.php:76 #: application/views/station_profile/create.php:210 #: application/views/station_profile/create.php:218 @@ -5428,12 +5428,12 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:224 +#: application/views/contesting/index.php:228 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:670 #: application/views/logbookadvanced/useroptions.php:130 -#: application/views/qso/edit_ajax.php:181 application/views/qso/index.php:292 +#: application/views/qso/edit_ajax.php:181 application/views/qso/index.php:296 #: application/views/view_log/qso.php:202 msgid "Comment" msgstr "" @@ -5645,7 +5645,7 @@ msgstr "" #: application/views/contesting/index.php:40 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:596 application/views/qso/index.php:355 +#: application/views/qso/edit_ajax.php:596 application/views/qso/index.php:359 msgid "Operator Callsign" msgstr "" @@ -5719,54 +5719,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "" -#: application/views/contesting/index.php:177 -#: application/views/contesting/index.php:260 +#: application/views/contesting/index.php:181 +#: application/views/contesting/index.php:264 #: application/views/qso/edit_ajax.php:620 msgid "Serial (S)" msgstr "" -#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:186 msgid "Gridsquare (S)" msgstr "" -#: application/views/contesting/index.php:187 -#: application/views/contesting/index.php:258 +#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:262 msgid "Exch (S)" msgstr "" -#: application/views/contesting/index.php:201 -#: application/views/contesting/index.php:261 +#: application/views/contesting/index.php:205 +#: application/views/contesting/index.php:265 #: application/views/qso/edit_ajax.php:615 msgid "Serial (R)" msgstr "" -#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:210 msgid "Gridsquare (R)" msgstr "" -#: application/views/contesting/index.php:211 -#: application/views/contesting/index.php:259 +#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:263 msgid "Exch (R)" msgstr "" -#: application/views/contesting/index.php:229 +#: application/views/contesting/index.php:233 msgid "Reset QSO" msgstr "" -#: application/views/contesting/index.php:230 -#: application/views/qso/index.php:638 +#: application/views/contesting/index.php:234 +#: application/views/qso/index.php:642 msgid "Save QSO" msgstr "" -#: application/views/contesting/index.php:239 +#: application/views/contesting/index.php:243 msgid "Callsign Suggestions" msgstr "" -#: application/views/contesting/index.php:246 +#: application/views/contesting/index.php:250 msgid "Contest Logbook" msgstr "" -#: application/views/contesting/index.php:263 +#: application/views/contesting/index.php:267 #: application/views/qso/edit_ajax.php:163 msgid "VUCC Gridsquare" msgstr "" @@ -5930,7 +5930,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:187 application/views/qso/index.php:417 +#: application/views/qso/edit_ajax.php:187 application/views/qso/index.php:421 msgid "Propagation Mode" msgstr "" @@ -6042,7 +6042,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:420 #: application/views/qso/edit_ajax.php:481 #: application/views/qso/edit_ajax.php:518 -#: application/views/qso/edit_ajax.php:547 application/views/qso/index.php:583 +#: application/views/qso/edit_ajax.php:547 application/views/qso/index.php:587 #: application/views/search/search_result_ajax.php:180 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:298 @@ -6114,7 +6114,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:523 #: application/views/qso/edit_ajax.php:536 #: application/views/qso/edit_ajax.php:552 -#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:588 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:592 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:148 @@ -6949,10 +6949,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2375 -#: application/views/interface_assets/footer.php:2393 -#: application/views/interface_assets/footer.php:2414 -#: application/views/interface_assets/footer.php:2432 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 +#: application/views/interface_assets/footer.php:2416 +#: application/views/interface_assets/footer.php:2434 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:703 msgid "View" @@ -7089,7 +7089,7 @@ msgid "Not worked" msgstr "" #: application/views/interface_assets/footer.php:47 -#: application/views/qso/index.php:632 +#: application/views/qso/index.php:636 #: application/views/visitor/layout/footer.php:246 msgid "Clear" msgstr "" @@ -7213,62 +7213,62 @@ msgstr "" msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1203 +#: application/views/interface_assets/footer.php:1204 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "" -#: application/views/interface_assets/footer.php:1412 -#: application/views/interface_assets/footer.php:1416 -#: application/views/interface_assets/footer.php:1419 -#: application/views/interface_assets/footer.php:1556 -#: application/views/interface_assets/footer.php:1560 -#: application/views/interface_assets/footer.php:1563 +#: application/views/interface_assets/footer.php:1414 +#: application/views/interface_assets/footer.php:1418 +#: application/views/interface_assets/footer.php:1421 +#: application/views/interface_assets/footer.php:1558 +#: application/views/interface_assets/footer.php:1562 +#: application/views/interface_assets/footer.php:1565 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1419 -#: application/views/interface_assets/footer.php:1563 +#: application/views/interface_assets/footer.php:1421 +#: application/views/interface_assets/footer.php:1565 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2151 +#: application/views/interface_assets/footer.php:2153 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2171 +#: application/views/interface_assets/footer.php:2173 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2211 +#: application/views/interface_assets/footer.php:2213 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2213 +#: application/views/interface_assets/footer.php:2215 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2386 -#: application/views/interface_assets/footer.php:2425 +#: application/views/interface_assets/footer.php:2388 +#: application/views/interface_assets/footer.php:2427 #: application/views/view_log/qso.php:693 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2405 +#: application/views/interface_assets/footer.php:2407 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2443 +#: application/views/interface_assets/footer.php:2445 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2454 -#: application/views/interface_assets/footer.php:2479 +#: application/views/interface_assets/footer.php:2456 +#: application/views/interface_assets/footer.php:2481 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2490 +#: application/views/interface_assets/footer.php:2492 msgid "Something went wrong. Please try again!" msgstr "" @@ -7887,7 +7887,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:426 #: application/views/qso/edit_ajax.php:487 #: application/views/qso/edit_ajax.php:524 -#: application/views/qso/edit_ajax.php:553 application/views/qso/index.php:589 +#: application/views/qso/edit_ajax.php:553 application/views/qso/index.php:593 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:225 #: application/views/view_log/partial/log_ajax.php:145 @@ -7918,7 +7918,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:525 #: application/views/qso/edit_ajax.php:537 #: application/views/qso/edit_ajax.php:554 -#: application/views/qso/edit_ajax.php:567 application/views/qso/index.php:590 +#: application/views/qso/edit_ajax.php:567 application/views/qso/index.php:594 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/search/search_result_ajax.php:305 @@ -7953,7 +7953,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:121 #: application/views/qslprint/qsolist.php:212 #: application/views/qso/edit_ajax.php:438 -#: application/views/qso/edit_ajax.php:471 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:471 application/views/qso/index.php:605 #: application/views/search/search_result_ajax.php:199 #: application/views/search/search_result_ajax.php:241 #: application/views/view_log/partial/log_ajax.php:164 @@ -7971,7 +7971,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:124 #: application/views/qslprint/qsolist.php:213 #: application/views/qso/edit_ajax.php:437 -#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:604 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:167 @@ -7989,7 +7989,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:130 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:439 -#: application/views/qso/edit_ajax.php:472 application/views/qso/index.php:602 +#: application/views/qso/edit_ajax.php:472 application/views/qso/index.php:606 #: application/views/search/search_result_ajax.php:208 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:173 @@ -8003,7 +8003,7 @@ msgstr "" #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:127 #: application/views/qso/edit_ajax.php:440 -#: application/views/qso/edit_ajax.php:473 application/views/qso/index.php:603 +#: application/views/qso/edit_ajax.php:473 application/views/qso/index.php:607 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:208 msgid "Manager" @@ -8988,7 +8988,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:15 #: application/views/qslprint/qsolist.php:85 -#: application/views/qso/index.php:609 +#: application/views/qso/index.php:613 #: application/views/search/search_result_ajax.php:205 #: application/views/view_log/partial/log_ajax.php:170 #: src/QSLManager/QSO.php:346 @@ -9318,11 +9318,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:351 +#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:355 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:349 +#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:353 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:631 msgid "Transmit Power (W)" @@ -9352,7 +9352,7 @@ msgstr "" msgid "Long Path" msgstr "" -#: application/views/qso/edit_ajax.php:273 application/views/qso/index.php:531 +#: application/views/qso/edit_ajax.php:273 application/views/qso/index.php:535 #: application/views/view_log/qso.php:448 msgid "eMail" msgstr "" @@ -9365,32 +9365,32 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:292 application/views/qso/index.php:558 +#: application/views/qso/edit_ajax.php:292 application/views/qso/index.php:562 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:292 application/views/qso/index.php:560 +#: application/views/qso/edit_ajax.php:292 application/views/qso/index.php:564 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:297 application/views/qso/index.php:564 +#: application/views/qso/edit_ajax.php:297 application/views/qso/index.php:568 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:297 application/views/qso/index.php:566 +#: application/views/qso/edit_ajax.php:297 application/views/qso/index.php:570 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:382 application/views/qso/index.php:258 -#: application/views/qso/index.php:516 application/views/user/edit.php:599 +#: application/views/qso/edit_ajax.php:382 application/views/qso/index.php:262 +#: application/views/qso/index.php:520 application/views/user/edit.php:599 #: application/views/view_log/qso.php:414 #: application/views/view_log/qso.php:671 msgid "Sig Info" msgstr "" #: application/views/qso/edit_ajax.php:397 -#: application/views/qso/edit_ajax.php:510 application/views/qso/index.php:575 -#: application/views/qso/index.php:619 +#: application/views/qso/edit_ajax.php:510 application/views/qso/index.php:579 +#: application/views/qso/index.php:623 msgid "Note: Gets exported to third-party services." msgstr "" @@ -9399,8 +9399,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:436 -#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:596 -#: application/views/qso/index.php:599 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:600 +#: application/views/qso/index.php:603 msgid "Method" msgstr "" @@ -9419,11 +9419,11 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:616 +#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:620 msgid "Get the default message for eQSL, for this station." msgstr "" -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:616 +#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:620 msgid "QSL MSG" msgstr "" @@ -9460,7 +9460,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:5 application/views/qso/index.php:727 +#: application/views/qso/index.php:5 application/views/qso/index.php:731 msgid "Previous Contacts" msgstr "" @@ -9513,7 +9513,7 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:199 application/views/qso/index.php:455 +#: application/views/qso/index.php:203 application/views/qso/index.php:459 #: application/views/station_profile/create.php:149 #: application/views/station_profile/edit.php:218 #: application/views/user/edit.php:583 application/views/view_log/qso.php:355 @@ -9521,7 +9521,7 @@ msgstr "" msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:215 application/views/qso/index.php:472 +#: application/views/qso/index.php:219 application/views/qso/index.php:476 #: application/views/station_profile/create.php:165 #: application/views/station_profile/edit.php:246 #: application/views/user/edit.php:587 application/views/view_log/qso.php:362 @@ -9529,91 +9529,91 @@ msgstr "" msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:325 application/views/view_log/qso.php:100 +#: application/views/qso/index.php:329 application/views/view_log/qso.php:100 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:330 +#: application/views/qso/index.php:334 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:474 +#: application/views/qso/index.php:478 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:487 +#: application/views/qso/index.php:491 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:500 +#: application/views/qso/index.php:504 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:512 +#: application/views/qso/index.php:516 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:518 +#: application/views/qso/index.php:522 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:526 +#: application/views/qso/index.php:530 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:533 +#: application/views/qso/index.php:537 msgid "eMail-Adress of QSO-Partner" msgstr "" -#: application/views/qso/index.php:542 application/views/view_log/qso.php:276 +#: application/views/qso/index.php:546 application/views/view_log/qso.php:276 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:550 application/views/view_log/qso.php:283 +#: application/views/qso/index.php:554 application/views/view_log/qso.php:283 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:635 +#: application/views/qso/index.php:639 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:676 +#: application/views/qso/index.php:680 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:682 msgid "Connect" msgstr "" -#: application/views/qso/index.php:687 +#: application/views/qso/index.php:691 msgid "Stop" msgstr "" -#: application/views/qso/index.php:688 +#: application/views/qso/index.php:692 msgid "Tune" msgstr "" -#: application/views/qso/index.php:689 +#: application/views/qso/index.php:693 msgid "Stop Tune" msgstr "" -#: application/views/qso/index.php:695 +#: application/views/qso/index.php:699 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:704 msgid "Send" msgstr "" -#: application/views/qso/index.php:710 +#: application/views/qso/index.php:714 msgid "Suggestions" msgstr "" -#: application/views/qso/index.php:717 +#: application/views/qso/index.php:721 msgid "Profile Picture" msgstr "" -#: application/views/qso/index.php:741 +#: application/views/qso/index.php:745 msgid "Max. 5 previous contacts are shown" msgstr "" diff --git a/application/locale/cnr/LC_MESSAGES/messages.po b/application/locale/cnr/LC_MESSAGES/messages.po index 8fea55044..db9159557 100644 --- a/application/locale/cnr/LC_MESSAGES/messages.po +++ b/application/locale/cnr/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-11-15 15:56+0000\n" +"POT-Creation-Date: 2024-11-17 16:50+0000\n" "PO-Revision-Date: 2024-08-17 10:49+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Montenegrin \n" "Language-Team: Czech \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -283,8 +283,8 @@ msgstr "Diplome – %s" #: application/views/interface_assets/header.php:198 #: application/views/logbookadvanced/index.php:658 #: application/views/logbookadvanced/useroptions.php:114 -#: application/views/qso/edit_ajax.php:387 application/views/qso/index.php:267 -#: application/views/qso/index.php:524 application/views/user/edit.php:603 +#: application/views/qso/edit_ajax.php:387 application/views/qso/index.php:271 +#: application/views/qso/index.php:528 application/views/user/edit.php:603 #: application/views/view_log/qso.php:433 msgid "DOK" msgstr "DOK" @@ -302,7 +302,7 @@ msgstr "DOK" #: application/views/logbookadvanced/useroptions.php:86 #: application/views/lookup/index.php:4 #: application/views/lotw_views/index.php:36 -#: application/views/qso/edit_ajax.php:232 application/views/qso/index.php:364 +#: application/views/qso/edit_ajax.php:232 application/views/qso/index.php:368 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 #: application/views/search/result.php:27 @@ -1110,7 +1110,7 @@ msgstr "Clublog" #: application/views/awards/was/index.php:87 #: application/views/components/hamsat/table.php:30 #: application/views/contesting/index.php:113 -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:259 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 #: application/views/debug/index.php:573 @@ -1167,8 +1167,8 @@ msgstr "Mode" #: application/controllers/Logbook.php:1357 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:170 -#: application/views/contesting/index.php:256 +#: application/views/contesting/index.php:174 +#: application/views/contesting/index.php:260 #: application/views/logbookadvanced/index.php:601 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 @@ -1179,7 +1179,7 @@ msgstr "Mode" #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:11 #: application/views/qso/components/previous_contacts.php:78 -#: application/views/qso/edit_ajax.php:141 application/views/qso/index.php:180 +#: application/views/qso/edit_ajax.php:141 application/views/qso/index.php:184 #: application/views/search/search_result_ajax.php:5 #: application/views/simplefle/index.php:153 #: application/views/user/edit.php:230 application/views/user/edit.php:252 @@ -1194,8 +1194,8 @@ msgstr "RST (S)" #: application/controllers/Logbook.php:1358 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:194 -#: application/views/contesting/index.php:257 +#: application/views/contesting/index.php:198 +#: application/views/contesting/index.php:261 #: application/views/logbookadvanced/index.php:604 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 @@ -1206,7 +1206,7 @@ msgstr "RST (S)" #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:12 #: application/views/qso/components/previous_contacts.php:79 -#: application/views/qso/edit_ajax.php:146 application/views/qso/index.php:185 +#: application/views/qso/edit_ajax.php:146 application/views/qso/index.php:189 #: application/views/search/search_result_ajax.php:6 #: application/views/simplefle/index.php:154 #: application/views/user/edit.php:231 application/views/user/edit.php:253 @@ -1302,7 +1302,7 @@ msgstr "Staat" #: application/views/awards/gridmaster/index.php:40 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:21 -#: application/views/contesting/index.php:262 +#: application/views/contesting/index.php:266 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 @@ -1319,7 +1319,7 @@ msgstr "Staat" #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 #: application/views/qso/components/previous_contacts.php:86 -#: application/views/qso/edit_ajax.php:155 application/views/qso/index.php:282 +#: application/views/qso/edit_ajax.php:155 application/views/qso/index.php:286 #: application/views/satellite/pass.php:28 #: application/views/search/cqzones_result.php:12 #: application/views/search/ituzones_result.php:12 @@ -1389,7 +1389,7 @@ msgstr "Distanz" #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:45 #: application/views/contesting/index.php:126 -#: application/views/contesting/index.php:254 +#: application/views/contesting/index.php:258 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:574 application/views/dxatlas/index.php:31 @@ -1494,7 +1494,7 @@ msgstr "Operator" #: application/views/lookup/index.php:44 #: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 -#: application/views/qso/edit_ajax.php:250 application/views/qso/index.php:373 +#: application/views/qso/edit_ajax.php:250 application/views/qso/index.php:377 #: application/views/station_profile/create.php:73 #: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 @@ -1593,7 +1593,7 @@ msgstr "Bearbeite Mode" #: application/views/notes/view.php:6 application/views/notes/view.php:9 #: application/views/qso/edit_ajax.php:36 #: application/views/qso/edit_ajax.php:395 application/views/qso/index.php:41 -#: application/views/qso/index.php:573 application/views/view_log/qso.php:14 +#: application/views/qso/index.php:577 application/views/view_log/qso.php:14 #: application/views/view_log/qso.php:679 msgid "Notes" msgstr "Notizen" @@ -1837,8 +1837,8 @@ msgstr "Hardware-Schnittstellen" #: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:63 -#: application/views/contesting/index.php:148 -#: application/views/qso/index.php:315 +#: application/views/contesting/index.php:152 +#: application/views/qso/index.php:319 msgid "Radio" msgstr "Funkgerät" @@ -1858,13 +1858,13 @@ msgid "Options" msgstr "Optionen" #: application/controllers/Radio.php:53 application/views/debug/index.php:308 -#: application/views/qso/index.php:680 +#: application/views/qso/index.php:684 msgid "Settings" msgstr "Einstellungen" #: application/controllers/Radio.php:91 -#: application/views/contesting/index.php:152 -#: application/views/qso/index.php:319 +#: application/views/contesting/index.php:156 +#: application/views/qso/index.php:323 msgid "last updated" msgstr "zuletzt aktualisiert" @@ -1896,10 +1896,10 @@ msgstr "Bearbeiten" #: application/controllers/Radio.php:107 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2374 -#: application/views/interface_assets/footer.php:2392 -#: application/views/interface_assets/footer.php:2413 -#: application/views/interface_assets/footer.php:2431 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 +#: application/views/interface_assets/footer.php:2415 +#: application/views/interface_assets/footer.php:2433 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:568 #: application/views/lotw_views/index.php:114 @@ -2038,7 +2038,7 @@ msgstr "Bearbeite Stationsstandort: " #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 #: application/views/logbookadvanced/edit.php:21 -#: application/views/qslprint/index.php:20 application/views/qso/index.php:303 +#: application/views/qslprint/index.php:20 application/views/qso/index.php:307 #: application/views/search/search_result_ajax.php:18 #: application/views/station_profile/create.php:305 #: application/views/station_profile/edit.php:455 @@ -2073,7 +2073,7 @@ msgstr "Nicht erlaubt" #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 #: application/controllers/Stationsetup.php:436 -#: application/views/qso/index.php:639 application/views/simplefle/index.php:38 +#: application/views/qso/index.php:643 application/views/simplefle/index.php:38 msgid "Error" msgstr "Fehler" @@ -2756,8 +2756,8 @@ msgstr "Differenz" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1624 +#: application/views/interface_assets/footer.php:1487 +#: application/views/interface_assets/footer.php:1626 #: 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 @@ -2865,7 +2865,7 @@ msgstr "Keine/Leer" #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:44 application/views/kml/index.php:80 #: application/views/logbookadvanced/index.php:251 -#: application/views/qso/edit_ajax.php:190 application/views/qso/index.php:420 +#: application/views/qso/edit_ajax.php:190 application/views/qso/index.php:424 #: application/views/timeline/index.php:80 #: application/views/view_log/qso.php:213 msgctxt "Propagation Mode" @@ -2877,7 +2877,7 @@ msgstr "Flugzeug-Scatter" #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:45 application/views/kml/index.php:81 #: application/views/logbookadvanced/index.php:252 -#: application/views/qso/edit_ajax.php:191 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:191 application/views/qso/index.php:425 #: application/views/timeline/index.php:81 #: application/views/view_log/qso.php:216 msgctxt "Propagation Mode" @@ -2889,7 +2889,7 @@ msgstr "Aurora" #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:46 application/views/kml/index.php:82 #: application/views/logbookadvanced/index.php:253 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:422 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:426 #: application/views/timeline/index.php:82 #: application/views/view_log/qso.php:219 msgctxt "Propagation Mode" @@ -2901,7 +2901,7 @@ msgstr "Aurora-E" #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:47 application/views/kml/index.php:83 #: application/views/logbookadvanced/index.php:254 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:423 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:427 #: application/views/timeline/index.php:83 #: application/views/view_log/qso.php:222 msgctxt "Propagation Mode" @@ -2913,7 +2913,7 @@ msgstr "Rückwärts-Scatter" #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:48 application/views/kml/index.php:84 #: application/views/logbookadvanced/index.php:255 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:424 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:428 #: application/views/timeline/index.php:84 #: application/views/view_log/qso.php:225 msgctxt "Propagation Mode" @@ -2925,7 +2925,7 @@ msgstr "EchoLink" #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:49 application/views/kml/index.php:85 #: application/views/logbookadvanced/index.php:256 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:425 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:429 #: application/views/timeline/index.php:85 #: application/views/view_log/qso.php:228 msgctxt "Propagation Mode" @@ -2937,7 +2937,7 @@ msgstr "Erde-Mond-Erde" #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:50 application/views/kml/index.php:86 #: application/views/logbookadvanced/index.php:257 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:426 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:430 #: application/views/timeline/index.php:86 #: application/views/view_log/qso.php:231 msgctxt "Propagation Mode" @@ -2949,7 +2949,7 @@ msgstr "Sporadic E" #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:51 application/views/kml/index.php:87 #: application/views/logbookadvanced/index.php:258 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:427 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:431 #: application/views/timeline/index.php:87 #: application/views/view_log/qso.php:234 msgctxt "Propagation Mode" @@ -2961,7 +2961,7 @@ msgstr "feldausgerichtete Irregularitäten" #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:52 application/views/kml/index.php:88 #: application/views/logbookadvanced/index.php:259 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:428 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:432 #: application/views/timeline/index.php:88 #: application/views/view_log/qso.php:237 msgctxt "Propagation Mode" @@ -2973,7 +2973,7 @@ msgstr "F2-Reflexion" #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:53 application/views/kml/index.php:89 #: application/views/logbookadvanced/index.php:260 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:429 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:433 #: application/views/timeline/index.php:89 #: application/views/view_log/qso.php:240 msgctxt "Propagation Mode" @@ -2985,7 +2985,7 @@ msgstr "Internet-gestützt" #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:54 application/views/kml/index.php:90 #: application/views/logbookadvanced/index.php:261 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:430 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:434 #: application/views/timeline/index.php:90 #: application/views/view_log/qso.php:243 msgctxt "Propagation Mode" @@ -2997,7 +2997,7 @@ msgstr "Ionoscatter" #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:55 application/views/kml/index.php:91 #: application/views/logbookadvanced/index.php:262 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:431 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:435 #: application/views/timeline/index.php:91 #: application/views/view_log/qso.php:246 msgctxt "Propagation Mode" @@ -3009,7 +3009,7 @@ msgstr "IRLP" #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:56 application/views/kml/index.php:92 #: application/views/logbookadvanced/index.php:263 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:432 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:436 #: application/views/timeline/index.php:92 #: application/views/view_log/qso.php:249 msgctxt "Propagation Mode" @@ -3021,7 +3021,7 @@ msgstr "Meteor-Scatter" #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:57 application/views/kml/index.php:93 #: application/views/logbookadvanced/index.php:264 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:433 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:437 #: application/views/timeline/index.php:93 #: application/views/view_log/qso.php:252 msgctxt "Propagation Mode" @@ -3033,7 +3033,7 @@ msgstr "Terrestrische oder atmosphärische Repeater oder Transponder" #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:58 application/views/kml/index.php:94 #: application/views/logbookadvanced/index.php:265 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:438 #: application/views/timeline/index.php:94 #: application/views/view_log/qso.php:255 msgctxt "Propagation Mode" @@ -3045,7 +3045,7 @@ msgstr "Regen-Scatter" #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:59 application/views/kml/index.php:95 #: application/views/logbookadvanced/index.php:266 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:439 #: application/views/timeline/index.php:95 #: application/views/view_log/qso.php:258 msgctxt "Propagation Mode" @@ -3057,7 +3057,7 @@ msgstr "Satellit" #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:60 application/views/kml/index.php:96 #: application/views/logbookadvanced/index.php:267 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:436 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:440 #: application/views/timeline/index.php:96 #: application/views/view_log/qso.php:261 msgctxt "Propagation Mode" @@ -3069,7 +3069,7 @@ msgstr "Transequatorial" #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:61 application/views/kml/index.php:97 #: application/views/logbookadvanced/index.php:268 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:441 #: application/views/timeline/index.php:97 #: application/views/view_log/qso.php:264 msgctxt "Propagation Mode" @@ -3236,7 +3236,7 @@ msgstr "Nichts gefunden!" #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:161 +#: application/views/contesting/index.php:165 #: application/views/csv/index.php:23 application/views/dashboard/index.php:175 #: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 @@ -3325,7 +3325,7 @@ msgstr "Die Informationen zum DOK im Logbuch weichen von denen im DCL ab" #: application/views/bandmap/list.php:112 #: application/views/components/hamsat/table.php:25 #: application/views/contesting/index.php:98 -#: application/views/contesting/index.php:252 +#: application/views/contesting/index.php:256 #: application/views/dashboard/index.php:170 #: application/views/debug/index.php:570 #: application/views/distancerecords/index.php:16 @@ -3369,7 +3369,7 @@ msgstr "Datum" #: application/views/bandmap/list.php:112 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:103 -#: application/views/contesting/index.php:252 +#: application/views/contesting/index.php:256 #: application/views/dashboard/index.php:173 #: application/views/debug/index.php:571 #: application/views/distancerecords/index.php:17 @@ -3398,7 +3398,7 @@ msgstr "Zeit" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:114 -#: application/views/contesting/index.php:253 +#: application/views/contesting/index.php:257 #: application/views/debug/index.php:572 application/views/debug/index.php:607 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -3537,7 +3537,7 @@ msgstr "" #: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:32 #: application/views/interface_assets/footer.php:510 -#: application/views/interface_assets/footer.php:2170 +#: application/views/interface_assets/footer.php:2172 msgid "DANGER" msgstr "GEFAHR" @@ -4010,7 +4010,7 @@ msgstr "Gesamt" #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:94 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:306 -#: application/views/qso/index.php:396 +#: application/views/qso/index.php:400 #: application/views/search/cqzones_result.php:13 #: application/views/station_profile/create.php:106 #: application/views/station_profile/edit.php:153 @@ -4138,7 +4138,7 @@ msgstr "QSO mit QSL-Typ anzeigen" #: application/views/awards/cq/index.php:56 #: application/views/awards/itu/index.php:56 #: application/views/awards/wac/index.php:44 -#: application/views/interface_assets/footer.php:2149 +#: application/views/interface_assets/footer.php:2151 #: application/views/qso/edit_ajax.php:405 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -4367,7 +4367,7 @@ msgstr "Inklusive gelöschte" #: application/views/logbookadvanced/edit.php:155 #: application/views/logbookadvanced/index.php:335 #: application/views/options/dxcluster.php:56 -#: application/views/qso/edit_ajax.php:264 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:264 application/views/qso/index.php:391 #: application/views/view_log/qso.php:323 msgid "Antarctica" msgstr "Antarktis" @@ -4378,7 +4378,7 @@ msgstr "Antarktis" #: application/views/logbookadvanced/edit.php:154 #: application/views/logbookadvanced/index.php:334 #: application/views/options/dxcluster.php:55 -#: application/views/qso/edit_ajax.php:263 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:263 application/views/qso/index.php:390 #: application/views/view_log/qso.php:320 msgid "Africa" msgstr "Afrika" @@ -4389,7 +4389,7 @@ msgstr "Afrika" #: application/views/logbookadvanced/edit.php:157 #: application/views/logbookadvanced/index.php:337 #: application/views/options/dxcluster.php:57 -#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:388 +#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:392 #: application/views/view_log/qso.php:326 msgid "Asia" msgstr "Asien" @@ -4400,7 +4400,7 @@ msgstr "Asien" #: application/views/logbookadvanced/edit.php:158 #: application/views/logbookadvanced/index.php:338 #: application/views/options/dxcluster.php:58 -#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:389 +#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:393 #: application/views/view_log/qso.php:329 msgid "Europe" msgstr "Europa" @@ -4411,7 +4411,7 @@ msgstr "Europa" #: application/views/logbookadvanced/edit.php:156 #: application/views/logbookadvanced/index.php:336 #: application/views/options/dxcluster.php:59 -#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:390 +#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:394 #: application/views/view_log/qso.php:332 msgid "North America" msgstr "Nordamerika" @@ -4422,7 +4422,7 @@ msgstr "Nordamerika" #: application/views/logbookadvanced/edit.php:159 #: application/views/logbookadvanced/index.php:339 #: application/views/options/dxcluster.php:61 -#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:396 #: application/views/view_log/qso.php:338 msgid "South America" msgstr "Südamerika" @@ -4433,7 +4433,7 @@ msgstr "Südamerika" #: application/views/logbookadvanced/edit.php:160 #: application/views/logbookadvanced/index.php:340 #: application/views/options/dxcluster.php:60 -#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:395 #: application/views/view_log/qso.php:335 msgid "Oceania" msgstr "Ozeanien" @@ -4672,13 +4672,13 @@ msgstr "Zeige IOTA Karte" #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 #: application/views/contesting/index.php:59 -#: application/views/contesting/index.php:219 +#: application/views/contesting/index.php:223 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 #: application/views/logbookadvanced/index.php:613 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 -#: application/views/qso/edit_ajax.php:170 application/views/qso/index.php:191 +#: application/views/qso/edit_ajax.php:170 application/views/qso/index.php:195 #: application/views/satellite/edit.php:34 #: application/views/satellite/index.php:21 #: application/views/search/result.php:16 @@ -4706,7 +4706,7 @@ msgstr "Gelöscht" #: application/views/logbookadvanced/index.php:646 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 application/views/qso/edit_ajax.php:314 -#: application/views/qso/index.php:406 +#: application/views/qso/index.php:410 #: application/views/search/ituzones_result.php:13 #: application/views/station_profile/create.php:120 #: application/views/station_profile/edit.php:170 @@ -4836,7 +4836,7 @@ msgstr "" "bitte die %s." #: application/views/awards/pota/index.php:31 -#: application/views/qso/index.php:239 application/views/qso/index.php:498 +#: application/views/qso/index.php:243 application/views/qso/index.php:502 #: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:272 #: application/views/user/edit.php:595 application/views/view_log/qso.php:376 @@ -5046,7 +5046,7 @@ msgstr "Diplome - Worked All Continents (WAC)" #: application/views/logbookadvanced/index.php:330 #: application/views/logbookadvanced/index.php:682 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:260 application/views/qso/index.php:383 +#: application/views/qso/edit_ajax.php:260 application/views/qso/index.php:387 #: application/views/view_log/qso.php:315 msgid "Continent" msgstr "Kontinent" @@ -5169,7 +5169,7 @@ msgstr "" "Diplome sowohl weltweit als auch national beantragen." #: application/views/awards/wwff/index.php:31 -#: application/views/qso/index.php:227 application/views/qso/index.php:485 +#: application/views/qso/index.php:231 application/views/qso/index.php:489 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:259 #: application/views/user/edit.php:591 application/views/view_log/qso.php:369 @@ -5240,8 +5240,8 @@ msgstr "BandListe" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:65 #: application/views/contesting/index.php:19 #: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:150 -#: application/views/qso/index.php:317 +#: application/views/contesting/index.php:154 +#: application/views/qso/index.php:321 msgid "None" msgstr "Nichts" @@ -5330,14 +5330,14 @@ msgstr "" "Bänder ausgeblendet werden und nicht ausgewählt werden können." #: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 -#: application/views/qso/index.php:251 application/views/qso/index.php:510 +#: application/views/qso/index.php:255 application/views/qso/index.php:514 #: application/views/user/edit.php:599 application/views/view_log/qso.php:398 #: application/views/view_log/qso.php:666 msgid "Sig" msgstr "Sig" #: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:346 -#: application/views/qso/index.php:449 +#: application/views/qso/index.php:453 msgid "USA County" msgstr "US-County" @@ -5473,7 +5473,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:553 -#: application/views/qso/index.php:275 +#: application/views/qso/index.php:279 #: application/views/station_profile/edit.php:92 msgid "Location" msgstr "Standort" @@ -5596,7 +5596,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:522 #: application/views/qso/edit_ajax.php:535 #: application/views/qso/edit_ajax.php:551 -#: application/views/qso/edit_ajax.php:565 application/views/qso/index.php:587 +#: application/views/qso/edit_ajax.php:565 application/views/qso/index.php:591 #: application/views/search/result.php:74 #: application/views/station_profile/create.php:209 #: application/views/station_profile/create.php:217 @@ -5640,7 +5640,7 @@ msgstr "Ja" #: application/views/qso/edit_ajax.php:521 #: application/views/qso/edit_ajax.php:534 #: application/views/qso/edit_ajax.php:550 -#: application/views/qso/edit_ajax.php:564 application/views/qso/index.php:586 +#: application/views/qso/edit_ajax.php:564 application/views/qso/index.php:590 #: application/views/search/result.php:76 #: application/views/station_profile/create.php:210 #: application/views/station_profile/create.php:218 @@ -5711,12 +5711,12 @@ msgstr "" "vorbeischauen." #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:224 +#: application/views/contesting/index.php:228 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:670 #: application/views/logbookadvanced/useroptions.php:130 -#: application/views/qso/edit_ajax.php:181 application/views/qso/index.php:292 +#: application/views/qso/edit_ajax.php:181 application/views/qso/index.php:296 #: application/views/view_log/qso.php:202 msgid "Comment" msgstr "Kommentar" @@ -5934,7 +5934,7 @@ msgstr "Seriennummer + Locator + Austausch" #: application/views/contesting/index.php:40 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:596 application/views/qso/index.php:355 +#: application/views/qso/edit_ajax.php:596 application/views/qso/index.php:359 msgid "Operator Callsign" msgstr "Rufzeichen des Operators" @@ -6012,54 +6012,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "Seriennummer" -#: application/views/contesting/index.php:177 -#: application/views/contesting/index.php:260 +#: application/views/contesting/index.php:181 +#: application/views/contesting/index.php:264 #: application/views/qso/edit_ajax.php:620 msgid "Serial (S)" msgstr "Nummer (S)" -#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:186 msgid "Gridsquare (S)" msgstr "Locator (S)" -#: application/views/contesting/index.php:187 -#: application/views/contesting/index.php:258 +#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:262 msgid "Exch (S)" msgstr "Exch (S)" -#: application/views/contesting/index.php:201 -#: application/views/contesting/index.php:261 +#: application/views/contesting/index.php:205 +#: application/views/contesting/index.php:265 #: application/views/qso/edit_ajax.php:615 msgid "Serial (R)" msgstr "Nummer (R)" -#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:210 msgid "Gridsquare (R)" msgstr "Locator (R)" -#: application/views/contesting/index.php:211 -#: application/views/contesting/index.php:259 +#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:263 msgid "Exch (R)" msgstr "Exch (R)" -#: application/views/contesting/index.php:229 +#: application/views/contesting/index.php:233 msgid "Reset QSO" msgstr "Setze QSO zurück" -#: application/views/contesting/index.php:230 -#: application/views/qso/index.php:638 +#: application/views/contesting/index.php:234 +#: application/views/qso/index.php:642 msgid "Save QSO" msgstr "Speichere QSO" -#: application/views/contesting/index.php:239 +#: application/views/contesting/index.php:243 msgid "Callsign Suggestions" msgstr "Rufzeichenvorschläge" -#: application/views/contesting/index.php:246 +#: application/views/contesting/index.php:250 msgid "Contest Logbook" msgstr "Contest-Logbuch" -#: application/views/contesting/index.php:263 +#: application/views/contesting/index.php:267 #: application/views/qso/edit_ajax.php:163 msgid "VUCC Gridsquare" msgstr "VUCC Locator" @@ -6233,7 +6233,7 @@ msgstr "Es werden nur QSOs exportiert, welche SOTA-Informationen enthalten!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:187 application/views/qso/index.php:417 +#: application/views/qso/edit_ajax.php:187 application/views/qso/index.php:421 msgid "Propagation Mode" msgstr "Propagation" @@ -6354,7 +6354,7 @@ msgstr "Benötigt" #: application/views/qso/edit_ajax.php:420 #: application/views/qso/edit_ajax.php:481 #: application/views/qso/edit_ajax.php:518 -#: application/views/qso/edit_ajax.php:547 application/views/qso/index.php:583 +#: application/views/qso/edit_ajax.php:547 application/views/qso/index.php:587 #: application/views/search/search_result_ajax.php:180 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:298 @@ -6426,7 +6426,7 @@ msgstr "Erhalten" #: application/views/qso/edit_ajax.php:523 #: application/views/qso/edit_ajax.php:536 #: application/views/qso/edit_ajax.php:552 -#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:588 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:592 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:148 @@ -7340,10 +7340,10 @@ msgid "QSL Date" msgstr "QSL-Datum" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2375 -#: application/views/interface_assets/footer.php:2393 -#: application/views/interface_assets/footer.php:2414 -#: application/views/interface_assets/footer.php:2432 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 +#: application/views/interface_assets/footer.php:2416 +#: application/views/interface_assets/footer.php:2434 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:703 msgid "View" @@ -7486,7 +7486,7 @@ msgid "Not worked" msgstr "Nicht gearbeitet" #: application/views/interface_assets/footer.php:47 -#: application/views/qso/index.php:632 +#: application/views/qso/index.php:636 #: application/views/visitor/layout/footer.php:246 msgid "Clear" msgstr "Zurücksetzen" @@ -7617,62 +7617,62 @@ msgstr "Anzahl: " msgid "Grids: " msgstr "Locator: " -#: application/views/interface_assets/footer.php:1203 +#: application/views/interface_assets/footer.php:1204 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "Du bist nicht eingeloggt. Bitte %slogge dich ein%s" -#: application/views/interface_assets/footer.php:1412 -#: application/views/interface_assets/footer.php:1416 -#: application/views/interface_assets/footer.php:1419 -#: application/views/interface_assets/footer.php:1556 -#: application/views/interface_assets/footer.php:1560 -#: application/views/interface_assets/footer.php:1563 +#: application/views/interface_assets/footer.php:1414 +#: application/views/interface_assets/footer.php:1418 +#: application/views/interface_assets/footer.php:1421 +#: application/views/interface_assets/footer.php:1558 +#: application/views/interface_assets/footer.php:1562 +#: application/views/interface_assets/footer.php:1565 msgid "grid square" msgstr "Locator" -#: application/views/interface_assets/footer.php:1419 -#: application/views/interface_assets/footer.php:1563 +#: application/views/interface_assets/footer.php:1421 +#: application/views/interface_assets/footer.php:1565 msgid "Total count" msgstr "Summe" -#: application/views/interface_assets/footer.php:2151 +#: application/views/interface_assets/footer.php:2153 msgid "QSL Card for " msgstr "QSL-Karte für " -#: application/views/interface_assets/footer.php:2171 +#: application/views/interface_assets/footer.php:2173 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Warnung! Bist du sicher, dass du diese QSL-Karte löschen möchtest?" -#: application/views/interface_assets/footer.php:2211 +#: application/views/interface_assets/footer.php:2213 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "eQSL-Karte" -#: application/views/interface_assets/footer.php:2213 +#: application/views/interface_assets/footer.php:2215 msgid "eQSL Card for " msgstr "eQSL-Karte für " -#: application/views/interface_assets/footer.php:2386 -#: application/views/interface_assets/footer.php:2425 +#: application/views/interface_assets/footer.php:2388 +#: application/views/interface_assets/footer.php:2427 #: application/views/view_log/qso.php:693 msgid "QSL image file" msgstr "QSL-Bilddatei" -#: application/views/interface_assets/footer.php:2405 +#: application/views/interface_assets/footer.php:2407 msgid "Front QSL Card:" msgstr "Vorderseite QSL-Karte:" -#: application/views/interface_assets/footer.php:2443 +#: application/views/interface_assets/footer.php:2445 msgid "Back QSL Card:" msgstr "Rückseite QSL-Karte:" -#: application/views/interface_assets/footer.php:2454 -#: application/views/interface_assets/footer.php:2479 +#: application/views/interface_assets/footer.php:2456 +#: application/views/interface_assets/footer.php:2481 msgid "Add additional QSOs to a QSL Card" msgstr "Weitere QSOs zu einer QSL-Karte hinzufügen" -#: application/views/interface_assets/footer.php:2490 +#: application/views/interface_assets/footer.php:2492 msgid "Something went wrong. Please try again!" msgstr "Etwas ist schiefgelaufen. Bitte versuche es erneut!" @@ -8298,7 +8298,7 @@ msgstr "QSL gesendet" #: application/views/qso/edit_ajax.php:426 #: application/views/qso/edit_ajax.php:487 #: application/views/qso/edit_ajax.php:524 -#: application/views/qso/edit_ajax.php:553 application/views/qso/index.php:589 +#: application/views/qso/edit_ajax.php:553 application/views/qso/index.php:593 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:225 #: application/views/view_log/partial/log_ajax.php:145 @@ -8329,7 +8329,7 @@ msgstr "In Warteschlange" #: application/views/qso/edit_ajax.php:525 #: application/views/qso/edit_ajax.php:537 #: application/views/qso/edit_ajax.php:554 -#: application/views/qso/edit_ajax.php:567 application/views/qso/index.php:590 +#: application/views/qso/edit_ajax.php:567 application/views/qso/index.php:594 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/search/search_result_ajax.php:305 @@ -8364,7 +8364,7 @@ msgstr "QSL-Send. Methode" #: application/views/qslprint/qsolist.php:121 #: application/views/qslprint/qsolist.php:212 #: application/views/qso/edit_ajax.php:438 -#: application/views/qso/edit_ajax.php:471 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:471 application/views/qso/index.php:605 #: application/views/search/search_result_ajax.php:199 #: application/views/search/search_result_ajax.php:241 #: application/views/view_log/partial/log_ajax.php:164 @@ -8382,7 +8382,7 @@ msgstr "Büro" #: application/views/qslprint/qsolist.php:124 #: application/views/qslprint/qsolist.php:213 #: application/views/qso/edit_ajax.php:437 -#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:604 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:167 @@ -8400,7 +8400,7 @@ msgstr "Direkt" #: application/views/qslprint/qsolist.php:130 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:439 -#: application/views/qso/edit_ajax.php:472 application/views/qso/index.php:602 +#: application/views/qso/edit_ajax.php:472 application/views/qso/index.php:606 #: application/views/search/search_result_ajax.php:208 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:173 @@ -8414,7 +8414,7 @@ msgstr "Elektronisch" #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:127 #: application/views/qso/edit_ajax.php:440 -#: application/views/qso/edit_ajax.php:473 application/views/qso/index.php:603 +#: application/views/qso/edit_ajax.php:473 application/views/qso/index.php:607 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:208 msgid "Manager" @@ -9466,7 +9466,7 @@ msgstr "Station" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:15 #: application/views/qslprint/qsolist.php:85 -#: application/views/qso/index.php:609 +#: application/views/qso/index.php:613 #: application/views/search/search_result_ajax.php:205 #: application/views/view_log/partial/log_ajax.php:170 #: src/QSLManager/QSO.php:346 @@ -9812,12 +9812,12 @@ msgstr "RX-Frequenz" msgid "RX Band" msgstr "RX-Band" -#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:351 +#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:355 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" "Gib die Ausgangsleistung in Watt an. Erfasse nur Zahlen bei der Eingabe." -#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:349 +#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:353 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:631 msgid "Transmit Power (W)" @@ -9847,7 +9847,7 @@ msgstr "Short Path" msgid "Long Path" msgstr "Long Path" -#: application/views/qso/edit_ajax.php:273 application/views/qso/index.php:531 +#: application/views/qso/edit_ajax.php:273 application/views/qso/index.php:535 #: application/views/view_log/qso.php:448 msgid "eMail" msgstr "E-Mail" @@ -9860,32 +9860,32 @@ msgstr "Satellitenname" msgid "Sat Mode" msgstr "Sat-Modus" -#: application/views/qso/edit_ajax.php:292 application/views/qso/index.php:558 +#: application/views/qso/edit_ajax.php:292 application/views/qso/index.php:562 msgid "Antenna Azimuth (°)" msgstr "Antennen-Azimut (°)" -#: application/views/qso/edit_ajax.php:292 application/views/qso/index.php:560 +#: application/views/qso/edit_ajax.php:292 application/views/qso/index.php:564 msgid "Antenna azimuth in decimal degrees." msgstr "Azimut der Antenne in Dezimalgrad." -#: application/views/qso/edit_ajax.php:297 application/views/qso/index.php:564 +#: application/views/qso/edit_ajax.php:297 application/views/qso/index.php:568 msgid "Antenna Elevation (°)" msgstr "Antennen-Elevation (°)" -#: application/views/qso/edit_ajax.php:297 application/views/qso/index.php:566 +#: application/views/qso/edit_ajax.php:297 application/views/qso/index.php:570 msgid "Antenna elevation in decimal degrees." msgstr "Elevation der Antenne in Dezimalgrad." -#: application/views/qso/edit_ajax.php:382 application/views/qso/index.php:258 -#: application/views/qso/index.php:516 application/views/user/edit.php:599 +#: application/views/qso/edit_ajax.php:382 application/views/qso/index.php:262 +#: application/views/qso/index.php:520 application/views/user/edit.php:599 #: application/views/view_log/qso.php:414 #: application/views/view_log/qso.php:671 msgid "Sig Info" msgstr "Sig Info" #: application/views/qso/edit_ajax.php:397 -#: application/views/qso/edit_ajax.php:510 application/views/qso/index.php:575 -#: application/views/qso/index.php:619 +#: application/views/qso/edit_ajax.php:510 application/views/qso/index.php:579 +#: application/views/qso/index.php:623 msgid "Note: Gets exported to third-party services." msgstr "Hinweis: Wird zu Drittanbieterdiensten exportiert." @@ -9894,8 +9894,8 @@ msgid "Sent Method" msgstr "Sendemethode" #: application/views/qso/edit_ajax.php:436 -#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:596 -#: application/views/qso/index.php:599 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:600 +#: application/views/qso/index.php:603 msgid "Method" msgstr "Methode" @@ -9914,11 +9914,11 @@ msgstr "Verifiziert (Match)" msgid "Received Method" msgstr "Empfangsmethode" -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:616 +#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:620 msgid "Get the default message for eQSL, for this station." msgstr "Setze die eQSL-Nachricht auf den Standardtext zurück." -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:616 +#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:620 msgid "QSL MSG" msgstr "QSL Nachricht" @@ -9955,7 +9955,7 @@ msgstr "Änderungen speichern" msgid "TimeOff is less than TimeOn" msgstr "Endzeit ist vor der Startzeit" -#: application/views/qso/index.php:5 application/views/qso/index.php:727 +#: application/views/qso/index.php:5 application/views/qso/index.php:731 msgid "Previous Contacts" msgstr "Vorherige Kontakte" @@ -10008,7 +10008,7 @@ msgstr "Endzeit" msgid "Search DXCluster for latest Spot" msgstr "Suche im DX-Cluster nach letztem Spot" -#: application/views/qso/index.php:199 application/views/qso/index.php:455 +#: application/views/qso/index.php:203 application/views/qso/index.php:459 #: application/views/station_profile/create.php:149 #: application/views/station_profile/edit.php:218 #: application/views/user/edit.php:583 application/views/view_log/qso.php:355 @@ -10016,7 +10016,7 @@ msgstr "Suche im DX-Cluster nach letztem Spot" msgid "IOTA Reference" msgstr "IOTA-Referenznummer" -#: application/views/qso/index.php:215 application/views/qso/index.php:472 +#: application/views/qso/index.php:219 application/views/qso/index.php:476 #: application/views/station_profile/create.php:165 #: application/views/station_profile/edit.php:246 #: application/views/user/edit.php:587 application/views/view_log/qso.php:362 @@ -10024,91 +10024,91 @@ msgstr "IOTA-Referenznummer" msgid "SOTA Reference" msgstr "SOTA-Referenznummer" -#: application/views/qso/index.php:325 application/views/view_log/qso.php:100 +#: application/views/qso/index.php:329 application/views/view_log/qso.php:100 msgid "Frequency (RX)" msgstr "Frequenz (RX)" -#: application/views/qso/index.php:330 +#: application/views/qso/index.php:334 msgid "Band (RX)" msgstr "Band (RX)" -#: application/views/qso/index.php:474 +#: application/views/qso/index.php:478 msgid "For example: GM/NS-001." msgstr "Zum Beispiel: GM/NS-001." -#: application/views/qso/index.php:487 +#: application/views/qso/index.php:491 msgid "For example: DLFF-0069." msgstr "Zum Beispiel: DLFF-0069." -#: application/views/qso/index.php:500 +#: application/views/qso/index.php:504 msgid "For example: PA-0150. Multiple values allowed." msgstr "Zum Beispiel: PA-0150. Mehrere Werte erlaubt." -#: application/views/qso/index.php:512 +#: application/views/qso/index.php:516 msgid "For example: GMA" msgstr "Zum Beispiel: GMA" -#: application/views/qso/index.php:518 +#: application/views/qso/index.php:522 msgid "For example: DA/NW-357" msgstr "Zum Beispiel: DA/NW-357" -#: application/views/qso/index.php:526 +#: application/views/qso/index.php:530 msgid "For example: Q03" msgstr "Zum Beispiel: Q03" -#: application/views/qso/index.php:533 +#: application/views/qso/index.php:537 msgid "eMail-Adress of QSO-Partner" msgstr "E-Mail-Adresse des QSO-Partners" -#: application/views/qso/index.php:542 application/views/view_log/qso.php:276 +#: application/views/qso/index.php:546 application/views/view_log/qso.php:276 msgid "Satellite Name" msgstr "Satellit" -#: application/views/qso/index.php:550 application/views/view_log/qso.php:283 +#: application/views/qso/index.php:554 application/views/view_log/qso.php:283 msgid "Satellite Mode" msgstr "Satellitenmodus" -#: application/views/qso/index.php:635 +#: application/views/qso/index.php:639 msgid "Reset to Default" msgstr "Auf Standardwerte zurücksetzen" -#: application/views/qso/index.php:676 +#: application/views/qso/index.php:680 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:682 msgid "Connect" msgstr "Verbinden" -#: application/views/qso/index.php:687 +#: application/views/qso/index.php:691 msgid "Stop" msgstr "Stop" -#: application/views/qso/index.php:688 +#: application/views/qso/index.php:692 msgid "Tune" msgstr "Abstimmen" -#: application/views/qso/index.php:689 +#: application/views/qso/index.php:693 msgid "Stop Tune" msgstr "Abstimmen stoppen" -#: application/views/qso/index.php:695 +#: application/views/qso/index.php:699 msgid "CW Speed" msgstr "CW Geschwindigkeit" -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:704 msgid "Send" msgstr "Senden" -#: application/views/qso/index.php:710 +#: application/views/qso/index.php:714 msgid "Suggestions" msgstr "Vorschläge" -#: application/views/qso/index.php:717 +#: application/views/qso/index.php:721 msgid "Profile Picture" msgstr "Profilbild" -#: application/views/qso/index.php:741 +#: application/views/qso/index.php:745 msgid "Max. 5 previous contacts are shown" msgstr "Es werden maximal 5 Kontakte angezeigt" diff --git a/application/locale/el_GR/LC_MESSAGES/messages.po b/application/locale/el_GR/LC_MESSAGES/messages.po index d584953e1..3421b20f5 100644 --- a/application/locale/el_GR/LC_MESSAGES/messages.po +++ b/application/locale/el_GR/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-11-15 15:56+0000\n" +"POT-Creation-Date: 2024-11-17 16:50+0000\n" "PO-Revision-Date: 2024-08-17 10:47+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Greek \n" "Language-Team: Spanish \n" "Language-Team: Estonian \n" "Language-Team: Finnish \n" "Language-Team: French \n" "Language-Team: Croatian \n" "Language-Team: Italian \n" "Language-Team: LANGUAGE \n" @@ -266,8 +266,8 @@ msgstr "" #: application/views/interface_assets/header.php:198 #: application/views/logbookadvanced/index.php:658 #: application/views/logbookadvanced/useroptions.php:114 -#: application/views/qso/edit_ajax.php:387 application/views/qso/index.php:267 -#: application/views/qso/index.php:524 application/views/user/edit.php:603 +#: application/views/qso/edit_ajax.php:387 application/views/qso/index.php:271 +#: application/views/qso/index.php:528 application/views/user/edit.php:603 #: application/views/view_log/qso.php:433 msgid "DOK" msgstr "" @@ -285,7 +285,7 @@ msgstr "" #: application/views/logbookadvanced/useroptions.php:86 #: application/views/lookup/index.php:4 #: application/views/lotw_views/index.php:36 -#: application/views/qso/edit_ajax.php:232 application/views/qso/index.php:364 +#: application/views/qso/edit_ajax.php:232 application/views/qso/index.php:368 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 #: application/views/search/result.php:27 @@ -1080,7 +1080,7 @@ msgstr "" #: application/views/awards/was/index.php:87 #: application/views/components/hamsat/table.php:30 #: application/views/contesting/index.php:113 -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:259 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 #: application/views/debug/index.php:573 @@ -1137,8 +1137,8 @@ msgstr "" #: application/controllers/Logbook.php:1357 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:170 -#: application/views/contesting/index.php:256 +#: application/views/contesting/index.php:174 +#: application/views/contesting/index.php:260 #: application/views/logbookadvanced/index.php:601 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 @@ -1149,7 +1149,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:11 #: application/views/qso/components/previous_contacts.php:78 -#: application/views/qso/edit_ajax.php:141 application/views/qso/index.php:180 +#: application/views/qso/edit_ajax.php:141 application/views/qso/index.php:184 #: application/views/search/search_result_ajax.php:5 #: application/views/simplefle/index.php:153 #: application/views/user/edit.php:230 application/views/user/edit.php:252 @@ -1164,8 +1164,8 @@ msgstr "" #: application/controllers/Logbook.php:1358 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:194 -#: application/views/contesting/index.php:257 +#: application/views/contesting/index.php:198 +#: application/views/contesting/index.php:261 #: application/views/logbookadvanced/index.php:604 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 @@ -1176,7 +1176,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:12 #: application/views/qso/components/previous_contacts.php:79 -#: application/views/qso/edit_ajax.php:146 application/views/qso/index.php:185 +#: application/views/qso/edit_ajax.php:146 application/views/qso/index.php:189 #: application/views/search/search_result_ajax.php:6 #: application/views/simplefle/index.php:154 #: application/views/user/edit.php:231 application/views/user/edit.php:253 @@ -1272,7 +1272,7 @@ msgstr "" #: application/views/awards/gridmaster/index.php:40 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:21 -#: application/views/contesting/index.php:262 +#: application/views/contesting/index.php:266 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 @@ -1289,7 +1289,7 @@ msgstr "" #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 #: application/views/qso/components/previous_contacts.php:86 -#: application/views/qso/edit_ajax.php:155 application/views/qso/index.php:282 +#: application/views/qso/edit_ajax.php:155 application/views/qso/index.php:286 #: application/views/satellite/pass.php:28 #: application/views/search/cqzones_result.php:12 #: application/views/search/ituzones_result.php:12 @@ -1359,7 +1359,7 @@ msgstr "" #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:45 #: application/views/contesting/index.php:126 -#: application/views/contesting/index.php:254 +#: application/views/contesting/index.php:258 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:574 application/views/dxatlas/index.php:31 @@ -1464,7 +1464,7 @@ msgstr "" #: application/views/lookup/index.php:44 #: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 -#: application/views/qso/edit_ajax.php:250 application/views/qso/index.php:373 +#: application/views/qso/edit_ajax.php:250 application/views/qso/index.php:377 #: application/views/station_profile/create.php:73 #: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 @@ -1560,7 +1560,7 @@ msgstr "" #: application/views/notes/view.php:6 application/views/notes/view.php:9 #: application/views/qso/edit_ajax.php:36 #: application/views/qso/edit_ajax.php:395 application/views/qso/index.php:41 -#: application/views/qso/index.php:573 application/views/view_log/qso.php:14 +#: application/views/qso/index.php:577 application/views/view_log/qso.php:14 #: application/views/view_log/qso.php:679 msgid "Notes" msgstr "" @@ -1802,8 +1802,8 @@ msgstr "" #: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:63 -#: application/views/contesting/index.php:148 -#: application/views/qso/index.php:315 +#: application/views/contesting/index.php:152 +#: application/views/qso/index.php:319 msgid "Radio" msgstr "" @@ -1823,13 +1823,13 @@ msgid "Options" msgstr "" #: application/controllers/Radio.php:53 application/views/debug/index.php:308 -#: application/views/qso/index.php:680 +#: application/views/qso/index.php:684 msgid "Settings" msgstr "" #: application/controllers/Radio.php:91 -#: application/views/contesting/index.php:152 -#: application/views/qso/index.php:319 +#: application/views/contesting/index.php:156 +#: application/views/qso/index.php:323 msgid "last updated" msgstr "" @@ -1861,10 +1861,10 @@ msgstr "" #: application/controllers/Radio.php:107 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2374 -#: application/views/interface_assets/footer.php:2392 -#: application/views/interface_assets/footer.php:2413 -#: application/views/interface_assets/footer.php:2431 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 +#: application/views/interface_assets/footer.php:2415 +#: application/views/interface_assets/footer.php:2433 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:568 #: application/views/lotw_views/index.php:114 @@ -2001,7 +2001,7 @@ msgstr "" #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 #: application/views/logbookadvanced/edit.php:21 -#: application/views/qslprint/index.php:20 application/views/qso/index.php:303 +#: application/views/qslprint/index.php:20 application/views/qso/index.php:307 #: application/views/search/search_result_ajax.php:18 #: application/views/station_profile/create.php:305 #: application/views/station_profile/edit.php:455 @@ -2036,7 +2036,7 @@ msgstr "" #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 #: application/controllers/Stationsetup.php:436 -#: application/views/qso/index.php:639 application/views/simplefle/index.php:38 +#: application/views/qso/index.php:643 application/views/simplefle/index.php:38 msgid "Error" msgstr "" @@ -2688,8 +2688,8 @@ msgstr "" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1624 +#: application/views/interface_assets/footer.php:1487 +#: application/views/interface_assets/footer.php:1626 #: 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 @@ -2797,7 +2797,7 @@ msgstr "" #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:44 application/views/kml/index.php:80 #: application/views/logbookadvanced/index.php:251 -#: application/views/qso/edit_ajax.php:190 application/views/qso/index.php:420 +#: application/views/qso/edit_ajax.php:190 application/views/qso/index.php:424 #: application/views/timeline/index.php:80 #: application/views/view_log/qso.php:213 msgctxt "Propagation Mode" @@ -2809,7 +2809,7 @@ msgstr "" #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:45 application/views/kml/index.php:81 #: application/views/logbookadvanced/index.php:252 -#: application/views/qso/edit_ajax.php:191 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:191 application/views/qso/index.php:425 #: application/views/timeline/index.php:81 #: application/views/view_log/qso.php:216 msgctxt "Propagation Mode" @@ -2821,7 +2821,7 @@ msgstr "" #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:46 application/views/kml/index.php:82 #: application/views/logbookadvanced/index.php:253 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:422 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:426 #: application/views/timeline/index.php:82 #: application/views/view_log/qso.php:219 msgctxt "Propagation Mode" @@ -2833,7 +2833,7 @@ msgstr "" #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:47 application/views/kml/index.php:83 #: application/views/logbookadvanced/index.php:254 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:423 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:427 #: application/views/timeline/index.php:83 #: application/views/view_log/qso.php:222 msgctxt "Propagation Mode" @@ -2845,7 +2845,7 @@ msgstr "" #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:48 application/views/kml/index.php:84 #: application/views/logbookadvanced/index.php:255 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:424 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:428 #: application/views/timeline/index.php:84 #: application/views/view_log/qso.php:225 msgctxt "Propagation Mode" @@ -2857,7 +2857,7 @@ msgstr "" #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:49 application/views/kml/index.php:85 #: application/views/logbookadvanced/index.php:256 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:425 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:429 #: application/views/timeline/index.php:85 #: application/views/view_log/qso.php:228 msgctxt "Propagation Mode" @@ -2869,7 +2869,7 @@ msgstr "" #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:50 application/views/kml/index.php:86 #: application/views/logbookadvanced/index.php:257 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:426 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:430 #: application/views/timeline/index.php:86 #: application/views/view_log/qso.php:231 msgctxt "Propagation Mode" @@ -2881,7 +2881,7 @@ msgstr "" #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:51 application/views/kml/index.php:87 #: application/views/logbookadvanced/index.php:258 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:427 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:431 #: application/views/timeline/index.php:87 #: application/views/view_log/qso.php:234 msgctxt "Propagation Mode" @@ -2893,7 +2893,7 @@ msgstr "" #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:52 application/views/kml/index.php:88 #: application/views/logbookadvanced/index.php:259 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:428 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:432 #: application/views/timeline/index.php:88 #: application/views/view_log/qso.php:237 msgctxt "Propagation Mode" @@ -2905,7 +2905,7 @@ msgstr "" #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:53 application/views/kml/index.php:89 #: application/views/logbookadvanced/index.php:260 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:429 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:433 #: application/views/timeline/index.php:89 #: application/views/view_log/qso.php:240 msgctxt "Propagation Mode" @@ -2917,7 +2917,7 @@ msgstr "" #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:54 application/views/kml/index.php:90 #: application/views/logbookadvanced/index.php:261 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:430 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:434 #: application/views/timeline/index.php:90 #: application/views/view_log/qso.php:243 msgctxt "Propagation Mode" @@ -2929,7 +2929,7 @@ msgstr "" #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:55 application/views/kml/index.php:91 #: application/views/logbookadvanced/index.php:262 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:431 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:435 #: application/views/timeline/index.php:91 #: application/views/view_log/qso.php:246 msgctxt "Propagation Mode" @@ -2941,7 +2941,7 @@ msgstr "" #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:56 application/views/kml/index.php:92 #: application/views/logbookadvanced/index.php:263 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:432 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:436 #: application/views/timeline/index.php:92 #: application/views/view_log/qso.php:249 msgctxt "Propagation Mode" @@ -2953,7 +2953,7 @@ msgstr "" #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:57 application/views/kml/index.php:93 #: application/views/logbookadvanced/index.php:264 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:433 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:437 #: application/views/timeline/index.php:93 #: application/views/view_log/qso.php:252 msgctxt "Propagation Mode" @@ -2965,7 +2965,7 @@ msgstr "" #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:58 application/views/kml/index.php:94 #: application/views/logbookadvanced/index.php:265 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:438 #: application/views/timeline/index.php:94 #: application/views/view_log/qso.php:255 msgctxt "Propagation Mode" @@ -2977,7 +2977,7 @@ msgstr "" #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:59 application/views/kml/index.php:95 #: application/views/logbookadvanced/index.php:266 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:439 #: application/views/timeline/index.php:95 #: application/views/view_log/qso.php:258 msgctxt "Propagation Mode" @@ -2989,7 +2989,7 @@ msgstr "" #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:60 application/views/kml/index.php:96 #: application/views/logbookadvanced/index.php:267 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:436 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:440 #: application/views/timeline/index.php:96 #: application/views/view_log/qso.php:261 msgctxt "Propagation Mode" @@ -3001,7 +3001,7 @@ msgstr "" #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:61 application/views/kml/index.php:97 #: application/views/logbookadvanced/index.php:268 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:441 #: application/views/timeline/index.php:97 #: application/views/view_log/qso.php:264 msgctxt "Propagation Mode" @@ -3168,7 +3168,7 @@ msgstr "" #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:161 +#: application/views/contesting/index.php:165 #: application/views/csv/index.php:23 application/views/dashboard/index.php:175 #: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 @@ -3257,7 +3257,7 @@ msgstr "" #: application/views/bandmap/list.php:112 #: application/views/components/hamsat/table.php:25 #: application/views/contesting/index.php:98 -#: application/views/contesting/index.php:252 +#: application/views/contesting/index.php:256 #: application/views/dashboard/index.php:170 #: application/views/debug/index.php:570 #: application/views/distancerecords/index.php:16 @@ -3301,7 +3301,7 @@ msgstr "" #: application/views/bandmap/list.php:112 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:103 -#: application/views/contesting/index.php:252 +#: application/views/contesting/index.php:256 #: application/views/dashboard/index.php:173 #: application/views/debug/index.php:571 #: application/views/distancerecords/index.php:17 @@ -3330,7 +3330,7 @@ msgstr "" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:114 -#: application/views/contesting/index.php:253 +#: application/views/contesting/index.php:257 #: application/views/debug/index.php:572 application/views/debug/index.php:607 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -3463,7 +3463,7 @@ msgstr "" #: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:32 #: application/views/interface_assets/footer.php:510 -#: application/views/interface_assets/footer.php:2170 +#: application/views/interface_assets/footer.php:2172 msgid "DANGER" msgstr "" @@ -3896,7 +3896,7 @@ msgstr "" #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:94 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:306 -#: application/views/qso/index.php:396 +#: application/views/qso/index.php:400 #: application/views/search/cqzones_result.php:13 #: application/views/station_profile/create.php:106 #: application/views/station_profile/edit.php:153 @@ -4018,7 +4018,7 @@ msgstr "" #: application/views/awards/cq/index.php:56 #: application/views/awards/itu/index.php:56 #: application/views/awards/wac/index.php:44 -#: application/views/interface_assets/footer.php:2149 +#: application/views/interface_assets/footer.php:2151 #: application/views/qso/edit_ajax.php:405 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -4228,7 +4228,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:155 #: application/views/logbookadvanced/index.php:335 #: application/views/options/dxcluster.php:56 -#: application/views/qso/edit_ajax.php:264 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:264 application/views/qso/index.php:391 #: application/views/view_log/qso.php:323 msgid "Antarctica" msgstr "" @@ -4239,7 +4239,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:154 #: application/views/logbookadvanced/index.php:334 #: application/views/options/dxcluster.php:55 -#: application/views/qso/edit_ajax.php:263 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:263 application/views/qso/index.php:390 #: application/views/view_log/qso.php:320 msgid "Africa" msgstr "" @@ -4250,7 +4250,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:157 #: application/views/logbookadvanced/index.php:337 #: application/views/options/dxcluster.php:57 -#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:388 +#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:392 #: application/views/view_log/qso.php:326 msgid "Asia" msgstr "" @@ -4261,7 +4261,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:158 #: application/views/logbookadvanced/index.php:338 #: application/views/options/dxcluster.php:58 -#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:389 +#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:393 #: application/views/view_log/qso.php:329 msgid "Europe" msgstr "" @@ -4272,7 +4272,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:156 #: application/views/logbookadvanced/index.php:336 #: application/views/options/dxcluster.php:59 -#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:390 +#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:394 #: application/views/view_log/qso.php:332 msgid "North America" msgstr "" @@ -4283,7 +4283,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:159 #: application/views/logbookadvanced/index.php:339 #: application/views/options/dxcluster.php:61 -#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:396 #: application/views/view_log/qso.php:338 msgid "South America" msgstr "" @@ -4294,7 +4294,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:160 #: application/views/logbookadvanced/index.php:340 #: application/views/options/dxcluster.php:60 -#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:395 #: application/views/view_log/qso.php:335 msgid "Oceania" msgstr "" @@ -4484,13 +4484,13 @@ msgstr "" #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 #: application/views/contesting/index.php:59 -#: application/views/contesting/index.php:219 +#: application/views/contesting/index.php:223 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 #: application/views/logbookadvanced/index.php:613 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 -#: application/views/qso/edit_ajax.php:170 application/views/qso/index.php:191 +#: application/views/qso/edit_ajax.php:170 application/views/qso/index.php:195 #: application/views/satellite/edit.php:34 #: application/views/satellite/index.php:21 #: application/views/search/result.php:16 @@ -4518,7 +4518,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:646 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 application/views/qso/edit_ajax.php:314 -#: application/views/qso/index.php:406 +#: application/views/qso/index.php:410 #: application/views/search/ituzones_result.php:13 #: application/views/station_profile/create.php:120 #: application/views/station_profile/edit.php:170 @@ -4627,7 +4627,7 @@ msgid "" msgstr "" #: application/views/awards/pota/index.php:31 -#: application/views/qso/index.php:239 application/views/qso/index.php:498 +#: application/views/qso/index.php:243 application/views/qso/index.php:502 #: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:272 #: application/views/user/edit.php:595 application/views/view_log/qso.php:376 @@ -4807,7 +4807,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:330 #: application/views/logbookadvanced/index.php:682 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:260 application/views/qso/index.php:383 +#: application/views/qso/edit_ajax.php:260 application/views/qso/index.php:387 #: application/views/view_log/qso.php:315 msgid "Continent" msgstr "" @@ -4907,7 +4907,7 @@ msgid "" msgstr "" #: application/views/awards/wwff/index.php:31 -#: application/views/qso/index.php:227 application/views/qso/index.php:485 +#: application/views/qso/index.php:231 application/views/qso/index.php:489 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:259 #: application/views/user/edit.php:591 application/views/view_log/qso.php:369 @@ -4967,8 +4967,8 @@ msgstr "" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:65 #: application/views/contesting/index.php:19 #: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:150 -#: application/views/qso/index.php:317 +#: application/views/contesting/index.php:154 +#: application/views/qso/index.php:321 msgid "None" msgstr "" @@ -5052,14 +5052,14 @@ msgid "" msgstr "" #: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 -#: application/views/qso/index.php:251 application/views/qso/index.php:510 +#: application/views/qso/index.php:255 application/views/qso/index.php:514 #: application/views/user/edit.php:599 application/views/view_log/qso.php:398 #: application/views/view_log/qso.php:666 msgid "Sig" msgstr "" #: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:346 -#: application/views/qso/index.php:449 +#: application/views/qso/index.php:453 msgid "USA County" msgstr "" @@ -5187,7 +5187,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:553 -#: application/views/qso/index.php:275 +#: application/views/qso/index.php:279 #: application/views/station_profile/edit.php:92 msgid "Location" msgstr "" @@ -5307,7 +5307,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:522 #: application/views/qso/edit_ajax.php:535 #: application/views/qso/edit_ajax.php:551 -#: application/views/qso/edit_ajax.php:565 application/views/qso/index.php:587 +#: application/views/qso/edit_ajax.php:565 application/views/qso/index.php:591 #: application/views/search/result.php:74 #: application/views/station_profile/create.php:209 #: application/views/station_profile/create.php:217 @@ -5351,7 +5351,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:521 #: application/views/qso/edit_ajax.php:534 #: application/views/qso/edit_ajax.php:550 -#: application/views/qso/edit_ajax.php:564 application/views/qso/index.php:586 +#: application/views/qso/edit_ajax.php:564 application/views/qso/index.php:590 #: application/views/search/result.php:76 #: application/views/station_profile/create.php:210 #: application/views/station_profile/create.php:218 @@ -5418,12 +5418,12 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:224 +#: application/views/contesting/index.php:228 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:670 #: application/views/logbookadvanced/useroptions.php:130 -#: application/views/qso/edit_ajax.php:181 application/views/qso/index.php:292 +#: application/views/qso/edit_ajax.php:181 application/views/qso/index.php:296 #: application/views/view_log/qso.php:202 msgid "Comment" msgstr "" @@ -5635,7 +5635,7 @@ msgstr "" #: application/views/contesting/index.php:40 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:596 application/views/qso/index.php:355 +#: application/views/qso/edit_ajax.php:596 application/views/qso/index.php:359 msgid "Operator Callsign" msgstr "" @@ -5709,54 +5709,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "" -#: application/views/contesting/index.php:177 -#: application/views/contesting/index.php:260 +#: application/views/contesting/index.php:181 +#: application/views/contesting/index.php:264 #: application/views/qso/edit_ajax.php:620 msgid "Serial (S)" msgstr "" -#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:186 msgid "Gridsquare (S)" msgstr "" -#: application/views/contesting/index.php:187 -#: application/views/contesting/index.php:258 +#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:262 msgid "Exch (S)" msgstr "" -#: application/views/contesting/index.php:201 -#: application/views/contesting/index.php:261 +#: application/views/contesting/index.php:205 +#: application/views/contesting/index.php:265 #: application/views/qso/edit_ajax.php:615 msgid "Serial (R)" msgstr "" -#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:210 msgid "Gridsquare (R)" msgstr "" -#: application/views/contesting/index.php:211 -#: application/views/contesting/index.php:259 +#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:263 msgid "Exch (R)" msgstr "" -#: application/views/contesting/index.php:229 +#: application/views/contesting/index.php:233 msgid "Reset QSO" msgstr "" -#: application/views/contesting/index.php:230 -#: application/views/qso/index.php:638 +#: application/views/contesting/index.php:234 +#: application/views/qso/index.php:642 msgid "Save QSO" msgstr "" -#: application/views/contesting/index.php:239 +#: application/views/contesting/index.php:243 msgid "Callsign Suggestions" msgstr "" -#: application/views/contesting/index.php:246 +#: application/views/contesting/index.php:250 msgid "Contest Logbook" msgstr "" -#: application/views/contesting/index.php:263 +#: application/views/contesting/index.php:267 #: application/views/qso/edit_ajax.php:163 msgid "VUCC Gridsquare" msgstr "" @@ -5920,7 +5920,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:187 application/views/qso/index.php:417 +#: application/views/qso/edit_ajax.php:187 application/views/qso/index.php:421 msgid "Propagation Mode" msgstr "" @@ -6031,7 +6031,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:420 #: application/views/qso/edit_ajax.php:481 #: application/views/qso/edit_ajax.php:518 -#: application/views/qso/edit_ajax.php:547 application/views/qso/index.php:583 +#: application/views/qso/edit_ajax.php:547 application/views/qso/index.php:587 #: application/views/search/search_result_ajax.php:180 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:298 @@ -6103,7 +6103,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:523 #: application/views/qso/edit_ajax.php:536 #: application/views/qso/edit_ajax.php:552 -#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:588 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:592 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:148 @@ -6935,10 +6935,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2375 -#: application/views/interface_assets/footer.php:2393 -#: application/views/interface_assets/footer.php:2414 -#: application/views/interface_assets/footer.php:2432 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 +#: application/views/interface_assets/footer.php:2416 +#: application/views/interface_assets/footer.php:2434 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:703 msgid "View" @@ -7075,7 +7075,7 @@ msgid "Not worked" msgstr "" #: application/views/interface_assets/footer.php:47 -#: application/views/qso/index.php:632 +#: application/views/qso/index.php:636 #: application/views/visitor/layout/footer.php:246 msgid "Clear" msgstr "" @@ -7196,62 +7196,62 @@ msgstr "" msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1203 +#: application/views/interface_assets/footer.php:1204 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "" -#: application/views/interface_assets/footer.php:1412 -#: application/views/interface_assets/footer.php:1416 -#: application/views/interface_assets/footer.php:1419 -#: application/views/interface_assets/footer.php:1556 -#: application/views/interface_assets/footer.php:1560 -#: application/views/interface_assets/footer.php:1563 +#: application/views/interface_assets/footer.php:1414 +#: application/views/interface_assets/footer.php:1418 +#: application/views/interface_assets/footer.php:1421 +#: application/views/interface_assets/footer.php:1558 +#: application/views/interface_assets/footer.php:1562 +#: application/views/interface_assets/footer.php:1565 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1419 -#: application/views/interface_assets/footer.php:1563 +#: application/views/interface_assets/footer.php:1421 +#: application/views/interface_assets/footer.php:1565 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2151 +#: application/views/interface_assets/footer.php:2153 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2171 +#: application/views/interface_assets/footer.php:2173 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2211 +#: application/views/interface_assets/footer.php:2213 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2213 +#: application/views/interface_assets/footer.php:2215 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2386 -#: application/views/interface_assets/footer.php:2425 +#: application/views/interface_assets/footer.php:2388 +#: application/views/interface_assets/footer.php:2427 #: application/views/view_log/qso.php:693 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2405 +#: application/views/interface_assets/footer.php:2407 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2443 +#: application/views/interface_assets/footer.php:2445 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2454 -#: application/views/interface_assets/footer.php:2479 +#: application/views/interface_assets/footer.php:2456 +#: application/views/interface_assets/footer.php:2481 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2490 +#: application/views/interface_assets/footer.php:2492 msgid "Something went wrong. Please try again!" msgstr "" @@ -7870,7 +7870,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:426 #: application/views/qso/edit_ajax.php:487 #: application/views/qso/edit_ajax.php:524 -#: application/views/qso/edit_ajax.php:553 application/views/qso/index.php:589 +#: application/views/qso/edit_ajax.php:553 application/views/qso/index.php:593 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:225 #: application/views/view_log/partial/log_ajax.php:145 @@ -7901,7 +7901,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:525 #: application/views/qso/edit_ajax.php:537 #: application/views/qso/edit_ajax.php:554 -#: application/views/qso/edit_ajax.php:567 application/views/qso/index.php:590 +#: application/views/qso/edit_ajax.php:567 application/views/qso/index.php:594 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/search/search_result_ajax.php:305 @@ -7936,7 +7936,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:121 #: application/views/qslprint/qsolist.php:212 #: application/views/qso/edit_ajax.php:438 -#: application/views/qso/edit_ajax.php:471 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:471 application/views/qso/index.php:605 #: application/views/search/search_result_ajax.php:199 #: application/views/search/search_result_ajax.php:241 #: application/views/view_log/partial/log_ajax.php:164 @@ -7954,7 +7954,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:124 #: application/views/qslprint/qsolist.php:213 #: application/views/qso/edit_ajax.php:437 -#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:604 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:167 @@ -7972,7 +7972,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:130 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:439 -#: application/views/qso/edit_ajax.php:472 application/views/qso/index.php:602 +#: application/views/qso/edit_ajax.php:472 application/views/qso/index.php:606 #: application/views/search/search_result_ajax.php:208 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:173 @@ -7986,7 +7986,7 @@ msgstr "" #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:127 #: application/views/qso/edit_ajax.php:440 -#: application/views/qso/edit_ajax.php:473 application/views/qso/index.php:603 +#: application/views/qso/edit_ajax.php:473 application/views/qso/index.php:607 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:208 msgid "Manager" @@ -8970,7 +8970,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:15 #: application/views/qslprint/qsolist.php:85 -#: application/views/qso/index.php:609 +#: application/views/qso/index.php:613 #: application/views/search/search_result_ajax.php:205 #: application/views/view_log/partial/log_ajax.php:170 #: src/QSLManager/QSO.php:346 @@ -9298,11 +9298,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:351 +#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:355 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:349 +#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:353 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:631 msgid "Transmit Power (W)" @@ -9332,7 +9332,7 @@ msgstr "" msgid "Long Path" msgstr "" -#: application/views/qso/edit_ajax.php:273 application/views/qso/index.php:531 +#: application/views/qso/edit_ajax.php:273 application/views/qso/index.php:535 #: application/views/view_log/qso.php:448 msgid "eMail" msgstr "" @@ -9345,32 +9345,32 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:292 application/views/qso/index.php:558 +#: application/views/qso/edit_ajax.php:292 application/views/qso/index.php:562 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:292 application/views/qso/index.php:560 +#: application/views/qso/edit_ajax.php:292 application/views/qso/index.php:564 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:297 application/views/qso/index.php:564 +#: application/views/qso/edit_ajax.php:297 application/views/qso/index.php:568 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:297 application/views/qso/index.php:566 +#: application/views/qso/edit_ajax.php:297 application/views/qso/index.php:570 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:382 application/views/qso/index.php:258 -#: application/views/qso/index.php:516 application/views/user/edit.php:599 +#: application/views/qso/edit_ajax.php:382 application/views/qso/index.php:262 +#: application/views/qso/index.php:520 application/views/user/edit.php:599 #: application/views/view_log/qso.php:414 #: application/views/view_log/qso.php:671 msgid "Sig Info" msgstr "" #: application/views/qso/edit_ajax.php:397 -#: application/views/qso/edit_ajax.php:510 application/views/qso/index.php:575 -#: application/views/qso/index.php:619 +#: application/views/qso/edit_ajax.php:510 application/views/qso/index.php:579 +#: application/views/qso/index.php:623 msgid "Note: Gets exported to third-party services." msgstr "" @@ -9379,8 +9379,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:436 -#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:596 -#: application/views/qso/index.php:599 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:600 +#: application/views/qso/index.php:603 msgid "Method" msgstr "" @@ -9399,11 +9399,11 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:616 +#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:620 msgid "Get the default message for eQSL, for this station." msgstr "" -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:616 +#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:620 msgid "QSL MSG" msgstr "" @@ -9440,7 +9440,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:5 application/views/qso/index.php:727 +#: application/views/qso/index.php:5 application/views/qso/index.php:731 msgid "Previous Contacts" msgstr "" @@ -9493,7 +9493,7 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:199 application/views/qso/index.php:455 +#: application/views/qso/index.php:203 application/views/qso/index.php:459 #: application/views/station_profile/create.php:149 #: application/views/station_profile/edit.php:218 #: application/views/user/edit.php:583 application/views/view_log/qso.php:355 @@ -9501,7 +9501,7 @@ msgstr "" msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:215 application/views/qso/index.php:472 +#: application/views/qso/index.php:219 application/views/qso/index.php:476 #: application/views/station_profile/create.php:165 #: application/views/station_profile/edit.php:246 #: application/views/user/edit.php:587 application/views/view_log/qso.php:362 @@ -9509,91 +9509,91 @@ msgstr "" msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:325 application/views/view_log/qso.php:100 +#: application/views/qso/index.php:329 application/views/view_log/qso.php:100 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:330 +#: application/views/qso/index.php:334 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:474 +#: application/views/qso/index.php:478 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:487 +#: application/views/qso/index.php:491 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:500 +#: application/views/qso/index.php:504 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:512 +#: application/views/qso/index.php:516 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:518 +#: application/views/qso/index.php:522 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:526 +#: application/views/qso/index.php:530 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:533 +#: application/views/qso/index.php:537 msgid "eMail-Adress of QSO-Partner" msgstr "" -#: application/views/qso/index.php:542 application/views/view_log/qso.php:276 +#: application/views/qso/index.php:546 application/views/view_log/qso.php:276 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:550 application/views/view_log/qso.php:283 +#: application/views/qso/index.php:554 application/views/view_log/qso.php:283 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:635 +#: application/views/qso/index.php:639 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:676 +#: application/views/qso/index.php:680 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:682 msgid "Connect" msgstr "" -#: application/views/qso/index.php:687 +#: application/views/qso/index.php:691 msgid "Stop" msgstr "" -#: application/views/qso/index.php:688 +#: application/views/qso/index.php:692 msgid "Tune" msgstr "" -#: application/views/qso/index.php:689 +#: application/views/qso/index.php:693 msgid "Stop Tune" msgstr "" -#: application/views/qso/index.php:695 +#: application/views/qso/index.php:699 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:704 msgid "Send" msgstr "" -#: application/views/qso/index.php:710 +#: application/views/qso/index.php:714 msgid "Suggestions" msgstr "" -#: application/views/qso/index.php:717 +#: application/views/qso/index.php:721 msgid "Profile Picture" msgstr "" -#: application/views/qso/index.php:741 +#: application/views/qso/index.php:745 msgid "Max. 5 previous contacts are shown" msgstr "" diff --git a/application/locale/lv/LC_MESSAGES/messages.po b/application/locale/lv/LC_MESSAGES/messages.po index 711209a3e..c2b1d1592 100644 --- a/application/locale/lv/LC_MESSAGES/messages.po +++ b/application/locale/lv/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-11-15 15:56+0000\n" +"POT-Creation-Date: 2024-11-17 16:50+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -266,8 +266,8 @@ msgstr "" #: application/views/interface_assets/header.php:198 #: application/views/logbookadvanced/index.php:658 #: application/views/logbookadvanced/useroptions.php:114 -#: application/views/qso/edit_ajax.php:387 application/views/qso/index.php:267 -#: application/views/qso/index.php:524 application/views/user/edit.php:603 +#: application/views/qso/edit_ajax.php:387 application/views/qso/index.php:271 +#: application/views/qso/index.php:528 application/views/user/edit.php:603 #: application/views/view_log/qso.php:433 msgid "DOK" msgstr "" @@ -285,7 +285,7 @@ msgstr "" #: application/views/logbookadvanced/useroptions.php:86 #: application/views/lookup/index.php:4 #: application/views/lotw_views/index.php:36 -#: application/views/qso/edit_ajax.php:232 application/views/qso/index.php:364 +#: application/views/qso/edit_ajax.php:232 application/views/qso/index.php:368 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 #: application/views/search/result.php:27 @@ -1080,7 +1080,7 @@ msgstr "" #: application/views/awards/was/index.php:87 #: application/views/components/hamsat/table.php:30 #: application/views/contesting/index.php:113 -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:259 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 #: application/views/debug/index.php:573 @@ -1137,8 +1137,8 @@ msgstr "" #: application/controllers/Logbook.php:1357 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:170 -#: application/views/contesting/index.php:256 +#: application/views/contesting/index.php:174 +#: application/views/contesting/index.php:260 #: application/views/logbookadvanced/index.php:601 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 @@ -1149,7 +1149,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:11 #: application/views/qso/components/previous_contacts.php:78 -#: application/views/qso/edit_ajax.php:141 application/views/qso/index.php:180 +#: application/views/qso/edit_ajax.php:141 application/views/qso/index.php:184 #: application/views/search/search_result_ajax.php:5 #: application/views/simplefle/index.php:153 #: application/views/user/edit.php:230 application/views/user/edit.php:252 @@ -1164,8 +1164,8 @@ msgstr "" #: application/controllers/Logbook.php:1358 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:194 -#: application/views/contesting/index.php:257 +#: application/views/contesting/index.php:198 +#: application/views/contesting/index.php:261 #: application/views/logbookadvanced/index.php:604 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 @@ -1176,7 +1176,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:12 #: application/views/qso/components/previous_contacts.php:79 -#: application/views/qso/edit_ajax.php:146 application/views/qso/index.php:185 +#: application/views/qso/edit_ajax.php:146 application/views/qso/index.php:189 #: application/views/search/search_result_ajax.php:6 #: application/views/simplefle/index.php:154 #: application/views/user/edit.php:231 application/views/user/edit.php:253 @@ -1272,7 +1272,7 @@ msgstr "" #: application/views/awards/gridmaster/index.php:40 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:21 -#: application/views/contesting/index.php:262 +#: application/views/contesting/index.php:266 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 @@ -1289,7 +1289,7 @@ msgstr "" #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 #: application/views/qso/components/previous_contacts.php:86 -#: application/views/qso/edit_ajax.php:155 application/views/qso/index.php:282 +#: application/views/qso/edit_ajax.php:155 application/views/qso/index.php:286 #: application/views/satellite/pass.php:28 #: application/views/search/cqzones_result.php:12 #: application/views/search/ituzones_result.php:12 @@ -1359,7 +1359,7 @@ msgstr "" #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:45 #: application/views/contesting/index.php:126 -#: application/views/contesting/index.php:254 +#: application/views/contesting/index.php:258 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:574 application/views/dxatlas/index.php:31 @@ -1464,7 +1464,7 @@ msgstr "" #: application/views/lookup/index.php:44 #: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 -#: application/views/qso/edit_ajax.php:250 application/views/qso/index.php:373 +#: application/views/qso/edit_ajax.php:250 application/views/qso/index.php:377 #: application/views/station_profile/create.php:73 #: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 @@ -1560,7 +1560,7 @@ msgstr "" #: application/views/notes/view.php:6 application/views/notes/view.php:9 #: application/views/qso/edit_ajax.php:36 #: application/views/qso/edit_ajax.php:395 application/views/qso/index.php:41 -#: application/views/qso/index.php:573 application/views/view_log/qso.php:14 +#: application/views/qso/index.php:577 application/views/view_log/qso.php:14 #: application/views/view_log/qso.php:679 msgid "Notes" msgstr "" @@ -1802,8 +1802,8 @@ msgstr "" #: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:63 -#: application/views/contesting/index.php:148 -#: application/views/qso/index.php:315 +#: application/views/contesting/index.php:152 +#: application/views/qso/index.php:319 msgid "Radio" msgstr "" @@ -1823,13 +1823,13 @@ msgid "Options" msgstr "" #: application/controllers/Radio.php:53 application/views/debug/index.php:308 -#: application/views/qso/index.php:680 +#: application/views/qso/index.php:684 msgid "Settings" msgstr "" #: application/controllers/Radio.php:91 -#: application/views/contesting/index.php:152 -#: application/views/qso/index.php:319 +#: application/views/contesting/index.php:156 +#: application/views/qso/index.php:323 msgid "last updated" msgstr "" @@ -1861,10 +1861,10 @@ msgstr "" #: application/controllers/Radio.php:107 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2374 -#: application/views/interface_assets/footer.php:2392 -#: application/views/interface_assets/footer.php:2413 -#: application/views/interface_assets/footer.php:2431 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 +#: application/views/interface_assets/footer.php:2415 +#: application/views/interface_assets/footer.php:2433 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:568 #: application/views/lotw_views/index.php:114 @@ -2001,7 +2001,7 @@ msgstr "" #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 #: application/views/logbookadvanced/edit.php:21 -#: application/views/qslprint/index.php:20 application/views/qso/index.php:303 +#: application/views/qslprint/index.php:20 application/views/qso/index.php:307 #: application/views/search/search_result_ajax.php:18 #: application/views/station_profile/create.php:305 #: application/views/station_profile/edit.php:455 @@ -2036,7 +2036,7 @@ msgstr "" #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 #: application/controllers/Stationsetup.php:436 -#: application/views/qso/index.php:639 application/views/simplefle/index.php:38 +#: application/views/qso/index.php:643 application/views/simplefle/index.php:38 msgid "Error" msgstr "" @@ -2688,8 +2688,8 @@ msgstr "" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1624 +#: application/views/interface_assets/footer.php:1487 +#: application/views/interface_assets/footer.php:1626 #: 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 @@ -2797,7 +2797,7 @@ msgstr "" #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:44 application/views/kml/index.php:80 #: application/views/logbookadvanced/index.php:251 -#: application/views/qso/edit_ajax.php:190 application/views/qso/index.php:420 +#: application/views/qso/edit_ajax.php:190 application/views/qso/index.php:424 #: application/views/timeline/index.php:80 #: application/views/view_log/qso.php:213 msgctxt "Propagation Mode" @@ -2809,7 +2809,7 @@ msgstr "" #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:45 application/views/kml/index.php:81 #: application/views/logbookadvanced/index.php:252 -#: application/views/qso/edit_ajax.php:191 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:191 application/views/qso/index.php:425 #: application/views/timeline/index.php:81 #: application/views/view_log/qso.php:216 msgctxt "Propagation Mode" @@ -2821,7 +2821,7 @@ msgstr "" #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:46 application/views/kml/index.php:82 #: application/views/logbookadvanced/index.php:253 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:422 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:426 #: application/views/timeline/index.php:82 #: application/views/view_log/qso.php:219 msgctxt "Propagation Mode" @@ -2833,7 +2833,7 @@ msgstr "" #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:47 application/views/kml/index.php:83 #: application/views/logbookadvanced/index.php:254 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:423 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:427 #: application/views/timeline/index.php:83 #: application/views/view_log/qso.php:222 msgctxt "Propagation Mode" @@ -2845,7 +2845,7 @@ msgstr "" #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:48 application/views/kml/index.php:84 #: application/views/logbookadvanced/index.php:255 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:424 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:428 #: application/views/timeline/index.php:84 #: application/views/view_log/qso.php:225 msgctxt "Propagation Mode" @@ -2857,7 +2857,7 @@ msgstr "" #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:49 application/views/kml/index.php:85 #: application/views/logbookadvanced/index.php:256 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:425 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:429 #: application/views/timeline/index.php:85 #: application/views/view_log/qso.php:228 msgctxt "Propagation Mode" @@ -2869,7 +2869,7 @@ msgstr "" #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:50 application/views/kml/index.php:86 #: application/views/logbookadvanced/index.php:257 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:426 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:430 #: application/views/timeline/index.php:86 #: application/views/view_log/qso.php:231 msgctxt "Propagation Mode" @@ -2881,7 +2881,7 @@ msgstr "" #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:51 application/views/kml/index.php:87 #: application/views/logbookadvanced/index.php:258 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:427 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:431 #: application/views/timeline/index.php:87 #: application/views/view_log/qso.php:234 msgctxt "Propagation Mode" @@ -2893,7 +2893,7 @@ msgstr "" #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:52 application/views/kml/index.php:88 #: application/views/logbookadvanced/index.php:259 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:428 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:432 #: application/views/timeline/index.php:88 #: application/views/view_log/qso.php:237 msgctxt "Propagation Mode" @@ -2905,7 +2905,7 @@ msgstr "" #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:53 application/views/kml/index.php:89 #: application/views/logbookadvanced/index.php:260 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:429 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:433 #: application/views/timeline/index.php:89 #: application/views/view_log/qso.php:240 msgctxt "Propagation Mode" @@ -2917,7 +2917,7 @@ msgstr "" #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:54 application/views/kml/index.php:90 #: application/views/logbookadvanced/index.php:261 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:430 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:434 #: application/views/timeline/index.php:90 #: application/views/view_log/qso.php:243 msgctxt "Propagation Mode" @@ -2929,7 +2929,7 @@ msgstr "" #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:55 application/views/kml/index.php:91 #: application/views/logbookadvanced/index.php:262 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:431 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:435 #: application/views/timeline/index.php:91 #: application/views/view_log/qso.php:246 msgctxt "Propagation Mode" @@ -2941,7 +2941,7 @@ msgstr "" #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:56 application/views/kml/index.php:92 #: application/views/logbookadvanced/index.php:263 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:432 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:436 #: application/views/timeline/index.php:92 #: application/views/view_log/qso.php:249 msgctxt "Propagation Mode" @@ -2953,7 +2953,7 @@ msgstr "" #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:57 application/views/kml/index.php:93 #: application/views/logbookadvanced/index.php:264 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:433 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:437 #: application/views/timeline/index.php:93 #: application/views/view_log/qso.php:252 msgctxt "Propagation Mode" @@ -2965,7 +2965,7 @@ msgstr "" #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:58 application/views/kml/index.php:94 #: application/views/logbookadvanced/index.php:265 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:438 #: application/views/timeline/index.php:94 #: application/views/view_log/qso.php:255 msgctxt "Propagation Mode" @@ -2977,7 +2977,7 @@ msgstr "" #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:59 application/views/kml/index.php:95 #: application/views/logbookadvanced/index.php:266 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:439 #: application/views/timeline/index.php:95 #: application/views/view_log/qso.php:258 msgctxt "Propagation Mode" @@ -2989,7 +2989,7 @@ msgstr "" #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:60 application/views/kml/index.php:96 #: application/views/logbookadvanced/index.php:267 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:436 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:440 #: application/views/timeline/index.php:96 #: application/views/view_log/qso.php:261 msgctxt "Propagation Mode" @@ -3001,7 +3001,7 @@ msgstr "" #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:61 application/views/kml/index.php:97 #: application/views/logbookadvanced/index.php:268 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:441 #: application/views/timeline/index.php:97 #: application/views/view_log/qso.php:264 msgctxt "Propagation Mode" @@ -3168,7 +3168,7 @@ msgstr "" #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:161 +#: application/views/contesting/index.php:165 #: application/views/csv/index.php:23 application/views/dashboard/index.php:175 #: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 @@ -3257,7 +3257,7 @@ msgstr "" #: application/views/bandmap/list.php:112 #: application/views/components/hamsat/table.php:25 #: application/views/contesting/index.php:98 -#: application/views/contesting/index.php:252 +#: application/views/contesting/index.php:256 #: application/views/dashboard/index.php:170 #: application/views/debug/index.php:570 #: application/views/distancerecords/index.php:16 @@ -3301,7 +3301,7 @@ msgstr "" #: application/views/bandmap/list.php:112 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:103 -#: application/views/contesting/index.php:252 +#: application/views/contesting/index.php:256 #: application/views/dashboard/index.php:173 #: application/views/debug/index.php:571 #: application/views/distancerecords/index.php:17 @@ -3330,7 +3330,7 @@ msgstr "" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:114 -#: application/views/contesting/index.php:253 +#: application/views/contesting/index.php:257 #: application/views/debug/index.php:572 application/views/debug/index.php:607 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -3463,7 +3463,7 @@ msgstr "" #: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:32 #: application/views/interface_assets/footer.php:510 -#: application/views/interface_assets/footer.php:2170 +#: application/views/interface_assets/footer.php:2172 msgid "DANGER" msgstr "" @@ -3896,7 +3896,7 @@ msgstr "" #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:94 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:306 -#: application/views/qso/index.php:396 +#: application/views/qso/index.php:400 #: application/views/search/cqzones_result.php:13 #: application/views/station_profile/create.php:106 #: application/views/station_profile/edit.php:153 @@ -4018,7 +4018,7 @@ msgstr "" #: application/views/awards/cq/index.php:56 #: application/views/awards/itu/index.php:56 #: application/views/awards/wac/index.php:44 -#: application/views/interface_assets/footer.php:2149 +#: application/views/interface_assets/footer.php:2151 #: application/views/qso/edit_ajax.php:405 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -4228,7 +4228,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:155 #: application/views/logbookadvanced/index.php:335 #: application/views/options/dxcluster.php:56 -#: application/views/qso/edit_ajax.php:264 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:264 application/views/qso/index.php:391 #: application/views/view_log/qso.php:323 msgid "Antarctica" msgstr "" @@ -4239,7 +4239,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:154 #: application/views/logbookadvanced/index.php:334 #: application/views/options/dxcluster.php:55 -#: application/views/qso/edit_ajax.php:263 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:263 application/views/qso/index.php:390 #: application/views/view_log/qso.php:320 msgid "Africa" msgstr "" @@ -4250,7 +4250,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:157 #: application/views/logbookadvanced/index.php:337 #: application/views/options/dxcluster.php:57 -#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:388 +#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:392 #: application/views/view_log/qso.php:326 msgid "Asia" msgstr "" @@ -4261,7 +4261,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:158 #: application/views/logbookadvanced/index.php:338 #: application/views/options/dxcluster.php:58 -#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:389 +#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:393 #: application/views/view_log/qso.php:329 msgid "Europe" msgstr "" @@ -4272,7 +4272,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:156 #: application/views/logbookadvanced/index.php:336 #: application/views/options/dxcluster.php:59 -#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:390 +#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:394 #: application/views/view_log/qso.php:332 msgid "North America" msgstr "" @@ -4283,7 +4283,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:159 #: application/views/logbookadvanced/index.php:339 #: application/views/options/dxcluster.php:61 -#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:396 #: application/views/view_log/qso.php:338 msgid "South America" msgstr "" @@ -4294,7 +4294,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:160 #: application/views/logbookadvanced/index.php:340 #: application/views/options/dxcluster.php:60 -#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:395 #: application/views/view_log/qso.php:335 msgid "Oceania" msgstr "" @@ -4484,13 +4484,13 @@ msgstr "" #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 #: application/views/contesting/index.php:59 -#: application/views/contesting/index.php:219 +#: application/views/contesting/index.php:223 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 #: application/views/logbookadvanced/index.php:613 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 -#: application/views/qso/edit_ajax.php:170 application/views/qso/index.php:191 +#: application/views/qso/edit_ajax.php:170 application/views/qso/index.php:195 #: application/views/satellite/edit.php:34 #: application/views/satellite/index.php:21 #: application/views/search/result.php:16 @@ -4518,7 +4518,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:646 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 application/views/qso/edit_ajax.php:314 -#: application/views/qso/index.php:406 +#: application/views/qso/index.php:410 #: application/views/search/ituzones_result.php:13 #: application/views/station_profile/create.php:120 #: application/views/station_profile/edit.php:170 @@ -4627,7 +4627,7 @@ msgid "" msgstr "" #: application/views/awards/pota/index.php:31 -#: application/views/qso/index.php:239 application/views/qso/index.php:498 +#: application/views/qso/index.php:243 application/views/qso/index.php:502 #: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:272 #: application/views/user/edit.php:595 application/views/view_log/qso.php:376 @@ -4807,7 +4807,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:330 #: application/views/logbookadvanced/index.php:682 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:260 application/views/qso/index.php:383 +#: application/views/qso/edit_ajax.php:260 application/views/qso/index.php:387 #: application/views/view_log/qso.php:315 msgid "Continent" msgstr "" @@ -4907,7 +4907,7 @@ msgid "" msgstr "" #: application/views/awards/wwff/index.php:31 -#: application/views/qso/index.php:227 application/views/qso/index.php:485 +#: application/views/qso/index.php:231 application/views/qso/index.php:489 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:259 #: application/views/user/edit.php:591 application/views/view_log/qso.php:369 @@ -4967,8 +4967,8 @@ msgstr "" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:65 #: application/views/contesting/index.php:19 #: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:150 -#: application/views/qso/index.php:317 +#: application/views/contesting/index.php:154 +#: application/views/qso/index.php:321 msgid "None" msgstr "" @@ -5052,14 +5052,14 @@ msgid "" msgstr "" #: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 -#: application/views/qso/index.php:251 application/views/qso/index.php:510 +#: application/views/qso/index.php:255 application/views/qso/index.php:514 #: application/views/user/edit.php:599 application/views/view_log/qso.php:398 #: application/views/view_log/qso.php:666 msgid "Sig" msgstr "" #: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:346 -#: application/views/qso/index.php:449 +#: application/views/qso/index.php:453 msgid "USA County" msgstr "" @@ -5187,7 +5187,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:553 -#: application/views/qso/index.php:275 +#: application/views/qso/index.php:279 #: application/views/station_profile/edit.php:92 msgid "Location" msgstr "" @@ -5307,7 +5307,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:522 #: application/views/qso/edit_ajax.php:535 #: application/views/qso/edit_ajax.php:551 -#: application/views/qso/edit_ajax.php:565 application/views/qso/index.php:587 +#: application/views/qso/edit_ajax.php:565 application/views/qso/index.php:591 #: application/views/search/result.php:74 #: application/views/station_profile/create.php:209 #: application/views/station_profile/create.php:217 @@ -5351,7 +5351,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:521 #: application/views/qso/edit_ajax.php:534 #: application/views/qso/edit_ajax.php:550 -#: application/views/qso/edit_ajax.php:564 application/views/qso/index.php:586 +#: application/views/qso/edit_ajax.php:564 application/views/qso/index.php:590 #: application/views/search/result.php:76 #: application/views/station_profile/create.php:210 #: application/views/station_profile/create.php:218 @@ -5418,12 +5418,12 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:224 +#: application/views/contesting/index.php:228 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:670 #: application/views/logbookadvanced/useroptions.php:130 -#: application/views/qso/edit_ajax.php:181 application/views/qso/index.php:292 +#: application/views/qso/edit_ajax.php:181 application/views/qso/index.php:296 #: application/views/view_log/qso.php:202 msgid "Comment" msgstr "" @@ -5635,7 +5635,7 @@ msgstr "" #: application/views/contesting/index.php:40 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:596 application/views/qso/index.php:355 +#: application/views/qso/edit_ajax.php:596 application/views/qso/index.php:359 msgid "Operator Callsign" msgstr "" @@ -5709,54 +5709,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "" -#: application/views/contesting/index.php:177 -#: application/views/contesting/index.php:260 +#: application/views/contesting/index.php:181 +#: application/views/contesting/index.php:264 #: application/views/qso/edit_ajax.php:620 msgid "Serial (S)" msgstr "" -#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:186 msgid "Gridsquare (S)" msgstr "" -#: application/views/contesting/index.php:187 -#: application/views/contesting/index.php:258 +#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:262 msgid "Exch (S)" msgstr "" -#: application/views/contesting/index.php:201 -#: application/views/contesting/index.php:261 +#: application/views/contesting/index.php:205 +#: application/views/contesting/index.php:265 #: application/views/qso/edit_ajax.php:615 msgid "Serial (R)" msgstr "" -#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:210 msgid "Gridsquare (R)" msgstr "" -#: application/views/contesting/index.php:211 -#: application/views/contesting/index.php:259 +#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:263 msgid "Exch (R)" msgstr "" -#: application/views/contesting/index.php:229 +#: application/views/contesting/index.php:233 msgid "Reset QSO" msgstr "" -#: application/views/contesting/index.php:230 -#: application/views/qso/index.php:638 +#: application/views/contesting/index.php:234 +#: application/views/qso/index.php:642 msgid "Save QSO" msgstr "" -#: application/views/contesting/index.php:239 +#: application/views/contesting/index.php:243 msgid "Callsign Suggestions" msgstr "" -#: application/views/contesting/index.php:246 +#: application/views/contesting/index.php:250 msgid "Contest Logbook" msgstr "" -#: application/views/contesting/index.php:263 +#: application/views/contesting/index.php:267 #: application/views/qso/edit_ajax.php:163 msgid "VUCC Gridsquare" msgstr "" @@ -5920,7 +5920,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:187 application/views/qso/index.php:417 +#: application/views/qso/edit_ajax.php:187 application/views/qso/index.php:421 msgid "Propagation Mode" msgstr "" @@ -6031,7 +6031,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:420 #: application/views/qso/edit_ajax.php:481 #: application/views/qso/edit_ajax.php:518 -#: application/views/qso/edit_ajax.php:547 application/views/qso/index.php:583 +#: application/views/qso/edit_ajax.php:547 application/views/qso/index.php:587 #: application/views/search/search_result_ajax.php:180 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:298 @@ -6103,7 +6103,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:523 #: application/views/qso/edit_ajax.php:536 #: application/views/qso/edit_ajax.php:552 -#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:588 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:592 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:148 @@ -6935,10 +6935,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2375 -#: application/views/interface_assets/footer.php:2393 -#: application/views/interface_assets/footer.php:2414 -#: application/views/interface_assets/footer.php:2432 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 +#: application/views/interface_assets/footer.php:2416 +#: application/views/interface_assets/footer.php:2434 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:703 msgid "View" @@ -7075,7 +7075,7 @@ msgid "Not worked" msgstr "" #: application/views/interface_assets/footer.php:47 -#: application/views/qso/index.php:632 +#: application/views/qso/index.php:636 #: application/views/visitor/layout/footer.php:246 msgid "Clear" msgstr "" @@ -7196,62 +7196,62 @@ msgstr "" msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1203 +#: application/views/interface_assets/footer.php:1204 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "" -#: application/views/interface_assets/footer.php:1412 -#: application/views/interface_assets/footer.php:1416 -#: application/views/interface_assets/footer.php:1419 -#: application/views/interface_assets/footer.php:1556 -#: application/views/interface_assets/footer.php:1560 -#: application/views/interface_assets/footer.php:1563 +#: application/views/interface_assets/footer.php:1414 +#: application/views/interface_assets/footer.php:1418 +#: application/views/interface_assets/footer.php:1421 +#: application/views/interface_assets/footer.php:1558 +#: application/views/interface_assets/footer.php:1562 +#: application/views/interface_assets/footer.php:1565 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1419 -#: application/views/interface_assets/footer.php:1563 +#: application/views/interface_assets/footer.php:1421 +#: application/views/interface_assets/footer.php:1565 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2151 +#: application/views/interface_assets/footer.php:2153 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2171 +#: application/views/interface_assets/footer.php:2173 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2211 +#: application/views/interface_assets/footer.php:2213 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2213 +#: application/views/interface_assets/footer.php:2215 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2386 -#: application/views/interface_assets/footer.php:2425 +#: application/views/interface_assets/footer.php:2388 +#: application/views/interface_assets/footer.php:2427 #: application/views/view_log/qso.php:693 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2405 +#: application/views/interface_assets/footer.php:2407 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2443 +#: application/views/interface_assets/footer.php:2445 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2454 -#: application/views/interface_assets/footer.php:2479 +#: application/views/interface_assets/footer.php:2456 +#: application/views/interface_assets/footer.php:2481 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2490 +#: application/views/interface_assets/footer.php:2492 msgid "Something went wrong. Please try again!" msgstr "" @@ -7870,7 +7870,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:426 #: application/views/qso/edit_ajax.php:487 #: application/views/qso/edit_ajax.php:524 -#: application/views/qso/edit_ajax.php:553 application/views/qso/index.php:589 +#: application/views/qso/edit_ajax.php:553 application/views/qso/index.php:593 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:225 #: application/views/view_log/partial/log_ajax.php:145 @@ -7901,7 +7901,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:525 #: application/views/qso/edit_ajax.php:537 #: application/views/qso/edit_ajax.php:554 -#: application/views/qso/edit_ajax.php:567 application/views/qso/index.php:590 +#: application/views/qso/edit_ajax.php:567 application/views/qso/index.php:594 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/search/search_result_ajax.php:305 @@ -7936,7 +7936,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:121 #: application/views/qslprint/qsolist.php:212 #: application/views/qso/edit_ajax.php:438 -#: application/views/qso/edit_ajax.php:471 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:471 application/views/qso/index.php:605 #: application/views/search/search_result_ajax.php:199 #: application/views/search/search_result_ajax.php:241 #: application/views/view_log/partial/log_ajax.php:164 @@ -7954,7 +7954,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:124 #: application/views/qslprint/qsolist.php:213 #: application/views/qso/edit_ajax.php:437 -#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:604 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:167 @@ -7972,7 +7972,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:130 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:439 -#: application/views/qso/edit_ajax.php:472 application/views/qso/index.php:602 +#: application/views/qso/edit_ajax.php:472 application/views/qso/index.php:606 #: application/views/search/search_result_ajax.php:208 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:173 @@ -7986,7 +7986,7 @@ msgstr "" #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:127 #: application/views/qso/edit_ajax.php:440 -#: application/views/qso/edit_ajax.php:473 application/views/qso/index.php:603 +#: application/views/qso/edit_ajax.php:473 application/views/qso/index.php:607 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:208 msgid "Manager" @@ -8970,7 +8970,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:15 #: application/views/qslprint/qsolist.php:85 -#: application/views/qso/index.php:609 +#: application/views/qso/index.php:613 #: application/views/search/search_result_ajax.php:205 #: application/views/view_log/partial/log_ajax.php:170 #: src/QSLManager/QSO.php:346 @@ -9298,11 +9298,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:351 +#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:355 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:349 +#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:353 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:631 msgid "Transmit Power (W)" @@ -9332,7 +9332,7 @@ msgstr "" msgid "Long Path" msgstr "" -#: application/views/qso/edit_ajax.php:273 application/views/qso/index.php:531 +#: application/views/qso/edit_ajax.php:273 application/views/qso/index.php:535 #: application/views/view_log/qso.php:448 msgid "eMail" msgstr "" @@ -9345,32 +9345,32 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:292 application/views/qso/index.php:558 +#: application/views/qso/edit_ajax.php:292 application/views/qso/index.php:562 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:292 application/views/qso/index.php:560 +#: application/views/qso/edit_ajax.php:292 application/views/qso/index.php:564 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:297 application/views/qso/index.php:564 +#: application/views/qso/edit_ajax.php:297 application/views/qso/index.php:568 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:297 application/views/qso/index.php:566 +#: application/views/qso/edit_ajax.php:297 application/views/qso/index.php:570 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:382 application/views/qso/index.php:258 -#: application/views/qso/index.php:516 application/views/user/edit.php:599 +#: application/views/qso/edit_ajax.php:382 application/views/qso/index.php:262 +#: application/views/qso/index.php:520 application/views/user/edit.php:599 #: application/views/view_log/qso.php:414 #: application/views/view_log/qso.php:671 msgid "Sig Info" msgstr "" #: application/views/qso/edit_ajax.php:397 -#: application/views/qso/edit_ajax.php:510 application/views/qso/index.php:575 -#: application/views/qso/index.php:619 +#: application/views/qso/edit_ajax.php:510 application/views/qso/index.php:579 +#: application/views/qso/index.php:623 msgid "Note: Gets exported to third-party services." msgstr "" @@ -9379,8 +9379,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:436 -#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:596 -#: application/views/qso/index.php:599 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:600 +#: application/views/qso/index.php:603 msgid "Method" msgstr "" @@ -9399,11 +9399,11 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:616 +#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:620 msgid "Get the default message for eQSL, for this station." msgstr "" -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:616 +#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:620 msgid "QSL MSG" msgstr "" @@ -9440,7 +9440,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:5 application/views/qso/index.php:727 +#: application/views/qso/index.php:5 application/views/qso/index.php:731 msgid "Previous Contacts" msgstr "" @@ -9493,7 +9493,7 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:199 application/views/qso/index.php:455 +#: application/views/qso/index.php:203 application/views/qso/index.php:459 #: application/views/station_profile/create.php:149 #: application/views/station_profile/edit.php:218 #: application/views/user/edit.php:583 application/views/view_log/qso.php:355 @@ -9501,7 +9501,7 @@ msgstr "" msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:215 application/views/qso/index.php:472 +#: application/views/qso/index.php:219 application/views/qso/index.php:476 #: application/views/station_profile/create.php:165 #: application/views/station_profile/edit.php:246 #: application/views/user/edit.php:587 application/views/view_log/qso.php:362 @@ -9509,91 +9509,91 @@ msgstr "" msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:325 application/views/view_log/qso.php:100 +#: application/views/qso/index.php:329 application/views/view_log/qso.php:100 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:330 +#: application/views/qso/index.php:334 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:474 +#: application/views/qso/index.php:478 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:487 +#: application/views/qso/index.php:491 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:500 +#: application/views/qso/index.php:504 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:512 +#: application/views/qso/index.php:516 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:518 +#: application/views/qso/index.php:522 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:526 +#: application/views/qso/index.php:530 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:533 +#: application/views/qso/index.php:537 msgid "eMail-Adress of QSO-Partner" msgstr "" -#: application/views/qso/index.php:542 application/views/view_log/qso.php:276 +#: application/views/qso/index.php:546 application/views/view_log/qso.php:276 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:550 application/views/view_log/qso.php:283 +#: application/views/qso/index.php:554 application/views/view_log/qso.php:283 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:635 +#: application/views/qso/index.php:639 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:676 +#: application/views/qso/index.php:680 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:682 msgid "Connect" msgstr "" -#: application/views/qso/index.php:687 +#: application/views/qso/index.php:691 msgid "Stop" msgstr "" -#: application/views/qso/index.php:688 +#: application/views/qso/index.php:692 msgid "Tune" msgstr "" -#: application/views/qso/index.php:689 +#: application/views/qso/index.php:693 msgid "Stop Tune" msgstr "" -#: application/views/qso/index.php:695 +#: application/views/qso/index.php:699 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:704 msgid "Send" msgstr "" -#: application/views/qso/index.php:710 +#: application/views/qso/index.php:714 msgid "Suggestions" msgstr "" -#: application/views/qso/index.php:717 +#: application/views/qso/index.php:721 msgid "Profile Picture" msgstr "" -#: application/views/qso/index.php:741 +#: application/views/qso/index.php:745 msgid "Max. 5 previous contacts are shown" msgstr "" diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.po b/application/locale/nl_NL/LC_MESSAGES/messages.po index d6d1907f1..1b6499f51 100644 --- a/application/locale/nl_NL/LC_MESSAGES/messages.po +++ b/application/locale/nl_NL/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-11-15 15:56+0000\n" +"POT-Creation-Date: 2024-11-17 16:50+0000\n" "PO-Revision-Date: 2024-08-17 10:47+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Dutch \n" "Language-Team: Polish \n" "Language-Team: Portuguese (Portugal) \n" "Language-Team: Russian \n" "Language-Team: Albanian \n" "Language-Team: Serbian \n" "Language-Team: Swedish \n" "Language-Team: Turkish \n" "Language-Team: Chinese (Simplified Han script) \n" "Language-Team: LANGUAGE \n" @@ -267,8 +267,8 @@ msgstr "" #: application/views/interface_assets/header.php:198 #: application/views/logbookadvanced/index.php:658 #: application/views/logbookadvanced/useroptions.php:114 -#: application/views/qso/edit_ajax.php:387 application/views/qso/index.php:267 -#: application/views/qso/index.php:524 application/views/user/edit.php:603 +#: application/views/qso/edit_ajax.php:387 application/views/qso/index.php:271 +#: application/views/qso/index.php:528 application/views/user/edit.php:603 #: application/views/view_log/qso.php:433 msgid "DOK" msgstr "" @@ -286,7 +286,7 @@ msgstr "" #: application/views/logbookadvanced/useroptions.php:86 #: application/views/lookup/index.php:4 #: application/views/lotw_views/index.php:36 -#: application/views/qso/edit_ajax.php:232 application/views/qso/index.php:364 +#: application/views/qso/edit_ajax.php:232 application/views/qso/index.php:368 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 #: application/views/search/result.php:27 @@ -1081,7 +1081,7 @@ msgstr "" #: application/views/awards/was/index.php:87 #: application/views/components/hamsat/table.php:30 #: application/views/contesting/index.php:113 -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:259 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 #: application/views/debug/index.php:573 @@ -1138,8 +1138,8 @@ msgstr "" #: application/controllers/Logbook.php:1357 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:170 -#: application/views/contesting/index.php:256 +#: application/views/contesting/index.php:174 +#: application/views/contesting/index.php:260 #: application/views/logbookadvanced/index.php:601 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 @@ -1150,7 +1150,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:11 #: application/views/qso/components/previous_contacts.php:78 -#: application/views/qso/edit_ajax.php:141 application/views/qso/index.php:180 +#: application/views/qso/edit_ajax.php:141 application/views/qso/index.php:184 #: application/views/search/search_result_ajax.php:5 #: application/views/simplefle/index.php:153 #: application/views/user/edit.php:230 application/views/user/edit.php:252 @@ -1165,8 +1165,8 @@ msgstr "" #: application/controllers/Logbook.php:1358 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:194 -#: application/views/contesting/index.php:257 +#: application/views/contesting/index.php:198 +#: application/views/contesting/index.php:261 #: application/views/logbookadvanced/index.php:604 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 @@ -1177,7 +1177,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:12 #: application/views/qso/components/previous_contacts.php:79 -#: application/views/qso/edit_ajax.php:146 application/views/qso/index.php:185 +#: application/views/qso/edit_ajax.php:146 application/views/qso/index.php:189 #: application/views/search/search_result_ajax.php:6 #: application/views/simplefle/index.php:154 #: application/views/user/edit.php:231 application/views/user/edit.php:253 @@ -1273,7 +1273,7 @@ msgstr "" #: application/views/awards/gridmaster/index.php:40 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:21 -#: application/views/contesting/index.php:262 +#: application/views/contesting/index.php:266 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 @@ -1290,7 +1290,7 @@ msgstr "" #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 #: application/views/qso/components/previous_contacts.php:86 -#: application/views/qso/edit_ajax.php:155 application/views/qso/index.php:282 +#: application/views/qso/edit_ajax.php:155 application/views/qso/index.php:286 #: application/views/satellite/pass.php:28 #: application/views/search/cqzones_result.php:12 #: application/views/search/ituzones_result.php:12 @@ -1360,7 +1360,7 @@ msgstr "" #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:45 #: application/views/contesting/index.php:126 -#: application/views/contesting/index.php:254 +#: application/views/contesting/index.php:258 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:574 application/views/dxatlas/index.php:31 @@ -1465,7 +1465,7 @@ msgstr "" #: application/views/lookup/index.php:44 #: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 -#: application/views/qso/edit_ajax.php:250 application/views/qso/index.php:373 +#: application/views/qso/edit_ajax.php:250 application/views/qso/index.php:377 #: application/views/station_profile/create.php:73 #: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 @@ -1561,7 +1561,7 @@ msgstr "" #: application/views/notes/view.php:6 application/views/notes/view.php:9 #: application/views/qso/edit_ajax.php:36 #: application/views/qso/edit_ajax.php:395 application/views/qso/index.php:41 -#: application/views/qso/index.php:573 application/views/view_log/qso.php:14 +#: application/views/qso/index.php:577 application/views/view_log/qso.php:14 #: application/views/view_log/qso.php:679 msgid "Notes" msgstr "" @@ -1803,8 +1803,8 @@ msgstr "" #: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:63 -#: application/views/contesting/index.php:148 -#: application/views/qso/index.php:315 +#: application/views/contesting/index.php:152 +#: application/views/qso/index.php:319 msgid "Radio" msgstr "" @@ -1824,13 +1824,13 @@ msgid "Options" msgstr "" #: application/controllers/Radio.php:53 application/views/debug/index.php:308 -#: application/views/qso/index.php:680 +#: application/views/qso/index.php:684 msgid "Settings" msgstr "" #: application/controllers/Radio.php:91 -#: application/views/contesting/index.php:152 -#: application/views/qso/index.php:319 +#: application/views/contesting/index.php:156 +#: application/views/qso/index.php:323 msgid "last updated" msgstr "" @@ -1862,10 +1862,10 @@ msgstr "" #: application/controllers/Radio.php:107 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2374 -#: application/views/interface_assets/footer.php:2392 -#: application/views/interface_assets/footer.php:2413 -#: application/views/interface_assets/footer.php:2431 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 +#: application/views/interface_assets/footer.php:2415 +#: application/views/interface_assets/footer.php:2433 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:568 #: application/views/lotw_views/index.php:114 @@ -2002,7 +2002,7 @@ msgstr "" #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 #: application/views/logbookadvanced/edit.php:21 -#: application/views/qslprint/index.php:20 application/views/qso/index.php:303 +#: application/views/qslprint/index.php:20 application/views/qso/index.php:307 #: application/views/search/search_result_ajax.php:18 #: application/views/station_profile/create.php:305 #: application/views/station_profile/edit.php:455 @@ -2037,7 +2037,7 @@ msgstr "" #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 #: application/controllers/Stationsetup.php:436 -#: application/views/qso/index.php:639 application/views/simplefle/index.php:38 +#: application/views/qso/index.php:643 application/views/simplefle/index.php:38 msgid "Error" msgstr "" @@ -2689,8 +2689,8 @@ msgstr "" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1624 +#: application/views/interface_assets/footer.php:1487 +#: application/views/interface_assets/footer.php:1626 #: 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 @@ -2798,7 +2798,7 @@ msgstr "" #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:44 application/views/kml/index.php:80 #: application/views/logbookadvanced/index.php:251 -#: application/views/qso/edit_ajax.php:190 application/views/qso/index.php:420 +#: application/views/qso/edit_ajax.php:190 application/views/qso/index.php:424 #: application/views/timeline/index.php:80 #: application/views/view_log/qso.php:213 msgctxt "Propagation Mode" @@ -2810,7 +2810,7 @@ msgstr "" #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:45 application/views/kml/index.php:81 #: application/views/logbookadvanced/index.php:252 -#: application/views/qso/edit_ajax.php:191 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:191 application/views/qso/index.php:425 #: application/views/timeline/index.php:81 #: application/views/view_log/qso.php:216 msgctxt "Propagation Mode" @@ -2822,7 +2822,7 @@ msgstr "" #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:46 application/views/kml/index.php:82 #: application/views/logbookadvanced/index.php:253 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:422 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:426 #: application/views/timeline/index.php:82 #: application/views/view_log/qso.php:219 msgctxt "Propagation Mode" @@ -2834,7 +2834,7 @@ msgstr "" #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:47 application/views/kml/index.php:83 #: application/views/logbookadvanced/index.php:254 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:423 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:427 #: application/views/timeline/index.php:83 #: application/views/view_log/qso.php:222 msgctxt "Propagation Mode" @@ -2846,7 +2846,7 @@ msgstr "" #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:48 application/views/kml/index.php:84 #: application/views/logbookadvanced/index.php:255 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:424 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:428 #: application/views/timeline/index.php:84 #: application/views/view_log/qso.php:225 msgctxt "Propagation Mode" @@ -2858,7 +2858,7 @@ msgstr "" #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:49 application/views/kml/index.php:85 #: application/views/logbookadvanced/index.php:256 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:425 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:429 #: application/views/timeline/index.php:85 #: application/views/view_log/qso.php:228 msgctxt "Propagation Mode" @@ -2870,7 +2870,7 @@ msgstr "" #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:50 application/views/kml/index.php:86 #: application/views/logbookadvanced/index.php:257 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:426 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:430 #: application/views/timeline/index.php:86 #: application/views/view_log/qso.php:231 msgctxt "Propagation Mode" @@ -2882,7 +2882,7 @@ msgstr "" #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:51 application/views/kml/index.php:87 #: application/views/logbookadvanced/index.php:258 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:427 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:431 #: application/views/timeline/index.php:87 #: application/views/view_log/qso.php:234 msgctxt "Propagation Mode" @@ -2894,7 +2894,7 @@ msgstr "" #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:52 application/views/kml/index.php:88 #: application/views/logbookadvanced/index.php:259 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:428 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:432 #: application/views/timeline/index.php:88 #: application/views/view_log/qso.php:237 msgctxt "Propagation Mode" @@ -2906,7 +2906,7 @@ msgstr "" #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:53 application/views/kml/index.php:89 #: application/views/logbookadvanced/index.php:260 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:429 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:433 #: application/views/timeline/index.php:89 #: application/views/view_log/qso.php:240 msgctxt "Propagation Mode" @@ -2918,7 +2918,7 @@ msgstr "" #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:54 application/views/kml/index.php:90 #: application/views/logbookadvanced/index.php:261 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:430 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:434 #: application/views/timeline/index.php:90 #: application/views/view_log/qso.php:243 msgctxt "Propagation Mode" @@ -2930,7 +2930,7 @@ msgstr "" #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:55 application/views/kml/index.php:91 #: application/views/logbookadvanced/index.php:262 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:431 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:435 #: application/views/timeline/index.php:91 #: application/views/view_log/qso.php:246 msgctxt "Propagation Mode" @@ -2942,7 +2942,7 @@ msgstr "" #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:56 application/views/kml/index.php:92 #: application/views/logbookadvanced/index.php:263 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:432 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:436 #: application/views/timeline/index.php:92 #: application/views/view_log/qso.php:249 msgctxt "Propagation Mode" @@ -2954,7 +2954,7 @@ msgstr "" #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:57 application/views/kml/index.php:93 #: application/views/logbookadvanced/index.php:264 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:433 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:437 #: application/views/timeline/index.php:93 #: application/views/view_log/qso.php:252 msgctxt "Propagation Mode" @@ -2966,7 +2966,7 @@ msgstr "" #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:58 application/views/kml/index.php:94 #: application/views/logbookadvanced/index.php:265 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:438 #: application/views/timeline/index.php:94 #: application/views/view_log/qso.php:255 msgctxt "Propagation Mode" @@ -2978,7 +2978,7 @@ msgstr "" #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:59 application/views/kml/index.php:95 #: application/views/logbookadvanced/index.php:266 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:439 #: application/views/timeline/index.php:95 #: application/views/view_log/qso.php:258 msgctxt "Propagation Mode" @@ -2990,7 +2990,7 @@ msgstr "" #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:60 application/views/kml/index.php:96 #: application/views/logbookadvanced/index.php:267 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:436 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:440 #: application/views/timeline/index.php:96 #: application/views/view_log/qso.php:261 msgctxt "Propagation Mode" @@ -3002,7 +3002,7 @@ msgstr "" #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:61 application/views/kml/index.php:97 #: application/views/logbookadvanced/index.php:268 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:441 #: application/views/timeline/index.php:97 #: application/views/view_log/qso.php:264 msgctxt "Propagation Mode" @@ -3169,7 +3169,7 @@ msgstr "" #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:161 +#: application/views/contesting/index.php:165 #: application/views/csv/index.php:23 application/views/dashboard/index.php:175 #: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 @@ -3258,7 +3258,7 @@ msgstr "" #: application/views/bandmap/list.php:112 #: application/views/components/hamsat/table.php:25 #: application/views/contesting/index.php:98 -#: application/views/contesting/index.php:252 +#: application/views/contesting/index.php:256 #: application/views/dashboard/index.php:170 #: application/views/debug/index.php:570 #: application/views/distancerecords/index.php:16 @@ -3302,7 +3302,7 @@ msgstr "" #: application/views/bandmap/list.php:112 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:103 -#: application/views/contesting/index.php:252 +#: application/views/contesting/index.php:256 #: application/views/dashboard/index.php:173 #: application/views/debug/index.php:571 #: application/views/distancerecords/index.php:17 @@ -3331,7 +3331,7 @@ msgstr "" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:114 -#: application/views/contesting/index.php:253 +#: application/views/contesting/index.php:257 #: application/views/debug/index.php:572 application/views/debug/index.php:607 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -3464,7 +3464,7 @@ msgstr "" #: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:32 #: application/views/interface_assets/footer.php:510 -#: application/views/interface_assets/footer.php:2170 +#: application/views/interface_assets/footer.php:2172 msgid "DANGER" msgstr "" @@ -3897,7 +3897,7 @@ msgstr "" #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:94 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:306 -#: application/views/qso/index.php:396 +#: application/views/qso/index.php:400 #: application/views/search/cqzones_result.php:13 #: application/views/station_profile/create.php:106 #: application/views/station_profile/edit.php:153 @@ -4019,7 +4019,7 @@ msgstr "" #: application/views/awards/cq/index.php:56 #: application/views/awards/itu/index.php:56 #: application/views/awards/wac/index.php:44 -#: application/views/interface_assets/footer.php:2149 +#: application/views/interface_assets/footer.php:2151 #: application/views/qso/edit_ajax.php:405 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -4229,7 +4229,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:155 #: application/views/logbookadvanced/index.php:335 #: application/views/options/dxcluster.php:56 -#: application/views/qso/edit_ajax.php:264 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:264 application/views/qso/index.php:391 #: application/views/view_log/qso.php:323 msgid "Antarctica" msgstr "" @@ -4240,7 +4240,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:154 #: application/views/logbookadvanced/index.php:334 #: application/views/options/dxcluster.php:55 -#: application/views/qso/edit_ajax.php:263 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:263 application/views/qso/index.php:390 #: application/views/view_log/qso.php:320 msgid "Africa" msgstr "" @@ -4251,7 +4251,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:157 #: application/views/logbookadvanced/index.php:337 #: application/views/options/dxcluster.php:57 -#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:388 +#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:392 #: application/views/view_log/qso.php:326 msgid "Asia" msgstr "" @@ -4262,7 +4262,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:158 #: application/views/logbookadvanced/index.php:338 #: application/views/options/dxcluster.php:58 -#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:389 +#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:393 #: application/views/view_log/qso.php:329 msgid "Europe" msgstr "" @@ -4273,7 +4273,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:156 #: application/views/logbookadvanced/index.php:336 #: application/views/options/dxcluster.php:59 -#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:390 +#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:394 #: application/views/view_log/qso.php:332 msgid "North America" msgstr "" @@ -4284,7 +4284,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:159 #: application/views/logbookadvanced/index.php:339 #: application/views/options/dxcluster.php:61 -#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:396 #: application/views/view_log/qso.php:338 msgid "South America" msgstr "" @@ -4295,7 +4295,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:160 #: application/views/logbookadvanced/index.php:340 #: application/views/options/dxcluster.php:60 -#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:395 #: application/views/view_log/qso.php:335 msgid "Oceania" msgstr "" @@ -4485,13 +4485,13 @@ msgstr "" #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 #: application/views/contesting/index.php:59 -#: application/views/contesting/index.php:219 +#: application/views/contesting/index.php:223 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 #: application/views/logbookadvanced/index.php:613 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 -#: application/views/qso/edit_ajax.php:170 application/views/qso/index.php:191 +#: application/views/qso/edit_ajax.php:170 application/views/qso/index.php:195 #: application/views/satellite/edit.php:34 #: application/views/satellite/index.php:21 #: application/views/search/result.php:16 @@ -4519,7 +4519,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:646 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 application/views/qso/edit_ajax.php:314 -#: application/views/qso/index.php:406 +#: application/views/qso/index.php:410 #: application/views/search/ituzones_result.php:13 #: application/views/station_profile/create.php:120 #: application/views/station_profile/edit.php:170 @@ -4628,7 +4628,7 @@ msgid "" msgstr "" #: application/views/awards/pota/index.php:31 -#: application/views/qso/index.php:239 application/views/qso/index.php:498 +#: application/views/qso/index.php:243 application/views/qso/index.php:502 #: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:272 #: application/views/user/edit.php:595 application/views/view_log/qso.php:376 @@ -4808,7 +4808,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:330 #: application/views/logbookadvanced/index.php:682 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:260 application/views/qso/index.php:383 +#: application/views/qso/edit_ajax.php:260 application/views/qso/index.php:387 #: application/views/view_log/qso.php:315 msgid "Continent" msgstr "" @@ -4908,7 +4908,7 @@ msgid "" msgstr "" #: application/views/awards/wwff/index.php:31 -#: application/views/qso/index.php:227 application/views/qso/index.php:485 +#: application/views/qso/index.php:231 application/views/qso/index.php:489 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:259 #: application/views/user/edit.php:591 application/views/view_log/qso.php:369 @@ -4968,8 +4968,8 @@ msgstr "" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:65 #: application/views/contesting/index.php:19 #: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:150 -#: application/views/qso/index.php:317 +#: application/views/contesting/index.php:154 +#: application/views/qso/index.php:321 msgid "None" msgstr "" @@ -5053,14 +5053,14 @@ msgid "" msgstr "" #: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 -#: application/views/qso/index.php:251 application/views/qso/index.php:510 +#: application/views/qso/index.php:255 application/views/qso/index.php:514 #: application/views/user/edit.php:599 application/views/view_log/qso.php:398 #: application/views/view_log/qso.php:666 msgid "Sig" msgstr "" #: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:346 -#: application/views/qso/index.php:449 +#: application/views/qso/index.php:453 msgid "USA County" msgstr "" @@ -5188,7 +5188,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:553 -#: application/views/qso/index.php:275 +#: application/views/qso/index.php:279 #: application/views/station_profile/edit.php:92 msgid "Location" msgstr "" @@ -5308,7 +5308,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:522 #: application/views/qso/edit_ajax.php:535 #: application/views/qso/edit_ajax.php:551 -#: application/views/qso/edit_ajax.php:565 application/views/qso/index.php:587 +#: application/views/qso/edit_ajax.php:565 application/views/qso/index.php:591 #: application/views/search/result.php:74 #: application/views/station_profile/create.php:209 #: application/views/station_profile/create.php:217 @@ -5352,7 +5352,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:521 #: application/views/qso/edit_ajax.php:534 #: application/views/qso/edit_ajax.php:550 -#: application/views/qso/edit_ajax.php:564 application/views/qso/index.php:586 +#: application/views/qso/edit_ajax.php:564 application/views/qso/index.php:590 #: application/views/search/result.php:76 #: application/views/station_profile/create.php:210 #: application/views/station_profile/create.php:218 @@ -5419,12 +5419,12 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:224 +#: application/views/contesting/index.php:228 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:670 #: application/views/logbookadvanced/useroptions.php:130 -#: application/views/qso/edit_ajax.php:181 application/views/qso/index.php:292 +#: application/views/qso/edit_ajax.php:181 application/views/qso/index.php:296 #: application/views/view_log/qso.php:202 msgid "Comment" msgstr "" @@ -5636,7 +5636,7 @@ msgstr "" #: application/views/contesting/index.php:40 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:596 application/views/qso/index.php:355 +#: application/views/qso/edit_ajax.php:596 application/views/qso/index.php:359 msgid "Operator Callsign" msgstr "" @@ -5710,54 +5710,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "" -#: application/views/contesting/index.php:177 -#: application/views/contesting/index.php:260 +#: application/views/contesting/index.php:181 +#: application/views/contesting/index.php:264 #: application/views/qso/edit_ajax.php:620 msgid "Serial (S)" msgstr "" -#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:186 msgid "Gridsquare (S)" msgstr "" -#: application/views/contesting/index.php:187 -#: application/views/contesting/index.php:258 +#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:262 msgid "Exch (S)" msgstr "" -#: application/views/contesting/index.php:201 -#: application/views/contesting/index.php:261 +#: application/views/contesting/index.php:205 +#: application/views/contesting/index.php:265 #: application/views/qso/edit_ajax.php:615 msgid "Serial (R)" msgstr "" -#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:210 msgid "Gridsquare (R)" msgstr "" -#: application/views/contesting/index.php:211 -#: application/views/contesting/index.php:259 +#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:263 msgid "Exch (R)" msgstr "" -#: application/views/contesting/index.php:229 +#: application/views/contesting/index.php:233 msgid "Reset QSO" msgstr "" -#: application/views/contesting/index.php:230 -#: application/views/qso/index.php:638 +#: application/views/contesting/index.php:234 +#: application/views/qso/index.php:642 msgid "Save QSO" msgstr "" -#: application/views/contesting/index.php:239 +#: application/views/contesting/index.php:243 msgid "Callsign Suggestions" msgstr "" -#: application/views/contesting/index.php:246 +#: application/views/contesting/index.php:250 msgid "Contest Logbook" msgstr "" -#: application/views/contesting/index.php:263 +#: application/views/contesting/index.php:267 #: application/views/qso/edit_ajax.php:163 msgid "VUCC Gridsquare" msgstr "" @@ -5921,7 +5921,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:187 application/views/qso/index.php:417 +#: application/views/qso/edit_ajax.php:187 application/views/qso/index.php:421 msgid "Propagation Mode" msgstr "" @@ -6032,7 +6032,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:420 #: application/views/qso/edit_ajax.php:481 #: application/views/qso/edit_ajax.php:518 -#: application/views/qso/edit_ajax.php:547 application/views/qso/index.php:583 +#: application/views/qso/edit_ajax.php:547 application/views/qso/index.php:587 #: application/views/search/search_result_ajax.php:180 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:298 @@ -6104,7 +6104,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:523 #: application/views/qso/edit_ajax.php:536 #: application/views/qso/edit_ajax.php:552 -#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:588 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:592 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:148 @@ -6936,10 +6936,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2375 -#: application/views/interface_assets/footer.php:2393 -#: application/views/interface_assets/footer.php:2414 -#: application/views/interface_assets/footer.php:2432 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 +#: application/views/interface_assets/footer.php:2416 +#: application/views/interface_assets/footer.php:2434 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:703 msgid "View" @@ -7076,7 +7076,7 @@ msgid "Not worked" msgstr "" #: application/views/interface_assets/footer.php:47 -#: application/views/qso/index.php:632 +#: application/views/qso/index.php:636 #: application/views/visitor/layout/footer.php:246 msgid "Clear" msgstr "" @@ -7197,62 +7197,62 @@ msgstr "" msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1203 +#: application/views/interface_assets/footer.php:1204 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "" -#: application/views/interface_assets/footer.php:1412 -#: application/views/interface_assets/footer.php:1416 -#: application/views/interface_assets/footer.php:1419 -#: application/views/interface_assets/footer.php:1556 -#: application/views/interface_assets/footer.php:1560 -#: application/views/interface_assets/footer.php:1563 +#: application/views/interface_assets/footer.php:1414 +#: application/views/interface_assets/footer.php:1418 +#: application/views/interface_assets/footer.php:1421 +#: application/views/interface_assets/footer.php:1558 +#: application/views/interface_assets/footer.php:1562 +#: application/views/interface_assets/footer.php:1565 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1419 -#: application/views/interface_assets/footer.php:1563 +#: application/views/interface_assets/footer.php:1421 +#: application/views/interface_assets/footer.php:1565 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2151 +#: application/views/interface_assets/footer.php:2153 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2171 +#: application/views/interface_assets/footer.php:2173 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2211 +#: application/views/interface_assets/footer.php:2213 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2213 +#: application/views/interface_assets/footer.php:2215 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2386 -#: application/views/interface_assets/footer.php:2425 +#: application/views/interface_assets/footer.php:2388 +#: application/views/interface_assets/footer.php:2427 #: application/views/view_log/qso.php:693 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2405 +#: application/views/interface_assets/footer.php:2407 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2443 +#: application/views/interface_assets/footer.php:2445 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2454 -#: application/views/interface_assets/footer.php:2479 +#: application/views/interface_assets/footer.php:2456 +#: application/views/interface_assets/footer.php:2481 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2490 +#: application/views/interface_assets/footer.php:2492 msgid "Something went wrong. Please try again!" msgstr "" @@ -7871,7 +7871,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:426 #: application/views/qso/edit_ajax.php:487 #: application/views/qso/edit_ajax.php:524 -#: application/views/qso/edit_ajax.php:553 application/views/qso/index.php:589 +#: application/views/qso/edit_ajax.php:553 application/views/qso/index.php:593 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:225 #: application/views/view_log/partial/log_ajax.php:145 @@ -7902,7 +7902,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:525 #: application/views/qso/edit_ajax.php:537 #: application/views/qso/edit_ajax.php:554 -#: application/views/qso/edit_ajax.php:567 application/views/qso/index.php:590 +#: application/views/qso/edit_ajax.php:567 application/views/qso/index.php:594 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/search/search_result_ajax.php:305 @@ -7937,7 +7937,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:121 #: application/views/qslprint/qsolist.php:212 #: application/views/qso/edit_ajax.php:438 -#: application/views/qso/edit_ajax.php:471 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:471 application/views/qso/index.php:605 #: application/views/search/search_result_ajax.php:199 #: application/views/search/search_result_ajax.php:241 #: application/views/view_log/partial/log_ajax.php:164 @@ -7955,7 +7955,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:124 #: application/views/qslprint/qsolist.php:213 #: application/views/qso/edit_ajax.php:437 -#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:604 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:167 @@ -7973,7 +7973,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:130 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:439 -#: application/views/qso/edit_ajax.php:472 application/views/qso/index.php:602 +#: application/views/qso/edit_ajax.php:472 application/views/qso/index.php:606 #: application/views/search/search_result_ajax.php:208 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:173 @@ -7987,7 +7987,7 @@ msgstr "" #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:127 #: application/views/qso/edit_ajax.php:440 -#: application/views/qso/edit_ajax.php:473 application/views/qso/index.php:603 +#: application/views/qso/edit_ajax.php:473 application/views/qso/index.php:607 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:208 msgid "Manager" @@ -8971,7 +8971,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:15 #: application/views/qslprint/qsolist.php:85 -#: application/views/qso/index.php:609 +#: application/views/qso/index.php:613 #: application/views/search/search_result_ajax.php:205 #: application/views/view_log/partial/log_ajax.php:170 #: src/QSLManager/QSO.php:346 @@ -9299,11 +9299,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:351 +#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:355 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:349 +#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:353 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:631 msgid "Transmit Power (W)" @@ -9333,7 +9333,7 @@ msgstr "" msgid "Long Path" msgstr "" -#: application/views/qso/edit_ajax.php:273 application/views/qso/index.php:531 +#: application/views/qso/edit_ajax.php:273 application/views/qso/index.php:535 #: application/views/view_log/qso.php:448 msgid "eMail" msgstr "" @@ -9346,32 +9346,32 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:292 application/views/qso/index.php:558 +#: application/views/qso/edit_ajax.php:292 application/views/qso/index.php:562 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:292 application/views/qso/index.php:560 +#: application/views/qso/edit_ajax.php:292 application/views/qso/index.php:564 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:297 application/views/qso/index.php:564 +#: application/views/qso/edit_ajax.php:297 application/views/qso/index.php:568 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:297 application/views/qso/index.php:566 +#: application/views/qso/edit_ajax.php:297 application/views/qso/index.php:570 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:382 application/views/qso/index.php:258 -#: application/views/qso/index.php:516 application/views/user/edit.php:599 +#: application/views/qso/edit_ajax.php:382 application/views/qso/index.php:262 +#: application/views/qso/index.php:520 application/views/user/edit.php:599 #: application/views/view_log/qso.php:414 #: application/views/view_log/qso.php:671 msgid "Sig Info" msgstr "" #: application/views/qso/edit_ajax.php:397 -#: application/views/qso/edit_ajax.php:510 application/views/qso/index.php:575 -#: application/views/qso/index.php:619 +#: application/views/qso/edit_ajax.php:510 application/views/qso/index.php:579 +#: application/views/qso/index.php:623 msgid "Note: Gets exported to third-party services." msgstr "" @@ -9380,8 +9380,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:436 -#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:596 -#: application/views/qso/index.php:599 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:600 +#: application/views/qso/index.php:603 msgid "Method" msgstr "" @@ -9400,11 +9400,11 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:616 +#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:620 msgid "Get the default message for eQSL, for this station." msgstr "" -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:616 +#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:620 msgid "QSL MSG" msgstr "" @@ -9441,7 +9441,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:5 application/views/qso/index.php:727 +#: application/views/qso/index.php:5 application/views/qso/index.php:731 msgid "Previous Contacts" msgstr "" @@ -9494,7 +9494,7 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:199 application/views/qso/index.php:455 +#: application/views/qso/index.php:203 application/views/qso/index.php:459 #: application/views/station_profile/create.php:149 #: application/views/station_profile/edit.php:218 #: application/views/user/edit.php:583 application/views/view_log/qso.php:355 @@ -9502,7 +9502,7 @@ msgstr "" msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:215 application/views/qso/index.php:472 +#: application/views/qso/index.php:219 application/views/qso/index.php:476 #: application/views/station_profile/create.php:165 #: application/views/station_profile/edit.php:246 #: application/views/user/edit.php:587 application/views/view_log/qso.php:362 @@ -9510,91 +9510,91 @@ msgstr "" msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:325 application/views/view_log/qso.php:100 +#: application/views/qso/index.php:329 application/views/view_log/qso.php:100 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:330 +#: application/views/qso/index.php:334 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:474 +#: application/views/qso/index.php:478 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:487 +#: application/views/qso/index.php:491 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:500 +#: application/views/qso/index.php:504 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:512 +#: application/views/qso/index.php:516 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:518 +#: application/views/qso/index.php:522 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:526 +#: application/views/qso/index.php:530 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:533 +#: application/views/qso/index.php:537 msgid "eMail-Adress of QSO-Partner" msgstr "" -#: application/views/qso/index.php:542 application/views/view_log/qso.php:276 +#: application/views/qso/index.php:546 application/views/view_log/qso.php:276 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:550 application/views/view_log/qso.php:283 +#: application/views/qso/index.php:554 application/views/view_log/qso.php:283 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:635 +#: application/views/qso/index.php:639 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:676 +#: application/views/qso/index.php:680 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:682 msgid "Connect" msgstr "" -#: application/views/qso/index.php:687 +#: application/views/qso/index.php:691 msgid "Stop" msgstr "" -#: application/views/qso/index.php:688 +#: application/views/qso/index.php:692 msgid "Tune" msgstr "" -#: application/views/qso/index.php:689 +#: application/views/qso/index.php:693 msgid "Stop Tune" msgstr "" -#: application/views/qso/index.php:695 +#: application/views/qso/index.php:699 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:704 msgid "Send" msgstr "" -#: application/views/qso/index.php:710 +#: application/views/qso/index.php:714 msgid "Suggestions" msgstr "" -#: application/views/qso/index.php:717 +#: application/views/qso/index.php:721 msgid "Profile Picture" msgstr "" -#: application/views/qso/index.php:741 +#: application/views/qso/index.php:745 msgid "Max. 5 previous contacts are shown" msgstr "" From 36322b177192a34e14b15bd1adcb7ac6aecf1d62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw=20Korze=C5=84?= Date: Sun, 17 Nov 2024 15:16:48 +0000 Subject: [PATCH 23/35] Translated using Weblate (Polish) Currently translated at 40.3% (854 of 2115 strings) Translation: Wavelog/Main Translation Translate-URL: https://translate.wavelog.org/projects/wavelog/main-translation/pl/ --- .../locale/pl_PL/LC_MESSAGES/messages.po | 95 ++++++++++--------- 1 file changed, 48 insertions(+), 47 deletions(-) diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.po b/application/locale/pl_PL/LC_MESSAGES/messages.po index 82b87f3fd..e20c1b976 100644 --- a/application/locale/pl_PL/LC_MESSAGES/messages.po +++ b/application/locale/pl_PL/LC_MESSAGES/messages.po @@ -5,14 +5,15 @@ # Maciej , 2024. # Maciej SP2FE , 2024. # Bartek , 2024. +# Stanisław Korzeń , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" "POT-Creation-Date: 2024-11-15 15:56+0000\n" -"PO-Revision-Date: 2024-11-09 12:03+0000\n" -"Last-Translator: Bartek \n" -"Language-Team: Polish \n" +"PO-Revision-Date: 2024-11-17 16:50+0000\n" +"Last-Translator: Stanisław Korzeń \n" +"Language-Team: Polish \n" "Language: pl_PL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1854,7 +1855,7 @@ msgstr "Opcje" #: application/controllers/Radio.php:53 application/views/debug/index.php:308 #: application/views/qso/index.php:680 msgid "Settings" -msgstr "" +msgstr "Ustawienia" #: application/controllers/Radio.php:91 #: application/views/contesting/index.php:152 @@ -1917,7 +1918,7 @@ msgstr "Nie znaleziono radiostacji z interfejsem CAT." #: application/controllers/Radio.php:128 application/views/radio/index.php:2 msgid "Edit CAT Settings" -msgstr "" +msgstr "Edytuj ustawienia CAT" #: application/controllers/Reg1test.php:25 msgid "Export EDI" @@ -3654,7 +3655,7 @@ msgstr "" #: application/views/adif/import_failed.php:15 msgid "The ADIF file could not be parsed correctly." -msgstr "" +msgstr "Nie było można poprawnie przeanalizować pliku ADIF." #: application/views/adif/import_failed.php:16 msgid "" @@ -3665,7 +3666,7 @@ msgstr "" #: application/views/adif/import_success.php:15 msgid "Yay, its imported!" -msgstr "" +msgstr "Hura, zaimportowane!" #: application/views/adif/import_success.php:16 msgid "The ADIF File has been imported." @@ -3698,7 +3699,7 @@ msgstr "" #: application/views/adif/mark_lotw.php:15 msgid "Yay, its done!" -msgstr "" +msgstr "Hura, wszystko gotowe!" #: application/views/adif/mark_lotw.php:16 msgid "The QSOs are marked as exported to LoTW." @@ -3751,7 +3752,7 @@ msgstr "" #: application/views/api/help.php:19 msgid "API URL" -msgstr "" +msgstr "API URL" #: application/views/api/help.php:19 application/views/api/help.php:38 #: application/views/cron/index.php:22 application/views/debug/index.php:46 @@ -3760,7 +3761,7 @@ msgstr "Kopiuj do schowka" #: application/views/api/help.php:19 msgid "The API URL for this Wavelog instance is" -msgstr "" +msgstr "API URL dla tej instancji Wavelog to" #: application/views/api/help.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 application/views/radio/index.php:26 @@ -3782,13 +3783,13 @@ msgstr "" #: application/views/api/help.php:27 msgid "API Key" -msgstr "" +msgstr "Klucz API" #: application/views/api/help.php:28 application/views/cron/edit.php:30 #: application/views/cron/index.php:53 #: application/views/search/stored_queries.php:8 msgid "Description" -msgstr "" +msgstr "Opis" #: application/views/api/help.php:29 msgid "Last Used" @@ -3812,7 +3813,7 @@ msgstr "Status" #: application/views/logbookadvanced/index.php:545 #: application/views/qrz/export.php:44 application/views/webadif/export.php:45 msgid "Actions" -msgstr "" +msgstr "Akcje" #: application/views/api/help.php:45 msgid "Read & Write" @@ -3824,23 +3825,23 @@ msgstr "Tylko odczyt" #: application/views/api/help.php:49 msgid "Unknown" -msgstr "" +msgstr "Nieznane" #: application/views/api/help.php:59 msgid "Test" -msgstr "" +msgstr "Test" #: application/views/api/help.php:71 msgid "You have no API Keys." -msgstr "" +msgstr "Nie masz kluczy API." #: application/views/api/help.php:75 msgid "Create a read & write key" -msgstr "" +msgstr "Utwórz klucz odczytu i zapisu" #: application/views/api/help.php:76 msgid "Create a read-only key" -msgstr "" +msgstr "Utwórz klucz tylko-do-odczytu" #: application/views/awards/counties/details.php:4 #: application/views/awards/details.php:1 @@ -3848,7 +3849,7 @@ msgstr "" #: application/views/distancerecords/details.php:1 #: application/views/timeline/details.php:2 msgid "Filtering on" -msgstr "" +msgstr "Włączone filtrowanie" #: application/views/awards/counties/details.php:13 msgid "County" @@ -3893,11 +3894,11 @@ msgstr "Hrabstwo" #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:13 msgid "Award Info" -msgstr "" +msgstr "Informacje o nagrodzie" #: application/views/awards/counties/index.php:7 msgid "US County Award" -msgstr "" +msgstr "Nagroda Hrabstwa USA" #: application/views/awards/counties/index.php:8 #, php-format @@ -3920,7 +3921,7 @@ msgstr "" #: application/views/awards/counties/index.php:21 msgid "Counties Worked" -msgstr "" +msgstr "Zaliczone hrabstwa" #: application/views/awards/counties/index.php:22 msgid "Counties Confirmed" @@ -3980,7 +3981,7 @@ msgstr "" #: application/views/awards/cq/index.php:20 msgid "CQ Magazine WAZ Award" -msgstr "" +msgstr "Nagroda WAZ magazynu CQ" #: application/views/awards/cq/index.php:21 msgid "" @@ -3999,7 +4000,7 @@ msgstr "" #, php-format msgctxt "uses 'CQ Magazine'" msgid "You can find all the information and rules on the Website of the %s." -msgstr "" +msgstr "Możesz znaleźć wszystkie informacje i zasady na stronie %s." #: application/views/awards/cq/index.php:25 msgid "Awards - CQ Magazine WAZ" @@ -4027,7 +4028,7 @@ msgstr "Potwierdzone" #: application/views/search/result.php:35 #: application/views/visitor/index.php:266 msgid "Worked" -msgstr "Pracowane" +msgstr "Zaliczone" #: application/views/awards/cq/index.php:38 #: application/views/awards/dok/index.php:41 @@ -4041,7 +4042,7 @@ msgstr "Pracowane" #: application/views/awards/waja/index.php:37 #: application/views/awards/was/index.php:37 msgid "Show worked" -msgstr "" +msgstr "Pokaż zaliczone" #: application/views/awards/cq/index.php:42 #: application/views/awards/dok/index.php:45 @@ -4055,7 +4056,7 @@ msgstr "" #: application/views/awards/waja/index.php:41 #: application/views/awards/was/index.php:41 msgid "Show confirmed" -msgstr "" +msgstr "Pokaż potwierdzone" #: application/views/awards/cq/index.php:46 #: application/views/awards/dxcc/index.php:51 @@ -4068,7 +4069,7 @@ msgstr "" #: application/views/awards/waja/index.php:45 #: application/views/awards/was/index.php:45 msgid "Show not worked" -msgstr "" +msgstr "Pokaż nie zaliczone" #: application/views/awards/cq/index.php:52 #: application/views/awards/dok/index.php:51 @@ -4124,7 +4125,7 @@ msgstr "Wyświetl mapę stref CQ" #: application/views/awards/waja/index.php:128 #: application/views/awards/was/index.php:124 msgid "Table" -msgstr "" +msgstr "Tabela" #: application/views/awards/cq/index.php:127 #: application/views/awards/dok/index.php:128 @@ -4154,7 +4155,7 @@ msgstr "Mapa" #: application/views/awards/waja/index.php:170 #: application/views/awards/was/index.php:170 msgid "Summary" -msgstr "" +msgstr "Podsumowanie" #: application/views/awards/cq/index.php:180 #: application/views/awards/dok/index.php:178 @@ -4168,7 +4169,7 @@ msgstr "" #: application/views/awards/waja/index.php:184 #: application/views/awards/was/index.php:183 msgid "Total worked" -msgstr "" +msgstr "Suma zaliczonych" #: application/views/awards/cq/index.php:187 #: application/views/awards/dok/index.php:185 @@ -4208,7 +4209,7 @@ msgstr "" #: application/views/awards/dok/index.php:10 msgid "DARC website" -msgstr "" +msgstr "Strona DARC" #: application/views/awards/dok/index.php:10 #, php-format @@ -4235,7 +4236,7 @@ msgstr "" #: application/views/awards/waja/index.php:33 #: application/views/awards/was/index.php:33 msgid "Worked / Confirmed" -msgstr "" +msgstr "Zaliczone / Potwierdzone" #: application/views/awards/dok/index.php:80 #: application/views/awards/dxcc/index.php:120 @@ -4251,7 +4252,7 @@ msgstr "Wszystkie pasma" #: application/views/awards/dxcc/index.php:14 msgid "DXCC Award" -msgstr "" +msgstr "Nagroda DXCC" #: application/views/awards/dxcc/index.php:15 msgid "'How to Count Countries Worked, A New DX Scoring System'" @@ -4268,7 +4269,7 @@ msgstr "" #: application/views/awards/dxcc/index.php:16 #: application/views/awards/wac/index.php:11 msgid "ARRL website" -msgstr "" +msgstr "Strona ARRL" #: application/views/awards/dxcc/index.php:16 #: application/views/awards/wac/index.php:11 @@ -4373,14 +4374,14 @@ msgstr "Wyświetl mapę DXCC" #: application/views/awards/dxcc/index.php:225 msgid "DXCC Name" -msgstr "" +msgstr "Nazwa DXCC" #: application/views/awards/dxcc/index.php:226 #: application/views/awards/iota/index.php:170 #: application/views/timeline/index.php:150 #: application/views/timeline/index.php:237 msgid "Prefix" -msgstr "" +msgstr "Prefiks" #: application/views/awards/ffma/index.php:8 #: application/views/interface_assets/header.php:240 @@ -4466,7 +4467,7 @@ msgstr "Kanton" #: application/views/awards/helvetia/index.php:4 msgid "Hover over a canton" -msgstr "" +msgstr "Najedź myszką na kanton" #: application/views/awards/helvetia/index.php:20 msgid "HELVETIA 26 | SWITZERLAND AWARD" @@ -4493,7 +4494,7 @@ msgid "" msgstr "" "Te nagrody występują w dwóch wersjach: jedna dla pasm HF, a druga dla pasm " "VHF (w tym SHF i UHF). Ważne połączenia dla tych nagród sięgają 1 stycznia " -"1980 roku." +"1980 roku" #: application/views/awards/helvetia/index.php:23 #: application/views/awards/jcc/index.php:19 @@ -4748,7 +4749,7 @@ msgstr "Prowincja" #: application/views/awards/rac/index.php:4 msgid "Hover over a province" -msgstr "" +msgstr "Najedź myszką nad prowincje" #: application/views/awards/rac/index.php:106 msgid "Show RAC Map" @@ -4787,7 +4788,7 @@ msgstr "Typ nagrody" #: application/views/distances/index.php:12 #: application/views/timeplotter/index.php:4 msgid "Number of QSOs" -msgstr "" +msgstr "Ilość QSO" #: application/views/awards/sig/index.php:23 msgid "Number of Refs" @@ -4813,12 +4814,12 @@ msgstr "Data/Godzina" #: application/views/awards/sig/qso_list.php:14 #: application/views/awards/sota/index.php:27 msgid "RST Sent" -msgstr "" +msgstr "RST nadane" #: application/views/awards/sig/qso_list.php:15 #: application/views/awards/sota/index.php:28 msgid "RST Received" -msgstr "" +msgstr "RST odebrane" #: application/views/awards/sig/qso_list.php:34 msgid "Export QSOs to ADIF" @@ -4866,11 +4867,11 @@ msgstr "" #: application/views/awards/vucc/index.php:22 msgid "Grids Worked" -msgstr "" +msgstr "Zaliczone kratki" #: application/views/awards/vucc/index.php:23 msgid "Grids Confirmed" -msgstr "" +msgstr "Potwierdzone kratki" #: application/views/awards/wab/index.php:12 msgid "WAB - Worked All Britain Award" @@ -4890,7 +4891,7 @@ msgstr "" #: application/views/awards/wab/index.php:109 msgid "List" -msgstr "" +msgstr "Lista" #: application/views/awards/wab/list.php:5 msgid "WAB Square" From 4d66834a78bd93755798191070289ca5dfdf694d Mon Sep 17 00:00:00 2001 From: int2001 Date: Mon, 18 Nov 2024 08:34:51 +0000 Subject: [PATCH 24/35] Massedit for eQSL at LBA (PHP) --- application/models/Logbookadvanced_model.php | 19 +++++++++++++++++++ application/views/logbookadvanced/edit.php | 8 ++++++++ 2 files changed, 27 insertions(+) diff --git a/application/models/Logbookadvanced_model.php b/application/models/Logbookadvanced_model.php index 646a9cc02..15eb844c8 100644 --- a/application/models/Logbookadvanced_model.php +++ b/application/models/Logbookadvanced_model.php @@ -628,6 +628,8 @@ class Logbookadvanced_model extends CI_Model { case "continent": $column = 'COL_CONT'; break; case "qrzsent": $column = 'COL_QRZCOM_QSO_UPLOAD_STATUS'; break; case "qrzreceived": $column = 'COL_QRZCOM_QSO_DOWNLOAD_STATUS'; break; + case "eqslsent": $column = 'COL_EQSL_QSL_SENT'; break; + case "eqslreceived": $column = 'COL_EQSL_QSL_RCVD'; break; case "stationpower": $column = 'COL_TX_PWR'; break; default: return; } @@ -772,6 +774,23 @@ class Logbookadvanced_model extends CI_Model { $query = $this->db->query($sql, array($value, json_decode($ids, true), $this->session->userdata('user_id'))); + } else if ($column == 'COL_EQSL_QSL_SENT') { + $skipqrzupdate = true; + + $sql = "UPDATE ".$this->config->item('table_name')." JOIN station_profile ON ". $this->config->item('table_name').".station_id = station_profile.station_id" . + " SET " . $this->config->item('table_name').".COL_EQSL_QSL_SENT = ?, " . $this->config->item('table_name').".COL_EQSL_QSLSDATE = now()" . + " WHERE " . $this->config->item('table_name').".col_primary_key in ? and station_profile.user_id = ?"; + + $query = $this->db->query($sql, array($value, json_decode($ids, true), $this->session->userdata('user_id'))); + } else if ($column == 'COL_EQSL_QSL_RCVD') { + $skipqrzupdate = true; + + $sql = "UPDATE ".$this->config->item('table_name')." JOIN station_profile ON ". $this->config->item('table_name').".station_id = station_profile.station_id" . + " SET " . $this->config->item('table_name').".COL_EQSL_QSL_RCVD = ?, " . $this->config->item('table_name').".COL_EQSL_QSLRDATE = now()" . + " WHERE " . $this->config->item('table_name').".col_primary_key in ? and station_profile.user_id = ?"; + + $query = $this->db->query($sql, array($value, json_decode($ids, true), $this->session->userdata('user_id'))); + } else if ($column == 'COL_QSLMSG') { $sql = "UPDATE ".$this->config->item('table_name')." JOIN station_profile ON ". $this->config->item('table_name').".station_id = station_profile.station_id" . diff --git a/application/views/logbookadvanced/edit.php b/application/views/logbookadvanced/edit.php index e7f795844..c55c8e699 100644 --- a/application/views/logbookadvanced/edit.php +++ b/application/views/logbookadvanced/edit.php @@ -27,6 +27,8 @@ + +
 
@@ -149,6 +151,12 @@ + +