From a0659bb31e35474381ea54f008ab8947e6ab34eb Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Fri, 10 Oct 2025 03:02:32 +0200 Subject: [PATCH 01/56] Initial commit of DX Waterfall for Wavelog --- application/controllers/Band.php | 12 + application/controllers/Qso.php | 8 + application/controllers/User.php | 13 + application/models/User_model.php | 7 +- application/views/interface_assets/footer.php | 136 +- application/views/qso/index.php | 148 +- application/views/user/edit.php | 10 + assets/js/dxwaterfall.js | 4558 +++++++++++++++++ assets/js/sections/qrg_handler.js | 35 +- assets/js/sections/qso.js | 58 +- assets/json/iaru_bandplans.json | 261 + 11 files changed, 5216 insertions(+), 30 deletions(-) create mode 100644 assets/js/dxwaterfall.js create mode 100644 assets/json/iaru_bandplans.json diff --git a/application/controllers/Band.php b/application/controllers/Band.php index fcf836d93..b8d95093a 100644 --- a/application/controllers/Band.php +++ b/application/controllers/Band.php @@ -46,6 +46,18 @@ class Band extends CI_Controller { $this->load->view('interface_assets/footer', $footerData); } + // API endpoint to get band edges for the logged-in user + public function get_user_bandedges() + { + $this->load->model('bands'); + + $data = $this->bands->get_all_bandedges_for_user(); + + header('Content-Type: application/json'); + echo json_encode($data); + return; + } + public function create() { $this->load->model('bands'); diff --git a/application/controllers/Qso.php b/application/controllers/Qso.php index a5277d0e6..dc401d80d 100644 --- a/application/controllers/Qso.php +++ b/application/controllers/Qso.php @@ -88,6 +88,14 @@ class QSO extends CI_Controller { $data['user_dok_to_qso_tab'] = 0; } + // Get status of DX Waterfall enable option + $qkey_opt=$this->user_options_model->get_options('dxwaterfall',array('option_name'=>'enable','option_key'=>'boolean'))->result(); + if (count($qkey_opt)>0) { + $data['user_dxwaterfall_enable'] = $qkey_opt[0]->option_value; + } else { + $data['user_dxwaterfall_enable'] = 0; + } + $data['qso_count'] = $this->session->userdata('qso_page_last_qso_count'); $this->load->library('form_validation'); diff --git a/application/controllers/User.php b/application/controllers/User.php index aed72819e..aca9ead7a 100644 --- a/application/controllers/User.php +++ b/application/controllers/User.php @@ -208,6 +208,7 @@ class User extends CI_Controller { $data['user_dashboard_map'] = $this->input->post('user_dashboard_map') ?? 'Y'; $data['user_dashboard_banner'] = $this->input->post('user_dashboard_banner') ?? 'Y'; $data['user_dashboard_solar'] = $this->input->post('user_dashboard_solar') ?? 'Y'; + $data['user_dxwaterfall_enable'] = $this->input->post('user_dxwaterfall_enable') ?? 'N'; $data['user_stylesheet'] = $this->input->post('user_stylesheet'); $data['user_qth_lookup'] = $this->input->post('user_qth_lookup'); $data['user_sota_lookup'] = $this->input->post('user_sota_lookup'); @@ -303,6 +304,7 @@ class User extends CI_Controller { $this->input->post('user_dashboard_banner') ?? 'Y', $this->input->post('user_dashboard_solar') ?? 'Y', $this->input->post('clubstation') == '1' ? true : false, + $this->input->post('user_dxwaterfall_enable') ?? 'N', $this->input->post('global_oqrs_text') ?? '', $this->input->post('oqrs_grouped_search') ?? 'off', $this->input->post('oqrs_grouped_search_show_station_name') ?? 'off', @@ -366,6 +368,7 @@ class User extends CI_Controller { $data['oqrs_grouped_search_show_station_name'] = $this->input->post('oqrs_grouped_search_show_station_name') ?? 'off'; $data['oqrs_auto_matching'] = $this->input->post('oqrs_auto_matching') ?? 'on'; $data['oqrs_direct_auto_matching'] = $this->input->post('oqrs_direct_auto_matching') ?? 'on'; + $data['user_dxwaterfall_enable'] = $this->input->post('user_dxwaterfall_enable') ?? 'N'; $this->load->view('user/edit', $data); $this->load->view('interface_assets/footer', $footerData); } @@ -733,6 +736,16 @@ class User extends CI_Controller { } } + // DX Waterfall enable option + if($this->input->post('user_dxwaterfall_enable')) { + $data['user_dxwaterfall_enable'] = $this->input->post('user_dxwaterfall_enable', false); + } else { + $dkey_opt=$this->user_options_model->get_options('dxwaterfall',array('option_name'=>'enable','option_key'=>'boolean'), $this->uri->segment(3))->result(); + if (count($dkey_opt)>0) { + $data['user_dxwaterfall_enable'] = $dkey_opt[0]->option_value; + } + } + if($this->input->post('user_hamsat_workable_only')) { $data['user_hamsat_workable_only'] = $this->input->post('user_hamsat_workable_only', false); } else { diff --git a/application/models/User_model.php b/application/models/User_model.php index a189f1546..22782cbcc 100644 --- a/application/models/User_model.php +++ b/application/models/User_model.php @@ -224,7 +224,7 @@ class User_Model extends CI_Model { $user_wwff_to_qso_tab, $user_pota_to_qso_tab, $user_sig_to_qso_tab, $user_dok_to_qso_tab, $user_lotw_name, $user_lotw_password, $user_eqsl_name, $user_eqsl_password, $user_clublog_name, $user_clublog_password, $user_winkey, $on_air_widget_enabled, $on_air_widget_display_last_seen, $on_air_widget_show_only_most_recent_radio, - $qso_widget_display_qso_time, $dashboard_banner,$dashboard_solar, $clubstation = 0) { + $qso_widget_display_qso_time, $dashboard_banner,$dashboard_solar, $clubstation = 0,$user_dxwaterfall_enable) { // Check that the user isn't already used if(!$this->exists($username)) { $data = array( @@ -313,7 +313,7 @@ class User_Model extends CI_Model { $this->db->query("insert into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $insert_id . ", 'widget','on_air','display_last_seen','".(xss_clean($on_air_widget_display_last_seen ?? 'false'))."');"); $this->db->query("insert into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $insert_id . ", 'widget','on_air','display_only_most_recent_radio','".(xss_clean($on_air_widget_show_only_most_recent_radio ?? 'true'))."');"); $this->db->query("insert into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $insert_id . ", 'widget','qso','display_qso_time','".(xss_clean($qso_widget_display_qso_time ?? 'false'))."');"); - + $this->db->query("insert into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $insert_id . ", 'dxwaterfall','enable','boolean','".xss_clean($user_dxwaterfall_enable ?? 'N')."');"); return OK; } else { return EUSERNAMEEXISTS; @@ -387,11 +387,13 @@ class User_Model extends CI_Model { $this->db->query("replace into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $fields['id'] . ", 'dashboard','show_map','boolean','".xss_clean($fields['user_dashboard_map'] ?? 'Y')."');"); $this->db->query("replace into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $fields['id'] . ", 'dashboard','show_dashboard_banner','boolean','".xss_clean($fields['user_dashboard_banner'] ?? 'Y')."');"); $this->db->query("replace into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $fields['id'] . ", 'dashboard','show_dashboard_solar','boolean','".xss_clean($fields['user_dashboard_solar'] ?? 'N')."');"); + $this->db->query("replace into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $fields['id'] . ", 'dxwaterfall','enable','boolean','".xss_clean($fields['user_dxwaterfall_enable'] ?? 'N')."');"); $this->session->set_userdata('dashboard_last_qso_count', $dashboard_last_qso_count); $this->session->set_userdata('qso_page_last_qso_count', $qso_page_last_qso_count); $this->session->set_userdata('user_dashboard_map',xss_clean($fields['user_dashboard_map'] ?? 'Y')); $this->session->set_userdata('user_dashboard_banner',xss_clean($fields['user_dashboard_banner'] ?? 'Y')); $this->session->set_userdata('user_dashboard_solar',xss_clean($fields['user_dashboard_solar'] ?? 'N')); + $this->session->set_userdata('user_dxwaterfall_enable',xss_clean($fields['user_dxwaterfall_enable'] ?? 'N')); // Check to see if the user is allowed to change user levels if($this->session->userdata('user_type') == 99) { @@ -551,6 +553,7 @@ class User_Model extends CI_Model { 'user_dashboard_map' => ((($this->session->userdata('user_dashboard_map') ?? 'Y') == 'Y') ? $this->user_options_model->get_options('dashboard', array('option_name' => 'show_map', 'option_key' => 'boolean'))->row()->option_value ?? 'Y' : $this->session->userdata('user_dashboard_map')), 'user_dashboard_banner' => ((($this->session->userdata('user_dashboard_banner') ?? 'Y') == 'Y') ? $this->user_options_model->get_options('dashboard', array('option_name' => 'show_dashboard_banner', 'option_key' => 'boolean'))->row()->option_value ?? 'Y' : $this->session->userdata('user_dashboard_banner')), 'user_dashboard_solar' => ((($this->session->userdata('user_dashboard_solar') ?? 'N') == 'Y') ? $this->session->userdata('user_dashboard_solar') : $this->user_options_model->get_options('dashboard', array('option_name' => 'show_dashboard_solar', 'option_key' => 'boolean'))->row()->option_value ?? 'N'), + 'user_dxwaterfall_enable' => ((($this->session->userdata('user_dxwaterfall_enable') ?? 'N') == 'Y') ? $this->session->userdata('user_dxwaterfall_enable') : $this->user_options_model->get_options('dxwaterfall', array('option_name' => 'enable', 'option_key' => 'boolean'))->row()->option_value ?? 'N'), 'user_date_format' => $u->row()->user_date_format, 'user_stylesheet' => $u->row()->user_stylesheet, 'user_qth_lookup' => isset($u->row()->user_qth_lookup) ? $u->row()->user_qth_lookup : 0, diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index d0ac6b6ae..9c5352943 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -69,6 +69,47 @@ var lang_notes_duplication_disabled_short = ""; var lang_notes_not_found = ""; + /* + DX Waterfall Language + */ + var lang_dxwaterfall_tune_to_spot = ""; + var lang_dxwaterfall_cycle_through = ""; + var lang_dxwaterfall_spots_currently_showing = ""; + var lang_dxwaterfall_log_qso_with = ""; + var lang_dxwaterfall_new_continent = ""; + var lang_dxwaterfall_new_dxcc = ""; + var lang_dxwaterfall_new_callsign = ""; + var lang_dxwaterfall_previous_spot = ""; + var lang_dxwaterfall_no_spots_lower = ""; + var lang_dxwaterfall_next_spot = ""; + var lang_dxwaterfall_no_spots_higher = ""; + var lang_dxwaterfall_no_spots_available = ""; + var lang_dxwaterfall_cycle_unworked = ""; + var lang_dxwaterfall_dx_hunter = ""; + var lang_dxwaterfall_no_unworked = ""; + var lang_dxwaterfall_fetching_spots = ""; + var lang_dxwaterfall_click_to_cycle = ""; + var lang_dxwaterfall_change_continent = ""; + var lang_dxwaterfall_filter_by_mode = ""; + var lang_dxwaterfall_toggle_phone = ""; + var lang_dxwaterfall_phone = ""; + var lang_dxwaterfall_toggle_cw = ""; + var lang_dxwaterfall_cw = ""; + var lang_dxwaterfall_toggle_digi = ""; + var lang_dxwaterfall_digi = ""; + var lang_dxwaterfall_zoom_out = ""; + var lang_dxwaterfall_reset_zoom = ""; + var lang_dxwaterfall_zoom_in = ""; + var lang_dxwaterfall_waiting_data = ""; + var lang_dxwaterfall_comment = ""; + var lang_dxwaterfall_modes_label = ""; + var lang_dxwaterfall_out_of_bandplan = ""; + var lang_dxwaterfall_changing_frequency = ""; + var lang_dxwaterfall_spots_fetched = ""; + var lang_dxwaterfall_fetched_for_band = ""; + var lang_dxwaterfall_displaying = ""; + var lang_dxwaterfall_invalid = ""; + @@ -1096,6 +1137,9 @@ $($('#callsign')).on('keypress',function(e) { uri->segment(1) == "qso") { ?> +session->userdata('user_dxwaterfall_enable') == 'Y') { ?> + + session->userdata('isWinkeyEnabled')) { ?> @@ -1366,6 +1410,9 @@ mymap.on('mousemove', onQsoMapMove); + +session->userdata('user_dxwaterfall_enable') == 'Y' && $manual_mode == 0) { ?> + + + +
+
 
+
+ +
+
 
+
+ +
@@ -818,7 +964,7 @@ switch ($date_format) { optionslib->get_option('disable_refresh_past_contacts'); if($result === null) { ?> -
+
diff --git a/application/views/user/edit.php b/application/views/user/edit.php index e9a2ad415..b5a7e6a7d 100644 --- a/application/views/user/edit.php +++ b/application/views/user/edit.php @@ -430,6 +430,16 @@ } ?>
+ +
+ + + + +
diff --git a/assets/js/dxwaterfall.js b/assets/js/dxwaterfall.js new file mode 100644 index 000000000..ef287bddf --- /dev/null +++ b/assets/js/dxwaterfall.js @@ -0,0 +1,4558 @@ +// ======================================== +// DX WATERFALL for WaveLog +// Check at https://www.wavelog.org +// ======================================== + +// ======================================== +// CONSTANTS AND CONFIGURATION +// ======================================== + +var DX_WATERFALL_CONSTANTS = { + // Timing and debouncing + DEBOUNCE: { + SPOT_COLLECTION_MS: 1000, // Minimum time between spot collections + FREQUENCY_CACHE_REFRESH_MS: 200, // Throttle for frequency cache refresh + ZOOM_CHANGE_MS: 100, // Prevent rapid zoom changes + DX_SPOTS_FETCH_INTERVAL_MS: 60000, // DX spots auto-refresh interval (60 seconds) + FETCH_REQUEST_MS: 500, // Minimum time between debounced fetch requests + MODE_FILTER_CHANGE_MS: 500, // Wait time after mode filter toggle + SET_FREQUENCY_MS: 500, // Debounce for setFrequency calls + PROGRAMMATIC_MODE_RESET_MS: 100, // Reset programmatic mode change flag + FREQUENCY_COMMIT_SHORT_MS: 50, // Very short delay for CAT command completion + FREQUENCY_COMMIT_RETRY_MS: 100, // Retry delay for frequency commit + ICON_FEEDBACK_MS: 200, // Visual feedback duration for icon clicks + ZOOM_ICON_FEEDBACK_MS: 150 // Visual feedback duration for zoom icons + }, + + // CAT and radio control + CAT: { + TUNING_FLAG_FALLBACK_MS: 2000, // Fallback timeout for tuning flags (2 seconds) + FREQUENCY_WAIT_TIMEOUT_MS: 3000 // Initial load wait time for CAT frequency + }, + + // Visual timing + VISUAL: { + STATIC_NOISE_REFRESH_MS: 100 // Static noise animation frame rate + }, + + // Canvas dimensions and spacing + CANVAS: { + MIN_TEXT_AREA_WIDTH: 100, // Minimum width to display text labels + RULER_HEIGHT: 25, // Height of the frequency ruler at bottom + TOP_MARGIN: 10, // Top margin for spot labels + BOTTOM_MARGIN: 10, // Bottom margin above ruler + SPOT_PADDING: 2, // Padding around spot labels + SPOT_TICKBOX_SIZE: 4, // Size of status tickbox in pixels + LOGO_OFFSET_Y: 100, // Logo vertical offset from center + TEXT_OFFSET_Y: 40 // Text vertical offset from center + }, + + // AJAX configuration + AJAX: { + TIMEOUT_MS: 30000 // AJAX request timeout (30 seconds) + }, + + // Thresholds and tolerances + THRESHOLDS: { + FREQUENCY_COMPARISON: 0.1, // Frequency comparison tolerance in kHz + FT8_FREQUENCY_TOLERANCE: 5, // FT8 frequency detection tolerance in kHz + BAND_CHANGE_THRESHOLD: 1000, // kHz outside band before recalculation + MAJOR_TICK_TOLERANCE: 0.05, // Floating point precision for major tick detection + SPOT_FREQUENCY_MATCH: 0.01 // Frequency match tolerance for spot navigation (kHz) + }, + + // Zoom levels configuration + ZOOM: { + DEFAULT_LEVEL: 3, // Default zoom level + MAX_LEVEL: 5, // Maximum zoom level + MIN_LEVEL: 1, // Minimum zoom level + // Pixels per kHz for each zoom level + PIXELS_PER_KHZ: { + 1: 4, // ±25 kHz view (widest) + 2: 8, // ±12.5 kHz view + 3: 20, // ±5 kHz view (default) + 4: 32, // ±3.125 kHz view + 5: 50 // ±2 kHz view (most zoomed) + } + }, + + // Colors (using CSS-compatible color strings) + COLORS: { + // Background and base + CANVAS_BORDER: '#000000', + OVERLAY_BACKGROUND: 'rgba(0, 0, 0, 0.7)', + OVERLAY_DARK_GREY: 'rgba(64, 64, 64, 0.7)', + + // Frequency ruler + RULER_BACKGROUND: '#000000bb', + RULER_LINE: '#888888', + RULER_TEXT: '#888888', + INVALID_FREQUENCY_OVERLAY: 'rgba(128, 128, 128, 0.5)', + + // Center marker and bandwidth + CENTER_MARKER: '#FF0000', + BANDWIDTH_INDICATOR: 'rgba(255, 255, 0, 0.3)', + + // Messages and text + MESSAGE_TEXT_WHITE: '#FFFFFF', + MESSAGE_TEXT_YELLOW: '#FFFF00', + WATERFALL_LINK: '#888888', + + // Static noise RGB components + STATIC_NOISE_RGB: {R: 34, G: 34, B: 34}, // Base RGB values for noise generation + + // DX Spots by mode + SPOT_PHONE: '#00FF00', + SPOT_CW: '#FFA500', + SPOT_DIGI: '#0096FF', + + // Band limits + OUT_OF_BAND: 'rgba(255, 0, 0, 0.2)' + }, + + // Font configurations + FONTS: { + RULER: '11px "Consolas", "Courier New", monospace', + CENTER_MARKER: '12px "Consolas", "Courier New", monospace', + SPOT_LABELS: 'bold 12px "Consolas", "Courier New", monospace', + SPOT_INFO: '11px "Consolas", "Courier New", monospace', + WAITING_MESSAGE: '16px "Consolas", "Courier New", monospace', + TITLE_LARGE: 'bold 24px "Consolas", "Courier New", monospace', + FREQUENCY_CHANGE: 'bold 18px "Consolas", "Courier New", monospace', + OUT_OF_BAND: 'bold 14px "Consolas", "Courier New", monospace', + SMALL_MONO: '12px "Consolas", "Courier New", monospace' + }, + + // Available continents for cycling + CONTINENTS: ['AF', 'AN', 'AS', 'EU', 'NA', 'OC', 'SA'], + + // Logo configuration + LOGO_FILENAME: 'assets/logo/wavelog_logo_darkly_wide.png', + + // Data file paths + IARU_BANDPLANS_PATH: 'assets/json/iaru_bandplans.json', + + // Frequency thresholds (in kHz) + LSB_USB_THRESHOLD_KHZ: 10000, // Below 10 MHz = LSB, above = USB + + // Signal bandwidth constants (in kHz) + SIGNAL_BANDWIDTHS: { + SSB_KHZ: 2.7, // Standard SSB bandwidth + SSB_OFFSET_KHZ: 1.35, // Half bandwidth for offset + AM_KHZ: 6.0, // AM bandwidth + FM_KHZ: 12.0, // FM bandwidth (wide) + CW_DETECTION_KHZ: 0.25 // CW detection range + }, + + // Static FT8 frequencies (in kHz) + FT8_FREQUENCIES: [1840, 3573, 7074, 10136, 14074, 18100, 21074, 24915, 28074, 50313, 144174, 432065] +}; + +// ======================================== +// UTILITY FUNCTIONS +// ======================================== + +var DX_WATERFALL_UTILS = { + + // Frequency conversion utilities + frequency: { + hzToKhz: function(hz) { + return hz / 1000; + }, + + mhzToKhz: function(mhz) { + return mhz * 1000; + }, + + // Convert any frequency unit to kHz + convertToKhz: function(value, unit) { + var freqValue = parseFloat(value) || 0; + switch (unit.toLowerCase()) { + case 'hz': + return freqValue / 1000; + case 'khz': + return freqValue; + case 'mhz': + return freqValue * 1000; + case 'ghz': + return freqValue * 1000000; + default: + return freqValue; // Default to kHz + } + }, + + // Validate frequency value + isValid: function(value) { + var freq = parseFloat(value) || 0; + return freq > 0; + }, + + // Parse and validate frequency + parseAndValidate: function(value) { + var freq = parseFloat(value) || 0; + return { value: freq, valid: freq > 0 }; + } + }, + + // Sorting utilities for common patterns + sorting: { + byFrequency: function(a, b) { + return a.frequency - b.frequency; + }, + + byAbsOffset: function(a, b) { + return a.absOffset - b.absOffset; + } + }, + + // Timing utilities + timing: { + /** + * Generic debounce function - delays execution until after wait time has elapsed + * @param {Function} func - Function to debounce + * @param {number} wait - Milliseconds to wait + * @param {Object} context - Context object that stores the timer + * @param {string} timerProperty - Property name on context object for timer storage + * @returns {Function} Debounced function + */ + debounce: function(func, wait, context, timerProperty) { + return function() { + var args = arguments; + var later = function() { + context[timerProperty] = null; + func.apply(context, args); + }; + if (context[timerProperty]) { + clearTimeout(context[timerProperty]); + } + context[timerProperty] = setTimeout(later, wait); + }; + } + }, + + // DOM selector utilities (cached for performance) + dom: { + waterfall: null, + + init: function() { + this.waterfall = $('#dxWaterfall'); + }, + + getWaterfall: function() { + return this.waterfall || $('#dxWaterfall'); + } + }, + + // Mode classification utilities + modes: { + isCw: function(mode) { + return mode && mode.toLowerCase().includes('cw'); + }, + + getModeCategory: function(mode) { + if (this.isCw(mode)) return 'cw'; + return 'other'; + }, + + // Get color for a classified mode with customizable alpha + getModeColor: function(classifiedMode, alpha) { + alpha = alpha !== undefined ? alpha : 0.6; // Default 60% opacity + return this.getModeColorBase(classifiedMode) + alpha + ')'; + }, + + // Get base color string without alpha for gradient construction + getModeColorBase: function(classifiedMode) { + switch (classifiedMode) { + case 'phone': + return 'rgba(0, 255, 0, '; + case 'cw': + return 'rgba(255, 165, 0, '; + case 'digi': + return 'rgba(0, 150, 255, '; + default: + return 'rgba(160, 32, 240, '; + } + }, + + /** + * Comprehensive mode classification system + * Classifies a DX spot into phone, CW, digi, or other categories + * + * @param {Object} spot - DX spot object with mode and optional message fields + * @param {string} spot.mode - The transmission mode + * @param {string} [spot.message] - Optional spot comment/message for additional classification hints + * @returns {{category: string, submode: string, confidence: number}} Classification result + * - category: 'phone', 'cw', 'digi', or 'other' + * - submode: Specific mode name (e.g., 'FT8', 'USB', 'CW') + * - confidence: 0-1, where 1 is high confidence, 0.3 is low + */ + classifyMode: function(spot) { + if (!spot || !spot.mode || spot.mode === '') { + return { category: 'other', submode: 'Unknown', confidence: 0 }; + } + + var mode = spot.mode.toUpperCase(); + var message = (spot.message || '').toUpperCase(); + var confidence = 1; // 1 = high confidence, 0.5 = medium, 0.3 = low + + // Check message first for higher accuracy + var messageResult = this.classifyFromMessage(message); + if (messageResult.category) { + return { + category: messageResult.category, + submode: messageResult.submode, + confidence: messageResult.confidence + }; + } + + // Fall back to mode field classification + return this.classifyFromMode(mode); + }, + + classifyFromMessage: function(message) { + // CW detection in message + if (message.indexOf('CW') !== -1) { + return { category: 'cw', submode: 'CW', confidence: 1 }; + } + + // Digital modes from message + var digiModes = [ + { patterns: ['FT8'], submode: 'FT8' }, + { patterns: ['FT4'], submode: 'FT4' }, + { patterns: ['RTTY'], submode: 'RTTY' }, + { patterns: ['PSK31'], submode: 'PSK31' }, + { patterns: ['PSK'], submode: 'PSK' }, + { patterns: ['JT65'], submode: 'JT65' }, + { patterns: ['JT9'], submode: 'JT9' }, + { patterns: ['WSPR'], submode: 'WSPR' }, + { patterns: ['JS8'], submode: 'JS8' } + ]; + + // Optimized loop - breaks early on first match + for (var i = 0; i < digiModes.length; i++) { + var mode = digiModes[i]; + for (var j = 0; j < mode.patterns.length; j++) { + if (message.indexOf(mode.patterns[j]) !== -1) { + return { category: 'digi', submode: mode.submode, confidence: 1 }; + } + } + } + + // Phone modes from message (optimized with regex word boundary) + var phoneModes = [ + { patterns: ['LSB'], submode: 'LSB' }, + { patterns: ['USB'], submode: 'USB' }, + { patterns: ['SSB'], submode: 'SSB' }, + { patterns: ['AM'], submode: 'AM' }, + { patterns: ['FM'], submode: 'FM' } + ]; + + // Optimized loop - breaks early on first match + for (var i = 0; i < phoneModes.length; i++) { + var mode = phoneModes[i]; + for (var j = 0; j < mode.patterns.length; j++) { + // Use word boundary to avoid false matches + var pattern = '\\b' + mode.patterns[j] + '\\b'; + if (new RegExp(pattern).test(message)) { + return { category: 'phone', submode: mode.submode, confidence: 1 }; + } + } + } + + return { category: null, submode: null, confidence: 0 }; + }, + + classifyFromMode: function(mode) { + // CW modes + if (mode === 'CW' || mode === 'A1A') { + return { category: 'cw', submode: 'CW', confidence: 1 }; + } + + // Phone modes + var phoneModes = ['SSB', 'LSB', 'USB', 'AM', 'FM', 'SAM', 'DSB', 'J3E', 'A3E', 'PHONE']; + if (phoneModes.indexOf(mode) !== -1) { + return { category: 'phone', submode: mode, confidence: 1 }; + } + + // Digital modes - WSJT-X family + var wsjtModes = ['FT8', 'FT4', 'JT65', 'JT65B', 'JT6C', 'JT6M', 'JT9', 'JT9-1', + 'Q65', 'QRA64', 'FST4', 'FST4W', 'WSPR', 'MSK144', 'ISCAT', + 'ISCAT-A', 'ISCAT-B', 'JS8', 'JTMS', 'FSK441']; + if (wsjtModes.indexOf(mode) !== -1) { + return { category: 'digi', submode: mode, confidence: 1 }; + } + + // PSK variants + if (mode.indexOf('PSK') !== -1 || mode.indexOf('QPSK') !== -1 || mode.indexOf('8PSK') !== -1) { + return { category: 'digi', submode: mode, confidence: 1 }; + } + + // Other digital modes + var otherDigiModes = ['RTTY', 'NAVTEX', 'SITORB', 'DIGI', 'DYNAMIC']; + if (otherDigiModes.indexOf(mode) !== -1) { + return { category: 'digi', submode: mode, confidence: 1 }; + } + + // Pattern-based digital mode detection + if (mode.indexOf('HELL') !== -1 || mode.indexOf('FSK') === 0 || + mode.indexOf('THOR') !== -1 || mode.indexOf('THROB') !== -1 || + mode.indexOf('DOM') !== -1 || mode.indexOf('VARA') !== -1) { + return { category: 'digi', submode: mode, confidence: 1 }; + } + + // Unknown mode - ensure we return a valid submode string + return { category: 'other', submode: mode || 'Unknown', confidence: 0.3 }; + }, + + // Determine LSB/USB for SSB based on frequency + determineSSBMode: function(frequency) { + var freq = parseFloat(frequency) || 0; + if (freq > 0) { + return freq < DX_WATERFALL_CONSTANTS.LSB_USB_THRESHOLD_KHZ ? 'LSB' : 'USB'; + } + return 'SSB'; + }, + + // Enhanced detailed submode information using unified classification + getDetailedSubmode: function(spot) { + return this.classifyMode(spot); + } + }, + + // Spot utilities for common spot object creation + spots: { + // Create standardized spot object from raw spot data + createSpotObject: function(spot, options) { + options = options || {}; + var spotFreq = parseFloat(spot.frequency); + + var spotObj = { + callsign: spot.spotted, + frequency: spotFreq, + mode: spot.mode || '' + }; + + // Add optional fields based on options + if (options.includeSpotter) { + spotObj.spotter = spot.spotter; + } + if (options.includeTimestamp) { + spotObj.when_pretty = spot.when_pretty || ''; + } + if (options.includeMessage) { + spotObj.message = spot.message || ''; + } + if (options.includeOffsets && options.middleFreq !== undefined) { + var freqOffset = spotFreq - options.middleFreq; + spotObj.freqOffset = freqOffset; + spotObj.absOffset = Math.abs(freqOffset); + } + if (options.includePosition && options.x !== undefined) { + spotObj.x = options.x; + } + if (options.includeWorkStatus) { + spotObj.dxcc_spotted = spot.dxcc_spotted || {}; + spotObj.lotw_user = spot.lotw_user || false; + spotObj.worked_dxcc = spot.worked_dxcc || false; + spotObj.worked_continent = spot.worked_continent || false; + spotObj.worked_call = spot.worked_call || false; + spotObj.cnfmd_dxcc = spot.cnfmd_dxcc || false; + spotObj.cnfmd_continent = spot.cnfmd_continent || false; + spotObj.cnfmd_call = spot.cnfmd_call || false; + } + + // Handle park references (pre-calculated or extract from message) + if (spot.sotaRef !== undefined || options.includeParkRefs !== false) { + var parkRefs = (spot.sotaRef !== undefined) ? spot : DX_WATERFALL_UTILS.parkRefs.extract(spot); + spotObj.sotaRef = parkRefs.sotaRef || ''; + spotObj.potaRef = parkRefs.potaRef || ''; + spotObj.iotaRef = parkRefs.iotaRef || ''; + spotObj.wwffRef = parkRefs.wwffRef || ''; + } else { + spotObj.sotaRef = spotObj.potaRef = spotObj.iotaRef = spotObj.wwffRef = ''; + } + + return spotObj; + }, + + /** + * Filter and collect spots based on criteria with automatic deduplication + * Efficiently processes DX spots with mode filtering, custom filtering, and duplicate removal + * + * @param {Object} waterfallContext - The dxWaterfall object context + * @param {Function} [filterFunction] - Optional custom filter function(spot, spotFreq, context) => boolean + * @param {Object} [options] - Configuration options + * @param {Object} [options.spotOptions] - Options passed to createSpotObject + * @param {Function} [options.postProcess] - Optional post-processing function(spotObj, originalSpot) => spotObj + * @param {boolean} [options.deduplication=true] - Enable automatic duplicate detection (default: true) + * @returns {{spots: Array, stats: Object}} Object containing filtered spots array and statistics + * - spots: Array of processed spot objects + * - stats: {filtered, invalid, processed, duplicates} - Processing statistics + */ + filterSpots: function(waterfallContext, filterFunction, options) { + options = options || {}; + + if (!waterfallContext.dxSpots || waterfallContext.dxSpots.length === 0) { + return { spots: [], stats: { filtered: 0, invalid: 0, processed: 0, duplicates: 0 } }; + } + + // Use Map for efficient duplicate detection + var spotMap = options.deduplication !== false ? {} : null; // Enable deduplication by default + var spots = []; + var stats = { + filtered: 0, + invalid: 0, + processed: 0, + duplicates: 0 + }; + + for (var i = 0; i < waterfallContext.dxSpots.length; i++) { + var spot = waterfallContext.dxSpots[i]; + var spotFreq = parseFloat(spot.frequency); + + // Validate basic spot data + if (!spotFreq || !spot.spotted || !spot.mode) { + stats.invalid++; + continue; + } + + // Check for duplicates using frequency:callsign key + if (spotMap) { + var spotKey = spotFreq.toFixed(1) + ':' + spot.spotted; + if (spotMap[spotKey]) { + stats.duplicates++; + continue; + } + spotMap[spotKey] = true; + } + + // Apply mode filter + if (!waterfallContext.spotMatchesModeFilter(spot)) { + stats.filtered++; + continue; + } + + // Apply custom filter function if provided + if (filterFunction && !filterFunction(spot, spotFreq, waterfallContext)) { + stats.filtered++; + continue; + } + + // Create spot object + var spotOptions = options.spotOptions || {}; + var spotObj = this.createSpotObject(spot, spotOptions); + + // Apply any post-processing + if (options.postProcess) { + spotObj = options.postProcess(spotObj, spot); + } + + spots.push(spotObj); + stats.processed++; + } + + return { + spots: spots, + stats: stats + }; + } + }, + + // Park reference extraction utilities + parkRefs: { + /** + * Extract park references (SOTA/POTA/IOTA/WWFF) from spot data + * Uses direct fields if available, otherwise extracts from message + * @param {Object} spot - Raw spot object from DX cluster + * @returns {Object} Object with sotaRef, potaRef, iotaRef, wwffRef properties + */ + extract: function(spot) { + var refs = { + sotaRef: '', + potaRef: '', + iotaRef: '', + wwffRef: '' + }; + + // First check if references are provided directly by the server + if (spot.dxcc_spotted) { + refs.sotaRef = spot.dxcc_spotted.sota_ref || ''; + refs.potaRef = spot.dxcc_spotted.pota_ref || ''; + refs.iotaRef = spot.dxcc_spotted.iota_ref || ''; + refs.wwffRef = spot.dxcc_spotted.wwff_ref || ''; + } + + // If any references are missing, try to extract from message + var message = spot.message || ''; + if (message && (!refs.sotaRef || !refs.potaRef || !refs.iotaRef || !refs.wwffRef)) { + var upperMessage = message.toUpperCase(); + + // SOTA format: XX/YY-### or XX/YY-#### (e.g., "G/LD-001", "W4G/NG-001") + if (!refs.sotaRef) { + var sotaMatch = upperMessage.match(/\b([A-Z0-9]{1,3}\/[A-Z]{2}-\d{3})\b/); + if (sotaMatch) { + refs.sotaRef = sotaMatch[1]; + } + } + + // POTA format: XX-#### (e.g., "US-4306", "K-1234") + // Must not match WWFF patterns (ending in FF) + if (!refs.potaRef) { + var potaMatch = upperMessage.match(/\b([A-Z0-9]{1,5}-\d{4,5})\b/); + if (potaMatch && !potaMatch[1].match(/FF-/)) { + refs.potaRef = potaMatch[1]; + } + } + + // IOTA format: XX-### (e.g., "EU-005", "NA-001", "OC-123") + if (!refs.iotaRef) { + var iotaMatch = upperMessage.match(/\b((?:AF|AN|AS|EU|NA|OC|SA)-\d{3})\b/); + if (iotaMatch) { + refs.iotaRef = iotaMatch[1]; + } + } + + // WWFF format: XXFF-#### (e.g., "GIFF-0001", "K1FF-0123", "ON4FF-0050") + if (!refs.wwffRef) { + var wwffMatch = upperMessage.match(/\b([A-Z0-9]{2,4}FF-\d{4})\b/); + if (wwffMatch) { + refs.wwffRef = wwffMatch[1]; + } + } + } + + return refs; + } + }, + + // QSO form utilities + qsoForm: { + // Timer for pending population to allow cancellation + pendingPopulationTimer: null, + pendingLookupTimer: null, + + /** + * Populate QSO form with spot data (callsign, mode, and park references) + * @param {Object} spotData - Spot data object + * @param {string} spotData.callsign - Callsign to populate + * @param {string} [spotData.mode] - Mode to set + * @param {string} [spotData.sotaRef] - SOTA reference + * @param {string} [spotData.potaRef] - POTA reference + * @param {string} [spotData.iotaRef] - IOTA reference + * @param {string} [spotData.wwffRef] - WWFF reference + * @param {boolean} [triggerLookup=true] - Whether to trigger callsign lookup + */ + populateFromSpot: function(spotData, triggerLookup) { + if (typeof triggerLookup === 'undefined') { + triggerLookup = true; + } + + if (!spotData.callsign) return; + + // Cancel any pending population timers from previous navigation + if (this.pendingLookupTimer) { + clearTimeout(this.pendingLookupTimer); + this.pendingLookupTimer = null; + } + + // Set preventLookup flag BEFORE any form changes to prevent duplicate lookups + // This blocks the $("#callsign").blur() triggered by mode change handler + var wasPreventLookupSet = false; + if (triggerLookup && typeof preventLookup !== 'undefined') { + preventLookup = true; + wasPreventLookupSet = true; + } + + // Populate the callsign input field + var callsignInput = $('#callsign'); + var formattedCallsign = spotData.callsign.toUpperCase().replace(/0/g, 'Ø'); + callsignInput.val(formattedCallsign); + + // Set the mode if available (this triggers mode change handler which calls $("#callsign").blur()) + if (spotData.mode) { + setMode(spotData.mode); + } + + // Populate SOTA reference if available (selectize field) + if (spotData.sotaRef && spotData.sotaRef !== '') { + var $sotaSelect = $('#sota_ref'); + if ($sotaSelect.length > 0 && $sotaSelect[0].selectize) { + var sotaSelectize = $sotaSelect[0].selectize; + sotaSelectize.addOption({name: spotData.sotaRef}); + sotaSelectize.setValue(spotData.sotaRef, false); + } + } + + // Populate POTA reference if available (selectize field) + if (spotData.potaRef && spotData.potaRef !== '') { + var $potaSelect = $('#pota_ref'); + if ($potaSelect.length > 0 && $potaSelect[0].selectize) { + var potaSelectize = $potaSelect[0].selectize; + potaSelectize.addOption({name: spotData.potaRef}); + potaSelectize.setValue(spotData.potaRef, false); + } + } + + // Populate IOTA reference if available (regular select dropdown) + if (spotData.iotaRef && spotData.iotaRef !== '') { + var $iotaSelect = $('#iota_ref'); + if ($iotaSelect.length > 0) { + var optionExists = $iotaSelect.find('option[value="' + spotData.iotaRef + '"]').length > 0; + if (optionExists) { + $iotaSelect.val(spotData.iotaRef); + } else { + $iotaSelect.append($('
'; + // Center section: spot count information + // Format: "31/43 20m NA spots @22:16LT" + zoomHTML += '
'; + if (this.dataReceived && this.lastUpdateTime) { + // Count displayed spots + var displayedSpotsCount = 0; + if (this.dxSpots && this.dxSpots.length > 0) { + for (var i = 0; i < this.dxSpots.length; i++) { + if (this.spotMatchesModeFilter(this.dxSpots[i])) { + displayedSpotsCount++; + } + } + } + + var hours = String(this.lastUpdateTime.getHours()).padStart(2, '0'); + var minutes = String(this.lastUpdateTime.getMinutes()).padStart(2, '0'); + var updateTimeStr = hours + ':' + minutes; + var currentBand = this.getCurrentBand(); + + zoomHTML += ''; + zoomHTML += displayedSpotsCount + '/' + this.totalSpotsCount + ' ' + currentBand + ' ' + this.currentContinent + ' ' + lang_dxwaterfall_spots + ' @' + updateTimeStr + 'LT'; + zoomHTML += ''; + } + zoomHTML += '
'; + // Right side: zoom controls zoomHTML += '
'; @@ -3753,7 +3978,6 @@ var dxWaterfall = { this.currentSpotIndex = i; found = true; // Force update of spot info display - this.lastSpotInfoText = null; this.updateSpotInfoDiv(); break; } @@ -4048,10 +4272,16 @@ var dxWaterfall = { // Invalidate band limits cache (region may have changed) self.bandLimitsCache = null; + // Reset band plans to force reload for new region + self.bandPlans = null; + self.bandEdgesData = null; + + // Load band plans for new region (based on new continent) + self.loadBandPlans(); + // Enter waiting state self.waitingForData = true; self.dataReceived = false; - self.lastSpotInfoText = null; // Set spot info to nbsp to maintain layout height if (self.spotInfoDiv) { @@ -4066,6 +4296,7 @@ var dxWaterfall = { self.currentBandSpotIndex = 0; self.currentSmartHunterIndex = 0; self.currentSpotIndex = 0; + self.lastSpotInfoKey = null; // Reset spot info key // Update zoom menu to show new continent and waiting state self.updateZoomMenu(); @@ -4160,9 +4391,6 @@ var dxWaterfall = { self.collectAllBandSpots(true); // Update band spot collection (force after filter change) self.collectSmartHunterSpots(); // Update smart hunter spots - // Reset spot info to force update - self.lastSpotInfoText = null; - // Update zoom menu to show new state self.updateZoomMenu(); @@ -4550,42 +4778,22 @@ $(document).ready(function() { dxWaterfall.updateDimensions(); }); - // Handle click on the copy icon in dxWaterfallSpot div to populate callsign - $('#dxWaterfallSpot').on('click', '.copy-icon', function(e) { - e.stopPropagation(); // Prevent event bubbling - - var spotData = { - callsign: $(this).data('callsign'), - mode: $(this).data('mode'), - sotaRef: $(this).data('sota-ref'), - potaRef: $(this).data('pota-ref'), - iotaRef: $(this).data('iota-ref'), - wwffRef: $(this).data('wwff-ref') - }; - - if (spotData.callsign) { - // Use the utility function to populate the form - DX_WATERFALL_UTILS.qsoForm.populateFromSpot(spotData, true); - - // Visual feedback - briefly change icon color - var icon = $(this); - icon.css('color', '#FFFF00'); - setTimeout(function() { - icon.css('color', '#FFFFFF'); - }, 200); - } - }); - // Handle click on the cycle icon in dxWaterfallSpot div to cycle through spots $('#dxWaterfallSpot').on('click', '.cycle-spot-icon', function(e) { e.stopPropagation(); // Prevent event bubbling + // Prevent rapid clicking - check if navigation is in progress + if (dxWaterfall.spotNavigating) { + return; + } + // Cycle to next spot if (dxWaterfall.relevantSpots.length > 1) { + dxWaterfall.spotNavigating = true; + dxWaterfall.currentSpotIndex = (dxWaterfall.currentSpotIndex + 1) % dxWaterfall.relevantSpots.length; - // Force update of spot info display - dxWaterfall.lastSpotInfoText = null; // Reset to force update + // Update spot info display dxWaterfall.updateSpotInfoDiv(); // Clear QSO form first @@ -4597,13 +4805,18 @@ $(document).ready(function() { if (spotInfo) { DX_WATERFALL_UTILS.qsoForm.populateFromSpot(spotInfo, true); } + + // Re-enable navigation after operation completes + setTimeout(function() { + dxWaterfall.spotNavigating = false; + }, 100); }, 100); - // Visual feedback - briefly change icon color + // Visual feedback - briefly change icon color (with transition for smooth effect) var icon = $(this); - icon.css('color', '#FFFF00'); + icon.css({'color': '#FFFF00', 'transition': 'color 0.2s'}); setTimeout(function() { - icon.css('color', '#FFFFFF'); + icon.css('color', ''); }, 200); } }); @@ -4626,11 +4839,11 @@ $(document).ready(function() { // fromWaterfall=true prevents frequency change event from being triggered setFrequency(frequency, true); - // Visual feedback - briefly change icon color + // Visual feedback - briefly change icon color (with transition for smooth effect) var icon = $(this); - icon.css('color', '#FFFF00'); + icon.css({'color': '#FFFF00', 'transition': 'color 0.2s'}); setTimeout(function() { - icon.css('color', '#FFFFFF'); + icon.css('color', ''); }, 200); } }); @@ -4850,15 +5063,7 @@ $(document).ready(function() { tuneIcon.trigger('click'); } } - // Ctrl/Cmd+Space: Copy callsign from current spot info - else if (modKey && !e.shiftKey && e.key === ' ') { - e.preventDefault(); - // Find the copy icon in the spot info div and trigger it - var copyIcon = $('#dxWaterfallSpot .copy-icon'); - if (copyIcon.length > 0) { - copyIcon.trigger('click'); - } - } }); }); + diff --git a/assets/json/iaru_bandplans.json b/assets/json/iaru_bandplans.json deleted file mode 100644 index 19be69ba2..000000000 --- a/assets/json/iaru_bandplans.json +++ /dev/null @@ -1,261 +0,0 @@ -{ - "version": "2025-10-19", - "R1": { - "2200m": { - "start_hz": 135700, - "end_hz": 137800 - }, - "630m": { - "start_hz": 472000, - "end_hz": 479000 - }, - "160m": { - "start_hz": 1810000, - "end_hz": 2000000 - }, - "80m": { - "start_hz": 3500000, - "end_hz": 3800000 - }, - "60m": { - "start_hz": 5351500, - "end_hz": 5366500 - }, - "40m": { - "start_hz": 7000000, - "end_hz": 7200000 - }, - "30m": { - "start_hz": 10100000, - "end_hz": 10150000 - }, - "20m": { - "start_hz": 14000000, - "end_hz": 14350000 - }, - "17m": { - "start_hz": 18068000, - "end_hz": 18168000 - }, - "15m": { - "start_hz": 21000000, - "end_hz": 21450000 - }, - "12m": { - "start_hz": 24890000, - "end_hz": 24990000 - }, - "10m": { - "start_hz": 28000000, - "end_hz": 29700000 - }, - "70cm": { - "start_hz": 430000000, - "end_hz": 440000000 - }, - "23cm": { - "start_hz": 1240000000, - "end_hz": 1300000000 - }, - "13cm": { - "start_hz": 2300000000, - "end_hz": 2450000000 - }, - "9cm": { - "start_hz": 3400000000, - "end_hz": 3475000000 - }, - "6cm": { - "start_hz": 5650000000, - "end_hz": 5850000000 - }, - "3cm": { - "start_hz": 10000000000, - "end_hz": 10500000000 - }, - "1.2cm": { - "start_hz": 24000000000, - "end_hz": 24250000000 - } - }, - "R2": { - "2200m": { - "start_hz": 135700, - "end_hz": 137800 - }, - "630m": { - "start_hz": 472000, - "end_hz": 479000 - }, - "160m": { - "start_hz": 1800000, - "end_hz": 2000000 - }, - "80m": { - "start_hz": 3500000, - "end_hz": 4000000 - }, - "60m": { - "start_hz": 5351500, - "end_hz": 5366500 - }, - "40m": { - "start_hz": 7000000, - "end_hz": 7300000 - }, - "30m": { - "start_hz": 10100000, - "end_hz": 10150000 - }, - "20m": { - "start_hz": 14000000, - "end_hz": 14350000 - }, - "17m": { - "start_hz": 18068000, - "end_hz": 18168000 - }, - "15m": { - "start_hz": 21000000, - "end_hz": 21450000 - }, - "12m": { - "start_hz": 24890000, - "end_hz": 24990000 - }, - "10m": { - "start_hz": 28000000, - "end_hz": 29700000 - }, - "6m": { - "start_hz": 50000000, - "end_hz": 54000000 - }, - "2m": { - "start_hz": 144000000, - "end_hz": 148000000 - }, - "1.25m": { - "start_hz": 220000000, - "end_hz": 225000000 - }, - "70cm": { - "start_hz": 420000000, - "end_hz": 450000000 - }, - "33cm": { - "start_hz": 902000000, - "end_hz": 928000000 - }, - "23cm": { - "start_hz": 1240000000, - "end_hz": 1294000000 - }, - "13cm": { - "start_hz": 2303000000, - "end_hz": 2450000000 - }, - "9cm": { - "start_hz": 3300000000, - "end_hz": 3500000000 - }, - "6cm": { - "start_hz": 5650000000, - "end_hz": 5850000000 - }, - "3cm": { - "start_hz": 10000000000, - "end_hz": 10500000000 - }, - "1.2cm": { - "start_hz": 24000000000, - "end_hz": 24250000000 - } - }, - "R3": { - "2200m": { - "start_hz": 135700, - "end_hz": 137800 - }, - "630m": { - "start_hz": 472000, - "end_hz": 479000 - }, - "160m": { - "start_hz": 1800000, - "end_hz": 2000000 - }, - "80m": { - "start_hz": 3500000, - "end_hz": 3900000 - }, - "60m": { - "start_hz": 5351500, - "end_hz": 5366500 - }, - "40m": { - "start_hz": 7000000, - "end_hz": 7200000 - }, - "30m": { - "start_hz": 10110000, - "end_hz": 10150000 - }, - "20m": { - "start_hz": 14000000, - "end_hz": 14350000 - }, - "17m": { - "start_hz": 18068000, - "end_hz": 18168000 - }, - "15m": { - "start_hz": 21000000, - "end_hz": 21125000 - }, - "12m": { - "start_hz": 24890000, - "end_hz": 24990000 - }, - "10m": { - "start_hz": 28000000, - "end_hz": 29700000 - }, - "6m": { - "start_hz": 50000000, - "end_hz": 54000000 - }, - "2m": { - "start_hz": 144000000, - "end_hz": 148000000 - }, - "70cm": { - "start_hz": 430000000, - "end_hz": 440000000 - }, - "23cm": { - "start_hz": 1240000000, - "end_hz": 1300000000 - }, - "13cm": { - "start_hz": 2300000000, - "end_hz": 2450000000 - }, - "9cm": { - "start_hz": 3300000000, - "end_hz": 3500000000 - }, - "6cm": { - "start_hz": 5650000000, - "end_hz": 5850000000 - }, - "3cm": { - "start_hz": 10000000000, - "end_hz": 10500000000 - }, - "1.2cm": { - "start_hz": 24000000000, - "end_hz": 24250000000 - } - } -} \ No newline at end of file From 78dc64c2d50af5c5b817c4b03d73f0071c02f5d1 Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Thu, 23 Oct 2025 23:03:07 +0200 Subject: [PATCH 10/56] Minor fixes --- application/models/Bands.php | 2 +- assets/js/dxwaterfall.js | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/application/models/Bands.php b/application/models/Bands.php index a6dc5075c..17b2cc588 100644 --- a/application/models/Bands.php +++ b/application/models/Bands.php @@ -102,7 +102,7 @@ class Bands extends CI_Model { function get_all_bandedges_for_user($region = 1) { // Note: $region parameter is for future IARU region support // Currently not implemented - defaults to region 1 - + $this->db->from('bandedges'); $this->db->where('bandedges.userid', $this->session->userdata('user_id')); $this->db->order_by('frequencyfrom', 'ASC'); diff --git a/assets/js/dxwaterfall.js b/assets/js/dxwaterfall.js index 45a821e97..6851401b2 100644 --- a/assets/js/dxwaterfall.js +++ b/assets/js/dxwaterfall.js @@ -1692,16 +1692,16 @@ var dxWaterfall = { // Group by band - find min/max frequencies for each band var bandRanges = {}; - + for (var i = 0; i < bandEdges.length; i++) { var edge = bandEdges[i]; var freqFrom = parseInt(edge.frequencyfrom); var freqTo = parseInt(edge.frequencyto); - + // Determine band from frequency (use center frequency) var centerFreq = (freqFrom + freqTo) / 2; var band = this.getFrequencyBandFromHz(centerFreq); - + if (band) { // Store band ranges for limits if (!bandRanges[band]) { @@ -1745,7 +1745,7 @@ var dxWaterfall = { // Fallback: simple band detection based on common amateur radio bands var freqMhz = frequencyHz / 1000000; - + if (freqMhz >= 1.8 && freqMhz < 2.0) return '160m'; if (freqMhz >= 3.5 && freqMhz < 4.0) return '80m'; if (freqMhz >= 7.0 && freqMhz < 7.3) return '40m'; @@ -1758,7 +1758,7 @@ var dxWaterfall = { if (freqMhz >= 50.0 && freqMhz < 54.0) return '6m'; if (freqMhz >= 144.0 && freqMhz < 148.0) return '2m'; if (freqMhz >= 420.0 && freqMhz < 450.0) return '70cm'; - + return null; }, @@ -3544,7 +3544,7 @@ var dxWaterfall = { currentKey = 'no-spot'; } else { // Include spot details and index in the key to detect any meaningful change - currentKey = spotInfo.callsign + '|' + spotInfo.frequency + '|' + + currentKey = spotInfo.callsign + '|' + spotInfo.frequency + '|' + this.currentSpotIndex + '|' + this.relevantSpots.length; } @@ -4275,7 +4275,7 @@ var dxWaterfall = { // Reset band plans to force reload for new region self.bandPlans = null; self.bandEdgesData = null; - + // Load band plans for new region (based on new continent) self.loadBandPlans(); @@ -4805,7 +4805,7 @@ $(document).ready(function() { if (spotInfo) { DX_WATERFALL_UTILS.qsoForm.populateFromSpot(spotInfo, true); } - + // Re-enable navigation after operation completes setTimeout(function() { dxWaterfall.spotNavigating = false; From b64f71ac83c10b8e383f8f560c69ea3bcb6f423a Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Thu, 23 Oct 2025 23:08:04 +0200 Subject: [PATCH 11/56] Initial load fix --- assets/js/dxwaterfall.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/assets/js/dxwaterfall.js b/assets/js/dxwaterfall.js index 6851401b2..888f50eeb 100644 --- a/assets/js/dxwaterfall.js +++ b/assets/js/dxwaterfall.js @@ -2152,10 +2152,11 @@ var dxWaterfall = { // Mark fetch as in progress this.fetchInProgress = true; - // Reset timer only for user-initiated fetches (band changes, continent changes) - // Don't reset timer for background spot refreshes - if (this.userInitiatedFetch) { + // Reset timer for user-initiated fetches (band changes, continent changes) + // Also set timer for initial load (even though not user-initiated) + if (this.userInitiatedFetch || !this.dataReceived) { this.operationStartTime = Date.now(); + this.updateZoomMenu(); // Immediately show timer/hourglass } $.ajax({ From 1a6fb76b8536facc521b100eeed5a2534c1d05ca Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Fri, 24 Oct 2025 01:46:32 +0200 Subject: [PATCH 12/56] Turn On and Turn Off feature --- application/views/interface_assets/footer.php | 3 + application/views/qso/index.php | 83 ++++- assets/js/dxwaterfall.js | 295 +++++++++++++++--- 3 files changed, 334 insertions(+), 47 deletions(-) diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index 69ceee2df..8eee7f6d1 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -109,6 +109,9 @@ var lang_dxwaterfall_out_of_bandplan = ""; var lang_dxwaterfall_changing_frequency = ""; var lang_dxwaterfall_invalid = ""; + var lang_dxwaterfall_turn_on = ""; + var lang_dxwaterfall_turn_off = ""; + var lang_dxwaterfall_warming_up = ""; diff --git a/application/views/qso/index.php b/application/views/qso/index.php index cb3bd7402..586d1480a 100644 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -71,6 +71,69 @@ switch ($date_format) { line-height: 1.4; word-wrap: break-word; overflow-wrap: break-word; + position: relative; + border-radius: 5px 5px 5px 5px; + transition: border-radius 0.3s; + } + #dxWaterfallSpot.active { + border-radius: 5px 5px 0 0; + border-bottom: none; + } + #dxWaterfallSpotHeader { + display: flex; + align-items: center; + width: 100%; + position: relative; + cursor: pointer; + } + #dxWaterfallSpotHeader.hidden { + display: none; + } + #dxWaterfallSpotContent { + display: none; + width: 100%; + padding-right: 30px; + } + #dxWaterfallSpotContent.active { + display: block; + } + #dxWaterfallSpotLeft { + display: flex; + align-items: center; + flex: 1; + } + #dxWaterfallPowerOnIcon { + position: absolute; + top: 50%; + right: 0px; + transform: translateY(-50%); + cursor: pointer; + color: #FF0000; + flex-shrink: 0; + transition: color 0.3s; + } + #dxWaterfallPowerOnIcon:hover { + color: #DD0000; + } + #dxWaterfallMessage { + text-align: left; + } + #dxWaterfallPowerOffIcon { + position: absolute; + top: 50%; + right: 5px; + transform: translateY(-50%); + cursor: pointer; + color: #00FF00; + flex-shrink: 0; + transition: color 0.2s; + display: none; + } + #dxWaterfallPowerOffIcon.active { + display: block; + } + #dxWaterfallPowerOffIcon:hover { + color: #00DD00; } #dxWaterfallMenu { width: 100%; @@ -82,6 +145,7 @@ switch ($date_format) { border-left: 1px solid #000000; border-right: 1px solid #000000; border-bottom: 1px solid #000000; + border-radius: 0 0 5px 5px; min-height: 20px; display: flex; flex-wrap: wrap; @@ -178,11 +242,24 @@ switch ($date_format) {
-
 
-
+
+
+
+
+ +
+ +
+
+ +
+
+ -
 
+
diff --git a/assets/js/dxwaterfall.js b/assets/js/dxwaterfall.js index 888f50eeb..67616729e 100644 --- a/assets/js/dxwaterfall.js +++ b/assets/js/dxwaterfall.js @@ -1149,7 +1149,7 @@ var dxWaterfall = { this.canvas.height = $waterfall.height(); // Get reference to spot info div and menu div - this.spotInfoDiv = document.getElementById('dxWaterfallSpot'); + this.spotInfoDiv = document.getElementById('dxWaterfallSpotContent'); this.zoomMenuDiv = document.getElementById('dxWaterfallMenu'); // Cache frequently accessed DOM elements for performance @@ -1202,6 +1202,17 @@ var dxWaterfall = { this.$freqCalculated.on('focus', function() { // Mark that user is actively editing self.userEditingFrequency = true; + + // Clear any stuck CAT tuning or frequency changing flags when user manually interacts + // This ensures that even if CAT is in an error state, user can still change frequency + if (self.catTuning || self.frequencyChanging) { + self.catTuning = false; + self.frequencyChanging = false; + self.catTuningStartTime = null; + // Force refresh to update the display + self.updateZoomMenu(); + } + // When user starts editing, commit current value first (if valid and not already committed) if (self.lastValidCommittedFreq === null) { var currentFreq = parseFloat($(this).val()) || 0; @@ -1286,6 +1297,11 @@ var dxWaterfall = { // Commit the current frequency value (called on blur or Enter key) // This prevents the waterfall from shifting while the user is typing commitFrequency: function() { + // Safety check: return early if waterfall is not initialized (destroyed or not yet ready) + if (!this.$freqCalculated || !this.$qrgUnit) { + return; + } + this.committedFreqInput = this.$freqCalculated.val(); this.committedQrgUnit = this.$qrgUnit.text() || 'kHz'; @@ -1426,6 +1442,11 @@ var dxWaterfall = { // Force invalidate frequency cache - called when CAT updates frequency invalidateFrequencyCache: function() { + // Safety check: Don't run if waterfall is not initialized + if (!this.canvas) { + return; + } + // Don't invalidate cache if user is actively editing frequency if (this.userEditingFrequency) { return; @@ -1465,7 +1486,11 @@ var dxWaterfall = { // Force immediate cache refresh and visual update to move marker this.lastFrequencyRefreshTime = 0; // Reset throttle to allow immediate refresh - this.refreshFrequencyCache(); + + // Only refresh from DOM if CAT is available - otherwise keep waterfall frequency independent + if (catAvailable) { + this.refreshFrequencyCache(); + } // Force immediate refresh to draw marker at new position (with overlay still visible) if (this.canvas && this.ctx) { @@ -1504,6 +1529,11 @@ var dxWaterfall = { // Periodically refresh frequency cache to ensure display stays current refreshFrequencyCache: function() { + // Safety check: Don't run if waterfall is not initialized + if (!this.$freqCalculated || !this.$qrgUnit) { + return; + } + // Don't interfere during waterfall-initiated frequency changes or when user is editing if (this.frequencyChanging || this.userEditingFrequency) { return; @@ -2236,6 +2266,10 @@ var dxWaterfall = { // Get current band from form or default to 20m getCurrentBand: function() { + // Safety check: return default if not initialized + if (!this.$bandSelect) { + return '20m'; + } // Try to get band from form - adjust selector based on your HTML structure var band = this.$bandSelect.val() || '20m'; return band; @@ -2243,6 +2277,10 @@ var dxWaterfall = { // Get current mode from form or default to All getCurrentMode: function() { + // Safety check: return default if not initialized + if (!this.$modeSelect) { + return 'All'; + } // Try to get mode from form - adjust selector based on your HTML structure var mode = this.$modeSelect.val() || 'All'; return mode; @@ -3643,7 +3681,9 @@ var dxWaterfall = { // Show hourglass with counter during DX cluster fetch if (this.fetchInProgress) { var elapsed = ((Date.now() - this.operationStartTime) / 1000).toFixed(1); - this.zoomMenuDiv.innerHTML = '
' + elapsed + 's
'; + // Show "Warming up..." for the first second, then show counter + var displayText = elapsed < 1.0 ? lang_dxwaterfall_warming_up : elapsed + 's'; + this.zoomMenuDiv.innerHTML = '
' + displayText + '
'; return; } @@ -3654,10 +3694,12 @@ var dxWaterfall = { if (this.waitingForData && this.userInitiatedFetch) { // Show loading indicator with counter for user-initiated operations var elapsed = ((Date.now() - this.operationStartTime) / 1000).toFixed(1); - this.zoomMenuDiv.innerHTML = '
' + elapsed + 's|
'; + // Show "Warming up..." for the first second, then show counter + var displayText = elapsed < 1.0 ? lang_dxwaterfall_warming_up : elapsed + 's'; + this.zoomMenuDiv.innerHTML = '
' + displayText + '|
'; } else { - // No data yet and not in proper loading state - show placeholder hourglass - this.zoomMenuDiv.innerHTML = '
'; + // No data yet and not in proper loading state - show placeholder with "Warming up..." + this.zoomMenuDiv.innerHTML = '
' + lang_dxwaterfall_warming_up + '
'; } return; } @@ -3675,7 +3717,9 @@ var dxWaterfall = { if (showLoadingIndicator) { // Calculate elapsed time with tenths of seconds var elapsed = ((Date.now() - this.operationStartTime) / 1000).toFixed(1); - zoomHTML += '' + elapsed + 's'; + // Show "Warming up..." for the first second, then show counter + var displayText = elapsed < 1.0 ? lang_dxwaterfall_warming_up : elapsed + 's'; + zoomHTML += '' + displayText + ''; } // Add band spot navigation controls - always show them @@ -4421,18 +4465,15 @@ var dxWaterfall = { this.catFrequencyWaitTimer = null; } - // Unbind all event handlers + // Unbind event handlers that were added in init() + // Note: Event handlers registered outside dxWaterfall object (like menu clicks) + // should NOT be unbound here as they are global and persistent if (this.$freqCalculated) { this.$freqCalculated.off('focus blur input keydown'); } if (this.canvas) { - $(this.canvas).off('click'); - } - if (this.zoomMenuDiv) { - $(this.zoomMenuDiv).off('click'); - } - if (this.spotInfoDiv) { - $(this.spotInfoDiv).off('click'); + // Only unbind wheel event (added in init), not click events from global handlers + $(this.canvas).off('wheel'); } // Clear canvas @@ -4449,6 +4490,84 @@ var dxWaterfall = { // Clear cache references this.cache.noise1 = null; this.cache.noise2 = null; + this.cache.middleFreq = null; + this.cache.lastFreqInput = null; + this.cache.lastQrgUnit = null; + this.cache.lastModeForCache = null; + this.cache.committedFreqInput = null; + this.cache.committedQrgUnit = null; + this.cache.lastValidCommittedFreq = null; + this.cache.lastValidCommittedUnit = null; + + // Clear frequency tracking properties (used in getCachedMiddleFreq) + this.lastFreqInput = null; + this.lastQrgUnit = null; + this.lastModeForCache = null; + this.lastValidCommittedFreq = null; + this.lastValidCommittedUnit = null; + this.committedFreqInput = null; + this.committedQrgUnit = null; + + // Clear cached pixels per kHz + this.cachedPixelsPerKHz = null; + + // Reset all state flags + this.waitingForData = true; + this.dataReceived = false; + this.initialFetchDone = false; + this.waitingForCATFrequency = true; + this.userEditingFrequency = false; + this.userChangedBand = false; + this.programmaticModeChange = false; + this.zoomChanging = false; + this.spotNavigating = false; + this.smartHunterActive = false; + this.continentChanging = false; + this.initialLoadDone = false; + this.frequencyChanging = false; + this.catTuning = false; + this.userInitiatedFetch = false; + this.fetchInProgress = false; + + // Reset indices + this.currentSpotIndex = 0; + this.currentBandSpotIndex = 0; + this.currentSmartHunterIndex = 0; + + // Reset zoom level to default + this.currentZoomLevel = DX_WATERFALL_CONSTANTS.ZOOM.DEFAULT_LEVEL; + + // Clear pending states + this.pendingContinent = null; + this.pendingModeFilters = null; + + // Reset spot info key + this.lastSpotInfoKey = null; + + // Clear band/mode tracking + this.lastBand = null; + this.lastMode = null; + this.lastFetchBand = null; + this.lastFetchContinent = null; + this.lastFetchAge = null; + + // Reset timestamps + this.lastUpdateTime = null; + this.lastWaterfallFrequencyCommandTime = 0; + this.lastFrequencyRefreshTime = 0; + this.lastSpotCollectionTime = 0; + + // Clear canvas and context references to force reinitialization + this.canvas = null; + this.ctx = null; + + // Clear DOM element references + this.spotInfoDiv = null; + this.zoomMenuDiv = null; + this.$freqCalculated = null; + this.$qrgUnit = null; + this.$bandSelect = null; + this.$modeSelect = null; // Mark as not initialized this.initializationComplete = false; @@ -4719,9 +4838,13 @@ function setFrequency(frequencyInKHz, fromWaterfall) { } // CAT not available - use manual frequency setting - // Don't trigger change events to avoid side effects like form clearing + // Update both frequency fields $('#frequency').val(formattedFreq); + // Also update freq_calculated field that waterfall reads from + var freqInKHz = frequencyInKHz; + $('#freq_calculated').val(freqInKHz); + // Only trigger change if this is NOT from waterfall (external frequency change) if (!fromWaterfall) { $('#frequency').trigger('change'); @@ -4732,10 +4855,8 @@ function setFrequency(frequencyInKHz, fromWaterfall) { dxWaterfall.frequencyChanging = false; dxWaterfall.catTuning = false; // No CAT, so no CAT tuning dxWaterfall.spotNavigating = false; // Clear navigation flag immediately - // Invalidate frequency cache to ensure waterfall updates immediately - if (dxWaterfall.invalidateFrequencyCache) { - dxWaterfall.invalidateFrequencyCache(); - } + // Don't call invalidateFrequencyCache - it's for CAT confirmation + // When CAT is disabled, waterfall frequency is managed independently } } @@ -4743,27 +4864,16 @@ $(document).ready(function() { // Function to try initializing the canvas with retries function tryInitCanvas() { if (document.getElementById('dxWaterfall')) { - // Canvas found, initialize normally - dxWaterfall.init(); // This calls refresh() which calls fetchDxSpots() + // Canvas found, but DON'T auto-initialize + // Wait for user to click the power button - // Set up periodic refresh - faster during CAT operations for spinner animation + // Set up DX spots fetching at regular intervals (only when initialized) setInterval(function() { - if (dxWaterfall.catTuning || dxWaterfall.frequencyChanging) { - // Fast refresh during CAT operations for spinner animation - dxWaterfall.refresh(); - } else { - // Normal refresh when idle - dxWaterfall.refresh(); + if (dxWaterfall.canvas) { // Only fetch if waterfall has been initialized + dxWaterfall.fetchDxSpots(true, false); // Background fetch - NOT user-initiated } - }, DX_WATERFALL_CONSTANTS.VISUAL.STATIC_NOISE_REFRESH_MS); // Faster refresh for smooth spinner animation - - // Set up DX spots fetching at regular intervals - setInterval(function() { - dxWaterfall.fetchDxSpots(true, false); // Background fetch - NOT user-initiated }, DX_WATERFALL_CONSTANTS.DEBOUNCE.DX_SPOTS_FETCH_INTERVAL_MS); - // Initial fetch is handled by init() -> refresh() -> fetchDxSpots() - // No need for additional delayed fetch } else { // Canvas not found, try again in 100ms setTimeout(tryInitCanvas, 100); @@ -4779,8 +4889,8 @@ $(document).ready(function() { dxWaterfall.updateDimensions(); }); - // Handle click on the cycle icon in dxWaterfallSpot div to cycle through spots - $('#dxWaterfallSpot').on('click', '.cycle-spot-icon', function(e) { + // Handle click on the cycle icon in dxWaterfallSpotContent div to cycle through spots + $('#dxWaterfallSpotContent').on('click', '.cycle-spot-icon', function(e) { e.stopPropagation(); // Prevent event bubbling // Prevent rapid clicking - check if navigation is in progress @@ -4822,8 +4932,8 @@ $(document).ready(function() { } }); - // Handle click on the tune icon in dxWaterfallSpot div to set frequency - $('#dxWaterfallSpot').on('click', '.tune-icon', function(e) { + // Handle click on the tune icon in dxWaterfallSpotContent div to set frequency + $('#dxWaterfallSpotContent').on('click', '.tune-icon', function(e) { e.stopPropagation(); // Prevent event bubbling var frequency = parseFloat($(this).data('frequency')); @@ -4989,12 +5099,13 @@ $(document).ready(function() { // Set the frequency to where user clicked setFrequency(clickedFreq, true); - // Update cache directly (same as navigation fix) + // Update cache directly AND sync tracking variables to prevent recalculation var formattedFreq = Math.round(clickedFreq * 1000); // Convert to Hz dxWaterfall.cache.middleFreq = clickedFreq; - dxWaterfall.lastFreqInput = formattedFreq; - dxWaterfall.lastValidCommittedFreq = formattedFreq; + dxWaterfall.lastFreqInput = clickedFreq; // Store in kHz to match cache + dxWaterfall.lastValidCommittedFreq = clickedFreq; // Store in kHz dxWaterfall.lastValidCommittedUnit = 'kHz'; + dxWaterfall.lastQrgUnit = 'kHz'; // Try to find a nearby spot at this frequency and populate QSO form var spotInfo = dxWaterfall.getSpotInfo(); @@ -5059,12 +5170,108 @@ $(document).ready(function() { else if (modKey && e.shiftKey && e.key === ' ') { e.preventDefault(); // Find the tune icon in the spot info div and trigger it - var tuneIcon = $('#dxWaterfallSpot .tune-icon'); + var tuneIcon = $('#dxWaterfallSpotContent .tune-icon'); if (tuneIcon.length > 0) { tuneIcon.trigger('click'); } } }); + + // Handle DX Waterfall power on/off + var waterfallActive = false; + var waterfallRefreshInterval = null; // Store interval ID for cleanup + + // Initialize UI text and tooltip from language variables + $('#dxWaterfallMessage').text(lang_dxwaterfall_turn_on); + $('#dxWaterfallPowerOnIcon').attr('title', lang_dxwaterfall_turn_on); + $('#dxWaterfallPowerOffIcon').attr('title', lang_dxwaterfall_turn_off); + + // Function to turn on waterfall (shared by icon and message click) + var turnOnWaterfall = function(e) { + if (waterfallActive) { + return; // Already active, prevent double initialization + } + + waterfallActive = true; + + // Update UI - hide header, show content area, show power-off icon, update container styling + $('#dxWaterfallSpot').addClass('active'); + $('#dxWaterfallSpotHeader').addClass('hidden'); + $('#dxWaterfallSpotContent').addClass('active'); + $('#dxWaterfallPowerOffIcon').addClass('active'); + + // Show waterfall and menu + $('#dxWaterfallCanvasContainer').show(); + $('#dxWaterfallMenuContainer').show(); + + // Initialize waterfall from scratch (destroy ensures clean state) + if (typeof dxWaterfall !== 'undefined') { + // Force reinitialization by ensuring canvas is null + if (dxWaterfall.canvas) { + console.warn('DX Waterfall canvas still exists, forcing cleanup'); + dxWaterfall.destroy(); + } + + // Now initialize from clean state + dxWaterfall.init(); + + // Set up periodic refresh - faster during CAT operations for spinner animation + waterfallRefreshInterval = setInterval(function() { + if (dxWaterfall.canvas) { + if (dxWaterfall.catTuning || dxWaterfall.frequencyChanging) { + // Fast refresh during CAT operations for spinner animation + dxWaterfall.refresh(); + } else { + // Normal refresh when idle + dxWaterfall.refresh(); + } + } + }, DX_WATERFALL_CONSTANTS.VISUAL.STATIC_NOISE_REFRESH_MS); + } + }; + + // Click anywhere on the header div to turn on waterfall + $('#dxWaterfallSpotHeader').on('click', turnOnWaterfall); + + // Click on power-off icon to turn off waterfall + $('#dxWaterfallPowerOffIcon').on('click', function(e) { + e.stopPropagation(); // Prevent triggering parent click + + if (!waterfallActive) { + return; // Already inactive + } + + waterfallActive = false; + + // Stop the refresh interval + if (waterfallRefreshInterval) { + clearInterval(waterfallRefreshInterval); + waterfallRefreshInterval = null; + } + + // Destroy the waterfall component (cleanup memory, timers, event handlers) + if (typeof dxWaterfall !== 'undefined' && dxWaterfall.canvas) { + dxWaterfall.destroy(); + } + + // Clear spot info and menu divs + if (dxWaterfall.spotInfoDiv) { + dxWaterfall.spotInfoDiv.innerHTML = ' '; + } + if (dxWaterfall.zoomMenuDiv) { + dxWaterfall.zoomMenuDiv.innerHTML = ' '; + } + + // Update UI - show header, hide content area, hide power-off icon, update container styling + $('#dxWaterfallSpot').removeClass('active'); + $('#dxWaterfallSpotHeader').removeClass('hidden'); + $('#dxWaterfallSpotContent').removeClass('active'); + $('#dxWaterfallPowerOffIcon').removeClass('active'); + + // Hide waterfall and menu + $('#dxWaterfallCanvasContainer').hide(); + $('#dxWaterfallMenuContainer').hide(); + }); }); From 202480f3bc2eb551f2c3edbb716758c7699fd4d5 Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Fri, 24 Oct 2025 21:31:49 +0200 Subject: [PATCH 13/56] Label font size is now configurable by the icon --- application/views/interface_assets/footer.php | 6 + application/views/qso/index.php | 6 +- assets/js/dxwaterfall.js | 256 +++++++++++++++++- 3 files changed, 251 insertions(+), 17 deletions(-) diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index 8eee7f6d1..ceef0a271 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -112,6 +112,12 @@ var lang_dxwaterfall_turn_on = ""; var lang_dxwaterfall_turn_off = ""; var lang_dxwaterfall_warming_up = ""; + var lang_dxwaterfall_label_size_cycle = ""; + var lang_dxwaterfall_label_size_xsmall = ""; + var lang_dxwaterfall_label_size_small = ""; + var lang_dxwaterfall_label_size_medium = ""; + var lang_dxwaterfall_label_size_large = ""; + var lang_dxwaterfall_label_size_xlarge = ""; diff --git a/application/views/qso/index.php b/application/views/qso/index.php index 586d1480a..1e17fd2e3 100644 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -159,7 +159,8 @@ switch ($date_format) { #dxWaterfallMenu .next-spot-icon, #dxWaterfallMenu .smart-hunter-icon, #dxWaterfallMenu .continent-cycle-icon, - #dxWaterfallMenu .mode-filter-icon { + #dxWaterfallMenu .mode-filter-icon, + #dxWaterfallMenu .label-size-icon { cursor: pointer; color: #FFFFFF; margin: 0 2px; @@ -175,7 +176,8 @@ switch ($date_format) { #dxWaterfallMenu .smart-hunter-text:hover:not(.disabled), #dxWaterfallMenu .continent-cycle-icon:hover:not(.disabled), #dxWaterfallMenu .continent-cycle-text:hover:not(.disabled), - #dxWaterfallMenu .mode-filter-icon:hover:not(.disabled) { + #dxWaterfallMenu .mode-filter-icon:hover:not(.disabled), + #dxWaterfallMenu .label-size-icon:hover { color: #AAAAAA; } #dxWaterfallMenu .smart-hunter-text, diff --git a/assets/js/dxwaterfall.js b/assets/js/dxwaterfall.js index 67616729e..191ba564f 100644 --- a/assets/js/dxwaterfall.js +++ b/assets/js/dxwaterfall.js @@ -37,6 +37,13 @@ var DX_WATERFALL_CONSTANTS = { STATIC_NOISE_REFRESH_MS: 100 // Static noise animation frame rate }, + // Cookie configuration + COOKIE: { + NAME_FONT_SIZE: 'dxwaterfall_fontsize', // Cookie name for font size + NAME_MODE_FILTERS: 'dxwaterfall_modefilters', // Cookie name for mode filters + EXPIRY_DAYS: 365 // Cookie expiration in days + }, + // Canvas dimensions and spacing CANVAS: { MIN_TEXT_AREA_WIDTH: 100, // Minimum width to display text labels @@ -120,7 +127,7 @@ var DX_WATERFALL_CONSTANTS = { SPOT_INFO: '11px "Consolas", "Courier New", monospace', WAITING_MESSAGE: '16px "Consolas", "Courier New", monospace', TITLE_LARGE: 'bold 24px "Consolas", "Courier New", monospace', - FREQUENCY_CHANGE: 'bold 18px "Consolas", "Courier New", monospace', + FREQUENCY_CHANGE: '18px "Consolas", "Courier New", monospace', OUT_OF_BAND: 'bold 14px "Consolas", "Courier New", monospace', SMALL_MONO: '12px "Consolas", "Courier New", monospace' }, @@ -244,6 +251,41 @@ var DX_WATERFALL_UTILS = { } }, + // Cookie utilities + cookie: { + /** + * Set a cookie + * @param {string} name - Cookie name + * @param {string} value - Cookie value + * @param {number} days - Days until expiration + */ + set: function(name, value, days) { + var expires = ""; + if (days) { + var date = new Date(); + date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); + expires = "; expires=" + date.toUTCString(); + } + document.cookie = name + "=" + (value || "") + expires + "; path=/"; + }, + + /** + * Get a cookie value + * @param {string} name - Cookie name + * @returns {string|null} Cookie value or null if not found + */ + get: function(name) { + var nameEQ = name + "="; + var ca = document.cookie.split(';'); + for (var i = 0; i < ca.length; i++) { + var c = ca[i]; + while (c.charAt(0) === ' ') c = c.substring(1, c.length); + if (c.indexOf(nameEQ) === 0) return c.substring(nameEQ.length, c.length); + } + return null; + } + }, + // DOM selector utilities (cached for performance) dom: { waterfall: null, @@ -1036,6 +1078,7 @@ var dxWaterfall = { // VISUAL CONFIGURATION // ======================================== fonts: DX_WATERFALL_CONSTANTS.FONTS, // Font configuration + labelSizeLevel: 2, // 0 = x-small (11px), 1 = small (12px), 2 = medium (13px - default), 3 = large (15px), 4 = x-large (17px) // ======================================== // PERFORMANCE CACHING @@ -1184,6 +1227,9 @@ var dxWaterfall = { this.pageLoadTime = Date.now(); this.operationStartTime = Date.now(); // Initialize operation timer + // Load saved settings from cookies + this.loadSettingsFromCookies(); + // Set top div to   to maintain layout height if (this.spotInfoDiv) { this.spotInfoDiv.innerHTML = ' '; @@ -1605,6 +1651,137 @@ var dxWaterfall = { } }, + // Get the current label font based on labelSizeLevel + getCurrentLabelFont: function() { + // 0 = x-small (11px), 1 = small (12px), 2 = medium (13px - default), 3 = large (15px), 4 = x-large (17px) + switch(this.labelSizeLevel) { + case 0: + return 'bold 11px "Consolas", "Courier New", monospace'; + case 1: + return 'bold 12px "Consolas", "Courier New", monospace'; + case 3: + return 'bold 15px "Consolas", "Courier New", monospace'; + case 4: + return 'bold 17px "Consolas", "Courier New", monospace'; + default: + return DX_WATERFALL_CONSTANTS.FONTS.SPOT_LABELS; // 13px (level 2 - medium) + } + }, + + // Get the current CENTER label font (1px larger than regular labels) + getCurrentCenterLabelFont: function() { + // Center label is always 1px larger than regular labels + // 0 = 12px, 1 = 13px, 2 = 14px, 3 = 16px, 4 = 18px + switch(this.labelSizeLevel) { + case 0: + return 'bold 12px "Consolas", "Courier New", monospace'; + case 1: + return 'bold 13px "Consolas", "Courier New", monospace'; + case 3: + return 'bold 16px "Consolas", "Courier New", monospace'; + case 4: + return 'bold 18px "Consolas", "Courier New", monospace'; + default: + return 'bold 14px "Consolas", "Courier New", monospace'; // default 13px + 1 (level 2) + } + }, + + // Get the current label height in pixels based on labelSizeLevel + getCurrentLabelHeight: function() { + // 0 = 11px, 1 = 12px, 2 = 13px, 3 = 15px, 4 = 17px + switch(this.labelSizeLevel) { + case 0: return 11; + case 1: return 12; + case 3: return 15; + case 4: return 17; + default: return 13; // level 2 - medium + } + }, + + // ======================================== + // COOKIE MANAGEMENT + // ======================================== + + /** + * Save font size to cookie + */ + saveFontSizeToCookie: function() { + DX_WATERFALL_UTILS.cookie.set( + DX_WATERFALL_CONSTANTS.COOKIE.NAME_FONT_SIZE, + this.labelSizeLevel.toString(), + DX_WATERFALL_CONSTANTS.COOKIE.EXPIRY_DAYS + ); + }, + + /** + * Load font size from cookie + * @returns {number|null} Font size level (0-4) or null if not found + */ + loadFontSizeFromCookie: function() { + var cookieValue = DX_WATERFALL_UTILS.cookie.get(DX_WATERFALL_CONSTANTS.COOKIE.NAME_FONT_SIZE); + if (cookieValue !== null) { + var level = parseInt(cookieValue, 10); + if (!isNaN(level) && level >= 0 && level <= 4) { + return level; + } + } + return null; + }, + + /** + * Save mode filters to cookie + */ + saveModeFiltersToCookie: function() { + DX_WATERFALL_UTILS.cookie.set( + DX_WATERFALL_CONSTANTS.COOKIE.NAME_MODE_FILTERS, + JSON.stringify(this.modeFilters), + DX_WATERFALL_CONSTANTS.COOKIE.EXPIRY_DAYS + ); + }, + + /** + * Load mode filters from cookie + * @returns {Object|null} Mode filters object or null if not found + */ + loadModeFiltersFromCookie: function() { + var cookieValue = DX_WATERFALL_UTILS.cookie.get(DX_WATERFALL_CONSTANTS.COOKIE.NAME_MODE_FILTERS); + if (cookieValue) { + try { + var filters = JSON.parse(cookieValue); + // Validate that it has the expected properties + if (typeof filters.phone === 'boolean' && + typeof filters.cw === 'boolean' && + typeof filters.digi === 'boolean') { + return filters; + } + } catch (e) { + console.log('[DX Waterfall] Error parsing mode filters cookie:', e); + } + } + return null; + }, + + /** + * Load saved settings from cookies on initialization + */ + loadSettingsFromCookies: function() { + // Load font size + var savedFontSize = this.loadFontSizeFromCookie(); + if (savedFontSize !== null) { + this.labelSizeLevel = savedFontSize; + console.log('[DX Waterfall] Loaded font size from cookie:', savedFontSize); + } + + // Load mode filters + var savedModeFilters = this.loadModeFiltersFromCookie(); + if (savedModeFilters) { + this.modeFilters.phone = savedModeFilters.phone; + this.modeFilters.cw = savedModeFilters.cw; + this.modeFilters.digi = savedModeFilters.digi; + console.log('[DX Waterfall] Loaded mode filters from cookie:', savedModeFilters); + } + }, + // Get cached pixels per kHz to avoid repeated mode checking getCachedPixelsPerKHz: function() { var currentMode = this.getCurrentMode(); @@ -2997,7 +3174,9 @@ var dxWaterfall = { // Check if center label is shown to avoid that area var centerSpotShown = centerCallsign !== null; var centerY = (this.canvas.height - DX_WATERFALL_CONSTANTS.CANVAS.RULER_HEIGHT) / 2; - var centerExclusionHeight = Math.ceil(13 * 1.2) + 20; // Center label height (13px base * 1.2) + 20px margin + var baseLabelHeight = this.getCurrentLabelHeight(); // Regular label height + var centerLabelHeight = baseLabelHeight + 1; // Center is 1px taller + var centerExclusionHeight = Math.ceil(centerLabelHeight * 1.2) + 20; // Center label height + 20px margin var centerExclusionTop = centerY - (centerExclusionHeight / 2); var centerExclusionBottom = centerY + (centerExclusionHeight / 2); @@ -3005,8 +3184,11 @@ var dxWaterfall = { var self = this; var fonts = this.fonts; - // Label height constants for overlap detection - var labelHeight = 13; // Base label height in pixels + // Get current label font based on size level + var currentLabelFont = this.getCurrentLabelFont(); + + // Label height constants for overlap detection - adjust based on label size + var labelHeight = this.getCurrentLabelHeight(); var minSpacing = 3; // Minimum spacing between labels in pixels // Function to distribute spots vertically with anti-overlap algorithm @@ -3014,7 +3196,7 @@ var dxWaterfall = { if (spots.length === 0) return; // Pre-calculate label widths for all spots - ctx.font = fonts.spotLabels; + ctx.font = currentLabelFont; var padding = DX_WATERFALL_CONSTANTS.CANVAS.SPOT_PADDING; for (var p = 0; p < spots.length; p++) { var textWidth = ctx.measureText(spots[p].callsign).width; @@ -3035,11 +3217,11 @@ var dxWaterfall = { var borderColor = colors.borderColor; var tickboxColor = colors.tickboxColor; - // Calculate dimensions (increased by 5% from original 12px base) + // Calculate dimensions based on label size level + var rectHeight = labelHeight; var rectX = spot.x - (spot.labelWidth / 2); - var rectY = y - 7; // Adjusted from -6 to -7 for 13px height + var rectY = y - Math.floor(rectHeight / 2) - 1; // Center vertically var rectWidth = spot.labelWidth; - var rectHeight = 13; // Increased from 12 to 13 // Draw background rectangle ctx.fillStyle = bgColor; @@ -3221,13 +3403,15 @@ var dxWaterfall = { // Get colors using same logic as spots var colors = this.getSpotColors(spotInfo); - // Use 20% larger font than regular spots (13px -> ~15px with 5% increase applied) - ctx.font = 'bold 15px "Consolas", "Courier New", monospace'; + // Use center label font (1px larger than regular spots, scales with labelSizeLevel) + ctx.font = this.getCurrentCenterLabelFont(); var textWidth = ctx.measureText(callsign).width; - // Calculate background rectangle dimensions (scaled 20% larger than 13px base) - var padding = Math.ceil(DX_WATERFALL_CONSTANTS.CANVAS.SPOT_PADDING * 1.2); - var rectHeight = Math.ceil(13 * 1.2); // Spot label height (13px) scaled + // Calculate background rectangle dimensions based on current label size + var baseLabelHeight = this.getCurrentLabelHeight(); // Same as regular labels + var centerLabelHeight = baseLabelHeight + 1; // Center is 1px taller + var padding = Math.ceil(DX_WATERFALL_CONSTANTS.CANVAS.SPOT_PADDING * 1.1); // Slightly more padding for center + var rectHeight = centerLabelHeight; var rectWidth = textWidth + (padding * 2); var rectX = centerX - (textWidth / 2) - padding; var rectY = centerY - (rectHeight / 2); @@ -3242,7 +3426,7 @@ var dxWaterfall = { ctx.strokeRect(rectX, rectY, rectWidth, rectHeight); // Draw small tickbox at top-right corner using callsign status color - var tickboxSize = Math.ceil(DX_WATERFALL_CONSTANTS.CANVAS.SPOT_TICKBOX_SIZE * 1.2); + var tickboxSize = DX_WATERFALL_CONSTANTS.CANVAS.SPOT_TICKBOX_SIZE; ctx.fillStyle = colors.tickboxColor; ctx.fillRect(rectX + rectWidth - tickboxSize, rectY, tickboxSize, tickboxSize); @@ -3854,9 +4038,23 @@ var dxWaterfall = { } zoomHTML += '
'; - // Right side: zoom controls + // Right side: label size and zoom controls zoomHTML += '
'; + // Label size cycle icon with tooltip showing current size + var labelSizeNames = [ + lang_dxwaterfall_label_size_xsmall, + lang_dxwaterfall_label_size_small, + lang_dxwaterfall_label_size_medium, + lang_dxwaterfall_label_size_large, + lang_dxwaterfall_label_size_xlarge + ]; + var labelSizeText = labelSizeNames[this.labelSizeLevel]; + zoomHTML += ''; + + // Separator + zoomHTML += '|'; + // Zoom out button (disabled if at level 1) if (this.currentZoomLevel > 1) { zoomHTML += ' '; @@ -4431,6 +4629,9 @@ var dxWaterfall = { self.modeFilters.other = self.pendingModeFilters.other; self.pendingModeFilters = null; + // Save to cookie + self.saveModeFiltersToCookie(); + // No need to fetch new spots - we already have all modes from cluster // Just re-collect spots with the new filters applied self.collectAllBandSpots(true); // Update band spot collection (force after filter change) @@ -4983,6 +5184,31 @@ $(document).ready(function() { dxWaterfall.resetZoom(); }); + // Handle click on label size cycle button + $('#dxWaterfallMenu').on('click', '.label-size-icon', function(e) { + e.stopPropagation(); + e.preventDefault(); + + // Cycle through 5 label sizes: 0 -> 1 -> 2 -> 3 -> 4 -> 0 + dxWaterfall.labelSizeLevel = (dxWaterfall.labelSizeLevel + 1) % 5; + + // Save to cookie + dxWaterfall.saveFontSizeToCookie(); + + // Visual feedback - briefly change icon color BEFORE updating menu + var icon = $(this); + icon.css({'color': '#FFFF00', 'transition': 'color 0.2s'}); + + // Wait for visual feedback, then update menu and refresh + setTimeout(function() { + // Update the menu to show new size in tooltip (this replaces the icon) + dxWaterfall.updateZoomMenu(); + + // Refresh the display to show new label sizes + dxWaterfall.refresh(); + }, DX_WATERFALL_CONSTANTS.DEBOUNCE.ZOOM_ICON_FEEDBACK_MS); + }); + // Handle click on previous band spot button $('#dxWaterfallMenu').on('click', '.prev-spot-icon:not(.disabled)', function(e) { e.stopPropagation(); From beb86dafaa4ee49316cdb6eef0fa71081fd47923 Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Fri, 24 Oct 2025 21:32:13 +0200 Subject: [PATCH 14/56] Fix for label sizes --- assets/js/dxwaterfall.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/assets/js/dxwaterfall.js b/assets/js/dxwaterfall.js index 191ba564f..4bbe7abbd 100644 --- a/assets/js/dxwaterfall.js +++ b/assets/js/dxwaterfall.js @@ -1707,8 +1707,8 @@ var dxWaterfall = { */ saveFontSizeToCookie: function() { DX_WATERFALL_UTILS.cookie.set( - DX_WATERFALL_CONSTANTS.COOKIE.NAME_FONT_SIZE, - this.labelSizeLevel.toString(), + DX_WATERFALL_CONSTANTS.COOKIE.NAME_FONT_SIZE, + this.labelSizeLevel.toString(), DX_WATERFALL_CONSTANTS.COOKIE.EXPIRY_DAYS ); }, @@ -1733,8 +1733,8 @@ var dxWaterfall = { */ saveModeFiltersToCookie: function() { DX_WATERFALL_UTILS.cookie.set( - DX_WATERFALL_CONSTANTS.COOKIE.NAME_MODE_FILTERS, - JSON.stringify(this.modeFilters), + DX_WATERFALL_CONSTANTS.COOKIE.NAME_MODE_FILTERS, + JSON.stringify(this.modeFilters), DX_WATERFALL_CONSTANTS.COOKIE.EXPIRY_DAYS ); }, @@ -1749,8 +1749,8 @@ var dxWaterfall = { try { var filters = JSON.parse(cookieValue); // Validate that it has the expected properties - if (typeof filters.phone === 'boolean' && - typeof filters.cw === 'boolean' && + if (typeof filters.phone === 'boolean' && + typeof filters.cw === 'boolean' && typeof filters.digi === 'boolean') { return filters; } @@ -4051,7 +4051,7 @@ var dxWaterfall = { ]; var labelSizeText = labelSizeNames[this.labelSizeLevel]; zoomHTML += ''; - + // Separator zoomHTML += '|'; @@ -5198,12 +5198,12 @@ $(document).ready(function() { // Visual feedback - briefly change icon color BEFORE updating menu var icon = $(this); icon.css({'color': '#FFFF00', 'transition': 'color 0.2s'}); - + // Wait for visual feedback, then update menu and refresh setTimeout(function() { // Update the menu to show new size in tooltip (this replaces the icon) dxWaterfall.updateZoomMenu(); - + // Refresh the display to show new label sizes dxWaterfall.refresh(); }, DX_WATERFALL_CONSTANTS.DEBOUNCE.ZOOM_ICON_FEEDBACK_MS); From b8eb8f4fe96cbe20a8a3253518c8c2020d312c0c Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Sat, 25 Oct 2025 00:00:28 +0200 Subject: [PATCH 15/56] "Click to jump" feature at labels --- application/views/interface_assets/footer.php | 1 + assets/js/dxwaterfall.js | 472 ++++++++++++++++-- 2 files changed, 431 insertions(+), 42 deletions(-) diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index ceef0a271..2895cb3b8 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -118,6 +118,7 @@ var lang_dxwaterfall_label_size_medium = ""; var lang_dxwaterfall_label_size_large = ""; var lang_dxwaterfall_label_size_xlarge = ""; + var lang_dxwaterfall_spotted_by = ""; diff --git a/assets/js/dxwaterfall.js b/assets/js/dxwaterfall.js index 4bbe7abbd..6f4758ef6 100644 --- a/assets/js/dxwaterfall.js +++ b/assets/js/dxwaterfall.js @@ -828,9 +828,13 @@ var DX_WATERFALL_UTILS = { var formattedCallsign = spotData.callsign.toUpperCase().replace(/0/g, 'Ø'); callsignInput.val(formattedCallsign); - // Set the mode if available (this triggers mode change handler which calls $("#callsign").blur()) + // Set the mode if available - determine the actual radio mode if (spotData.mode) { - setMode(spotData.mode); + // Use determineRadioMode to get the correct radio mode (same as clicking) + var radioMode = DX_WATERFALL_UTILS.navigation.determineRadioMode(spotData); + // Use skipTrigger=true to prevent change event race condition + setMode(radioMode, true); + } else { } // Populate SOTA reference if available (selectize field) @@ -891,7 +895,13 @@ var DX_WATERFALL_UTILS = { } callsignInput.trigger('focusout'); self.pendingLookupTimer = null; + + // Clear navigation flag after form population completes + DX_WATERFALL_UTILS.navigation.navigating = false; }, 50); + } else { + // No lookup - clear navigation flag immediately + DX_WATERFALL_UTILS.navigation.navigating = false; } } }, @@ -900,10 +910,76 @@ var DX_WATERFALL_UTILS = { navigation: { // Timer for pending navigation actions pendingNavigationTimer: null, + // Flag to block interference during navigation + navigating: false, + + /** + * Determine the appropriate radio mode to set based on spot mode and frequency + * @param {Object} spot - Spot object with mode and frequency + * @returns {string} - The mode to set (CW, USB, LSB, RTTY, etc.) + */ + determineRadioMode: function(spot) { + + if (!spot) { + return 'USB'; // Default fallback + } + + var spotMode = (spot.mode || '').toUpperCase(); + var frequency = parseFloat(spot.frequency); // Frequency in kHz + + + // CW mode - always use CW + if (spotMode === 'CW' || spotMode === 'A1A') { + return 'CW'; + } + + // Digital modes - use RTTY as the standard digital mode + var digiModes = ['FT8', 'FT4', 'JT65', 'JT9', 'Q65', 'QRA64', 'FST4', 'FST4W', + 'WSPR', 'MSK144', 'ISCAT', 'JS8', 'JTMS', 'FSK441', + 'PSK', 'QPSK', '8PSK', 'PSK31', 'PSK63', 'PSK125', 'PSK250', + 'RTTY', 'RTTYM', 'OLIVIA', 'CONTESTIA', 'THOR', 'THROB', + 'MFSK', 'HELL', 'MT63', 'DOMINO', 'PACKET', 'PACTOR', 'CLOVER', + 'AMTOR', 'SITOR', 'NAVTEX', 'SSTV', 'FAX', 'CHIP', 'CHIP64', + 'ROS', 'JT4', 'JT6M', 'OPERA', 'RTTYFSK', 'DIGITALVOICE', 'DSTAR', + 'VARA', 'ARDOP', 'C4FM', 'DMR', 'FREEDV', 'M17', 'MFSK16', 'MFSK8']; + + for (var i = 0; i < digiModes.length; i++) { + if (spotMode.indexOf(digiModes[i]) !== -1) { + return 'RTTY'; + } + } + + // Phone modes - determine USB or LSB based on frequency + var phoneModes = ['SSB', 'LSB', 'USB', 'AM', 'FM', 'SAM', 'DSB', 'J3E', 'A3E', 'PHONE']; + var isPhoneMode = false; + for (var j = 0; j < phoneModes.length; j++) { + if (spotMode === phoneModes[j]) { + isPhoneMode = true; + break; + } + } + + if (isPhoneMode || !spotMode) { + // Use frequency-based determination for phone modes or unknown modes + // Use the same logic as bandwidth drawing for consistency + var ssbMode = DX_WATERFALL_UTILS.modes.determineSSBMode(frequency); + return ssbMode; + } + + // For any other unrecognized mode, default to USB/LSB based on frequency + var defaultMode = DX_WATERFALL_UTILS.modes.determineSSBMode(frequency); + return defaultMode; + }, // Common navigation logic shared by all spot navigation functions navigateToSpot: function(waterfallContext, targetSpot, targetIndex) { - if (!targetSpot) return false; + + if (!targetSpot) { + return false; + } + + // Set navigation flag to block refresh interference + this.navigating = true; // Cancel any pending navigation timers if (this.pendingNavigationTimer) { @@ -924,10 +1000,25 @@ var DX_WATERFALL_UTILS = { waterfallContext.updateBandFromFrequency(targetSpot.frequency); } - // Use the same frequency setting approach as clicking - setFrequency(targetSpot.frequency, true); // Pass true to indicate waterfall-initiated change + // CRITICAL: Set mode FIRST before calling setFrequency + // setFrequency reads the mode from $('#mode').val(), so the mode must be set first + var radioMode = this.determineRadioMode(targetSpot); - // Manually set the frequency in the input field immediately + // Set CAT debounce lock early to block incoming CAT updates during navigation + if (typeof setFrequency.catDebounceLock !== 'undefined') { + setFrequency.catDebounceLock = 1; + } + + setMode(radioMode, true); // skipTrigger = true to prevent change event + + // Now set frequency - it will read the correct mode from the dropdown + setFrequency(targetSpot.frequency, true); // Pass true to indicate waterfall-initiated change + + // Send frequency command again after short delay to correct any drift from mode change + // (radio control lib bug: mode change can cause slight frequency shift) + setTimeout(function() { + setFrequency(targetSpot.frequency, true); + }, 200); // 200ms delay to let mode change settle // Manually set the frequency in the input field immediately var formattedFreq = Math.round(targetSpot.frequency * 1000); // Convert to Hz $('#frequency').val(formattedFreq); @@ -950,7 +1041,12 @@ var DX_WATERFALL_UTILS = { this.pendingNavigationTimer = setTimeout(function() { DX_WATERFALL_UTILS.qsoForm.populateFromSpot(spotInfo, true); self.pendingNavigationTimer = null; + // Clear navigation flag after population completes + self.navigating = false; }, 100); + } else { + // Clear navigation flag immediately if no spot to populate + this.navigating = false; } // If no spot found, form remains cleared (already cleared above) @@ -1057,6 +1153,7 @@ var dxWaterfall = { // ======================================== userEditingFrequency: false, // Track if user is actively editing frequency spotInfoDiv: null, // Reference to the dxWaterfallSpot div + spotTooltipDiv: null, // Reference to the spot tooltip div lastSpotInfoKey: null, // Track last displayed spot to prevent unnecessary re-renders currentContinent: 'NA', // Track current continent filter currentMaxAge: 60, // Track current max age filter @@ -1223,6 +1320,11 @@ var dxWaterfall = { } }, { passive: false }); // passive: false is required for preventDefault to work + // Set up mousemove for spot label tooltips (efficient - only when mouse is over canvas) + this.canvas.addEventListener('mousemove', function(e) { + self.handleSpotLabelHover(e); + }); + // Set page load time for waiting state management this.pageLoadTime = Date.now(); this.operationStartTime = Date.now(); // Initialize operation timer @@ -1755,7 +1857,7 @@ var dxWaterfall = { return filters; } } catch (e) { - console.log('[DX Waterfall] Error parsing mode filters cookie:', e); + // Silently ignore invalid cookie data } } return null; @@ -1769,7 +1871,6 @@ var dxWaterfall = { var savedFontSize = this.loadFontSizeFromCookie(); if (savedFontSize !== null) { this.labelSizeLevel = savedFontSize; - console.log('[DX Waterfall] Loaded font size from cookie:', savedFontSize); } // Load mode filters @@ -1778,7 +1879,202 @@ var dxWaterfall = { this.modeFilters.phone = savedModeFilters.phone; this.modeFilters.cw = savedModeFilters.cw; this.modeFilters.digi = savedModeFilters.digi; - console.log('[DX Waterfall] Loaded mode filters from cookie:', savedModeFilters); + } + }, + + // ======================================== + // SPOT LABEL TOOLTIP HANDLER + // ======================================== + + /** + * Handle mousemove over canvas to show spot label tooltips + * Efficient implementation - only creates tooltip when needed + */ + handleSpotLabelHover: function(e) { + // Don't show tooltips while waiting for data or if no spots + if (this.waitingForData || !this.dxSpots || this.dxSpots.length === 0) { + this.hideSpotTooltip(); + return; + } + + var rect = this.canvas.getBoundingClientRect(); + var mouseX = e.clientX - rect.left; + var mouseY = e.clientY - rect.top; + + // Find if mouse is over any spot label + var hoveredSpot = this.findSpotAtPosition(mouseX, mouseY); + + if (hoveredSpot) { + this.canvas.style.cursor = 'pointer'; // Change cursor to pointer when over spot + this.showSpotTooltip(hoveredSpot, e.clientX, e.clientY); + } else { + this.canvas.style.cursor = 'default'; // Reset cursor when not over spot + this.hideSpotTooltip(); + } + }, + + /** + * Find spot at mouse position (checks both left and right spots + center spot) + */ + findSpotAtPosition: function(x, y) { + var labelHeight = this.getCurrentLabelHeight(); + var tolerance = 2; // Pixels tolerance for easier hovering + + // Check center spot first + var centerSpot = this.getSpotInfo(); + if (centerSpot && centerSpot.callsign) { + var centerX = this.canvas.width / 2; + var waterfallHeight = this.canvas.height - DX_WATERFALL_CONSTANTS.CANVAS.RULER_HEIGHT; + var centerY = waterfallHeight / 2; + + this.ctx.font = this.getCurrentCenterLabelFont(); + var textWidth = this.ctx.measureText(centerSpot.callsign).width; + var padding = 5; // Padding around text + var centerLabelWidth = textWidth + (padding * 2); + var centerLabelHeight = labelHeight + 1; + + var centerLeft = centerX - centerLabelWidth / 2; + var centerRight = centerX + centerLabelWidth / 2; + var centerTop = centerY - centerLabelHeight / 2; + var centerBottom = centerY + centerLabelHeight / 2; + + if (x >= centerLeft - tolerance && x <= centerRight + tolerance && + y >= centerTop - tolerance && y <= centerBottom + tolerance) { + return centerSpot; + } + } + + // Check all visible spots (left and right) + for (var i = 0; i < this.dxSpots.length; i++) { + var spot = this.dxSpots[i]; + if (spot.x !== undefined && spot.y !== undefined && spot.labelWidth !== undefined) { + // spot.x is the CENTER of the label + // spot.y is the CENTER of the text (y + 1 from drawing) + // spot.labelWidth is the full width of the label + + var spotLeft = spot.x - spot.labelWidth / 2; + var spotRight = spot.x + spot.labelWidth / 2; + var spotTop = spot.y - labelHeight / 2; + var spotBottom = spot.y + labelHeight / 2; + + if (x >= spotLeft - tolerance && x <= spotRight + tolerance && + y >= spotTop - tolerance && y <= spotBottom + tolerance) { + // Return a properly formatted spot object (like getSpotInfo does) + return DX_WATERFALL_UTILS.spots.createSpotObject(spot, { + includeSpotter: true, + includeTimestamp: true, + includeMessage: true, + includeWorkStatus: true + }); + } + } + } + + return null; + }, + + /** + * Show tooltip for a spot + */ + showSpotTooltip: function(spot, clientX, clientY) { + // Create tooltip div if it doesn't exist + if (!this.spotTooltipDiv) { + this.spotTooltipDiv = document.createElement('div'); + this.spotTooltipDiv.id = 'dxWaterfallTooltip'; + this.spotTooltipDiv.style.position = 'fixed'; + this.spotTooltipDiv.style.backgroundColor = 'rgba(0, 0, 0, 0.9)'; + this.spotTooltipDiv.style.color = '#FFFFFF'; + this.spotTooltipDiv.style.padding = '5px 10px'; + this.spotTooltipDiv.style.borderRadius = '4px'; + this.spotTooltipDiv.style.fontSize = '11px'; + this.spotTooltipDiv.style.fontFamily = '"Consolas", "Courier New", monospace'; + this.spotTooltipDiv.style.pointerEvents = 'none'; + this.spotTooltipDiv.style.zIndex = '10000'; + this.spotTooltipDiv.style.whiteSpace = 'nowrap'; + document.body.appendChild(this.spotTooltipDiv); + } + + // Build tooltip content with all information + var tooltipParts = []; + + // Spotter name (already cleaned during data load) + if (spot.spotter) { + tooltipParts.push(lang_dxwaterfall_spotted_by + ' ' + spot.spotter); + } + + // Time from when_pretty field (format: "DD/MM/YY HH:MM") + if (spot.when_pretty) { + var parts = spot.when_pretty.split(' '); + if (parts.length === 2) { + // Extract just the time part (HH:MM) and add Z for UTC + tooltipParts.push('@' + parts[1] + 'Z'); + } + } + + // Add worked status indicators + // Check both transformed properties (newContinent, newDxcc, newCallsign) + // and raw properties (worked_continent, worked_dxcc, worked_call) + var statusParts = []; + + // New continent: check newContinent or worked_continent === false + if (spot.newContinent || spot.worked_continent === false) { + statusParts.push(lang_dxwaterfall_new_continent); + } + + // New DXCC: check newDxcc or worked_dxcc === false + if (spot.newDxcc || spot.worked_dxcc === false) { + statusParts.push(lang_dxwaterfall_new_dxcc); + } + + // New callsign: check newCallsign or worked_call === false + if (spot.newCallsign || spot.worked_call === false) { + statusParts.push(lang_dxwaterfall_new_callsign); + } + + if (statusParts.length > 0) { + tooltipParts.push('(' + statusParts.join(') (') + ')'); + } + + this.spotTooltipDiv.textContent = tooltipParts.join(' '); + + // Get canvas boundaries to keep tooltip inside + var canvasRect = this.canvas.getBoundingClientRect(); + + // Calculate tooltip dimensions (need to show it briefly to measure) + this.spotTooltipDiv.style.display = 'block'; + var tooltipWidth = this.spotTooltipDiv.offsetWidth; + var tooltipHeight = this.spotTooltipDiv.offsetHeight; + + // Default position (offset from cursor) + var tooltipLeft = clientX + 15; + var tooltipTop = clientY + 10; + + // Keep tooltip inside canvas horizontally + if (tooltipLeft + tooltipWidth > canvasRect.right) { + tooltipLeft = clientX - tooltipWidth - 15; // Show on left side of cursor + } + if (tooltipLeft < canvasRect.left) { + tooltipLeft = canvasRect.left + 5; // Clamp to left edge + } + + // Keep tooltip inside canvas vertically + if (tooltipTop + tooltipHeight > canvasRect.bottom) { + tooltipTop = clientY - tooltipHeight - 10; // Show above cursor + } + if (tooltipTop < canvasRect.top) { + tooltipTop = canvasRect.top + 5; // Clamp to top edge + } + + this.spotTooltipDiv.style.left = tooltipLeft + 'px'; + this.spotTooltipDiv.style.top = tooltipTop + 'px'; + }, + + /** + * Hide tooltip + */ + hideSpotTooltip: function() { + if (this.spotTooltipDiv) { + this.spotTooltipDiv.style.display = 'none'; } }, @@ -2385,6 +2681,11 @@ var dxWaterfall = { data[i].potaRef = parkRefs.potaRef; data[i].iotaRef = parkRefs.iotaRef; data[i].wwffRef = parkRefs.wwffRef; + + // Clean up spotter callsign (remove -# suffix) + if (data[i].spotter) { + data[i].spotter = data[i].spotter.replace(/-#$/, ''); + } } self.dxSpots = data; @@ -3154,6 +3455,9 @@ var dxWaterfall = { continue; } + // Store reference to original spot for updating coordinates later + spotData.originalSpot = spot; + if (freqOffset < 0) { leftSpots.push(spotData); } else if (freqOffset > 0) { @@ -3243,6 +3547,13 @@ var dxWaterfall = { ctx.textBaseline = 'middle'; ctx.fillText(spot.callsign, spot.x, y + 1); + // Store coordinates and dimensions in original spot for tooltip hover detection + if (spot.originalSpot) { + spot.originalSpot.x = spot.x; + spot.originalSpot.y = y + 1; + spot.originalSpot.labelWidth = spot.labelWidth; + } + // Draw underline if LoTW user if (spot.lotw_user) { var textWidth = spot.labelWidth - (padding * 2); @@ -3718,7 +4029,8 @@ var dxWaterfall = { } // Return the currently selected spot - return relevantSpots[this.currentSpotIndex]; + var selectedSpot = relevantSpots[this.currentSpotIndex]; + return selectedSpot; }, // Format spot date/time from "DD/MM/YY HH:MM" to "YY-MM-DD HH:MM UTC" @@ -3750,6 +4062,11 @@ var dxWaterfall = { return; } + // Block updates during navigation to prevent interference + if (DX_WATERFALL_UTILS.navigation.navigating) { + return; + } + // If waiting for data, frequency, or radio is tuning, show nbsp to maintain layout height if (this.waitingForData || this.waitingForCATFrequency || this.frequencyChanging || this.catTuning) { if (this.spotInfoDiv.innerHTML !== ' ') { @@ -4380,8 +4697,25 @@ var dxWaterfall = { this.updateBandFromFrequency(targetSpot.frequency); } + // CRITICAL: Set mode FIRST before calling setFrequency + var radioMode = DX_WATERFALL_UTILS.navigation.determineRadioMode(targetSpot); + + // Set CAT debounce lock early to block incoming CAT updates during navigation + if (typeof setFrequency.catDebounceLock !== 'undefined') { + setFrequency.catDebounceLock = 1; + } + + setMode(radioMode, true); // skipTrigger = true to prevent change event + + // Now set frequency - it will read the correct mode from the dropdown setFrequency(targetSpot.frequency, true); // Pass true to indicate waterfall-initiated change + // Send frequency command again after short delay to correct any drift from mode change + // (radio control lib bug: mode change can cause slight frequency shift) + setTimeout(function() { + setFrequency(targetSpot.frequency, true); + }, 200); // 200ms delay to let mode change settle + // Get the complete spot data from the stored reference // targetSpot from smartHunterSpots has a reference to the original spot var completeSpot = targetSpot._originalSpot || null; @@ -4873,6 +5207,7 @@ function setMode(mode, skipTrigger) { // @param frequencyInKHz - Target frequency in kHz // @param fromWaterfall - True if this change was initiated by waterfall (clicking spot/tune icon), false for external calls function setFrequency(frequencyInKHz, fromWaterfall) { + if (!frequencyInKHz) { return; } @@ -4882,24 +5217,29 @@ function setFrequency(frequencyInKHz, fromWaterfall) { fromWaterfall = false; } + // Hide spot tooltip when changing frequency + if (typeof dxWaterfall !== 'undefined' && dxWaterfall.hideSpotTooltip) { + dxWaterfall.hideSpotTooltip(); + } + // Check if already changing frequency and block rapid commands if (typeof dxWaterfall !== 'undefined' && dxWaterfall.frequencyChanging) { return; } // Add simple debounce to prevent rapid-fire calls + // But allow waterfall-initiated calls (spot clicks) to bypass debounce var now = Date.now(); if (typeof setFrequency.lastCall === 'undefined') { setFrequency.lastCall = 0; } - if (now - setFrequency.lastCall < 500) { // 500ms debounce - prevent rapid navigation + if (!fromWaterfall && now - setFrequency.lastCall < 500) { // Only debounce external calls return; } setFrequency.lastCall = now; var formattedFreq = Math.round(frequencyInKHz * 1000); // Convert to Hz and round to integer var modeVal = $('#mode').val(); - var mode = modeVal ? modeVal.toLowerCase() : ''; // Check if CAT is enabled and configured var catAvailable = (typeof dxwaterfall_allowcat !== 'undefined' && dxwaterfall_allowcat !== null && @@ -4910,38 +5250,49 @@ function setFrequency(frequencyInKHz, fromWaterfall) { // Set the radio frequency via CAT command // Use formattedFreq (in Hz) for consistency - rounded to integer for radio compatibility - // Map current mode to CAT mode parameter - var catMode = 'phone'; // Default fallback - if (mode) { - var modeUpper = mode.toUpperCase(); + // Map UI mode to CAT mode parameter using determineRadioMode logic + // CAT expects specific modes like: CW, RTTY, PSK, USB, LSB, AM, FM + var catMode = 'usb'; // Default fallback - // CW modes - if (modeUpper === 'CW' || modeUpper === 'A1A') { - catMode = 'cw'; - } - // Digital modes - else if (modeUpper === 'FT8' || modeUpper === 'FT4' || modeUpper === 'RTTY' || - modeUpper === 'PSK31' || modeUpper === 'JT65' || modeUpper === 'JT9' || - modeUpper === 'WSPR' || modeUpper === 'MFSK' || modeUpper === 'OLIVIA' || - modeUpper === 'CONTESTIA' || modeUpper === 'MT63' || modeUpper === 'SSTV' || - modeUpper === 'PACKET' || modeUpper === 'FSK441' || modeUpper === 'ISCAT' || - modeUpper === 'MSK144' || modeUpper === 'Q65' || modeUpper === 'QRA64' || - modeUpper === 'FST4' || modeUpper === 'FST4W' || modeUpper === 'JS8' || - modeUpper === 'VARA' || modeUpper === 'VARAC' || modeUpper === 'DMR' || - modeUpper === 'DSTAR' || modeUpper === 'C4FM' || modeUpper === 'FREEDV' || - modeUpper === 'M17' || modeUpper === 'DYNAMIC' || - modeUpper.indexOf('PSK') !== -1 || modeUpper.indexOf('HELL') !== -1 || - modeUpper.indexOf('THOR') !== -1 || modeUpper.indexOf('THROB') !== -1 || - modeUpper.indexOf('DOM') !== -1 || modeUpper.indexOf('MFSK') !== -1) { - catMode = 'digi'; - } - // Phone modes (SSB, AM, FM, etc.) - default to 'phone' - else { - catMode = 'phone'; - } + if (modeVal) { + var modeUpper = modeVal.toUpperCase(); + + // Use the same logic as determineRadioMode for consistency + // CW modes + if (modeUpper === 'CW' || modeUpper === 'A1A') { + catMode = 'cw'; } + // Digital modes that should be sent as RTTY + else if (modeUpper === 'RTTY') { + catMode = 'rtty'; + } + // PSK modes - transceiver expects 'psk' + else if (modeUpper.indexOf('PSK') !== -1) { + catMode = 'psk'; + } + // AM mode + else if (modeUpper === 'AM') { + catMode = 'am'; + } + // FM mode + else if (modeUpper === 'FM') { + catMode = 'fm'; + } + // USB/LSB - pass through directly (already in correct format from determineRadioMode) + else if (modeUpper === 'USB') { + catMode = 'usb'; + } + else if (modeUpper === 'LSB') { + catMode = 'lsb'; + } + // Any other mode - default to frequency-based USB/LSB + else { + var ssbMode = DX_WATERFALL_UTILS.modes.determineSSBMode(frequencyInKHz); + catMode = ssbMode.toLowerCase(); + } + } - var catUrl = dxwaterfall_caturl + '/' + formattedFreq + '/' + catMode; + var catUrl = dxwaterfall_caturl + '/' + formattedFreq + '/' + catMode; // Set frequency changing flag and show visual feedback if (typeof dxWaterfall !== 'undefined') { @@ -5299,7 +5650,44 @@ $(document).ready(function() { var x = e.clientX - rect.left; var y = e.clientY - rect.top; - // Calculate frequency at clicked position + // First check if user clicked on a spot label - if so, tune to that exact spot frequency + var clickedSpot = dxWaterfall.findSpotAtPosition(x, y); + if (clickedSpot && clickedSpot.frequency) { + // User clicked on a spot label - tune to exact spot frequency and set mode + + // Set navigation flag to block refresh interference during spot click + DX_WATERFALL_UTILS.navigation.navigating = true; + + // Set CAT debounce lock BEFORE mode/frequency changes to block incoming CAT updates + if (typeof window.dxwaterfall_cat_debounce_lock !== 'undefined') { + window.dxwaterfall_cat_debounce_lock = 1; + } + + if (dxWaterfall.isFrequencyFarOutsideBand(clickedSpot.frequency)) { + dxWaterfall.updateBandFromFrequency(clickedSpot.frequency); + } + + // CRITICAL: Set mode FIRST (without triggering change event), THEN set frequency + // This ensures setFrequency() reads the correct mode from the dropdown + var radioMode = DX_WATERFALL_UTILS.navigation.determineRadioMode(clickedSpot); + setMode(radioMode, true); // skipTrigger = true to prevent change event + + // Now set frequency - it will read the correct mode from the dropdown + setFrequency(clickedSpot.frequency, true); + + // Send frequency command again after short delay to correct any drift from mode change + // (radio control lib bug: mode change can cause slight frequency shift) + setTimeout(function() { + setFrequency(clickedSpot.frequency, true); + }, 200); // 200ms delay to let mode change settle + + // Populate QSO form - flag will be cleared when population completes + DX_WATERFALL_UTILS.qsoForm.populateFromSpot(clickedSpot, true); + + return; // Don't calculate frequency from position + } + + // No spot label clicked - calculate frequency at clicked position var centerX = canvas.width / 2; var middleFreq = dxWaterfall.getCachedMiddleFreq(); // Use cached frequency var pixelsPerKHz = dxWaterfall.getPixelsPerKHz(); // Mode-aware scaling From d28780e754d841b3c65adaf59da65d5c51c2dc0c Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Sat, 25 Oct 2025 00:04:50 +0200 Subject: [PATCH 16/56] Changed filters order to match typical band preference --- assets/js/dxwaterfall.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/assets/js/dxwaterfall.js b/assets/js/dxwaterfall.js index 6f4758ef6..c5d487c7a 100644 --- a/assets/js/dxwaterfall.js +++ b/assets/js/dxwaterfall.js @@ -4307,13 +4307,6 @@ var dxWaterfall = { zoomHTML += ''; zoomHTML += '' + lang_dxwaterfall_modes_label + ''; - // Phone filter - Green - var phoneClass = activeFilters.phone ? 'mode-filter-phone active' : 'mode-filter-phone'; - var phoneStyle = activeFilters.phone ? 'color: #00FF00; font-weight: bold;' : 'color: #888888;'; - if (this.pendingModeFilters) phoneStyle += ' ' + blinkStyle; - phoneStyle += ' cursor: pointer;'; - zoomHTML += '' + lang_dxwaterfall_phone + ''; - // CW filter - Orange var cwClass = activeFilters.cw ? 'mode-filter-cw active' : 'mode-filter-cw'; var cwStyle = activeFilters.cw ? 'color: #FFA500; font-weight: bold;' : 'color: #888888;'; @@ -4328,6 +4321,13 @@ var dxWaterfall = { digiStyle += ' cursor: pointer;'; zoomHTML += '' + lang_dxwaterfall_digi + ''; + // Phone filter - Green + var phoneClass = activeFilters.phone ? 'mode-filter-phone active' : 'mode-filter-phone'; + var phoneStyle = activeFilters.phone ? 'color: #00FF00; font-weight: bold;' : 'color: #888888;'; + if (this.pendingModeFilters) phoneStyle += ' ' + blinkStyle; + phoneStyle += ' cursor: pointer;'; + zoomHTML += '' + lang_dxwaterfall_phone + ''; + zoomHTML += '
'; // Center section: spot count information From 947e35fa7fa7099f22782dbfa524780b1a2c122d Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Sat, 25 Oct 2025 15:45:46 +0200 Subject: [PATCH 17/56] Websockets support --- application/controllers/Radio.php | 103 ++++ application/views/interface_assets/footer.php | 509 +++++++++++++----- application/views/qso/index.php | 3 +- assets/js/dxwaterfall.js | 495 ++++++++++++----- assets/js/radiohelpers.js | 32 +- assets/js/sections/qrg_handler.js | 31 +- assets/js/sections/qso.js | 62 ++- 7 files changed, 919 insertions(+), 316 deletions(-) diff --git a/application/controllers/Radio.php b/application/controllers/Radio.php index 6963c00c8..2a5b12c1b 100644 --- a/application/controllers/Radio.php +++ b/application/controllers/Radio.php @@ -338,4 +338,107 @@ class Radio extends CI_Controller { $this->user_options_model->del_option('cat', 'default_radio'); $this->session->unset_userdata('radio'); } + + function set_radio_frequency() { + // Get parameters from POST + $radio_id = $this->security->xss_clean($this->input->post('radio_id')); + $frequency = $this->security->xss_clean($this->input->post('frequency')); + $mode = $this->security->xss_clean($this->input->post('mode')); + + // Check Auth + $this->load->model('user_model'); + if (!$this->user_model->authorize(3)) { + header('Content-Type: application/json'); + echo json_encode(array('error' => 'not_authorized'), JSON_PRETTY_PRINT); + return; + } + + // Validate frequency parameter + if (empty($frequency)) { + header('Content-Type: application/json'); + echo json_encode(array('error' => 'missing_frequency'), JSON_PRETTY_PRINT); + return; + } + + // If radio_id is empty or null, get the default radio for the user + if (empty($radio_id)) { + $default_radio = $this->user_options_model->get_options('cat', array('option_name' => 'default_radio'))->row()->option_value ?? NULL; + if ($default_radio) { + $radio_id = $default_radio; + } else { + header('Content-Type: application/json'); + echo json_encode(array('error' => 'no_radio_configured'), JSON_PRETTY_PRINT); + return; + } + } + + // Check if radio_id is 'ws' (WebSocket) - use default localhost URL + if ($radio_id === 'ws') { + $cat_url = 'http://127.0.0.1:54321'; + } else { + // Load CAT model and get radio details from database + $this->load->model('cat'); + $radio = $this->cat->radio_status($radio_id); + + if ($radio->num_rows() == 0) { + header('Content-Type: application/json'); + echo json_encode(array('error' => 'radio_not_found'), JSON_PRETTY_PRINT); + return; + } + + $radio_data = $radio->row(); + $cat_url = $radio_data->cat_url; + + if (empty($cat_url)) { + header('Content-Type: application/json'); + echo json_encode(array('error' => 'no_cat_url'), JSON_PRETTY_PRINT); + return; + } + } + + // Format: {cat_url}/{frequency}/{mode} + // If mode is not provided, default to 'usb' + $cat_mode = !empty($mode) ? strtolower($mode) : 'usb'; + $url = $cat_url . '/' . $frequency . '/' . $cat_mode; + + // Initialize cURL for GET request + $ch = curl_init(); + curl_setopt($ch, CURLOPT_URL, $url); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); + curl_setopt($ch, CURLOPT_TIMEOUT, 5); + + // Execute request (gateway requires two requests due to known issue of changing mod see https://github.com/wavelog/WaveLogGate/issues/82) + // First request + $response = curl_exec($ch); + $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); + $curl_error = curl_error($ch); + + // Wait 100ms before second request + usleep(100000); // 100ms = 100,000 microseconds + + // Second request (after first completes) - gateway workaround + curl_setopt($ch, CURLOPT_URL, $url); + $response = curl_exec($ch); + $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); + $curl_error = curl_error($ch); + curl_close($ch); + + // Return response + // Note: Gateway returns empty response with HTTP 200 on success + header('Content-Type: application/json'); + if ($response === false || ($http_code != 200 && $http_code != 0)) { + echo json_encode(array( + 'success' => false, + 'error' => $curl_error ?: 'request_failed', + 'http_code' => $http_code + ), JSON_PRETTY_PRINT); + } else { + echo json_encode(array( + 'success' => true, + 'frequency' => $frequency, + 'mode' => $cat_mode, + 'radio_id' => $radio_id + ), JSON_PRETTY_PRINT); + } + } } diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index 2895cb3b8..c26c8bb20 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -69,6 +69,7 @@ var lang_notes_duplication_disabled_short = ""; var lang_notes_not_found = ""; + session->userdata('user_dxwaterfall_enable') == 'Y') { ?> /* DX Waterfall Language */ @@ -119,6 +120,7 @@ var lang_dxwaterfall_label_size_large = ""; var lang_dxwaterfall_label_size_xlarge = ""; var lang_dxwaterfall_spotted_by = ""; + @@ -1418,46 +1420,320 @@ mymap.on('mousemove', onQsoMapMove); diff --git a/application/views/qso/index.php b/application/views/qso/index.php index 1e17fd2e3..4752d363a 100644 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -45,8 +45,6 @@ switch ($date_format) { -
-
-
-
-
- -
- -
-
- -
-
- - -
- +load->view('components/dxwaterfall'); ?>
diff --git a/assets/css/dxwaterfall.css b/assets/css/dxwaterfall.css new file mode 100644 index 000000000..3c50a8ee5 --- /dev/null +++ b/assets/css/dxwaterfall.css @@ -0,0 +1,191 @@ + #dxWaterfall { + width: 100%; + height: 200px; + display: block; + border-left: 1px solid #000000; + border-right: 1px solid #000000; + } + #dxWaterfallSpot { + width: 100%; + background-color: #000000; + color: #FFFFFF; + padding: 5px 8px; + font-family: "Consolas", "Courier New", monospace; + font-size: 11px; + border-left: 1px solid #000000; + border-right: 1px solid #000000; + border-top: 1px solid #000000; + min-height: 20px; + line-height: 1.4; + word-wrap: break-word; + overflow-wrap: break-word; + position: relative; + border-radius: 5px 5px 5px 5px; + transition: border-radius 0.3s; + } + #dxWaterfallSpot.active { + border-radius: 5px 5px 0 0; + border-bottom: none; + } + #dxWaterfallSpotHeader { + display: flex; + align-items: center; + width: 100%; + position: relative; + cursor: pointer; + } + #dxWaterfallSpotHeader.hidden { + display: none; + } + #dxWaterfallSpotContent { + display: none; + width: 100%; + padding-right: 30px; + } + #dxWaterfallSpotContent.active { + display: block; + } + #dxWaterfallSpotLeft { + display: flex; + align-items: center; + flex: 1; + } + #dxWaterfallPowerOnIcon { + position: absolute; + top: 50%; + right: 0px; + transform: translateY(-50%); + cursor: pointer; + color: #FF0000; + flex-shrink: 0; + transition: color 0.3s; + } + #dxWaterfallPowerOnIcon:hover { + color: #DD0000; + } + #dxWaterfallMessage { + text-align: left; + } + #dxWaterfallPowerOffIcon { + position: absolute; + top: 50%; + right: 5px; + transform: translateY(-50%); + cursor: pointer; + color: #00FF00; + flex-shrink: 0; + transition: color 0.2s; + display: none; + } + #dxWaterfallPowerOffIcon.active { + display: block; + } + #dxWaterfallPowerOffIcon:hover { + color: #00DD00; + } + #dxWaterfallMenu { + width: 100%; + background-color: #000000; + color: #FFFFFF; + padding: 5px 8px; + font-family: "Consolas", "Courier New", monospace; + font-size: 11px; + border-left: 1px solid #000000; + border-right: 1px solid #000000; + border-bottom: 1px solid #000000; + border-radius: 0 0 5px 5px; + min-height: 20px; + display: flex; + flex-wrap: wrap; + align-items: center; + gap: 10px; + } + #dxWaterfallMenu .zoom-in-icon, + #dxWaterfallMenu .zoom-out-icon, + #dxWaterfallMenu .zoom-reset-icon, + #dxWaterfallMenu .prev-spot-icon, + #dxWaterfallMenu .next-spot-icon, + #dxWaterfallMenu .smart-hunter-icon, + #dxWaterfallMenu .continent-cycle-icon, + #dxWaterfallMenu .mode-filter-icon, + #dxWaterfallMenu .label-size-icon { + cursor: pointer; + color: #FFFFFF; + margin: 0 2px; + font-size: 12px; + transition: color 0.2s; + } + #dxWaterfallMenu .zoom-in-icon:hover:not(.disabled), + #dxWaterfallMenu .zoom-out-icon:hover:not(.disabled), + #dxWaterfallMenu .zoom-reset-icon:hover:not(.disabled), + #dxWaterfallMenu .prev-spot-icon:hover:not(.disabled), + #dxWaterfallMenu .next-spot-icon:hover:not(.disabled), + #dxWaterfallMenu .smart-hunter-icon:hover:not(.disabled), + #dxWaterfallMenu .smart-hunter-text:hover:not(.disabled), + #dxWaterfallMenu .continent-cycle-icon:hover:not(.disabled), + #dxWaterfallMenu .continent-cycle-text:hover:not(.disabled), + #dxWaterfallMenu .mode-filter-icon:hover:not(.disabled), + #dxWaterfallMenu .label-size-icon:hover { + color: #AAAAAA; + } + #dxWaterfallMenu .smart-hunter-text, + #dxWaterfallMenu .continent-cycle-text { + cursor: pointer; + color: #FFFFFF; + margin-left: 5px; + font-size: 11px; + transition: color 0.2s; + user-select: none; + } + #dxWaterfallMenu .mode-filter-phone, + #dxWaterfallMenu .mode-filter-cw, + #dxWaterfallMenu .mode-filter-digi { + user-select: none; + } + #dxWaterfallMenu .mode-filter-phone:hover:not(.disabled), + #dxWaterfallMenu .mode-filter-cw:hover:not(.disabled), + #dxWaterfallMenu .mode-filter-digi:hover:not(.disabled) { + opacity: 0.7; + } + @keyframes blink { + 0%, 49% { opacity: 1; } + 50%, 100% { opacity: 0.3; } + } + #dxWaterfallSpot .flag-emoji { + font-family: "Twemoji Country Flags", "Helvetica", "Comic Sans", sans-serif !important; + font-style: normal !important; + font-variant: normal !important; + } + #dxWaterfallSpot .copy-icon, + #dxWaterfallSpot .tune-icon, + #dxWaterfallSpot .cycle-spot-icon { + cursor: pointer; + color: #FFFFFF; + margin-right: 5px; + font-size: 12px; + transition: color 0.2s; + } + #dxWaterfallSpot .copy-icon:hover, + #dxWaterfallSpot .tune-icon:hover, + #dxWaterfallSpot .cycle-spot-icon:hover { + color: #AAAAAA; + } + #dxWaterfallSpot .new-continent-icon { + color: #FFD700; /* Gold */ + margin-left: 5px; + font-size: 12px; + } + #dxWaterfallSpot .new-dxcc-icon { + color: #C0C0C0; /* Silver */ + margin-left: 5px; + font-size: 12px; + } + #dxWaterfallSpot .new-callsign-icon { + color: #CD7F32; /* Bronze */ + margin-left: 5px; + font-size: 12px; + } + + .dxwaterfallpane{ + margin-bottom: 2px; + } \ No newline at end of file From 38704611a4a79629b4b1498fa3dc05613f023b36 Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Sat, 25 Oct 2025 18:18:29 +0200 Subject: [PATCH 22/56] Refactoring - prepare to be included at other sites --- application/views/components/dxwaterfall.php | 117 ++++++++++++++---- application/views/interface_assets/footer.php | 77 +++--------- application/views/qso/index.php | 29 +++++ assets/js/dxwaterfall.js | 77 ++++++++++-- 4 files changed, 202 insertions(+), 98 deletions(-) diff --git a/application/views/components/dxwaterfall.php b/application/views/components/dxwaterfall.php index 744ceb4a1..9de2f8b26 100644 --- a/application/views/components/dxwaterfall.php +++ b/application/views/components/dxwaterfall.php @@ -1,30 +1,95 @@ - + session->userdata('user_dxwaterfall_enable') == 'Y' && isset($manual_mode) && $manual_mode == 0) { ?> - + + + + + + + + +
+
+
+
+
+ +
+ +
+
+ +
+
+ + +
-
-
-
-
-
- -
- -
-
- -
-
- - -
+ diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index 615c289a4..51738ed8d 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -67,60 +67,6 @@ var lang_notes_duplicate_confirmation = ""; var lang_notes_duplication_disabled_short = ""; var lang_notes_not_found = ""; - - session->userdata('user_dxwaterfall_enable') == 'Y') { ?> - /* - DX Waterfall Language - */ - // Detect platform for keyboard shortcuts (Cmd on Mac, Ctrl on Windows/Linux) - var isMac = navigator.userAgent.toUpperCase().indexOf('MAC') >= 0; - var modKey = isMac ? 'Cmd' : 'Ctrl'; - - var lang_dxwaterfall_tune_to_spot = "" + " [" + modKey + "+Shift+Space]"; - var lang_dxwaterfall_cycle_nearby_spots = ""; - var lang_dxwaterfall_spots = ""; - var lang_dxwaterfall_new_continent = ""; - var lang_dxwaterfall_new_dxcc = ""; - var lang_dxwaterfall_new_callsign = ""; - var lang_dxwaterfall_previous_spot = "" + " [" + modKey + "+Left] | [" + modKey + "+Down]"; - var lang_dxwaterfall_no_spots_lower = ""; - var lang_dxwaterfall_next_spot = "" + " [" + modKey + "+Right] | [" + modKey + "+Up]"; - var lang_dxwaterfall_no_spots_higher = ""; - var lang_dxwaterfall_no_spots_available = ""; - var lang_dxwaterfall_cycle_unworked = ""; - var lang_dxwaterfall_dx_hunter = ""; - var lang_dxwaterfall_no_unworked = ""; - var lang_dxwaterfall_fetching_spots = ""; - var lang_dxwaterfall_click_to_cycle = ""; - var lang_dxwaterfall_change_continent = ""; - var lang_dxwaterfall_filter_by_mode = ""; - var lang_dxwaterfall_toggle_phone = ""; - var lang_dxwaterfall_phone = ""; - var lang_dxwaterfall_toggle_cw = ""; - var lang_dxwaterfall_cw = ""; - var lang_dxwaterfall_toggle_digi = ""; - var lang_dxwaterfall_digi = ""; - var lang_dxwaterfall_zoom_out = "" + " [" + modKey + "+-]"; - var lang_dxwaterfall_reset_zoom = ""; - var lang_dxwaterfall_zoom_in = "" + " [" + modKey + "++]"; - var lang_dxwaterfall_waiting_data = ""; - var lang_dxwaterfall_comment = ""; - var lang_dxwaterfall_modes_label = ""; - var lang_dxwaterfall_out_of_bandplan = ""; - var lang_dxwaterfall_changing_frequency = ""; - var lang_dxwaterfall_invalid = ""; - var lang_dxwaterfall_turn_on = ""; - var lang_dxwaterfall_turn_off = ""; - var lang_dxwaterfall_warming_up = ""; - var lang_dxwaterfall_label_size_cycle = ""; - var lang_dxwaterfall_label_size_xsmall = ""; - var lang_dxwaterfall_label_size_small = ""; - var lang_dxwaterfall_label_size_medium = ""; - var lang_dxwaterfall_label_size_large = ""; - var lang_dxwaterfall_label_size_xlarge = ""; - var lang_dxwaterfall_spotted_by = ""; - - @@ -1148,9 +1094,6 @@ $($('#callsign')).on('keypress',function(e) { uri->segment(1) == "qso") { ?> -session->userdata('user_dxwaterfall_enable') == 'Y') { ?> - - session->userdata('isWinkeyEnabled')) { ?> @@ -1710,8 +1653,19 @@ mymap.on('mousemove', onQsoMapMove); } text = text + ' '; } - text = text + 'TX: ' + data.frequency_formatted; - } if(data.mode != null) { + + // Check if we have RX frequency (split operation) + if(data.frequency_rx != null && data.frequency_rx != 0) { + // Split operation: show TX and RX separately + text = text + 'TX: ' + data.frequency_formatted; + data.frequency_rx_formatted = format_frequency(data.frequency_rx); + text = text + separator + 'RX: ' + data.frequency_rx_formatted; + } else { + // Simplex operation: show TX/RX combined + text = text + 'TX/RX: ' + data.frequency_formatted; + } + } + if(data.mode != null) { text = text + separator + data.mode; } if(data.power != null && data.power != 0) { @@ -1725,10 +1679,7 @@ mymap.on('mousemove', onQsoMapMove); complementary_info.push(data.prop_mode); } } - if(data.frequency_rx != null && data.frequency_rx != 0) { - data.frequency_rx_formatted=format_frequency(data.frequency_rx); - complementary_info.push('RX: ' + data.frequency_rx_formatted); - } + // Note: RX frequency is now displayed inline, not in complementary_info if( complementary_info.length > 0) { text = text + separator + '(' + complementary_info.join(separator) + ')'; } diff --git a/application/views/qso/index.php b/application/views/qso/index.php index f10a68b78..2a5cc596b 100644 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -43,6 +43,35 @@ switch ($date_format) { load->view('components/dxwaterfall'); ?> + +
diff --git a/assets/js/dxwaterfall.js b/assets/js/dxwaterfall.js index 2ed01045d..f2cf01734 100644 --- a/assets/js/dxwaterfall.js +++ b/assets/js/dxwaterfall.js @@ -469,6 +469,58 @@ var DX_WATERFALL_UTILS = { } }, + // Field mapping utilities - allows pages to remap field IDs + fieldMapping: { + /** + * Get the actual field ID for a logical field name + * @param {string} fieldName - Logical field name (e.g., 'callsign', 'freq_calculated') + * @param {boolean} isOptional - Whether this is an optional field + * @returns {string} Actual DOM element ID + */ + getFieldId: function(fieldName, isOptional) { + isOptional = isOptional || false; + + // Check if page has defined a field mapping + if (window.DX_WATERFALL_FIELD_MAP) { + var category = isOptional ? 'optional' : 'required'; + if (window.DX_WATERFALL_FIELD_MAP[category] && + window.DX_WATERFALL_FIELD_MAP[category][fieldName]) { + return window.DX_WATERFALL_FIELD_MAP[category][fieldName]; + } + } + + // Fallback to default field name (for backward compatibility) + return fieldName; + }, + + /** + * Get jQuery element for a field by logical name + * @param {string} fieldName - Logical field name + * @param {boolean} isOptional - Whether this is an optional field + * @returns {jQuery} jQuery element or empty jQuery object if not found + */ + getField: function(fieldName, isOptional) { + var fieldId = this.getFieldId(fieldName, isOptional); + return $('#' + fieldId); + }, + + /** + * Check if an optional field exists on the page + * @param {string} fieldName - Logical field name + * @returns {boolean} True if field exists in DOM + */ + hasOptionalField: function(fieldName) { + // Use custom checker if provided + if (window.DX_WATERFALL_HAS_FIELD && typeof window.DX_WATERFALL_HAS_FIELD === 'function') { + return window.DX_WATERFALL_HAS_FIELD(fieldName); + } + + // Fallback to checking DOM + var fieldId = this.getFieldId(fieldName, true); + return document.getElementById(fieldId) !== null; + } + }, + // Mode classification utilities modes: { isCw: function(mode) { @@ -1244,11 +1296,6 @@ var DX_WATERFALL_UTILS = { }, }; -// Initialize DOM cache -$(document).ready(function() { - DX_WATERFALL_UTILS.dom.init(); -}); - // ======================================== // MAIN DX WATERFALL OBJECT // ======================================== @@ -5697,9 +5744,16 @@ function setFrequency(frequencyInKHz, fromWaterfall) { } } -$(document).ready(function() { - // Function to try initializing the canvas with retries - function tryInitCanvas() { +// Wait for jQuery to be available before initializing +(function waitForJQuery() { + if (typeof jQuery !== 'undefined') { + // jQuery is loaded, proceed with initialization + $(document).ready(function() { + // Initialize DOM cache + DX_WATERFALL_UTILS.dom.init(); + + // Function to try initializing the canvas with retries + function tryInitCanvas() { if (document.getElementById('dxWaterfall')) { // Canvas found, but DON'T auto-initialize // Wait for user to click the power button @@ -6169,6 +6223,11 @@ $(document).ready(function() { $('#dxWaterfallCanvasContainer').hide(); $('#dxWaterfallMenuContainer').hide(); }); -}); + }); // End of $(document).ready() + } else { + // jQuery not loaded yet, try again in 50ms + setTimeout(waitForJQuery, 50); + } +})(); // End of waitForJQuery IIFE From de10443d684d351cf34b2d49f32eb796adb1a547 Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Sat, 25 Oct 2025 18:53:56 +0200 Subject: [PATCH 23/56] Split operation --- application/views/interface_assets/footer.php | 12 +- application/views/qso/index.php | 1 + assets/js/dxwaterfall.js | 173 ++++++++++++++++-- 3 files changed, 166 insertions(+), 20 deletions(-) diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index 51738ed8d..5c714f998 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -1608,6 +1608,16 @@ mymap.on('mousemove', onQsoMapMove); cat2UI($frequencyRx,data.frequency_rx,false,true,function(d){$bandRx.val(frequencyToBand(d))}); + + // If frequency_rx is not provided by radio, clear the field + if (!data.frequency_rx || data.frequency_rx == 0 || data.frequency_rx == null) { + if ($frequencyRx.val() != '' && $frequencyRx.val() != '0') { + $frequencyRx.val(''); + $frequencyRx.removeData('catValue'); // Clear cache so cat2UI can update again + $bandRx.val(''); + } + } + cat2UI($mode,catmode(data.mode),false,false,function(d){setRst($mode.val())}); cat2UI($('#sat_name'),data.satname,false,false); cat2UI($('#sat_mode'),data.satmode,false,false); @@ -1653,7 +1663,7 @@ mymap.on('mousemove', onQsoMapMove); } text = text + ' '; } - + // Check if we have RX frequency (split operation) if(data.frequency_rx != null && data.frequency_rx != 0) { // Split operation: show TX and RX separately diff --git a/application/views/qso/index.php b/application/views/qso/index.php index 2a5cc596b..2ee08c8a8 100644 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -61,6 +61,7 @@ if (typeof window.DX_WATERFALL_FIELD_MAP === 'undefined') { // OPTIONAL FIELDS - These are used if present, but won't cause errors if missing optional: { + frequency_rx: 'frequency_rx', // RX frequency field (for split operation) sota_ref: 'sota_ref', // SOTA reference field (Summits on the Air) pota_ref: 'pota_ref', // POTA reference field (Parks on the Air) iota_ref: 'iota_ref', // IOTA reference field (Islands on the Air) diff --git a/assets/js/dxwaterfall.js b/assets/js/dxwaterfall.js index f2cf01734..e519a9871 100644 --- a/assets/js/dxwaterfall.js +++ b/assets/js/dxwaterfall.js @@ -120,7 +120,10 @@ var DX_WATERFALL_CONSTANTS = { // Center marker and bandwidth CENTER_MARKER: '#FF0000', + CENTER_MARKER_RX: '#00FF00', // Green for RX in split operation + CENTER_MARKER_TX: '#FF0000', // Red for TX in split operation RED: '#FF0000', + GREEN: '#00FF00', BANDWIDTH_INDICATOR: 'rgba(255, 255, 0, 0.3)', // Messages and text @@ -1382,6 +1385,15 @@ var dxWaterfall = { programmaticModeChange: false, // Flag to prevent fetching spots when mode is changed by waterfall userChangedBand: false, // Flag to prevent auto band update when user manually changed band initializationComplete: false, // Flag to track if initial setup is done + lastPopulatedSpot: null, // Track the last spot that was used to populate the form + + // Display configuration - centralized mapping for simplex/split operation + displayConfig: { + isSplit: false, + centerFrequency: null, + markers: [], + showBandwidthIndicator: true + }, // ======================================== // ZOOM AND NAVIGATION STATE @@ -1765,7 +1777,59 @@ var dxWaterfall = { // Convert to kHz using utility function this.cache.middleFreq = DX_WATERFALL_UTILS.frequency.convertToKhz(currentInput, currentUnit); } - return this.cache.middleFreq; + + // Update split operation state and get display configuration + this.updateSplitOperationState(); + + return this.displayConfig.centerFrequency; + }, + + // Update split operation state and configure display parameters + updateSplitOperationState: function() { + // Check if frequency_rx field exists and has a value + var frequencyRxValue = null; + if (DX_WATERFALL_UTILS.fieldMapping.hasOptionalField('frequency_rx')) { + var $frequencyRx = DX_WATERFALL_UTILS.fieldMapping.getField('frequency_rx', true); + frequencyRxValue = $frequencyRx.val(); + } + + if (frequencyRxValue && frequencyRxValue != '' && parseFloat(frequencyRxValue) > 0) { + // SPLIT OPERATION MODE + var rxFreq = parseFloat(frequencyRxValue) / 1000; // Convert Hz to kHz + var txFreq = this.cache.middleFreq; // TX is from main frequency field + + this.displayConfig = { + isSplit: true, + centerFrequency: rxFreq, // Waterfall centered on RX + markers: [ + { + frequency: rxFreq, + color: DX_WATERFALL_CONSTANTS.COLORS.CENTER_MARKER_RX, + label: 'RX' + }, + { + frequency: txFreq, + color: DX_WATERFALL_CONSTANTS.COLORS.CENTER_MARKER_TX, + label: 'TX' + } + ], + showBandwidthIndicator: false + }; + } else { + // SIMPLEX OPERATION MODE + this.displayConfig = { + isSplit: false, + centerFrequency: this.cache.middleFreq, + markers: [ + { + frequency: this.cache.middleFreq, + color: DX_WATERFALL_CONSTANTS.COLORS.CENTER_MARKER, + label: 'CENTER' + } + ], + showBandwidthIndicator: true + }; + } }, // Force invalidate frequency cache - called when CAT updates frequency @@ -1912,17 +1976,28 @@ var dxWaterfall = { var spotInfo = this.getSpotInfo(); if (spotInfo && spotInfo.callsign) { - // Clear the form first - DX_WATERFALL_UTILS.qsoForm.clearForm(); + // Create a unique identifier for this spot + var spotId = spotInfo.callsign + '_' + spotInfo.frequency + '_' + (spotInfo.mode || ''); + + // Only populate if this is a different spot than the last one we populated + if (this.lastPopulatedSpot !== spotId) { + this.lastPopulatedSpot = spotId; + + // Clear the form first + DX_WATERFALL_UTILS.qsoForm.clearForm(); - // Populate form with spot data after a short delay - setTimeout(function() { - if (typeof DX_WATERFALL_UTILS !== 'undefined' && - typeof DX_WATERFALL_UTILS.qsoForm !== 'undefined' && - typeof DX_WATERFALL_UTILS.qsoForm.populateFromSpot === 'function') { - DX_WATERFALL_UTILS.qsoForm.populateFromSpot(spotInfo, true); - } - }, 100); + // Populate form with spot data after a short delay + setTimeout(function() { + if (typeof DX_WATERFALL_UTILS !== 'undefined' && + typeof DX_WATERFALL_UTILS.qsoForm !== 'undefined' && + typeof DX_WATERFALL_UTILS.qsoForm.populateFromSpot === 'function') { + DX_WATERFALL_UTILS.qsoForm.populateFromSpot(spotInfo, true); + } + }, 100); + } + } else { + // No spot at current frequency, clear the last populated spot tracker + this.lastPopulatedSpot = null; } }, @@ -2990,6 +3065,12 @@ var dxWaterfall = { self.lastFetchBand = band; self.lastFetchContinent = de; self.lastFetchAge = age; + + // Invalidate caches when spots are updated + self.cache.visibleSpots = null; + self.cache.visibleSpotsParams = null; + self.relevantSpots = []; + self.collectAllBandSpots(true); // Update band spot collection for navigation (force after data fetch) self.collectSmartHunterSpots(); // Update smart hunter spots collection @@ -3005,6 +3086,12 @@ var dxWaterfall = { self.dataReceived = true; // Mark as received even if empty self.waitingForData = false; // Stop waiting self.userInitiatedFetch = false; // Clear user-initiated flag + + // Invalidate caches when spots are cleared + self.cache.visibleSpots = null; + self.cache.visibleSpotsParams = null; + self.relevantSpots = []; + self.allBandSpots = []; // Clear band spots self.currentBandSpotIndex = 0; self.smartHunterSpots = []; // Clear smart hunter spots @@ -3023,6 +3110,12 @@ var dxWaterfall = { self.totalSpotsCount = 0; self.dataReceived = true; // Mark as received to stop waiting state self.waitingForData = false; // Stop waiting + + // Invalidate caches on error + self.cache.visibleSpots = null; + self.cache.visibleSpotsParams = null; + self.relevantSpots = []; + self.allBandSpots = []; // Clear band spots self.currentBandSpotIndex = 0; self.smartHunterSpots = []; // Clear smart hunter spots @@ -3370,6 +3463,11 @@ var dxWaterfall = { // Draw receiving bandwidth indicator drawReceivingBandwidth: function() { + // Skip bandwidth indicator if disabled in display config + if (!this.displayConfig.showBandwidthIndicator) { + return; + } + var centerX = this.canvas.width / 2; var rulerY = this.canvas.height - DX_WATERFALL_CONSTANTS.CANVAS.RULER_HEIGHT; var middleFreq = this.getCachedMiddleFreq(); // Use cached frequency @@ -3404,19 +3502,56 @@ var dxWaterfall = { } }, - // Draw red center line marker + // Draw center line marker(s) - uses displayConfig mapping drawCenterMarker: function() { var centerX = this.canvas.width / 2; var rulerY = this.canvas.height - DX_WATERFALL_CONSTANTS.CANVAS.RULER_HEIGHT; + var pixelsPerKhz = this.getPixelsPerKHz(); + var centerFreq = this.displayConfig.centerFrequency; - // Draw red line from top to ruler - this.ctx.strokeStyle = DX_WATERFALL_CONSTANTS.COLORS.CENTER_MARKER; - this.ctx.lineWidth = 2; - this.ctx.beginPath(); - this.ctx.moveTo(centerX, 0); - this.ctx.lineTo(centerX, rulerY+5); - this.ctx.stroke(); + // Draw all configured markers + for (var i = 0; i < this.displayConfig.markers.length; i++) { + var marker = this.displayConfig.markers[i]; + + // Calculate marker position relative to center frequency + var offset = (marker.frequency - centerFreq) * pixelsPerKhz; + var markerX = centerX + offset; + // Check if marker is within canvas bounds + if (markerX >= 0 && markerX <= this.canvas.width) { + // Draw marker line + this.ctx.strokeStyle = marker.color; + this.ctx.lineWidth = 2; + this.ctx.beginPath(); + this.ctx.moveTo(markerX, 0); + this.ctx.lineTo(markerX, rulerY + 5); + this.ctx.stroke(); + } else if (this.displayConfig.isSplit && marker.label === 'TX') { + // In split mode, if TX marker is off-screen, draw arrow indicator on ruler + var arrowY = rulerY + 10; // Position on ruler + var arrowSize = 6; + + this.ctx.fillStyle = marker.color; + this.ctx.beginPath(); + + if (markerX < 0) { + // TX is to the left (below current view) - draw left-pointing arrow on left side + var arrowX = 10; + this.ctx.moveTo(arrowX + arrowSize, arrowY - arrowSize); + this.ctx.lineTo(arrowX, arrowY); + this.ctx.lineTo(arrowX + arrowSize, arrowY + arrowSize); + } else { + // TX is to the right (above current view) - draw right-pointing arrow on right side + var arrowX = this.canvas.width - 10; + this.ctx.moveTo(arrowX - arrowSize, arrowY - arrowSize); + this.ctx.lineTo(arrowX, arrowY); + this.ctx.lineTo(arrowX - arrowSize, arrowY + arrowSize); + } + + this.ctx.closePath(); + this.ctx.fill(); + } + } }, /** From b731cf046763c0abbf69f4763e61afdcefd9de0e Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Sat, 25 Oct 2025 19:00:04 +0200 Subject: [PATCH 24/56] Split - fixes --- assets/js/dxwaterfall.js | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/assets/js/dxwaterfall.js b/assets/js/dxwaterfall.js index e519a9871..3e07f12ac 100644 --- a/assets/js/dxwaterfall.js +++ b/assets/js/dxwaterfall.js @@ -1777,10 +1777,10 @@ var dxWaterfall = { // Convert to kHz using utility function this.cache.middleFreq = DX_WATERFALL_UTILS.frequency.convertToKhz(currentInput, currentUnit); } - + // Update split operation state and get display configuration this.updateSplitOperationState(); - + return this.displayConfig.centerFrequency; }, @@ -1792,12 +1792,12 @@ var dxWaterfall = { var $frequencyRx = DX_WATERFALL_UTILS.fieldMapping.getField('frequency_rx', true); frequencyRxValue = $frequencyRx.val(); } - + if (frequencyRxValue && frequencyRxValue != '' && parseFloat(frequencyRxValue) > 0) { // SPLIT OPERATION MODE var rxFreq = parseFloat(frequencyRxValue) / 1000; // Convert Hz to kHz var txFreq = this.cache.middleFreq; // TX is from main frequency field - + this.displayConfig = { isSplit: true, centerFrequency: rxFreq, // Waterfall centered on RX @@ -1978,11 +1978,11 @@ var dxWaterfall = { if (spotInfo && spotInfo.callsign) { // Create a unique identifier for this spot var spotId = spotInfo.callsign + '_' + spotInfo.frequency + '_' + (spotInfo.mode || ''); - + // Only populate if this is a different spot than the last one we populated if (this.lastPopulatedSpot !== spotId) { this.lastPopulatedSpot = spotId; - + // Clear the form first DX_WATERFALL_UTILS.qsoForm.clearForm(); @@ -3065,12 +3065,12 @@ var dxWaterfall = { self.lastFetchBand = band; self.lastFetchContinent = de; self.lastFetchAge = age; - + // Invalidate caches when spots are updated self.cache.visibleSpots = null; self.cache.visibleSpotsParams = null; self.relevantSpots = []; - + self.collectAllBandSpots(true); // Update band spot collection for navigation (force after data fetch) self.collectSmartHunterSpots(); // Update smart hunter spots collection @@ -3086,12 +3086,12 @@ var dxWaterfall = { self.dataReceived = true; // Mark as received even if empty self.waitingForData = false; // Stop waiting self.userInitiatedFetch = false; // Clear user-initiated flag - + // Invalidate caches when spots are cleared self.cache.visibleSpots = null; self.cache.visibleSpotsParams = null; self.relevantSpots = []; - + self.allBandSpots = []; // Clear band spots self.currentBandSpotIndex = 0; self.smartHunterSpots = []; // Clear smart hunter spots @@ -3110,12 +3110,12 @@ var dxWaterfall = { self.totalSpotsCount = 0; self.dataReceived = true; // Mark as received to stop waiting state self.waitingForData = false; // Stop waiting - + // Invalidate caches on error self.cache.visibleSpots = null; self.cache.visibleSpotsParams = null; self.relevantSpots = []; - + self.allBandSpots = []; // Clear band spots self.currentBandSpotIndex = 0; self.smartHunterSpots = []; // Clear smart hunter spots @@ -3467,7 +3467,7 @@ var dxWaterfall = { if (!this.displayConfig.showBandwidthIndicator) { return; } - + var centerX = this.canvas.width / 2; var rulerY = this.canvas.height - DX_WATERFALL_CONSTANTS.CANVAS.RULER_HEIGHT; var middleFreq = this.getCachedMiddleFreq(); // Use cached frequency @@ -3512,7 +3512,7 @@ var dxWaterfall = { // Draw all configured markers for (var i = 0; i < this.displayConfig.markers.length; i++) { var marker = this.displayConfig.markers[i]; - + // Calculate marker position relative to center frequency var offset = (marker.frequency - centerFreq) * pixelsPerKhz; var markerX = centerX + offset; @@ -3530,10 +3530,10 @@ var dxWaterfall = { // In split mode, if TX marker is off-screen, draw arrow indicator on ruler var arrowY = rulerY + 10; // Position on ruler var arrowSize = 6; - + this.ctx.fillStyle = marker.color; this.ctx.beginPath(); - + if (markerX < 0) { // TX is to the left (below current view) - draw left-pointing arrow on left side var arrowX = 10; @@ -3547,7 +3547,7 @@ var dxWaterfall = { this.ctx.lineTo(arrowX, arrowY); this.ctx.lineTo(arrowX - arrowSize, arrowY + arrowSize); } - + this.ctx.closePath(); this.ctx.fill(); } From bd49ffd752c7d935aada93d9a4b58967a59a398e Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Sat, 25 Oct 2025 19:45:45 +0200 Subject: [PATCH 25/56] Various fixes --- application/views/components/dxwaterfall.php | 2 +- assets/js/dxwaterfall.js | 69 ++++++++++++++++---- 2 files changed, 57 insertions(+), 14 deletions(-) diff --git a/application/views/components/dxwaterfall.php b/application/views/components/dxwaterfall.php index 9de2f8b26..6413eef3d 100644 --- a/application/views/components/dxwaterfall.php +++ b/application/views/components/dxwaterfall.php @@ -12,7 +12,7 @@ var modKey = isMac ? 'Cmd' : 'Ctrl'; var lang_dxwaterfall_tune_to_spot = "" + " [" + modKey + "+Shift+Space]"; - var lang_dxwaterfall_cycle_nearby_spots = ""; + var lang_dxwaterfall_cycle_nearby_spots = "" + " [" + modKey + "+Space]"; var lang_dxwaterfall_spots = ""; var lang_dxwaterfall_new_continent = ""; var lang_dxwaterfall_new_dxcc = ""; diff --git a/assets/js/dxwaterfall.js b/assets/js/dxwaterfall.js index 3e07f12ac..903fc7b56 100644 --- a/assets/js/dxwaterfall.js +++ b/assets/js/dxwaterfall.js @@ -23,7 +23,7 @@ var DX_WATERFALL_CONSTANTS = { ICON_FEEDBACK_MS: 200, // Visual feedback duration for icon clicks ZOOM_ICON_FEEDBACK_MS: 150, // Visual feedback duration for zoom icons MODE_CHANGE_SETTLE_MS: 200, // Delay for radio mode change to settle - FORM_POPULATE_DELAY_MS: 100, // Delay before populating QSO form + FORM_POPULATE_DELAY_MS: 50, // Delay before populating QSO form SPOT_NAVIGATION_COMPLETE_MS: 100, // Delay for spot navigation completion ZOOM_MENU_UPDATE_DELAY_MS: 150 // Delay for zoom menu update after navigation }, @@ -1993,7 +1993,7 @@ var dxWaterfall = { typeof DX_WATERFALL_UTILS.qsoForm.populateFromSpot === 'function') { DX_WATERFALL_UTILS.qsoForm.populateFromSpot(spotInfo, true); } - }, 100); + }, DX_WATERFALL_CONSTANTS.DEBOUNCE.FORM_POPULATE_DELAY_MS); } } else { // No spot at current frequency, clear the last populated spot tracker @@ -3080,12 +3080,18 @@ var dxWaterfall = { // Check if we're standing on a spot and auto-populate QSO form self.checkAndPopulateSpotAtFrequency(); } else { - // No spots or error in response + // No spots or error in response (e.g., {"error": "not found"}) self.dxSpots = []; self.totalSpotsCount = 0; self.dataReceived = true; // Mark as received even if empty self.waitingForData = false; // Stop waiting self.userInitiatedFetch = false; // Clear user-initiated flag + self.lastUpdateTime = new Date(); // Record update time even on error + + // Track fetch parameters to prevent duplicate fetches + self.lastFetchBand = band; + self.lastFetchContinent = de; + self.lastFetchAge = age; // Invalidate caches when spots are cleared self.cache.visibleSpots = null; @@ -3859,6 +3865,27 @@ var dxWaterfall = { var leftSpots = visibleSpots.left; var rightSpots = visibleSpots.right; + // Smart label culling based on zoom level to prevent overcrowding + // At lower zoom levels (zoomed out), limit the number of labels shown + // Increased limits to show more spots at all zoom levels + var maxLabelsPerSide = Math.max(15, Math.floor(30 + (this.currentZoomLevel * 15))); + + // If we have too many spots, keep only the closest ones to center + if (leftSpots.length > maxLabelsPerSide) { + // Sort by absolute frequency offset (closest first) + leftSpots.sort(function(a, b) { + return Math.abs(a.freqOffset) - Math.abs(b.freqOffset); + }); + leftSpots = leftSpots.slice(0, maxLabelsPerSide); + } + + if (rightSpots.length > maxLabelsPerSide) { + rightSpots.sort(function(a, b) { + return Math.abs(a.freqOffset) - Math.abs(b.freqOffset); + }); + rightSpots = rightSpots.slice(0, maxLabelsPerSide); + } + // Calculate available vertical space - from top margin to above ruler line var topMargin = DX_WATERFALL_CONSTANTS.CANVAS.TOP_MARGIN; var bottomMargin = DX_WATERFALL_CONSTANTS.CANVAS.BOTTOM_MARGIN; @@ -4301,8 +4328,9 @@ var dxWaterfall = { // 1. We're waiting for data AND either: // a) It's the initial load and we haven't received data OR haven't waited 5 seconds yet // b) It's a parameter change and we haven't received new data yet (no time wait) - var shouldShowWaiting = this.waitingForData && - (isInitialLoad ? (!this.dataReceived || timeSincePageLoad < this.minWaitTime) : !this.dataReceived); + // BUT if we've already received data (including error responses), don't show waiting + var shouldShowWaiting = this.waitingForData && !this.dataReceived && + (isInitialLoad ? timeSincePageLoad < this.minWaitTime : true); if (shouldShowWaiting) { this.displayWaitingMessage(); @@ -5413,7 +5441,17 @@ var dxWaterfall = { // Toggle the specified filter this.pendingModeFilters[modeType] = !this.pendingModeFilters[modeType]; - // Update menu immediately to show the pending state + // Apply filter changes immediately for instant visual feedback + this.modeFilters.phone = this.pendingModeFilters.phone; + this.modeFilters.cw = this.pendingModeFilters.cw; + this.modeFilters.digi = this.pendingModeFilters.digi; + this.modeFilters.other = this.pendingModeFilters.other; + + // Invalidate visible spots cache immediately for instant update + this.cache.visibleSpots = null; + this.cache.visibleSpotsParams = null; + + // Update menu immediately to show the new state this.updateZoomMenu(); // Clear existing timer if there is one @@ -5421,18 +5459,14 @@ var dxWaterfall = { clearTimeout(this.modeFilterChangeTimer); } - // Set new timer - actual change happens after 0.5 seconds of no clicks + // Set new timer - for saving and collection updates after 0.5 seconds of no clicks this.modeFilterChangeTimer = setTimeout(function() { // Only proceed if we have pending filters if (!self.pendingModeFilters) { return; } - // Apply the filter changes - self.modeFilters.phone = self.pendingModeFilters.phone; - self.modeFilters.cw = self.pendingModeFilters.cw; - self.modeFilters.digi = self.pendingModeFilters.digi; - self.modeFilters.other = self.pendingModeFilters.other; + // Clear pending filters self.pendingModeFilters = null; // Save to cookie @@ -5443,7 +5477,7 @@ var dxWaterfall = { self.collectAllBandSpots(true); // Update band spot collection (force after filter change) self.collectSmartHunterSpots(); // Update smart hunter spots - // Update zoom menu to show new state + // Update zoom menu to show final state self.updateZoomMenu(); }, DX_WATERFALL_CONSTANTS.DEBOUNCE.MODE_FILTER_CHANGE_MS); @@ -6253,6 +6287,15 @@ function setFrequency(frequencyInKHz, fromWaterfall) { e.preventDefault(); dxWaterfall.zoomOut(); } + // Ctrl/Cmd+Space: Cycle through nearby spots + else if (modKey && !e.shiftKey && e.key === ' ') { + e.preventDefault(); + // Trigger the existing cycle icon click + var cycleIcon = $('#dxWaterfallSpotContent .cycle-spot-icon'); + if (cycleIcon.length > 0) { + cycleIcon.trigger('click'); + } + } // Ctrl/Cmd+Shift+Space: Tune to current spot frequency else if (modKey && e.shiftKey && e.key === ' ') { e.preventDefault(); From 776585c319058b8c96d379a0a58f3b6656c4dd45 Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Sun, 26 Oct 2025 00:15:36 +0200 Subject: [PATCH 26/56] Fixed some race conditions --- application/views/interface_assets/footer.php | 1 + assets/css/dxwaterfall.css | 2 +- assets/js/dxwaterfall.js | 344 ++++++++++++++---- 3 files changed, 275 insertions(+), 72 deletions(-) diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index 5c714f998..1f95a563c 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -1407,6 +1407,7 @@ mymap.on('mousemove', onQsoMapMove); try { const data = JSON.parse(event.data); handleWebSocketData(data); + console.log("WebSocket message received:", data); } catch (error) { console.error("WebSocket message parsing error:", error, event.data); } diff --git a/assets/css/dxwaterfall.css b/assets/css/dxwaterfall.css index 3c50a8ee5..742b579ed 100644 --- a/assets/css/dxwaterfall.css +++ b/assets/css/dxwaterfall.css @@ -69,7 +69,7 @@ #dxWaterfallPowerOffIcon { position: absolute; top: 50%; - right: 5px; + right: 8px; transform: translateY(-50%); cursor: pointer; color: #00FF00; diff --git a/assets/js/dxwaterfall.js b/assets/js/dxwaterfall.js index 903fc7b56..92801e670 100644 --- a/assets/js/dxwaterfall.js +++ b/assets/js/dxwaterfall.js @@ -42,7 +42,10 @@ var DX_WATERFALL_CONSTANTS = { // Polling timing (standard latency) POLLING_CONFIRM_TIMEOUT_MS: 3000, // Polling: Standard confirmation timeout - POLLING_COMMIT_DELAY_MS: 50 // Polling: Standard commit delay (from DEBOUNCE.FREQUENCY_COMMIT_SHORT_MS) + POLLING_COMMIT_DELAY_MS: 50, // Polling: Standard commit delay (from DEBOUNCE.FREQUENCY_COMMIT_SHORT_MS) + + // Auto-populate timing + TUNING_STOPPED_DELAY_MS: 1000 // Delay after user stops tuning to auto-populate spot (1 second) }, // Visual timing @@ -163,9 +166,9 @@ var DX_WATERFALL_CONSTANTS = { CENTER_MARKER: '12px "Consolas", "Courier New", monospace', SPOT_LABELS: 'bold 13px "Consolas", "Courier New", monospace', // Increased from 12px to 13px (5% larger) SPOT_INFO: '11px "Consolas", "Courier New", monospace', - WAITING_MESSAGE: '16px "Consolas", "Courier New", monospace', + WAITING_MESSAGE: '14px "Consolas", "Courier New", monospace', TITLE_LARGE: 'bold 24px "Consolas", "Courier New", monospace', - FREQUENCY_CHANGE: '18px "Consolas", "Courier New", monospace', + FREQUENCY_CHANGE: '14px "Consolas", "Courier New", monospace', OUT_OF_BAND: 'bold 14px "Consolas", "Courier New", monospace', SMALL_MONO: '12px "Consolas", "Courier New", monospace', @@ -251,7 +254,8 @@ function getCATTimings() { } /** - * Handle CAT frequency update with debounce lock + * Handle CAT frequency update with adaptive debounce + * Uses getCATTimings() to apply appropriate delays for WebSocket (fast) vs Polling (slow) * Returns true if frequency should be updated, false if blocked by debounce * Also handles frequency confirmation and cache invalidation * @param {number} radioFrequency - Frequency from CAT in Hz @@ -259,44 +263,110 @@ function getCATTimings() { * @returns {boolean} - True if update was allowed, false if blocked */ function handleCATFrequencyUpdate(radioFrequency, updateCallback) { - // Check debounce lock - var lock = window.dxwaterfall_cat_debounce_lock || 0; + // Get adaptive timing based on connection type (WebSocket vs Polling) + var timings = getCATTimings(); + var now = Date.now(); - if (lock === 0) { - // No lock - allow normal update - if (updateCallback) updateCallback(); - return true; - } - // Locked - check if radio confirms our expected frequency - if (typeof window.dxwaterfall_expected_frequency !== 'undefined' && window.dxwaterfall_expected_frequency) { - var expectedFreq = parseFloat(window.dxwaterfall_expected_frequency); - var actualFreq = parseFloat(radioFrequency); - var tolerance = DX_WATERFALL_CONSTANTS.THRESHOLDS.CAT_FREQUENCY_HZ; - var diff = Math.abs(expectedFreq - actualFreq); + // Check if we're in a debounce period + if (typeof window.catFrequencyDebounce !== 'undefined' && window.catFrequencyDebounce) { + var timeSinceLastUpdate = now - (window.catFrequencyDebounce.lastUpdate || 0); - if (diff <= tolerance) { - // Radio confirmed - unlock and update - window.dxwaterfall_cat_debounce_lock = 0; - window.dxwaterfall_expected_frequency = null; - - if (updateCallback) { - updateCallback(); - // Invalidate cache and commit frequency - if (typeof dxWaterfall !== 'undefined') { - if (dxWaterfall.invalidateFrequencyCache) { - dxWaterfall.invalidateFrequencyCache(); - } - if (dxWaterfall.commitFrequency) { - dxWaterfall.commitFrequency(); - } - } - } - return true; + // If we're within the commit delay window, skip this update + if (timeSinceLastUpdate < timings.commitDelay) { + console.log('[DX Waterfall] CAT DEBOUNCE: Skipping update (within ' + timings.commitDelay + 'ms window, ' + timeSinceLastUpdate + 'ms since last)'); + return false; } } - // Frequency doesn't match - stay locked, block update - return false; + // Initialize debounce tracking if needed + if (typeof window.catFrequencyDebounce === 'undefined') { + window.catFrequencyDebounce = { lastUpdate: 0 }; + } + + // Update debounce timestamp + window.catFrequencyDebounce.lastUpdate = now; + + // Check if frequency actually changed BEFORE updating UI + var frequencyChanged = false; + var isInitialLoad = false; + + if (typeof dxWaterfall !== 'undefined' && dxWaterfall.lastValidCommittedFreq !== null && dxWaterfall.lastValidCommittedUnit) { + // Compare incoming CAT frequency with last committed value + // CAT sends frequency in Hz, convert to kHz for comparison + var lastKhz = DX_WATERFALL_UTILS.frequency.convertToKhz( + dxWaterfall.lastValidCommittedFreq, + dxWaterfall.lastValidCommittedUnit + ); + var incomingHz = parseFloat(radioFrequency); + var incomingKhz = incomingHz / 1000; // Convert Hz to kHz + var tolerance = 0.001; // 1 Hz + var diff = Math.abs(incomingKhz - lastKhz); + frequencyChanged = diff > tolerance; + + console.log('[DX Waterfall] CAT CHECK: incoming=' + incomingHz + ' Hz (' + incomingKhz + ' kHz), last=' + lastKhz + ' kHz, diff=' + diff + ' kHz, changed=' + frequencyChanged); + } else if (typeof dxWaterfall !== 'undefined') { + // First time - consider it changed + isInitialLoad = dxWaterfall.waitingForCATFrequency; + frequencyChanged = true; + console.log('[DX Waterfall] CAT CHECK: First time, isInitialLoad=' + isInitialLoad); + } + + // Always update UI + if (updateCallback) updateCallback(); + + // Only invalidate cache and commit if frequency actually changed + if (typeof dxWaterfall !== 'undefined' && (frequencyChanged || isInitialLoad)) { + // IMPORTANT: Commit BEFORE invalidating cache + if (dxWaterfall.commitFrequency) { + dxWaterfall.commitFrequency(); + } + if (dxWaterfall.invalidateFrequencyCache) { + dxWaterfall.invalidateFrequencyCache(); + } + + // Auto-populate spot when user stops tuning (debounced) + // Clear any existing auto-populate timer + if (window.catFrequencyDebounce.autoPopulateTimer) { + clearTimeout(window.catFrequencyDebounce.autoPopulateTimer); + window.catFrequencyDebounce.autoPopulateTimer = null; + } + + // Set new timer to auto-populate after user stops tuning + // Only do this if frequency change was NOT initiated by waterfall (spotNavigating would be true) + if (!dxWaterfall.spotNavigating) { + window.catFrequencyDebounce.autoPopulateTimer = setTimeout(function() { + console.log('[DX Waterfall] AUTO-POPULATE: User stopped tuning, checking for nearby spot'); + + // Get current spot at this frequency + var currentSpotInfo = dxWaterfall.getSpotInfo ? dxWaterfall.getSpotInfo() : null; + + if (currentSpotInfo && currentSpotInfo.callsign) { + // Create unique identifier for this spot + var currentSpotId = currentSpotInfo.callsign + '_' + currentSpotInfo.frequency + '_' + (currentSpotInfo.mode || ''); + + // Only populate if this is a DIFFERENT spot than what's already populated + if (dxWaterfall.lastPopulatedSpot !== currentSpotId) { + console.log('[DX Waterfall] AUTO-POPULATE: New spot detected (' + currentSpotInfo.callsign + '), populating form'); + if (dxWaterfall.checkAndPopulateSpotAtFrequency) { + dxWaterfall.checkAndPopulateSpotAtFrequency(); + } + } else { + console.log('[DX Waterfall] AUTO-POPULATE: Still within same spot area (' + currentSpotInfo.callsign + '), skipping re-populate'); + } + } else { + console.log('[DX Waterfall] AUTO-POPULATE: No spot at current frequency'); + // Clear last populated spot since we're not on any spot + dxWaterfall.lastPopulatedSpot = null; + } + + window.catFrequencyDebounce.autoPopulateTimer = null; + }, DX_WATERFALL_CONSTANTS.CAT.TUNING_STOPPED_DELAY_MS); + } else { + console.log('[DX Waterfall] AUTO-POPULATE: Skipping (spotNavigating active)'); + } + } + + return true; } /** @@ -1237,10 +1307,9 @@ var DX_WATERFALL_UTILS = { waterfallContext.commitFrequency(); }, 50); - // Update zoom menu after a brief delay to ensure frequency change is complete - setTimeout(function() { - waterfallContext.updateZoomMenu(); - }, DX_WATERFALL_CONSTANTS.DEBOUNCE.ZOOM_MENU_UPDATE_DELAY_MS); + // Update zoom menu immediately to reflect navigation button states + // (no delay needed since we already updated the cache above) + waterfallContext.updateZoomMenu(); } return true; @@ -1465,13 +1534,16 @@ var dxWaterfall = { * @returns {void} */ init: function() { + console.log('[DX Waterfall] INIT: Starting initialization'); this.canvas = document.getElementById('dxWaterfall'); // Check if canvas element exists if (!this.canvas) { + console.log('[DX Waterfall] INIT: Canvas element not found'); return; } + console.log('[DX Waterfall] INIT: Canvas found, setting up context'); this.ctx = this.canvas.getContext('2d'); var $waterfall = DX_WATERFALL_UTILS.dom.getWaterfall(); this.canvas.width = $waterfall.width(); @@ -1628,9 +1700,35 @@ var dxWaterfall = { } }, 10000); // 10 second safety timeout + console.log('[DX Waterfall] INIT: Complete, calling initial refresh'); this.refresh(); }, + // Check if current frequency input differs from last committed value + // Returns true if frequency has changed, false if same + hasFrequencyChanged: function() { + // Safety check: return false if waterfall is not initialized + if (!this.$freqCalculated || !this.$qrgUnit) { + return false; + } + + var currentInput = this.$freqCalculated.val(); + var currentUnit = this.$qrgUnit.text() || 'kHz'; + + // If we don't have a last committed value, consider it changed + if (this.lastValidCommittedFreq === null) { + return true; + } + + // Convert both frequencies to kHz for comparison (normalize units) + var currentKhz = DX_WATERFALL_UTILS.frequency.convertToKhz(currentInput, currentUnit); + var lastKhz = DX_WATERFALL_UTILS.frequency.convertToKhz(this.lastValidCommittedFreq, this.lastValidCommittedUnit); + + // Compare frequencies with 1 Hz tolerance (0.001 kHz) to account for floating point errors + var tolerance = 0.001; // 1 Hz + return Math.abs(currentKhz - lastKhz) > tolerance; + }, + // Commit the current frequency value (called on blur or Enter key) // This prevents the waterfall from shifting while the user is typing commitFrequency: function() { @@ -1642,6 +1740,8 @@ var dxWaterfall = { var currentInput = this.$freqCalculated.val(); var currentUnit = this.$qrgUnit.text() || 'kHz'; + console.log('[DX Waterfall] FREQ COMMIT:', currentInput, currentUnit); + // If this is a valid frequency, save it as the last valid committed frequency var freqValue = parseFloat(currentInput) || 0; if (freqValue > 0) { @@ -1679,10 +1779,28 @@ var dxWaterfall = { // Check if band or mode has changed hasParametersChanged: function() { - // Get current values from form elements (same as getCurrentBand/getCurrentMode) + // Get current values from form elements FIRST to detect immediate changes var currentBand = this.getCurrentBand(); var currentMode = this.getCurrentMode(); + // Check if band changed (even during cooldown) and reset dataReceived flag immediately + // This prevents old band data from being displayed while waiting for new band to fetch + var bandChanged = (currentBand !== this.lastBand); + if (bandChanged && this.lastBand !== null) { + // Band changed - immediately mark as waiting for new data + this.dataReceived = false; + this.waitingForData = true; + } + + // Block parameter checks during band change cooldown to prevent race conditions + if (this.userChangedBand) { + console.log('[DX Waterfall] PARAMS CHECK: Blocked during band change cooldown'); + return false; + } + + console.log('[DX Waterfall] PARAMS CHECK: Band=' + currentBand + ', Mode=' + currentMode + + ' (last: Band=' + this.lastBand + ', Mode=' + this.lastMode + ')'); + // Check for invalid states that should prevent spot fetching var middleFreq = this.getCachedMiddleFreq(); // Returns frequency in kHz var isFrequencyInvalid = middleFreq <= 0; @@ -1690,6 +1808,7 @@ var dxWaterfall = { // If frequency or band is invalid, show waiting message but don't fetch spots if (isFrequencyInvalid || isBandInvalid) { + console.log('[DX Waterfall] PARAMS CHECK: Invalid parameters (freq=' + middleFreq + ', band=' + currentBand + ')'); this.waitingForData = true; this.dataReceived = false; this.relevantSpots = []; @@ -1715,6 +1834,8 @@ var dxWaterfall = { // Only band changes should trigger spot fetching // Mode changes should NOT trigger fetching (mode is just a display filter) if (bandChanged) { + console.log('[DX Waterfall] BAND CHANGE: ' + this.lastBand + ' -> ' + currentBand); + // Invalidate band limits cache (band changed) this.bandLimitsCache = null; @@ -1737,6 +1858,14 @@ var dxWaterfall = { } // Reset timer for the new band fetch this.operationStartTime = Date.now(); + // Immediately update menu to show loading indicator + this.updateZoomMenu(); + // Block automatic band changes for 2 seconds to prevent race conditions + this.userChangedBand = true; + var self = this; + setTimeout(function() { + self.userChangedBand = false; + }, 2000); } } @@ -1846,6 +1975,9 @@ var dxWaterfall = { var oldFreq = this.cache.middleFreq; + // Track if this was clearing the initial CAT wait + var wasWaitingForCAT = this.waitingForCATFrequency; + // If we're still waiting for CAT frequency on initial load, cancel the wait if (this.waitingForCATFrequency) { if (this.catFrequencyWaitTimer) { @@ -1866,10 +1998,17 @@ var dxWaterfall = { this.updateZoomMenu(); } - // Only set completion overlay if CAT is actually available (this function was called due to CAT) - if (isCATAvailable()) { + // Only set completion overlay if: + // 1. CAT is available AND + // 2. This is NOT the initial load (we weren't waiting for CAT frequency) AND + // 3. We've already received data (prevents overlay on first load) AND + // 4. This was a waterfall-initiated frequency change (user clicked a spot, not turning radio dial) + if (isCATAvailable() && !wasWaitingForCAT && this.dataReceived && this.spotNavigating) { // Set a temporary overlay flag to keep message visible while marker moves + console.log('[DX Waterfall] OVERLAY: Setting completion overlay (wasWaitingForCAT=' + wasWaitingForCAT + ', dataReceived=' + this.dataReceived + ', spotNavigating=' + this.spotNavigating + ')'); this.showingCompletionOverlay = true; + } else { + console.log('[DX Waterfall] OVERLAY: Skipping completion overlay (CAT available=' + isCATAvailable() + ', wasWaitingForCAT=' + wasWaitingForCAT + ', dataReceived=' + this.dataReceived + ', spotNavigating=' + this.spotNavigating + ')'); } // Force immediate cache refresh and visual update to move marker @@ -2943,6 +3082,8 @@ var dxWaterfall = { fetchDxSpots: function(immediate, userInitiated) { var self = this; + console.log('[DX Waterfall] FETCH SPOTS: immediate=' + immediate + ', userInitiated=' + userInitiated); + // Clear any existing debounce timer if (this.fetchDebounceTimer) { clearTimeout(this.fetchDebounceTimer); @@ -2951,6 +3092,7 @@ var dxWaterfall = { // If not immediate, debounce the request if (!immediate) { + console.log('[DX Waterfall] FETCH SPOTS: Debouncing for ' + this.fetchDebounceMs + 'ms'); this.fetchDebounceTimer = setTimeout(function() { self.fetchDebounceTimer = null; self.fetchDxSpots(true, userInitiated); // Pass userInitiated through @@ -2968,6 +3110,8 @@ var dxWaterfall = { band = '40m'; // Default to 40m for initial fetch } + console.log('[DX Waterfall] FETCH SPOTS: Starting AJAX fetch for band=' + band + ', continent=' + this.currentContinent); + var mode = "All"; // Fetch all modes var age = 60; // minutes var de = this.currentContinent; // Use current continent (may have been cycled) @@ -3022,9 +3166,14 @@ var dxWaterfall = { // Mark fetch as in progress this.fetchInProgress = true; - // Reset timer for user-initiated fetches (band changes, continent changes) - // Also set timer for initial load (even though not user-initiated) - if (this.userInitiatedFetch || !this.dataReceived) { + // Reset timer ONLY for user-initiated fetches or initial load + // Background auto-refreshes should be silent (no hourglass/timer display) + // Don't reset if timer was already started (e.g., during band change detection) + if (this.userInitiatedFetch && !this.operationStartTime) { + this.operationStartTime = Date.now(); + this.updateZoomMenu(); // Immediately show timer/hourglass + } else if (!this.dataReceived && !this.operationStartTime) { + // Initial load - show timer this.operationStartTime = Date.now(); this.updateZoomMenu(); // Immediately show timer/hourglass } @@ -3039,6 +3188,8 @@ var dxWaterfall = { // Clear fetch in progress flag self.fetchInProgress = false; + console.log('[DX Waterfall] FETCH SPOTS: Success - received ' + (data ? data.length || 0 : 0) + ' spots'); + if (data && !data.error) { // Enrich spots with park references once during fetch // This prevents recalculating them multiple times @@ -3081,6 +3232,7 @@ var dxWaterfall = { self.checkAndPopulateSpotAtFrequency(); } else { // No spots or error in response (e.g., {"error": "not found"}) + console.log('[DX Waterfall] FETCH SPOTS: Error response - no spots found'); self.dxSpots = []; self.totalSpotsCount = 0; self.dataReceived = true; // Mark as received even if empty @@ -3112,6 +3264,8 @@ var dxWaterfall = { self.fetchInProgress = false; self.userInitiatedFetch = false; // Clear user-initiated flag + console.log('[DX Waterfall] FETCH SPOTS: AJAX error - ' + status + ', ' + error); + self.dxSpots = []; self.totalSpotsCount = 0; self.dataReceived = true; // Mark as received to stop waiting state @@ -3313,7 +3467,7 @@ var dxWaterfall = { var textY = centerY + DX_WATERFALL_CONSTANTS.CANVAS.TEXT_OFFSET_Y; // Draw "Waiting for DX Cluster data..." message - DX_WATERFALL_UTILS.drawing.drawCenteredText(this.ctx, lang_dxwaterfall_waiting_data, centerX, textY, 'FREQUENCY_CHANGE', 'MESSAGE_TEXT_WHITE'); + DX_WATERFALL_UTILS.drawing.drawCenteredText(this.ctx, lang_dxwaterfall_waiting_data, centerX, textY, 'WAITING_MESSAGE', 'MESSAGE_TEXT_WHITE'); // Reset opacity this.ctx.globalAlpha = 1.0; @@ -3868,7 +4022,7 @@ var dxWaterfall = { // Smart label culling based on zoom level to prevent overcrowding // At lower zoom levels (zoomed out), limit the number of labels shown // Increased limits to show more spots at all zoom levels - var maxLabelsPerSide = Math.max(15, Math.floor(30 + (this.currentZoomLevel * 15))); + var maxLabelsPerSide = Math.max(20, Math.floor(40 + (this.currentZoomLevel * 20))); // If we have too many spots, keep only the closest ones to center if (leftSpots.length > maxLabelsPerSide) { @@ -4003,10 +4157,30 @@ var dxWaterfall = { var otherTop = other.y - (labelHeight / 2); var otherBottom = other.y + (labelHeight / 2); + // Calculate horizontal distance between label edges (not centers) + var horizontalGap; + if (spot.x < other.x) { + // Spot is to the left + horizontalGap = otherLeft - spotRight; + } else { + // Spot is to the right + horizontalGap = spotLeft - otherRight; + } + // Check if rectangles overlap (both horizontally AND vertically) var horizontalOverlap = !(spotRight < otherLeft - minSpacing || spotLeft > otherRight + minSpacing); var verticalOverlap = !(spotBottom < otherTop - minSpacing || spotTop > otherBottom + minSpacing); + // If there's sufficient horizontal gap (accounting for actual label widths), + // allow labels to share vertical space. At lower zoom levels (more zoomed out), + // be more aggressive about sharing vertical space since spots are spread wider. + // Zoom level 0 = max zoom out, 5 = max zoom in + var gapMultiplier = 0.5 - (self.currentZoomLevel * 0.05); // 0.5 at zoom 0, 0.25 at zoom 5 + var minClearGap = Math.max(spot.labelWidth, other.labelWidth) * gapMultiplier; + if (horizontalGap > minClearGap) { + continue; // Enough horizontal separation, can share Y position + } + if (horizontalOverlap && verticalOverlap) { return true; // Overlaps both ways } @@ -4319,6 +4493,14 @@ var dxWaterfall = { // Update canvas internal dimensions to match current CSS dimensions this.updateDimensions(); + // Check if we're waiting for CAT/WebSocket frequency on initial load + // This prevents fetching spots before we have the actual radio frequency + if (this.waitingForCATFrequency && !this.dataReceived) { + this.displayWaitingMessage(); + this.updateZoomMenu(); // Update menu to show loading indicator + return; // Don't fetch spots or draw normal display until CAT frequency arrives + } + // Check if we should show waiting message var currentTime = Date.now(); var timeSincePageLoad = currentTime - this.pageLoadTime; @@ -4675,26 +4857,37 @@ var dxWaterfall = { // Don't show menu during background fetch operations // Show hourglass with counter during DX cluster fetch if (this.fetchInProgress) { - var elapsed = ((Date.now() - this.operationStartTime) / 1000).toFixed(1); - // Show "Warming up..." for the first second, then show counter - var displayText = elapsed < 1.0 ? lang_dxwaterfall_warming_up : elapsed + 's'; - this.zoomMenuDiv.innerHTML = '
' + displayText + '
'; + if (this.operationStartTime) { + var elapsed = ((Date.now() - this.operationStartTime) / 1000).toFixed(1); + // Only show "Warming up..." if we haven't received ANY data yet + // Once we have data, always show counter (prevents "Warming up" from reappearing) + var displayText = (!this.dataReceived && elapsed < 1.0) ? lang_dxwaterfall_warming_up : elapsed + 's'; + this.zoomMenuDiv.innerHTML = '
' + displayText + '
'; + } else { + // Fetch in progress but timer not started - show hourglass without counter + this.zoomMenuDiv.innerHTML = '
 
'; + } return; } // If no data received yet AND waiting for data, show only loading indicator // Once data is received, always show full menu (with loading indicator if needed) - // Only show if it's a user-initiated fetch (band/continent change), not background updates + // Show loading indicator for both user-initiated and pending fetches to avoid layout shifts if (!this.dataReceived) { - if (this.waitingForData && this.userInitiatedFetch) { - // Show loading indicator with counter for user-initiated operations - var elapsed = ((Date.now() - this.operationStartTime) / 1000).toFixed(1); - // Show "Warming up..." for the first second, then show counter - var displayText = elapsed < 1.0 ? lang_dxwaterfall_warming_up : elapsed + 's'; - this.zoomMenuDiv.innerHTML = '
' + displayText + '|
'; + if (this.waitingForData) { + // Show loading indicator with counter for any waiting state + if (this.operationStartTime) { + var elapsed = ((Date.now() - this.operationStartTime) / 1000).toFixed(1); + // Only show "Warming up..." if we haven't received ANY data yet and elapsed < 1s + var displayText = (!this.dataReceived && elapsed < 1.0) ? lang_dxwaterfall_warming_up : elapsed + 's'; + this.zoomMenuDiv.innerHTML = '
' + displayText + '
'; + } else { + // Waiting but no timer started yet - show hourglass without counter + this.zoomMenuDiv.innerHTML = '
 
'; + } } else { - // No data yet and not in proper loading state - show placeholder with "Warming up..." - this.zoomMenuDiv.innerHTML = '
' + lang_dxwaterfall_warming_up + '
'; + // No data yet and not waiting - show placeholder to maintain height + this.zoomMenuDiv.innerHTML = '
 
'; } return; } @@ -4710,11 +4903,17 @@ var dxWaterfall = { var showLoadingIndicator = this.waitingForData && this.userInitiatedFetch; if (showLoadingIndicator) { - // Calculate elapsed time with tenths of seconds - var elapsed = ((Date.now() - this.operationStartTime) / 1000).toFixed(1); - // Show "Warming up..." for the first second, then show counter - var displayText = elapsed < 1.0 ? lang_dxwaterfall_warming_up : elapsed + 's'; - zoomHTML += '' + displayText + ''; + if (this.operationStartTime) { + // Calculate elapsed time with tenths of seconds + var elapsed = ((Date.now() - this.operationStartTime) / 1000).toFixed(1); + // Only show "Warming up..." if we haven't received ANY data yet + // Once we have data, always show counter (prevents "Warming up" from reappearing) + var displayText = (!this.dataReceived && elapsed < 1.0) ? lang_dxwaterfall_warming_up : elapsed + 's'; + zoomHTML += '' + displayText + ''; + } else { + // Show hourglass without counter if timer not started yet + zoomHTML += ' '; + } } // Add band spot navigation controls - always show them @@ -6241,10 +6440,8 @@ function setFrequency(frequencyInKHz, fromWaterfall) { }, 100); } - // Commit the new frequency - setTimeout(function() { - dxWaterfall.commitFrequency(); - }, 50); + // Note: No need to call commitFrequency() here since we already set + // lastValidCommittedFreq directly above (line 6407-6408) }); // Handle keyboard shortcuts @@ -6344,6 +6541,11 @@ function setFrequency(frequencyInKHz, fromWaterfall) { // Now initialize from clean state dxWaterfall.init(); + // Call refresh immediately to avoid delay + if (dxWaterfall.canvas) { + dxWaterfall.refresh(); + } + // Set up periodic refresh - faster during CAT operations for spinner animation waterfallRefreshInterval = setInterval(function() { if (dxWaterfall.canvas) { From 69db0741862a9ec4253cf9d540178d0fc2c2e308 Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Sun, 26 Oct 2025 01:09:44 +0200 Subject: [PATCH 27/56] Speed improvments --- application/models/Dxcluster_model.php | 134 ++++++++++++++----------- assets/js/dxwaterfall.js | 113 ++++++++++++++++----- assets/js/sections/qso.js | 8 ++ 3 files changed, 171 insertions(+), 84 deletions(-) diff --git a/application/models/Dxcluster_model.php b/application/models/Dxcluster_model.php index 0b6284de9..e10787f05 100644 --- a/application/models/Dxcluster_model.php +++ b/application/models/Dxcluster_model.php @@ -63,69 +63,87 @@ class Dxcluster_model extends CI_Model { // Create JSON object if (strlen($jsonraw)>20) { $spotsout=[]; + + // Cache current time outside loop (avoid creating DateTime on every iteration) + $currentTimestamp = time(); + + // Normalize continent filter once + $de_lower = strtolower($de); + $filter_continent = ($de != '' && $de != 'Any'); + foreach($json as $singlespot){ - if (is_numeric($singlespot->frequency)) { - $spotband = $this->frequency->GetBand($singlespot->frequency*1000); - } else { + // Early filtering - skip invalid spots immediately + if (!is_numeric($singlespot->frequency)) { continue; } - $singlespot->band=$spotband; - $singlespot->mode=$this->get_mode($singlespot); - if (($band != 'All') && ($band != $spotband)) { continue; } - if (($mode != 'All') && ($mode != $this->modefilter($singlespot, $mode))) { continue; } - $datetimecurrent = new DateTime("now", new DateTimeZone('UTC')); // Today's Date/Time - $datetimespot = new DateTime($singlespot->when, new DateTimeZone('UTC')); - $spotage = $datetimecurrent->diff($datetimespot); - $minutes = $spotage->days * 24 * 60; - $minutes += $spotage->h * 60; - $minutes += $spotage->i; - $singlespot->age=$minutes; - $singlespot->when_pretty=date($custom_date_format . " H:i", strtotime($singlespot->when)); - if ($minutes<=$maxage) { - if (!(property_exists($singlespot,'dxcc_spotted'))) { // Check if we already have dxcc of spotted - $dxcc=$dxccObj->dxcc_lookup($singlespot->spotted,date('Ymd', time())); - $singlespot->dxcc_spotted->dxcc_id=$dxcc['adif']; - $singlespot->dxcc_spotted->cont=$dxcc['cont']; - $singlespot->dxcc_spotted->flag=''; - $singlespot->dxcc_spotted->entity=$dxcc['entity']; - } - if (!(property_exists($singlespot,'dxcc_spotter'))) { // Check if we already have dxcc of spotter - $dxcc=$dxccObj->dxcc_lookup($singlespot->spotter,date('Ymd', time())); - $singlespot->dxcc_spotter->dxcc_id=$dxcc['adif']; - $singlespot->dxcc_spotter->cont=$dxcc['cont']; - $singlespot->dxcc_spotter->flag=''; - $singlespot->dxcc_spotter->entity=$dxcc['entity']; - } - if ( ($de != '') && ($de != 'Any') && (property_exists($singlespot->dxcc_spotter,'cont')) ){ // If we have a "de continent" and a filter-wish filter on that - if (strtolower($de) == strtolower($singlespot->dxcc_spotter->cont ?? '')) { - $singlespot->worked_dxcc = ($this->logbook_model->check_if_dxcc_worked_in_logbook($singlespot->dxcc_spotted->dxcc_id, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); - $singlespot->cnfmd_dxcc = ($this->logbook_model->check_if_dxcc_cnfmd_in_logbook($singlespot->dxcc_spotted->dxcc_id, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); - $singlespot->worked_call = ($this->logbook_model->check_if_callsign_worked_in_logbook($singlespot->spotted, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); - $singlespot->cnfmd_call = ($this->logbook_model->check_if_callsign_cnfmd_in_logbook($singlespot->spotted, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); - $singlespot->cnfmd_continent = ($this->check_if_continent_cnfmd_in_logbook($singlespot->dxcc_spotted->cont, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); - $singlespot->worked_continent = ($this->check_if_continent_cnfmd_in_logbook($singlespot->dxcc_spotted->cont, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); - if ($singlespot->worked_call) { - $singlespot->last_wked=$this->logbook_model->last_worked_callsign_in_logbook($singlespot->spotted, $logbooks_locations_array, $singlespot->band)[0]; - if ($this->session->userdata('user_date_format')) { - $custom_date_format = $this->session->userdata('user_date_format'); - } else { - $custom_date_format = $this->config->item('qso_date_format'); - } - $singlespot->last_wked->LAST_QSO = date($custom_date_format, strtotime($singlespot->last_wked->LAST_QSO)); - } - array_push($spotsout,$singlespot); - } - } else { // No de continent? No Filter --> Just push - $singlespot->worked_dxcc = ($this->logbook_model->check_if_dxcc_worked_in_logbook($singlespot->dxcc_spotted->dxcc_id, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); - $singlespot->worked_call = ($this->logbook_model->check_if_callsign_worked_in_logbook($singlespot->spotted, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); - $singlespot->cnfmd_dxcc = ($this->logbook_model->check_if_dxcc_cnfmd_in_logbook($singlespot->dxcc_spotted->dxcc_id, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); - $singlespot->cnfmd_call = ($this->logbook_model->check_if_callsign_cnfmd_in_logbook($singlespot->spotted, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); - $singlespot->cnfmd_continent = ($this->check_if_continent_cnfmd_in_logbook($singlespot->dxcc_spotted->cont, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); - $singlespot->worked_continent = ($this->check_if_continent_worked_in_logbook($singlespot->dxcc_spotted->cont, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); - array_push($spotsout,$singlespot); - } + $spotband = $this->frequency->GetBand($singlespot->frequency*1000); + + // Apply band filter early (before expensive operations) + if (($band != 'All') && ($band != $spotband)) { + continue; } + + $singlespot->band = $spotband; + $singlespot->mode = $this->get_mode($singlespot); + + // Apply mode filter early + if (($mode != 'All') && ($mode != $this->modefilter($singlespot, $mode))) { + continue; + } + + // Faster age calculation using timestamps instead of DateTime objects + $spotTimestamp = strtotime($singlespot->when); + $minutes = (int)(($currentTimestamp - $spotTimestamp) / 60); + + // Apply age filter early (before DXCC lookups) + if ($minutes > $maxage) { + continue; + } + + $singlespot->age = $minutes; + $singlespot->when_pretty = date($custom_date_format . " H:i", $spotTimestamp); + + // DXCC lookups (only for spots that passed all filters) + if (!(property_exists($singlespot,'dxcc_spotted'))) { + $dxcc = $dxccObj->dxcc_lookup($singlespot->spotted, $date); + $singlespot->dxcc_spotted = (object)[ + 'dxcc_id' => $dxcc['adif'], + 'cont' => $dxcc['cont'], + 'flag' => '', + 'entity' => $dxcc['entity'] + ]; + } + if (!(property_exists($singlespot,'dxcc_spotter'))) { + $dxcc = $dxccObj->dxcc_lookup($singlespot->spotter, $date); + $singlespot->dxcc_spotter = (object)[ + 'dxcc_id' => $dxcc['adif'], + 'cont' => $dxcc['cont'], + 'flag' => '', + 'entity' => $dxcc['entity'] + ]; + } + + // Apply continent filter early + if ($filter_continent && (!property_exists($singlespot->dxcc_spotter, 'cont') || + $de_lower != strtolower($singlespot->dxcc_spotter->cont ?? ''))) { + continue; + } + + // Database queries only for spots that passed all filters + $singlespot->worked_dxcc = ($this->logbook_model->check_if_dxcc_worked_in_logbook($singlespot->dxcc_spotted->dxcc_id, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); + $singlespot->worked_call = ($this->logbook_model->check_if_callsign_worked_in_logbook($singlespot->spotted, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); + $singlespot->cnfmd_dxcc = ($this->logbook_model->check_if_dxcc_cnfmd_in_logbook($singlespot->dxcc_spotted->dxcc_id, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); + $singlespot->cnfmd_call = ($this->logbook_model->check_if_callsign_cnfmd_in_logbook($singlespot->spotted, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); + $singlespot->cnfmd_continent = ($this->check_if_continent_cnfmd_in_logbook($singlespot->dxcc_spotted->cont, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); + $singlespot->worked_continent = ($this->check_if_continent_worked_in_logbook($singlespot->dxcc_spotted->cont, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); + + if ($singlespot->worked_call) { + $singlespot->last_wked = $this->logbook_model->last_worked_callsign_in_logbook($singlespot->spotted, $logbooks_locations_array, $singlespot->band)[0]; + $singlespot->last_wked->LAST_QSO = date($custom_date_format, strtotime($singlespot->last_wked->LAST_QSO)); + } + + $spotsout[] = $singlespot; // Direct array append is faster than array_push } return ($spotsout); } else { diff --git a/assets/js/dxwaterfall.js b/assets/js/dxwaterfall.js index 92801e670..92601a666 100644 --- a/assets/js/dxwaterfall.js +++ b/assets/js/dxwaterfall.js @@ -1452,6 +1452,7 @@ var dxWaterfall = { // State flags programmaticModeChange: false, // Flag to prevent fetching spots when mode is changed by waterfall + programmaticBandUpdate: false, // Flag to indicate band was changed programmatically by CAT (not user) userChangedBand: false, // Flag to prevent auto band update when user manually changed band initializationComplete: false, // Flag to track if initial setup is done lastPopulatedSpot: null, // Track the last spot that was used to populate the form @@ -1677,19 +1678,24 @@ var dxWaterfall = { this.lastBand = this.getCurrentBand(); this.lastMode = this.getCurrentMode(); - // Set up delay for CAT frequency to arrive - // After timeout, proceed with initial fetch regardless + // Set up adaptive timeout for CAT frequency to arrive + // WebSocket connections are much faster, so use shorter timeout + var timings = getCATTimings(); + var catWaitTimeout = timings.confirmTimeout; // 500ms for WebSocket, 3000ms for polling + this.catFrequencyWaitTimer = setTimeout(function() { + console.log('[DX Waterfall] INIT: CAT frequency wait timeout (' + catWaitTimeout + 'ms), proceeding with fetch'); self.waitingForCATFrequency = false; // Trigger refresh which will now perform the initial fetch if (!self.initialFetchDone) { self.refresh(); } - }, DX_WATERFALL_CONSTANTS.CAT.FREQUENCY_WAIT_TIMEOUT_MS); + }, catWaitTimeout); // Safety fallback: If we're still stuck after 10 seconds, force the initial fetch setTimeout(function() { if (!self.initialFetchDone && !self.dataReceived) { + console.log('[DX Waterfall] INIT: 10-second safety timeout, forcing fetch'); self.waitingForCATFrequency = false; if (self.catFrequencyWaitTimer) { clearTimeout(self.catFrequencyWaitTimer); @@ -1748,6 +1754,21 @@ var dxWaterfall = { this.lastValidCommittedFreq = currentInput; this.lastValidCommittedUnit = currentUnit; + // CRITICAL: Update band from frequency BEFORE refresh() is called + // This ensures programmaticBandUpdate flag is set before hasParametersChanged() runs + // BUT only do this if the band actually needs to change (frequency is outside current band) + var currentFreqKhz = DX_WATERFALL_UTILS.frequency.convertToKhz(freqValue, currentUnit); + if (currentFreqKhz > 0) { + var expectedBand = this.getFrequencyBand(currentFreqKhz); + var currentBand = this.getCurrentBand(); + + // Only update band if frequency's band differs from current band + // This prevents overriding manual band changes when frequency is already in that band + if (expectedBand && currentBand && expectedBand !== currentBand) { + this.updateBandFromFrequency(currentFreqKhz); + } + } + // If we're still waiting for CAT frequency and user manually set a frequency, cancel the wait // Only cancel if initialization is complete (don't cancel during initial page load) if (this.waitingForCATFrequency && this.initializationComplete) { @@ -1792,11 +1813,9 @@ var dxWaterfall = { this.waitingForData = true; } - // Block parameter checks during band change cooldown to prevent race conditions - if (this.userChangedBand) { - console.log('[DX Waterfall] PARAMS CHECK: Blocked during band change cooldown'); - return false; - } + // Note: We DON'T block during userChangedBand cooldown anymore + // Instead, we allow the parameter check to proceed, but we handle the fetch differently + // Manual band changes should still fetch spots (user expects to see new band data) console.log('[DX Waterfall] PARAMS CHECK: Band=' + currentBand + ', Mode=' + currentMode + ' (last: Band=' + this.lastBand + ', Mode=' + this.lastMode + ')'); @@ -1860,12 +1879,30 @@ var dxWaterfall = { this.operationStartTime = Date.now(); // Immediately update menu to show loading indicator this.updateZoomMenu(); - // Block automatic band changes for 2 seconds to prevent race conditions - this.userChangedBand = true; - var self = this; - setTimeout(function() { - self.userChangedBand = false; - }, 2000); + + // Determine if this is a programmatic (CAT) change or manual user change + // Programmatic changes bypass cooldown, manual changes set cooldown (if not already active) + if (this.programmaticBandUpdate) { + console.log('[DX Waterfall] BAND CHANGE: Programmatic (CAT) - no cooldown, fetching immediately'); + // Reset the flag immediately after use + this.programmaticBandUpdate = false; + // If there was a manual change cooldown active, cancel it (CAT takes priority) + if (this.userChangedBand) { + this.userChangedBand = false; + } + } else if (!this.userChangedBand) { + // Manual change AND no cooldown already active + // This happens when waterfall detects band is outside frequency range + console.log('[DX Waterfall] BAND CHANGE: Auto-detected from frequency - setting 2s cooldown'); + this.userChangedBand = true; + var self = this; + setTimeout(function() { + self.userChangedBand = false; + }, 2000); + } else { + // Manual change and cooldown already active (from qso.js) + console.log('[DX Waterfall] BAND CHANGE: Manual user change - cooldown already active'); + } } } @@ -2862,13 +2899,34 @@ var dxWaterfall = { var bandExists = this.$bandSelect.find('option[value="' + newBand + '"]').length > 0; if (bandExists) { + // Set flag to prevent band change event handler from running + // This prevents form reset during CAT/WebSocket frequency updates + window.programmaticBandChange = true; + + // CRITICAL: Set waterfall flag IMMEDIATELY before the band changes + // This ensures hasParametersChanged() can detect this was programmatic + this.programmaticBandUpdate = true; + // Update the band dropdown (in the QSO form) this.$bandSelect.val(newBand); + + // Reset flags after a short delay to allow event to process + var self = this; + setTimeout(function() { + window.programmaticBandChange = false; + // Keep waterfall flag longer to survive the parameter check + }, 50); } else { // Band doesn't exist in dropdown, select the first available option as fallback var firstOption = this.$bandSelect.find('option:first').val(); if (firstOption) { + window.programmaticBandChange = true; + this.programmaticBandUpdate = true; this.$bandSelect.val(firstOption); + var self = this; + setTimeout(function() { + window.programmaticBandChange = false; + }, 50); } } } @@ -3225,8 +3283,9 @@ var dxWaterfall = { self.collectAllBandSpots(true); // Update band spot collection for navigation (force after data fetch) self.collectSmartHunterSpots(); // Update smart hunter spots collection - // Populate menu after first successful data fetch - self.updateZoomMenu(); + // Force menu update after data fetch - bypass catTuning/frequencyChanging check + // This ensures menu shows data immediately even if frequency is still settling + self.updateZoomMenu(true); // Pass true to force update // Check if we're standing on a spot and auto-populate QSO form self.checkAndPopulateSpotAtFrequency(); @@ -3442,10 +3501,9 @@ var dxWaterfall = { return; } - // Hide zoom menu while waiting for data - if (this.zoomMenuDiv) { - this.zoomMenuDiv.innerHTML = ''; - } + // Don't clear zoom menu here - let updateZoomMenu() handle it + // This prevents brief empty states when displayWaitingMessage() is called + // followed immediately by updateZoomMenu() // Update canvas dimensions to match current CSS dimensions this.updateDimensions(); @@ -4842,14 +4900,16 @@ var dxWaterfall = { }, // Update zoom menu display - updateZoomMenu: function() { + // @param {boolean} forceUpdate - If true, bypass catTuning/frequencyChanging check + updateZoomMenu: function(forceUpdate) { if (!this.zoomMenuDiv) { return; } // Don't show menu at all during frequency changes or CAT tuning // Don't show hourglass either - frequency changes should be invisible to user - if (this.catTuning || this.frequencyChanging) { + // UNLESS forceUpdate is true (e.g., after data fetch completes) + if (!forceUpdate && (this.catTuning || this.frequencyChanging)) { // Don't update menu during frequency changes - keep showing last state return; } @@ -4874,8 +4934,9 @@ var dxWaterfall = { // Once data is received, always show full menu (with loading indicator if needed) // Show loading indicator for both user-initiated and pending fetches to avoid layout shifts if (!this.dataReceived) { - if (this.waitingForData) { + if (this.waitingForData || this.operationStartTime) { // Show loading indicator with counter for any waiting state + // Use operationStartTime check as fallback to catch brief transition moments if (this.operationStartTime) { var elapsed = ((Date.now() - this.operationStartTime) / 1000).toFixed(1); // Only show "Warming up..." if we haven't received ANY data yet and elapsed < 1s @@ -4883,11 +4944,11 @@ var dxWaterfall = { this.zoomMenuDiv.innerHTML = '
' + displayText + '
'; } else { // Waiting but no timer started yet - show hourglass without counter - this.zoomMenuDiv.innerHTML = '
 
'; + this.zoomMenuDiv.innerHTML = '
' + lang_dxwaterfall_warming_up + '
'; } } else { - // No data yet and not waiting - show placeholder to maintain height - this.zoomMenuDiv.innerHTML = '
 
'; + // No data yet and not waiting - show hourglass placeholder to maintain height and prevent empty state + this.zoomMenuDiv.innerHTML = '
 
'; } return; } diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js index c4ec17369..41fc65abc 100644 --- a/assets/js/sections/qso.js +++ b/assets/js/sections/qso.js @@ -1811,11 +1811,19 @@ $('.mode').on('change', function () { $('#band').on('change', function () { const selectedBand = $(this).val(); + // Skip if this is a programmatic change from CAT/waterfall + if (typeof window.programmaticBandChange !== 'undefined' && window.programmaticBandChange) { + console.log('[QSO] Band change ignored (programmatic from CAT/waterfall)'); + return; + } + // Skip resetting frequency if CAT is currently updating if (typeof cat_updating_frequency !== 'undefined' && cat_updating_frequency) { return; } + console.log('[QSO] Band manually changed to:', selectedBand); + // Clear the QSO form when band is manually changed $('#btn_reset').click(); From d6cd9778ee1fffbaffe6bf0e39804c5a29aac3d6 Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Sun, 26 Oct 2025 13:23:51 +0100 Subject: [PATCH 28/56] New QSO filling logic --- application/views/components/dxwaterfall.php | 4 +- application/views/interface_assets/footer.php | 3 +- assets/js/dxwaterfall.js | 124 +++++++----------- 3 files changed, 49 insertions(+), 82 deletions(-) diff --git a/application/views/components/dxwaterfall.php b/application/views/components/dxwaterfall.php index 6413eef3d..097adff6f 100644 --- a/application/views/components/dxwaterfall.php +++ b/application/views/components/dxwaterfall.php @@ -1,7 +1,7 @@ session->userdata('user_dxwaterfall_enable') == 'Y' && isset($manual_mode) && $manual_mode == 0) { ?> - + @@ -1130,6 +1130,16 @@ $($('#callsign')).on('keypress',function(e) { .grid-text { word-wrap: normal !important; } + +/* Radio icon blink animation */ +@keyframes radio-icon-blink { + 0%, 100% { opacity: 1; } + 50% { opacity: 0.3; } +} + +.radio-icon-blink { + animation: radio-icon-blink 0.4s ease-in-out; +} diff --git a/application/views/qso/index.php b/application/views/qso/index.php index 69214d6e3..1a672c571 100644 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -383,9 +383,9 @@ if (typeof window.DX_WATERFALL_FIELD_MAP === 'undefined') {
@@ -783,12 +783,15 @@ if (typeof window.DX_WATERFALL_FIELD_MAP === 'undefined') {
+ +
+
-
+ diff --git a/assets/js/dxwaterfall.js b/assets/js/dxwaterfall.js index e414031e3..b34602baf 100644 --- a/assets/js/dxwaterfall.js +++ b/assets/js/dxwaterfall.js @@ -1875,7 +1875,6 @@ var dxWaterfall = { // If frequency or band is invalid, show waiting message but don't fetch spots if (isFrequencyInvalid || isBandInvalid) { - console.log('[DX Waterfall] PARAMS CHECK: Invalid parameters (freq=' + middleFreq + ', band=' + currentBand + ')'); this.waitingForData = true; this.dataReceived = false; this.relevantSpots = []; @@ -3343,7 +3342,6 @@ var dxWaterfall = { // If it has, discard this data (it's stale) var currentBand = self.getCurrentBand(); if (band !== currentBand) { - console.log('[DX Waterfall] FETCH SPOTS: Ignoring stale data (fetched for ' + band + ', now on ' + currentBand + ')'); // Clear safety timeout even for stale data if (self.safetyTimeoutId) { clearTimeout(self.safetyTimeoutId); From ca8a6e0e64fd2e25b832e69fd9f7df65c46a29c8 Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Mon, 27 Oct 2025 21:21:50 +0100 Subject: [PATCH 48/56] Error handling --- application/views/interface_assets/footer.php | 25 +++++++++++-------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index 651bc19c0..ee5606403 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -1863,17 +1863,20 @@ mymap.on('mousemove', onQsoMapMove); var $bandRx = $('#band_rx'); var $mode = $('.mode'); - // If radio name is not in data, try to get it from cache first, then from dropdown - if (!data.radio || data.radio == null || data.radio == '') { - var currentRadioId = $('select.radios option:selected').val(); - if (currentRadioId && radioNameCache[currentRadioId]) { - // Use cached radio name - data.radio = radioNameCache[currentRadioId]; - } else { - // Fall back to dropdown text - data.radio = $('select.radios option:selected').text(); - } - } + // If radio name is not in data, try to get it from cache first, then from dropdown + if (!data.radio || data.radio == null || data.radio == '') { + var currentRadioId = $('select.radios option:selected').val(); + if (currentRadioId && radioNameCache[currentRadioId]) { + // Use cached radio name + data.radio = radioNameCache[currentRadioId]; + } else if (currentRadioId == 'ws') { + // WebSocket radio - use default name if not provided + data.radio = 'WebSocket Radio'; + } else { + // Fall back to dropdown text + data.radio = $('select.radios option:selected').text(); + } + } // Force update by clearing catValue (prevents cat2UI from blocking updates) $frequency.removeData('catValue'); From 4d2585f7621e1aa359ede468d969da6eef7b8161 Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Mon, 27 Oct 2025 21:47:07 +0100 Subject: [PATCH 49/56] Minor fixes --- application/views/interface_assets/footer.php | 89 ++++++++++++------- assets/js/dxwaterfall.js | 2 - 2 files changed, 55 insertions(+), 36 deletions(-) diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index ee5606403..292e3c605 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -73,6 +73,24 @@ var lang_qso_note_created = ""; var lang_qso_note_saved = ""; var lang_qso_note_error_saving = ""; + var lang_cat_live = ""; + var lang_cat_polling = ""; + var lang_cat_polling_tooltip = ""; + var lang_cat_tx = ""; + var lang_cat_rx = ""; + var lang_cat_tx_rx = ""; + var lang_cat_mode = ""; + var lang_cat_power = ""; + var lang_cat_connection_error = ""; + var lang_cat_connection_lost = ""; + var lang_cat_connection_timeout = ""; + var lang_cat_data_stale = ""; + var lang_cat_not_logged_in = ""; + var lang_cat_radio_tuning_failed = ""; + var lang_cat_failed_to_tune = ""; + var lang_cat_not_responding = ""; + var lang_cat_no_url_configured = ""; + var lang_cat_websocket_radio = ""; @@ -1636,7 +1654,7 @@ mymap.on('mousemove', onQsoMapMove); performRadioTuning(radioData.cat_url, freqHz, mode, onSuccess, onError); } else { if (typeof onError === 'function') { - onError(null, 'error', 'No CAT URL configured for this radio'); + onError(null, 'error', lang_cat_no_url_configured); } } }, @@ -1694,8 +1712,8 @@ mymap.on('mousemove', onQsoMapMove); .catch(error => { // Only show error on actual failures (network error, HTTP error, etc.) const freqMHz = (freqHz / 1000000).toFixed(3); - const errorTitle = 'Radio Tuning Failed'; - const errorMsg = 'Failed to tune radio to ' + freqMHz + ' MHz (' + catMode.toUpperCase() + '). ' + 'CAT interface not responding. Please check your radio connection.'; + const errorTitle = lang_cat_radio_tuning_failed; + const errorMsg = lang_cat_failed_to_tune + ' ' + freqMHz + ' MHz (' + catMode.toUpperCase() + '). ' + lang_cat_not_responding; // Use showToast if available (from qso.js), otherwise use Bootstrap alert if (typeof showToast === 'function') { @@ -1717,21 +1735,21 @@ mymap.on('mousemove', onQsoMapMove); * @param {object|string} data - Radio data object (success) or radio name string (error/timeout/not_logged_in) */ function displayRadioStatus(state, data) { - var iconColor, content; + var iconClass, content; var baseStyle = '
'; if (state === 'success') { // Success state - display radio info - iconColor = '#28a745'; // Green for success + iconClass = 'text-success'; // Bootstrap green for success // Determine connection type var connectionType = ''; var connectionTooltip = ''; if ($(".radios option:selected").val() == 'ws') { - connectionType = ' (live)'; + connectionType = ' (' + lang_cat_live + ')'; } else { - connectionType = ' (polling)'; - connectionTooltip = ' '; + connectionType = ' (' + lang_cat_polling + ')'; + connectionTooltip = ' '; } // Build radio info line @@ -1747,22 +1765,22 @@ mymap.on('mousemove', onQsoMapMove); // Check if we have RX frequency (split operation) if(data.frequency_rx != null && data.frequency_rx != 0) { // Split operation: show TX and RX separately - freqLine = 'TX: ' + data.frequency_formatted; + freqLine = '' + lang_cat_tx + ': ' + data.frequency_formatted; data.frequency_rx_formatted = format_frequency(data.frequency_rx); if (data.frequency_rx_formatted) { - freqLine = freqLine + separator + 'RX: ' + data.frequency_rx_formatted; + freqLine = freqLine + separator + '' + lang_cat_rx + ': ' + data.frequency_rx_formatted; } } else { // Simplex operation: show TX/RX combined - freqLine = 'TX/RX: ' + data.frequency_formatted; + freqLine = '' + lang_cat_tx_rx + ': ' + data.frequency_formatted; } // Add mode and power (only if we have valid frequency) if(data.mode != null) { - freqLine = freqLine + separator + 'Mode: ' + data.mode; + freqLine = freqLine + separator + '' + lang_cat_mode + ': ' + data.mode; } if(data.power != null && data.power != 0) { - freqLine = freqLine + separator + 'Power: ' + data.power+'W'; + freqLine = freqLine + separator + '' + lang_cat_power + ': ' + data.power+'W'; } // Add complementary info to frequency line @@ -1790,38 +1808,41 @@ mymap.on('mousemove', onQsoMapMove); } else if (state === 'error') { // Error state - WebSocket connection error - iconColor = '#dc3545'; // Red for error + iconClass = 'text-danger'; // Bootstrap red for error var radioName = typeof data === 'string' ? data : $('select.radios option:selected').text(); - content = '
Radio connection error: ' + radioName + '. Connection lost, please select another radio.
'; + content = '
' + lang_cat_connection_error + ': ' + radioName + '. ' + lang_cat_connection_lost + '
'; } else if (state === 'timeout') { // Timeout state - data too old - iconColor = '#ffc107'; // Yellow/amber for timeout + iconClass = 'text-warning'; // Bootstrap yellow/amber for timeout var radioName = typeof data === 'string' ? data : $('select.radios option:selected').text(); - content = '
Radio connection timeout: ' + radioName + '. Data is stale, please select another radio.
'; + content = '
' + lang_cat_connection_timeout + ': ' + radioName + '. ' + lang_cat_data_stale + '
'; } else if (state === 'not_logged_in') { // Not logged in state - iconColor = '#dc3545'; // Red for error - content = '
You\'re not logged in. Please log in.
'; + iconClass = 'text-danger'; // Bootstrap red for error + content = '
' + lang_cat_not_logged_in + '
'; } - // Build icon with dynamic color and ID for animation - var icon = ''; + // Build icon with Bootstrap color class and ID for animation + var icon = ''; var html = baseStyle + icon + content + '
'; - // Update DOM - if (!$('#radio_cat_state').length) { - // Create panel if it doesn't exist - $('#radio_status').prepend('
' + html + '
'); - } else { - // Dispose of existing tooltips before updating content - $('#radio_cat_state [data-bs-toggle="tooltip"]').tooltip('dispose'); - // Update existing panel content - $('#radio_cat_state .card-body').html(html); - } - - // Initialize Bootstrap tooltips for any new tooltip elements in the radio panel + // Update DOM + if (!$('#radio_cat_state').length) { + // Create panel if it doesn't exist + $('#radio_status').prepend('
' + html + '
'); + } else { + // Dispose of existing tooltips before updating content + $('#radio_cat_state [data-bs-toggle="tooltip"]').each(function() { + var tooltipInstance = bootstrap.Tooltip.getInstance(this); + if (tooltipInstance) { + tooltipInstance.dispose(); + } + }); + // Update existing panel content + $('#radio_cat_state .card-body').html(html); + } // Initialize Bootstrap tooltips for any new tooltip elements in the radio panel $('#radio_cat_state [data-bs-toggle="tooltip"]').each(function() { new bootstrap.Tooltip(this); }); @@ -1871,7 +1892,7 @@ mymap.on('mousemove', onQsoMapMove); data.radio = radioNameCache[currentRadioId]; } else if (currentRadioId == 'ws') { // WebSocket radio - use default name if not provided - data.radio = 'WebSocket Radio'; + data.radio = lang_cat_websocket_radio; } else { // Fall back to dropdown text data.radio = $('select.radios option:selected').text(); diff --git a/assets/js/dxwaterfall.js b/assets/js/dxwaterfall.js index b34602baf..4e5bfad90 100644 --- a/assets/js/dxwaterfall.js +++ b/assets/js/dxwaterfall.js @@ -2094,7 +2094,6 @@ var dxWaterfall = { } } else { // Waiting for target frequency - skip normal processing, CAT will confirm later - console.log('[DX Waterfall] INVALIDATE CACHE: Skipping (waiting for targetFrequencyHz=' + this.targetFrequencyHz + 'Hz)'); return; // Exit early } @@ -4802,7 +4801,6 @@ var dxWaterfall = { var catTuningDuration = currentTime - this.catTuningStartTime; if (catTuningDuration > DX_WATERFALL_CONSTANTS.CAT.TUNING_FLAG_FALLBACK_MS && !this.targetFrequencyHz) { - console.log('[DX Waterfall] TIMEOUT: Clearing catTuning flags after ' + catTuningDuration + 'ms'); this.catTuning = false; this.frequencyChanging = false; this.catTuningStartTime = null; From 01284e7475255549f91ae1764fc1ccd170ebf5ad Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Mon, 27 Oct 2025 22:36:31 +0100 Subject: [PATCH 50/56] Suppress console warnings Suppres console warning when loading the leaflet at various pages --- assets/js/leaflet/L.Maidenhead.activators.js | 10 ++++--- assets/js/leaflet/L.Maidenhead.js | 26 +++++++++++-------- assets/js/leaflet/L.Maidenhead.qrb.js | 10 ++++--- assets/js/leaflet/L.MaidenheadColoured.js | 14 ++++++---- .../js/leaflet/L.MaidenheadColouredGridMap.js | 10 ++++--- .../L.MaidenheadColouredGridmasterMap.js | 14 ++++++---- 6 files changed, 54 insertions(+), 30 deletions(-) diff --git a/assets/js/leaflet/L.Maidenhead.activators.js b/assets/js/leaflet/L.Maidenhead.activators.js index 16230cab7..f8656dd40 100644 --- a/assets/js/leaflet/L.Maidenhead.activators.js +++ b/assets/js/leaflet/L.Maidenhead.activators.js @@ -23,16 +23,20 @@ L.MaidenheadActivators = L.LayerGroup.extend({ onAdd: function (map) { this._map = map; var grid = this.redraw(map); - this._map.on('viewreset '+ this.options.redraw, function () { + // Store the event handler function so we can remove it later + this._onViewChange = function () { grid.redraw(map); - }); + }; + this._map.on('viewreset '+ this.options.redraw, this._onViewChange); this.eachLayer(map.addLayer, map); }, onRemove: function (map) { // remove layer listeners and elements - map.off('viewreset '+ this.options.redraw, this.map); + if (this._onViewChange) { + map.off('viewreset '+ this.options.redraw, this._onViewChange); + } this.eachLayer(this.removeLayer, this); }, diff --git a/assets/js/leaflet/L.Maidenhead.js b/assets/js/leaflet/L.Maidenhead.js index 1647b5450..c02dd824a 100644 --- a/assets/js/leaflet/L.Maidenhead.js +++ b/assets/js/leaflet/L.Maidenhead.js @@ -4,7 +4,7 @@ L.Maidenhead = L.LayerGroup.extend({ - + options: { // Line and label color color: 'rgba(255, 0, 0, 0.4)', @@ -21,16 +21,20 @@ L.Maidenhead = L.LayerGroup.extend({ onAdd: function (map) { this._map = map; var grid = this.redraw(); - this._map.on('viewreset '+ this.options.redraw, function () { + // Store the event handler function so we can remove it later + this._onViewChange = function () { grid.redraw(); - }); + }; + this._map.on('viewreset '+ this.options.redraw, this._onViewChange); this.eachLayer(map.addLayer, map); }, - + onRemove: function (map) { // remove layer listeners and elements - map.off('viewreset '+ this.options.redraw, this.map); + if (this._onViewChange) { + map.off('viewreset '+ this.options.redraw, this._onViewChange); + } this.eachLayer(this.removeLayer, this); }, @@ -64,7 +68,7 @@ L.Maidenhead = L.LayerGroup.extend({ } return this; }, - + _getLabel: function(lon,lat) { var title_size = new Array(0 ,10,12,16,20,26,15,16,24,36,12 ,14 ,20 ,36 ,60 ,12 ,20 ,36 ,60 ,12 ,24 ); var zoom = this._map.getZoom(); @@ -74,7 +78,7 @@ L.Maidenhead = L.LayerGroup.extend({ var marker = L.marker([lat,lon], {icon: myIcon}, clickable=false); return marker; }, - + _getLocator: function(lon,lat) { var ydiv_arr=new Array(10, 1, 1/24, 1/240, 1/240/24); var d1 = "ABCDEFGHIJKLMNOPQR".split(""); @@ -96,15 +100,15 @@ L.Maidenhead = L.LayerGroup.extend({ if ((i%2)==0) { locator += Math.floor(rlon/(ydiv_arr[i+1]*2)) +""+ Math.floor(rlat/(ydiv_arr[i+1])); } else { - locator += d2[Math.floor(rlon/(ydiv_arr[i+1]*2))] +""+ d2[Math.floor(rlat/(ydiv_arr[i+1]))]; + locator += d2[Math.floor(rlon/(ydiv_arr[i+1]*2))] +""+ d2[Math.floor(rlat/(ydiv_arr[i+1]))]; } } - } + } return locator; }, - - + + }); diff --git a/assets/js/leaflet/L.Maidenhead.qrb.js b/assets/js/leaflet/L.Maidenhead.qrb.js index 2bc4b201b..8b0014a3c 100644 --- a/assets/js/leaflet/L.Maidenhead.qrb.js +++ b/assets/js/leaflet/L.Maidenhead.qrb.js @@ -22,16 +22,20 @@ L.MaidenheadQrb = L.LayerGroup.extend({ onAdd: function (map) { this._map = map; var grid = this.redraw(map); - this._map.on('viewreset '+ this.options.redraw, function () { + // Store the event handler function so we can remove it later + this._onViewChange = function () { grid.redraw(map); - }); + }; + this._map.on('viewreset '+ this.options.redraw, this._onViewChange); this.eachLayer(map.addLayer, map); }, onRemove: function (map) { // remove layer listeners and elements - map.off('viewreset '+ this.options.redraw, this.map); + if (this._onViewChange) { + map.off('viewreset '+ this.options.redraw, this._onViewChange); + } this.eachLayer(this.removeLayer, this); }, diff --git a/assets/js/leaflet/L.MaidenheadColoured.js b/assets/js/leaflet/L.MaidenheadColoured.js index c80e733ef..395843def 100644 --- a/assets/js/leaflet/L.MaidenheadColoured.js +++ b/assets/js/leaflet/L.MaidenheadColoured.js @@ -21,16 +21,20 @@ L.Maidenhead = L.LayerGroup.extend({ onAdd: function (map) { this._map = map; var grid = this.redraw(); - this._map.on('viewreset '+ this.options.redraw, function () { + // Store the event handler function so we can remove it later + this._onViewChange = function () { grid.redraw(); - }); + }; + this._map.on('viewreset '+ this.options.redraw, this._onViewChange); this.eachLayer(map.addLayer, map); }, onRemove: function (map) { // remove layer listeners and elements - map.off('viewreset '+ this.options.redraw, this.map); + if (this._onViewChange) { + map.off('viewreset '+ this.options.redraw, this._onViewChange); + } this.eachLayer(this.removeLayer, this); }, @@ -61,9 +65,9 @@ L.Maidenhead = L.LayerGroup.extend({ for (var lat = bottom; lat < top; lat += unit) { var bounds = [[lat,lon],[lat+unit,lon+(unit*2)]]; var locator = this._getLocator(lon,lat); - + if(grid_two.includes(locator) || grid_four.includes(locator) || grid_six.includes(locator)) { - + if(grid_two_confirmed.includes(locator) || grid_four_confirmed.includes(locator) || grid_six_confirmed.includes(locator)) { var rectConfirmed = L.rectangle(bounds, {className: 'grid-rectangle grid-confirmed', color: 'rgba(144,238,144, 0.6)', weight: 1, fillOpacity: 1, fill:true, interactive: false}); this.addLayer(rectConfirmed); diff --git a/assets/js/leaflet/L.MaidenheadColouredGridMap.js b/assets/js/leaflet/L.MaidenheadColouredGridMap.js index e8c2a781e..c23bd81b7 100644 --- a/assets/js/leaflet/L.MaidenheadColouredGridMap.js +++ b/assets/js/leaflet/L.MaidenheadColouredGridMap.js @@ -20,16 +20,20 @@ L.Maidenhead = L.LayerGroup.extend({ onAdd: function (map) { this._map = map; var grid = this.redraw(); - this._map.on('viewreset '+ this.options.redraw, function () { + // Store the event handler function so we can remove it later + this._onViewChange = function () { grid.redraw(); - }); + }; + this._map.on('viewreset '+ this.options.redraw, this._onViewChange); this.eachLayer(map.addLayer, map); }, onRemove: function (map) { // remove layer listeners and elements - map.off('viewreset '+ this.options.redraw, this.map); + if (this._onViewChange) { + map.off('viewreset '+ this.options.redraw, this._onViewChange); + } this.eachLayer(this.removeLayer, this); }, diff --git a/assets/js/leaflet/L.MaidenheadColouredGridmasterMap.js b/assets/js/leaflet/L.MaidenheadColouredGridmasterMap.js index 6927da3df..2751a4174 100644 --- a/assets/js/leaflet/L.MaidenheadColouredGridmasterMap.js +++ b/assets/js/leaflet/L.MaidenheadColouredGridmasterMap.js @@ -21,16 +21,20 @@ L.Maidenhead = L.LayerGroup.extend({ onAdd: function (map) { this._map = map; var grid = this.redraw(); - this._map.on('viewreset '+ this.options.redraw, function () { + // Store the event handler function so we can remove it later + this._onViewChange = function () { grid.redraw(); - }); + }; + this._map.on('viewreset '+ this.options.redraw, this._onViewChange); this.eachLayer(map.addLayer, map); }, onRemove: function (map) { // remove layer listeners and elements - map.off('viewreset '+ this.options.redraw, this.map); + if (this._onViewChange) { + map.off('viewreset '+ this.options.redraw, this._onViewChange); + } this.eachLayer(this.removeLayer, this); }, @@ -59,9 +63,9 @@ L.Maidenhead = L.LayerGroup.extend({ for (var lat = bottom; lat < top; lat += unit) { var bounds = [[lat,lon],[lat+unit,lon+(unit*2)]]; var locator = this._getLocator(lon,lat); - + if(grid_four.includes(locator)) { - + if(grid_four_lotw.includes(locator)) { var rectConfirmed = L.rectangle(bounds, {className: 'grid-rectangle grid-confirmed', color: 'rgba(144,238,144, 0.6)', weight: 1, fillOpacity: 1, fill:true, interactive: false}); this.addLayer(rectConfirmed); From a28793cbbdb06017a16a40bdba06ebe3f9ab159e Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Wed, 29 Oct 2025 22:19:51 +0100 Subject: [PATCH 51/56] Final refactoring, fixes and improvments --- application/views/components/dxwaterfall.php | 2 +- assets/js/dxwaterfall.js | 965 +++++++++++-------- assets/js/sections/qso.js | 5 + 3 files changed, 557 insertions(+), 415 deletions(-) diff --git a/application/views/components/dxwaterfall.php b/application/views/components/dxwaterfall.php index 804f111c0..1cd77268f 100644 --- a/application/views/components/dxwaterfall.php +++ b/application/views/components/dxwaterfall.php @@ -1,7 +1,7 @@ session->userdata('user_dxwaterfall_enable') == 'Y' && isset($manual_mode) && $manual_mode == 0) { ?> - + diff --git a/application/views/qso/index.php b/application/views/qso/index.php index 1a672c571..670c6f1ca 100644 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -383,9 +383,9 @@ if (typeof window.DX_WATERFALL_FIELD_MAP === 'undefined') {
From 33094e9030006d551c600b969121938d6062a575 Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Thu, 30 Oct 2025 11:01:22 +0100 Subject: [PATCH 54/56] Added
to seperate DX Waterfall at option list --- application/views/user/edit.php | 1 + 1 file changed, 1 insertion(+) diff --git a/application/views/user/edit.php b/application/views/user/edit.php index 2be60e18d..481c2e842 100644 --- a/application/views/user/edit.php +++ b/application/views/user/edit.php @@ -430,6 +430,7 @@ } ?>
+
From 1b7d721208bda1865c90a66a580b6788c599e147 Mon Sep 17 00:00:00 2001 From: Andreas Kristiansen <6977712+AndreasK79@users.noreply.github.com> Date: Thu, 30 Oct 2025 12:55:14 +0100 Subject: [PATCH 55/56] Fix get plaincall logic --- application/libraries/Callbook.php | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/application/libraries/Callbook.php b/application/libraries/Callbook.php index aaf0b2c6d..e6981a7ec 100644 --- a/application/libraries/Callbook.php +++ b/application/libraries/Callbook.php @@ -170,19 +170,20 @@ class Callbook { function get_plaincall($callsign) { $split_callsign = explode('/', $callsign); - if (count($split_callsign) == 1) { // case F0ABC --> return cel 0 // - $lookupcall = $split_callsign[0]; - } else if (count($split_callsign) == 3) { // case EA/F0ABC/P --> return cel 1 // - $lookupcall = $split_callsign[1]; - } else { // case F0ABC/P --> return cel 0 OR case EA/FOABC --> retunr 1 (normaly not exist) // - if (in_array(strtoupper($split_callsign[1]), array('P', 'M', 'MM', 'QRP', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'))) { - $lookupcall = $split_callsign[0]; - } else if (strlen($split_callsign[1]) > 3) { // Last Element longer than 3 chars? Take that as call - $lookupcall = $split_callsign[1]; - } else { // Last Element up to 3 Chars? Take first element as Call - $lookupcall = $split_callsign[0]; - } + if (count($split_callsign) == 1) { // case of plain callsign --> return callsign + return $callsign; } - return $lookupcall; + + // Case of known suffixes that are not part of the callsign + if (in_array(strtoupper($split_callsign[1]), array('LGT', 'AM', 'LH', 'A', 'B', 'R', 'T', 'X', 'D', 'P', 'M', 'MM', 'QRP', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'))) { + return $split_callsign[0]; + } + // case EA/FOABC --> return 1 + if (strlen($split_callsign[1]) > 3) { // Last Element longer than 3 chars? Take that as call + return $split_callsign[1]; + } + // case F0ABC/KH6 --> return cell 0 + return $split_callsign[0]; } + } From a2603763659d404418f4e1f4738dc421be2eb948 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 30 Oct 2025 15:57:16 +0000 Subject: [PATCH 56/56] po/mo updates --- .../locale/bg_BG/LC_MESSAGES/messages.po | 1093 +++++++++------- application/locale/bs/LC_MESSAGES/messages.po | 1093 +++++++++------- .../locale/cnr/LC_MESSAGES/messages.po | 1093 +++++++++------- .../locale/cs_CZ/LC_MESSAGES/messages.po | 1093 +++++++++------- .../locale/de_DE/LC_MESSAGES/messages.mo | Bin 277336 -> 277198 bytes .../locale/de_DE/LC_MESSAGES/messages.po | 1097 ++++++++++------- .../locale/el_GR/LC_MESSAGES/messages.po | 1093 +++++++++------- .../locale/es_ES/LC_MESSAGES/messages.mo | Bin 278853 -> 278744 bytes .../locale/es_ES/LC_MESSAGES/messages.po | 1097 ++++++++++------- application/locale/et/LC_MESSAGES/messages.po | 1093 +++++++++------- .../locale/fi_FI/LC_MESSAGES/messages.po | 1093 +++++++++------- .../locale/fr_FR/LC_MESSAGES/messages.po | 1097 ++++++++++------- application/locale/hr/LC_MESSAGES/messages.po | 1093 +++++++++------- application/locale/hu/LC_MESSAGES/messages.po | 1093 +++++++++------- application/locale/hy/LC_MESSAGES/messages.po | 1093 +++++++++------- .../locale/it_IT/LC_MESSAGES/messages.mo | Bin 269576 -> 269481 bytes .../locale/it_IT/LC_MESSAGES/messages.po | 1097 ++++++++++------- application/locale/ja/LC_MESSAGES/messages.mo | Bin 305900 -> 305752 bytes application/locale/ja/LC_MESSAGES/messages.po | 1097 ++++++++++------- application/locale/lt/LC_MESSAGES/messages.po | 1093 +++++++++------- application/locale/lv/LC_MESSAGES/messages.po | 1093 +++++++++------- .../locale/nl_NL/LC_MESSAGES/messages.mo | Bin 273134 -> 273035 bytes .../locale/nl_NL/LC_MESSAGES/messages.po | 1097 ++++++++++------- .../locale/pl_PL/LC_MESSAGES/messages.mo | Bin 278677 -> 278581 bytes .../locale/pl_PL/LC_MESSAGES/messages.po | 1097 ++++++++++------- .../locale/pt_PT/LC_MESSAGES/messages.mo | Bin 277447 -> 277345 bytes .../locale/pt_PT/LC_MESSAGES/messages.po | 1097 ++++++++++------- .../locale/ru_RU/LC_MESSAGES/messages.mo | Bin 359139 -> 359003 bytes .../locale/ru_RU/LC_MESSAGES/messages.po | 1097 ++++++++++------- application/locale/sk/LC_MESSAGES/messages.po | 1093 +++++++++------- application/locale/sl/LC_MESSAGES/messages.po | 1093 +++++++++------- application/locale/sq/LC_MESSAGES/messages.po | 1093 +++++++++------- application/locale/sr/LC_MESSAGES/messages.mo | Bin 186926 -> 186820 bytes application/locale/sr/LC_MESSAGES/messages.po | 1097 ++++++++++------- .../locale/sv_SE/LC_MESSAGES/messages.mo | Bin 269381 -> 269281 bytes .../locale/sv_SE/LC_MESSAGES/messages.po | 1097 ++++++++++------- .../locale/tr_TR/LC_MESSAGES/messages.mo | Bin 280697 -> 280600 bytes .../locale/tr_TR/LC_MESSAGES/messages.po | 1097 ++++++++++------- .../locale/zh_CN/LC_MESSAGES/messages.mo | Bin 245550 -> 245467 bytes .../locale/zh_CN/LC_MESSAGES/messages.po | 1097 ++++++++++------- assets/lang_src/messages.pot | 1093 +++++++++------- 41 files changed, 19569 insertions(+), 12180 deletions(-) diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index c7c0b062d..7c7073390 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: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: 2024-11-01 08:53+0000\n" "Last-Translator: Plamen Panteleev \n" "Language-Team: Bulgarian 1.1.10)" msgstr "" @@ -6562,14 +6564,17 @@ msgid "Worked, not Confirmed" msgstr "" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "" @@ -6856,7 +6861,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "Местоположение" @@ -6988,7 +6993,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7011,12 +7016,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "Да" @@ -7051,7 +7056,7 @@ msgstr "Да" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7074,12 +7079,12 @@ msgstr "Да" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "Не" @@ -7408,6 +7413,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7439,8 +7608,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "Коментар" @@ -7654,7 +7823,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "" @@ -7765,7 +7934,7 @@ msgid "Reset QSO" msgstr "Нулиране на QSO" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "Запазване на QSO" @@ -7800,9 +7969,9 @@ msgstr "" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "" @@ -7939,7 +8108,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "" @@ -8055,7 +8224,7 @@ msgid "" msgstr "" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8091,7 +8260,7 @@ msgstr "Необходими" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8176,7 +8345,7 @@ msgstr "Получени" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9299,10 +9468,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9391,7 +9560,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "" #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "" @@ -9400,7 +9569,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "" @@ -9453,171 +9622,240 @@ msgstr "" msgid "Duplication is disabled for Contacts notes" msgstr "" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "Изтриване на бележката" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -9625,62 +9863,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "" @@ -9868,7 +10101,7 @@ msgstr "" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" @@ -10274,7 +10507,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "" @@ -10394,7 +10627,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10415,7 +10648,7 @@ msgstr "Директено" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10434,7 +10667,7 @@ msgstr "Бюро" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10449,49 +10682,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "" @@ -10653,7 +10886,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10690,7 +10923,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -10923,7 +11156,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "" @@ -11275,7 +11508,7 @@ msgid "Note Contents" msgstr "Съдържание на бележката" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "Запазване на бележката" @@ -11707,7 +11940,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -11726,12 +11959,12 @@ msgstr "" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -11755,7 +11988,7 @@ msgstr "Станция" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12322,11 +12555,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Посочете стойността на мощността във ватове. Въведете само цифри." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -12336,25 +12569,25 @@ msgstr "Мощност на предавателя (W)" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "" @@ -12367,38 +12600,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12407,8 +12640,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "Метод" @@ -12429,7 +12662,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12473,7 +12706,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "Предишни контакти" @@ -12510,155 +12743,167 @@ msgstr "" msgid "Invalid value for antenna elevation:" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "Сат" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "IOTA референция" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "SOTA референция" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "Честота (RX)" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "Обхват (RX)" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "Например: GM/NS-001." -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "Например: DLFF-0069." -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "Например: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "Например: GMA" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "Например: DA/NW-357" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "Например: Q03" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "Име на сателита" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "Режим на сателита" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "" -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "Предложения" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "" @@ -13946,7 +14191,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14614,303 +14859,311 @@ msgstr "" msgid "Number of previous contacts displayed on QSO page." msgstr "" +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "" -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." msgstr "" -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." msgstr "" -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "" -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -14918,85 +15171,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "" diff --git a/application/locale/bs/LC_MESSAGES/messages.po b/application/locale/bs/LC_MESSAGES/messages.po index 036b9bed8..b4ca446a8 100644 --- a/application/locale/bs/LC_MESSAGES/messages.po +++ b/application/locale/bs/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: 2024-11-16 17:03+0000\n" "Last-Translator: Samir \n" "Language-Team: Bosnian 1.1.10)" msgstr "" @@ -6569,14 +6571,17 @@ msgid "Worked, not Confirmed" msgstr "" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "" @@ -6863,7 +6868,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "" @@ -6995,7 +7000,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7018,12 +7023,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "Da" @@ -7058,7 +7063,7 @@ msgstr "Da" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7081,12 +7086,12 @@ msgstr "Da" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "Ne" @@ -7415,6 +7420,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7446,8 +7615,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "" @@ -7661,7 +7830,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "" @@ -7772,7 +7941,7 @@ msgid "Reset QSO" msgstr "" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "" @@ -7807,9 +7976,9 @@ msgstr "" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "" @@ -7946,7 +8115,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "" @@ -8063,7 +8232,7 @@ msgid "" msgstr "" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8100,7 +8269,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8185,7 +8354,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9312,10 +9481,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9404,7 +9573,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "" #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "" @@ -9413,7 +9582,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "" @@ -9466,151 +9635,220 @@ msgstr "" msgid "Duplication is disabled for Contacts notes" msgstr "" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -9620,20 +9858,20 @@ msgstr "" "Provjerite koji je DXCC za ovu određenu lokaciju ispravan. Ako ste sigurni, " "zanemarite ovo upozorenje." -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -9641,62 +9879,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "" @@ -9884,7 +10117,7 @@ msgstr "" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" @@ -10290,7 +10523,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "" @@ -10410,7 +10643,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10431,7 +10664,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10450,7 +10683,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10465,49 +10698,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "" @@ -10669,7 +10902,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10706,7 +10939,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -10939,7 +11172,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "" @@ -11291,7 +11524,7 @@ msgid "Note Contents" msgstr "" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "" @@ -11723,7 +11956,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -11742,12 +11975,12 @@ msgstr "" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -11771,7 +12004,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12340,11 +12573,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -12354,25 +12587,25 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "" @@ -12385,38 +12618,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12425,8 +12658,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "" @@ -12447,7 +12680,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12491,7 +12724,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "" @@ -12528,155 +12761,167 @@ msgstr "" msgid "Invalid value for antenna elevation:" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "" -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "" @@ -13964,7 +14209,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14632,303 +14877,311 @@ msgstr "" msgid "Number of previous contacts displayed on QSO page." msgstr "" +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "" -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." msgstr "" -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." msgstr "" -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "" -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -14936,85 +15189,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "" diff --git a/application/locale/cnr/LC_MESSAGES/messages.po b/application/locale/cnr/LC_MESSAGES/messages.po index c89a9bd8c..0a956ec49 100644 --- a/application/locale/cnr/LC_MESSAGES/messages.po +++ b/application/locale/cnr/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: 2024-11-19 01:22+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Montenegrin 1.1.10)" msgstr "" @@ -6569,14 +6571,17 @@ msgid "Worked, not Confirmed" msgstr "" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "" @@ -6863,7 +6868,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "" @@ -6995,7 +7000,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7018,12 +7023,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "" @@ -7058,7 +7063,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7081,12 +7086,12 @@ msgstr "" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "" @@ -7415,6 +7420,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7446,8 +7615,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "" @@ -7661,7 +7830,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "" @@ -7772,7 +7941,7 @@ msgid "Reset QSO" msgstr "" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "" @@ -7807,9 +7976,9 @@ msgstr "" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "" @@ -7946,7 +8115,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "" @@ -8063,7 +8232,7 @@ msgid "" msgstr "" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8100,7 +8269,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8185,7 +8354,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9310,10 +9479,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9402,7 +9571,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "" #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "" @@ -9411,7 +9580,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "" @@ -9464,171 +9633,240 @@ msgstr "" msgid "Duplication is disabled for Contacts notes" msgstr "" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -9636,62 +9874,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "" @@ -9879,7 +10112,7 @@ msgstr "" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" @@ -10285,7 +10518,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "" @@ -10405,7 +10638,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10426,7 +10659,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10445,7 +10678,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10460,49 +10693,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "" @@ -10664,7 +10897,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10701,7 +10934,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -10934,7 +11167,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "" @@ -11286,7 +11519,7 @@ msgid "Note Contents" msgstr "" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "" @@ -11718,7 +11951,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -11737,12 +11970,12 @@ msgstr "" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -11766,7 +11999,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12335,11 +12568,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -12349,25 +12582,25 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "" @@ -12380,38 +12613,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12420,8 +12653,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "" @@ -12442,7 +12675,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12486,7 +12719,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "" @@ -12523,155 +12756,167 @@ msgstr "" msgid "Invalid value for antenna elevation:" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "" -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "" @@ -13959,7 +14204,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14627,303 +14872,311 @@ msgstr "" msgid "Number of previous contacts displayed on QSO page." msgstr "" +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "" -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." msgstr "" -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." msgstr "" -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "" -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -14931,85 +15184,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "" diff --git a/application/locale/cs_CZ/LC_MESSAGES/messages.po b/application/locale/cs_CZ/LC_MESSAGES/messages.po index ae655f873..28f02bd1b 100644 --- a/application/locale/cs_CZ/LC_MESSAGES/messages.po +++ b/application/locale/cs_CZ/LC_MESSAGES/messages.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: 2024-09-23 14:46+0000\n" "Last-Translator: Filip Melik \n" "Language-Team: Czech 1.1.10)" msgstr "" @@ -6571,14 +6573,17 @@ msgid "Worked, not Confirmed" msgstr "" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "" @@ -6865,7 +6870,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "Místo" @@ -6997,7 +7002,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7020,12 +7025,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "Ano" @@ -7060,7 +7065,7 @@ msgstr "Ano" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7083,12 +7088,12 @@ msgstr "Ano" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "Ne" @@ -7417,6 +7422,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7448,8 +7617,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "Komentář" @@ -7663,7 +7832,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "" @@ -7774,7 +7943,7 @@ msgid "Reset QSO" msgstr "Smazat QSO" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "Uložit QSO" @@ -7809,9 +7978,9 @@ msgstr "" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "" @@ -7948,7 +8117,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "Šíření signálu" @@ -8065,7 +8234,7 @@ msgid "" msgstr "" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8102,7 +8271,7 @@ msgstr "Zbývá" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8187,7 +8356,7 @@ msgstr "Přijato" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9314,10 +9483,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9406,7 +9575,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "" #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "" @@ -9415,7 +9584,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "" @@ -9468,171 +9637,240 @@ msgstr "" msgid "Duplication is disabled for Contacts notes" msgstr "" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "Smazat poznámku" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -9640,62 +9878,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "lokátor" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "Celkový počet" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL karta" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "" @@ -9883,7 +10116,7 @@ msgstr "" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" @@ -10289,7 +10522,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "" @@ -10409,7 +10642,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10430,7 +10663,7 @@ msgstr "Přímá" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10449,7 +10682,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10464,49 +10697,49 @@ msgstr "Elektronická" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Správce" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "" @@ -10668,7 +10901,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10705,7 +10938,7 @@ msgstr "Ve frontě" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -10938,7 +11171,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "" @@ -11293,7 +11526,7 @@ msgid "Note Contents" msgstr "" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "Uložit poznámku" @@ -11730,7 +11963,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -11749,12 +11982,12 @@ msgstr "" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -11778,7 +12011,7 @@ msgstr "Stanice" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12347,11 +12580,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Zadej výkon ve Wattech. Jsou povolena pouze čísla." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -12361,25 +12594,25 @@ msgstr "Vysílací výkon (W)" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "" @@ -12392,38 +12625,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12432,8 +12665,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "Metoda" @@ -12454,7 +12687,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12498,7 +12731,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "Předchozí spojení" @@ -12535,155 +12768,167 @@ msgstr "" msgid "Invalid value for antenna elevation:" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "IOTA označení" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "SOTA označení" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "Frekvence (RX)" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "Pásmo (RX)" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "Příklad: GM/NS-001." -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "Příklad: DLFF-0069." -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "Příklad: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "Příklad: GMA" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "Příklad: DA/NW-357" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "Příklad: Q03" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "Název satelitu" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "Režim satelitu" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "" -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "Návrhy" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "" @@ -13971,7 +14216,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14646,174 +14891,182 @@ msgstr "Automatické vyhledávání lokátoru a jména pro POTA park." msgid "Number of previous contacts displayed on QSO page." msgstr "" +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "Hlavní menu" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "Zobrazovat poznámky v hlavním menu." -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." msgstr "" -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." msgstr "" -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "Předchozí typ QSL" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "Vyberte typ QSL k zobrazení v sekci předchozích QSOs." -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "Oznámení na palubní desce" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "Tímto lze zakázat globální oznámení na palubní desce." -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "Globální text" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "Tento text je nepovinný text, který lze zobrazit na horní části stránky OQRS." -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "Seskupené vyhledávání" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -14821,131 +15074,131 @@ msgstr "" "Když je tato možnost zapnutá, budou všechny stanice s aktivním OQRS " "vyhledávány najednou." -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "Výchozí pásma" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "Přihlašovací jméno Logbook of The World (LoTW)" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "Heslo Logbook of The World (LoTW)" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "Uživatelské jméno eQSL.cc" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "Heslo eQSL.cc" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "Heslo Club Logu" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -14953,85 +15206,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "Nahrávání stavu AMSAT" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "Nahrávání stavu SAT QSOs na" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "Mastodon server" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "URL Mastodon serveru" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "Uložit změny účtu" diff --git a/application/locale/de_DE/LC_MESSAGES/messages.mo b/application/locale/de_DE/LC_MESSAGES/messages.mo index 9f74203e19fd9002207e1135c06eda1527d56c7e..63920601b6b602442764f15bbae47600cd9cd834 100644 GIT binary patch delta 59868 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 A6#xJL diff --git a/application/locale/de_DE/LC_MESSAGES/messages.po b/application/locale/de_DE/LC_MESSAGES/messages.po index feadea935..81ed01724 100644 --- a/application/locale/de_DE/LC_MESSAGES/messages.po +++ b/application/locale/de_DE/LC_MESSAGES/messages.po @@ -26,7 +26,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: 2025-10-28 21:04+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: German 1.1.10)" msgstr "WebSocket (ab WavelogGate 1.1.10)" @@ -6984,14 +6986,17 @@ msgid "Worked, not Confirmed" msgstr "Gearbeitet, nicht bestätigt" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "Phonie" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "CW" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "Digi" @@ -7295,7 +7300,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "Standort" @@ -7430,7 +7435,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7453,12 +7458,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "Ja" @@ -7493,7 +7498,7 @@ msgstr "Ja" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7516,12 +7521,12 @@ msgstr "Ja" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "Nein" @@ -7866,6 +7871,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "QSLs von Clublog herunterladen" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7901,8 +8070,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "Kommentar" @@ -8123,7 +8292,7 @@ msgstr "Seriennummer + Locator + Austausch" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "Rufzeichen des Operators" @@ -8238,7 +8407,7 @@ msgid "Reset QSO" msgstr "Setze QSO zurück" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "Speichere QSO" @@ -8273,9 +8442,9 @@ msgstr "Identifikator" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "Eingeschaltet" @@ -8422,7 +8591,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:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "Propagation" @@ -8552,7 +8721,7 @@ msgid "" msgstr "Das QSO-Enddatum von einem deiner Zertifikate wird bald überschritten" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8588,7 +8757,7 @@ msgstr "Benötigt" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8673,7 +8842,7 @@ msgstr "Erhalten" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9899,10 +10068,10 @@ msgid "QSL Date" msgstr "QSL-Datum" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9997,7 +10166,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "Warnung! Bist du sicher, dass du dieses QSO löschen willst mit " #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "Farben" @@ -10006,7 +10175,7 @@ msgid "Worked not confirmed" msgstr "Gearbeitet, nicht bestätigt" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "Zurücksetzen" @@ -10060,155 +10229,224 @@ msgstr "Sortierung" msgid "Duplication is disabled for Contacts notes" msgstr "Duplizierung ist für Kontaktnotizen deaktiviert" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "Duplikat" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "Lösche Notiz" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "Dupliziere Notiz" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "Diese Notiz löschen?" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "Diese Notiz duplizieren?" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "Duplizierung deaktiviert" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "Es wurden keine Notizen gefunden" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "Keine Notizen zu diesem Rufzeichen" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "Rufzeichen Notiz" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "Notiz erfolgreich gelöscht" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "Notiz erfolgreich erstellt" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "Notiz erfolgreich gespeichert" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "Fehler beim Speichern der Notiz" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "Versionsinfo" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "Fehler beim Laden des Modals. Bitte versuche es erneut." -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "Beschreibung:" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "Suchmuster-Beschreibung" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "Dein Suchmuster wurde gespeichert!" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "Suchmuster bearbeiten" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "Gespeicherte Suchmuster:" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "Suchmuster ausführen" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "Gespeicherte Suchmuster" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "Du musst ein Suchmuster erstellen, bevor du suchst!" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "Nach ADIF exportieren" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "Im erweiterten Logbuch öffnen" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" "Warnung! Bist du sicher, dass du dieses gespeicherte Suchmuster löschen " "willst?" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "Das gespeicherte Suchmuster wurde gelöscht!" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "" "Das gespeicherte Suchmuster konnte nicht gelöscht werden. Bitte versuche es " "erneut!" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "Die Beschreibung des Suchmusters wurde aktualisiert!" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "Etwas ist beim Speichern schiefgelaufen. Bitte versuche es erneut!" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -10220,20 +10458,20 @@ msgstr "" "'Federal Republic of Germany'. Wenn du dir sicher bist, ignoriere diese " "Warnung." -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "Rufzeichen: " -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "Anzahl: " -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "Locator: " -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -10241,62 +10479,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Locator" -#: application/views/interface_assets/footer.php:1559 -#, 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:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "Locator" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "Summe" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "QSL-Karte für " -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 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:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL-Karte" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "eQSL-Karte für " -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "QSL-Bilddatei" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "Vorderseite QSL-Karte:" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "Rückseite QSL-Karte:" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "Weitere QSOs zu einer QSL-Karte hinzufügen" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "Etwas ist schiefgelaufen. Bitte versuche es erneut!" @@ -10484,7 +10717,7 @@ msgstr "Logge" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "Suche Rufzeichen" @@ -10899,7 +11132,7 @@ msgstr "Sendeleistung" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "Region" @@ -11019,7 +11252,7 @@ msgstr "Verifiziert" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -11040,7 +11273,7 @@ msgstr "Direkt" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -11059,7 +11292,7 @@ msgstr "Büro" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -11074,49 +11307,49 @@ msgstr "Elektronisch" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Manager" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "KEIN" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "Afrikanisches Italien" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "Bäreninsel" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "Europäische Türkei" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "ITU Wien" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "Kosovo" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "Shetlandinseln" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "Sizilien" @@ -11293,7 +11526,7 @@ msgstr "QSL gesendet" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -11330,7 +11563,7 @@ msgstr "In Warteschlange" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11563,7 +11796,7 @@ msgstr "De" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "QRZ" @@ -11934,7 +12167,7 @@ msgid "Note Contents" msgstr "Notizeninhalt" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "Speichere Notiz" @@ -12416,7 +12649,7 @@ msgstr "Gibt es weitere Informationen, über die wir Bescheid wissen sollten?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -12435,12 +12668,12 @@ msgstr "Sende eine 'Nicht im Log'-Anfrage" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -12464,7 +12697,7 @@ msgstr "Station" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -13061,12 +13294,12 @@ msgstr "RX-Frequenz" msgid "RX Band" msgstr "RX-Band" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 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:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -13076,25 +13309,25 @@ msgstr "Sendeleistung (W)" msgid "Used for VUCC MultiGrids" msgstr "Wird für VUCC MultiGrids verwendet" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "Antennenpfad" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "Greyline" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "Andere" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "Short Path" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "Long Path" @@ -13107,38 +13340,38 @@ msgstr "Satellitenname" msgid "Sat Mode" msgstr "Sat-Modus" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "Antennen-Azimut (°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "Azimut der Antenne in Dezimalgrad." -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "Antennen-Elevation (°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "Elevation der Antenne in Dezimalgrad." -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "Stations County" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "SIG-Info" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "Hinweis: Wird zu Drittanbieterdiensten exportiert." @@ -13147,8 +13380,8 @@ msgid "Sent Method" msgstr "Sendemethode" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "Methode" @@ -13169,7 +13402,7 @@ msgstr "Verifiziert (Match)" msgid "Received Method" msgstr "Empfangsmethode" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "Setze die eQSL-Nachricht auf den Standardtext zurück." @@ -13213,7 +13446,7 @@ msgstr "Änderungen speichern" msgid "TimeOff is less than TimeOn" msgstr "Endzeit ist vor der Startzeit" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "Vorherige Kontakte" @@ -13250,113 +13483,125 @@ msgstr "LoTW-Nutzer. Letzter Upload war vor %x Tagen." msgid "Invalid value for antenna elevation:" msgstr "Ungültiger Elevationswert für Antenne:" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "LIVE" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "POST" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "Sat" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "Band/Mode zu Favoriten hinzufügen" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "Startzeit" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "Endzeit" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "Suche im DX-Cluster nach letztem Spot" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "IOTA-Referenznummer" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "SOTA-Referenznummer" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "Frequenz (RX)" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "Band (RX)" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "Zum Beispiel: GM/NS-001." -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "Zum Beispiel: DLFF-0069." -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "Zum Beispiel: PA-0150. Mehrere Werte erlaubt." -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "Zum Beispiel: GMA" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "Zum Beispiel: DA/NW-357" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "Zum Beispiel: Q03" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "E-Mail Adresse des QSO-Partners" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "Satellit" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "Satellitenmodus" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "QSO Kommentar" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "QSL Nachricht" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "Auf Standardwerte zurücksetzen" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "Rufzeichen Notizen" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." @@ -13364,43 +13609,43 @@ msgstr "" "Speichere private Informationen über deinen QSO-Partner. Diese Notizen " "werden niemals geteilt oder an externe Dienste exportiert." -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "Verbinden" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "CW Geschwindigkeit" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "Stop" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "Abstimmen" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "Abstimmen stoppen" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "Text eingeben..." -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "Senden" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "Vorschläge" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "Profilbild" @@ -14804,7 +15049,7 @@ msgid "Special Interest Group Information" msgstr "Informationen für Besondere Interessengruppe (SIG)" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Probleme? Schau im %sWiki%s nach." @@ -15544,19 +15789,27 @@ msgstr "Automatische Ermittlung des Parknamens anhand der POTA-Referenz." msgid "Number of previous contacts displayed on QSO page." msgstr "Anzahl der QSOs welche auf der QSO Seite (Logging) angezeigt werden." +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "Menü Optionen" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "Zeige Notizen im Hauptmenü." -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "Quicklog-Feld" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." @@ -15564,24 +15817,24 @@ msgstr "" "Mit dieser Option kannst du Rufzeichen auch direkt aus dem Suchfeld in der " "Menüleiste heraus loggen." -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "Quicklog - Aktion mit Enter-Taste" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "Logge Rufzeichen" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "Welche Aktion soll ausgeführt werden, wenn Enter gedrückt wird?" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "Stationsstandort-Quickswitch" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." @@ -15589,154 +15842,154 @@ msgstr "" "Zeige den Stationsstandort-Quickswitch im Hauptmenü. Du kannst auf der " "Stationssetup-Seite Locations zu den Favoriten hinzufügen." -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "UTC-Zeit im Menü" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "Zeigt die aktuelle UTC-Zeit im Menü" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "Karteneinstellungen" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "Symbol" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "Nicht angezeigt" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "Nicht dargestellt" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "QSO (standardmässig)" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "QSO (bestätigte)" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "(Falls 'Nein', wird es angezeigt wie 'QSO (Standardeinstellung))'" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "Zeige Locator" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "QSL-Typ der vorherigen QSOs" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "Wähle den QSL-Typ für die Anzeige der bereits getätigten QSOs." -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "Dashboard Einstellungen" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "" "Wähle die Anzahl der letzten QSOs welche auf dem Dashboard angezeigt werden " "sollen." -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "" "Wähle die Anzahl der neuesten QSOs, die auf dem Dashboard angezeigt werden " "sollen." -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "Dashboard-Karte anzeigen" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "Karte rechts" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "Wähle aus ob du eine Karte am Dashboard sehen möchtest" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "Dashboard Benachrichtigungsbanner" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" "Dies ermöglicht es, die globalen Benachrichtigungsbanner auf dem Dashboard " "zu deaktivieren." -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "Dashboard Solar- und Ausbreitungsdaten" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" "Dies aktiviert die Anzeige der Solar- und Ausbreitungsdaten auf dem " "Dashboard." -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "Zeige Referenzen auf QSO-Reiter" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" "Die aktivierten Elemente werden auf dem QSO-Reiter statt des allgemeinen " "Reiters angezeigt." -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "Online-QSL-Anfrage (OQRS)-Einstellungen" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "Globaler Text" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "Dies ist ein optionaler Text, der auf oben auf der OQRS Seite angezeigt " "werden kann." -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "Gruppierte Suche" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "Aus" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "An" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "Wenn aktiviert, werden alle Stationsstandorte auf einmal durchsucht." -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "Zeige den Name des Stationsstandorts in der gruppierten Suche" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -15745,11 +15998,11 @@ msgstr "" "der Name des Stationsstandortes in der Ergebnistabelle gezeigt werden soll " "oder nicht." -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "Automatische Bestimmung von OQRS-Übereinstimmungen" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -15758,69 +16011,69 @@ msgstr "" "durchgeführt, und das System versucht, eingehende Anfragen automatisch mit " "vorhandenen Protokollen abzugleichen." -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "Automatischer OQRS-Abgleich für direkte Anfragen" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" "Wenn diese Option aktiviert ist, erfolgt eine automatischer OQRS-Abgleich " "für direkte Anfragen." -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "Standardwerte/Favoriten" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "Einstellung für Standardband und -bestätigungsmethode" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "Standardband" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "Standard QSL-Methoden" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "Externe Dienste" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "Logbook of The World (LoTW) Benutzername" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "Logbook of The World (LoTW) Passwort" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "Login Test" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "eQSL.cc Benutzername" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "eQSL.cc Passwort" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "Club Log" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "Club Log E-Mail" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "Club Log Passwort" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -15830,15 +16083,15 @@ msgstr "" "generieren, um Clublog in Wavelog zu nutzen. Besuche %sdeine Clublog-" "Einstellungsseite%s, um dies zu tun." -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "Widgets" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "On-Air Widget" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." @@ -15846,16 +16099,16 @@ msgstr "" "Hinweis: Wenn du dieses Widget nutzen möchtest, solltest du mindestens einen " "Transceiver via CAT konfiguriert haben." -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "Wenn diese Einstellung aktiviert ist, findest du das Widget unter %s." -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "Zeige \"Zuletzt gesehen\"-Zeit an" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." @@ -15863,15 +16116,15 @@ msgstr "" "Mit dieser Einstellung kannst du beeinflussen, ob die Zeit aus 'Zuletzt " "gesehen' im Widget angezeigt werden soll, oder nicht." -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "Zeige nur zuletzt aktualisierten CAT-Transceiver an" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "Nein, Zeige alle CAT-Transceiver" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -15883,15 +16136,15 @@ msgstr "" "geupdated wurde. Hast du nur einen CAT-TRX, so hat diese Einstellung keinen " "Effekt." -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "QSOs-Widget" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "Zeige genaue QSO-Zeit an" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." @@ -15899,40 +16152,40 @@ msgstr "" "Diese Einstellung steuert, ob die genaue QSO-Zeit im QSO-Widget angezeigt " "werden soll oder nicht." -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "Verschiedenes" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "AMSAT Status-Upload" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "Status von SAT-QSOs hochladen auf" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "Mastodonserver" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "URL des Mastodonservers" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "Haupt-URL deines Mastodon-Servers, z.B. %s" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "Winkeyer-Features eingeschaltet" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -15941,25 +16194,25 @@ msgstr "" "Die Winkeyer-Unterstützung in Wavelog ist sehr experimentell. Lies zuerst " "das Wiki auf %s, bevor du es aktivierst." -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "Privater Feed-Schlüssel" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "Schau in deinem Profil unter %s." -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "Zeige nur Überflüge an, die gearbeitet werden können" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -15967,7 +16220,7 @@ msgstr "" "Wenn aktiviert, werden nur sichtbare Überflüge basierend auf dem Locator des " "hams.at Profils angezeigt. Dazu muss der Private Feed Key konfiguriert sein." -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "Speichere Kontoänderungen" @@ -16669,6 +16922,10 @@ msgstr "Anfrage senden" msgid "Rcvd" msgstr "Rcvd" +#, php-format +#~ msgid "You're not logged in. Please %slogin%s" +#~ msgstr "Du bist nicht eingeloggt. Bitte %slogge dich ein%s" + #~ msgid "CFD Export" #~ msgstr "CFD-Export" diff --git a/application/locale/el_GR/LC_MESSAGES/messages.po b/application/locale/el_GR/LC_MESSAGES/messages.po index 731ff78c8..35064d9f5 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: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: 2025-08-19 17:14+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Greek 1.1.10)" msgstr "" @@ -6565,14 +6567,17 @@ msgid "Worked, not Confirmed" msgstr "" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "" @@ -6859,7 +6864,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "Τοποθεσία" @@ -6991,7 +6996,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7014,12 +7019,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "Ναι" @@ -7054,7 +7059,7 @@ msgstr "Ναι" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7077,12 +7082,12 @@ msgstr "Ναι" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "Οχι" @@ -7411,6 +7416,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7442,8 +7611,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "Σχόλιο" @@ -7657,7 +7826,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "" @@ -7768,7 +7937,7 @@ msgid "Reset QSO" msgstr "Επαναφορά QSO" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "Aποθήκευση QSO" @@ -7803,9 +7972,9 @@ msgstr "" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "" @@ -7942,7 +8111,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "Λειτουργία διάδοσης" @@ -8058,7 +8227,7 @@ msgid "" msgstr "" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8094,7 +8263,7 @@ msgstr "Απαιτείται" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8179,7 +8348,7 @@ msgstr "Ελήφθη" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9303,10 +9472,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9395,7 +9564,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "" #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "" @@ -9404,7 +9573,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "" @@ -9457,171 +9626,240 @@ msgstr "" msgid "Duplication is disabled for Contacts notes" msgstr "" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "Διαγραφή Σημείωσης" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -9629,62 +9867,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "" @@ -9872,7 +10105,7 @@ msgstr "" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" @@ -10278,7 +10511,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "" @@ -10398,7 +10631,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10419,7 +10652,7 @@ msgstr "Απευθείας" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10438,7 +10671,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10453,49 +10686,49 @@ msgstr "Ηλεκτρονική" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Διευθυντής" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "" @@ -10657,7 +10890,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10694,7 +10927,7 @@ msgstr "Σε ουρά" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -10927,7 +11160,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "" @@ -11285,7 +11518,7 @@ msgid "Note Contents" msgstr "Σημείωση Περιεχόμενα" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "Αποθήκευση Σημείωσης" @@ -11717,7 +11950,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -11736,12 +11969,12 @@ msgstr "" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -11765,7 +11998,7 @@ msgstr "Σταθμός" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12332,11 +12565,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Δώστε τιμή ισχύος σε Watts. Συμπεριλάβετε μόνο αριθμούς στην εισαγωγή." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -12346,25 +12579,25 @@ msgstr "Ισχύ διαβίβασης (W)" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "" @@ -12377,38 +12610,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12417,8 +12650,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "Μέθοδος" @@ -12439,7 +12672,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12483,7 +12716,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "Προηγούμενες Επαφές" @@ -12520,155 +12753,167 @@ msgstr "" msgid "Invalid value for antenna elevation:" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "Δορ" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "Παραπομπή IOTA" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "Παραπομπή SOTA" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "Συχνότητα (RX)" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "Ζώνη (RX)" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "Για παράδειγμα: GM/NS-001." -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "Για παράδειγμα: DLFF-0069." -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "Για παράδειγμα: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "Για παράδειγμα: GMA" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "Για παράδειγμα: DA/NW-357" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "Για παράδειγμα: Q03" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "Όνομα δορυφόρου" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "Λειτουργία δορυφόρου" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "" -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "Εισήγησης" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "Εικόνα προφίλ" @@ -13956,7 +14201,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14624,303 +14869,311 @@ msgstr "" msgid "Number of previous contacts displayed on QSO page." msgstr "" +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "" -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." msgstr "" -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." msgstr "" -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "" -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -14928,85 +15181,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "" diff --git a/application/locale/es_ES/LC_MESSAGES/messages.mo b/application/locale/es_ES/LC_MESSAGES/messages.mo index 3c2f0cecd5f33a76f08ebd22bea5814501f1d80f..5cb9d60f7150fc4378e862726f92c9a96089a195 100644 GIT binary patch delta 45165 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 F{|6>#BOCw# delta 45283 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

VVB!K6r8JqGeb|Spd)OCnRqR_ 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 Z138&9`59m69sU2Y_`=d#J)P6H{SQF~D=Yv2 diff --git a/application/locale/es_ES/LC_MESSAGES/messages.po b/application/locale/es_ES/LC_MESSAGES/messages.po index 5a7584a2b..49926da5d 100644 --- a/application/locale/es_ES/LC_MESSAGES/messages.po +++ b/application/locale/es_ES/LC_MESSAGES/messages.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: 2025-10-22 00:19+0000\n" "Last-Translator: David Quental \n" "Language-Team: Spanish 1.1.10)" msgstr "" @@ -6988,14 +6990,17 @@ msgid "Worked, not Confirmed" msgstr "Trabajado, no confirmado" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "Fonía" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "CW" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "Digi" @@ -7299,7 +7304,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "Localización" @@ -7434,7 +7439,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7457,12 +7462,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "Sí" @@ -7497,7 +7502,7 @@ msgstr "Sí" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7520,12 +7525,12 @@ msgstr "Sí" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "No" @@ -7873,6 +7878,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "Descargar QSLs desde Clublog" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7906,8 +8075,8 @@ msgstr "No hay activaciones próximas. Por favor vuelve a revisar más tarde." #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "Comentario" @@ -8128,7 +8297,7 @@ msgstr "Número de serie + Cuadrícula + Intercambio" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "Indicativo del Operador" @@ -8244,7 +8413,7 @@ msgid "Reset QSO" msgstr "Reinicializar QSO" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "Guardar QSO" @@ -8279,9 +8448,9 @@ msgstr "Identificador" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "Activado" @@ -8428,7 +8597,7 @@ msgstr "¡Solo se exportarán QSOs con información SOTA!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "Modo de propagación" @@ -8557,7 +8726,7 @@ msgid "" msgstr "" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8593,7 +8762,7 @@ msgstr "Solicitadas" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8678,7 +8847,7 @@ msgstr "Recibido" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9907,10 +10076,10 @@ msgid "QSL Date" msgstr "Fecha QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -10012,7 +10181,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "¡Advertencia! ¿Está seguro que desea eliminar QSOs con " #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "Colores" @@ -10021,7 +10190,7 @@ msgid "Worked not confirmed" msgstr "Trabajados no confirmados" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "Claro" @@ -10076,153 +10245,222 @@ msgstr "Clasificación" msgid "Duplication is disabled for Contacts notes" msgstr "La duplicación está desactivada para las notas de Contactos" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "Duplicar" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "Borrar nota" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "Nota duplicada" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "¿Eliminar esta nota?" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "¿Duplicar esta nota?" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "Duplicación desactivada" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "No se encontraron notas" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "Información de Versión" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "No se pudo cargar el modal. Por favor, inténtalo de nuevo." -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "Descripción:" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "Descripción de la consulta" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "¡Tu consulta ha sido guardada!" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "Editar consultas" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "Consultas almacenadas:" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "Ejecutar consulta" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "Consultas almacenadas" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "¡Necesitas hacer una consulta antes de buscar!" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "Exportar a ADIF" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "Abrir en el Registro Avanzado" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" "¡Advertencia! ¿Estás seguro de que deseas eliminar esta consulta almacenada?" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "¡La consulta almacenada ha sido eliminada!" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "" "No se pudo eliminar la consulta almacenada. ¡Por favor, inténtalo de nuevo!" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "¡La descripción de la consulta ha sido actualizada!" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "Algo salió mal con el guardado. ¡Por favor, inténtalo de nuevo!" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -10232,20 +10470,20 @@ msgstr "" "Comprueba cuál es el DXCC correcto para esta localización en particular. Si " "está seguro, ignore esta advertencia." -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "Indicativo " -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "Contar: " -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "Cuadrículas: " -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -10253,62 +10491,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Cuadrículas" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "No has iniciado sesión. Por favor %sinicia sesión%s" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "grid squares" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "Cuenta total" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "Tarjeta QSL para " -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "¡Advertencia! ¿Estás seguro de que deseas eliminar esta tarjeta QSL?" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "Tarjeta eQSL" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "Tarjeta eQSL para " -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "Archivo de imagen QSL" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "Frente de la tarjeta QSL:" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "Tarjeta QSL de regreso:" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "Agregar QSOs adicionales a una tarjeta QSL" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "Algo salió mal. ¡Inténtalo de nuevo!" @@ -10496,7 +10729,7 @@ msgstr "Registro" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "Guardar Indicativo" @@ -10914,7 +11147,7 @@ msgstr "Potencia de la estación" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "Región" @@ -11034,7 +11267,7 @@ msgstr "Verificado" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -11055,7 +11288,7 @@ msgstr "Directo" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -11074,7 +11307,7 @@ msgstr "Buró" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -11089,49 +11322,49 @@ msgstr "Electrónico" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Gerente" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "NINGUNO" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "Italia africana" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "Isla del Oso" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "Turquía europea" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "ITU Vienna" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "Kosovo" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "Islas Shetland" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "Sicilia" @@ -11308,7 +11541,7 @@ msgstr "QSL enviadas" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -11345,7 +11578,7 @@ msgstr "En Cola" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11578,7 +11811,7 @@ msgstr "De" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "QRZ" @@ -11948,7 +12181,7 @@ msgid "Note Contents" msgstr "Contenido de la nota" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "Guardar nota" @@ -12431,7 +12664,7 @@ msgstr "¿Alguna información adicional que necesitamos saber?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -12450,12 +12683,12 @@ msgstr "Enviar solicitud de no en el registro" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -12479,7 +12712,7 @@ msgstr "Estación" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -13079,11 +13312,11 @@ msgstr "Frecuencia RX" msgid "RX Band" msgstr "Banda RX" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Especifique el valor de potencia en Watios (W). Incluya solo números." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -13093,25 +13326,25 @@ msgstr "Potencia de transmisión (W)" msgid "Used for VUCC MultiGrids" msgstr "Utilizado para VUCC MultiGrids" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "Path de la antena" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "Línea gris" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "Otro" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "Camino corto" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "Ruta larga" @@ -13124,38 +13357,38 @@ msgstr "Nombre del satélite" msgid "Sat Mode" msgstr "Modo Sat" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "Azimut de la antena (°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "Azimut de la antena en grados decimales." -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "Elevación de la antena (°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "Elevación de la antena en grados decimales." -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "Condado de la Estación" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "Información SIG" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "Nota: Se exporta a servicios de terceros." @@ -13164,8 +13397,8 @@ msgid "Sent Method" msgstr "Método enviado" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "Método" @@ -13186,7 +13419,7 @@ msgstr "Verificado (Coincide)" msgid "Received Method" msgstr "Método recibido" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "Obtener el mensaje por defecto para eQSL, para esta estación." @@ -13230,7 +13463,7 @@ msgstr "Guardar cambios" msgid "TimeOff is less than TimeOn" msgstr "TimeOff es menor que TimeOn" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "Contactos previos" @@ -13267,155 +13500,167 @@ msgstr "Usuario de LoTW. La última subida fue hace %x días." msgid "Invalid value for antenna elevation:" msgstr "Valor invalido para elevación de antenna:" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "EN VIVO" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "PUBLICAR" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "Satélite" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "Añadir Banda/Modo a Favoritos" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "Hora inicio" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "Hora fin" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "Buscar DXCluster para el último Spot" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "Referencia IOTA" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "Referencia SOTA" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "Frecuencia (Recepción)" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "Banda (Recepción)" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "Por ejemplo: GM/NS-001." -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "Por ejemplo: DLFF-0069." -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "Por ejemplo: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "Por ejemplo: GMA" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "Por ejemplo: DA/NW-357" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "Por ejemplo: Q03" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "Dirección de correo electrónico del compañero de QSO" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "Nombre del Satélite" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "Modo del Satélite" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "Mensaje QSL" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "Restablecer a predeterminado" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "Conectar" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "Velocidad CW" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "Alto" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "Sintonizar" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "Detener sintonización" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "Introduce el texto..." -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "Enviar" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "Sugerencias" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "Imagen de Perfil" @@ -14824,7 +15069,7 @@ msgid "Special Interest Group Information" msgstr "Información del Grupo de Interés Especial" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "¿Problemas? Consulta la %swiki%s." @@ -15567,19 +15812,27 @@ msgstr "Obtener automáticamente gridsquare y nombre de POTA para el parque." msgid "Number of previous contacts displayed on QSO page." msgstr "Número de contactos previos mostrados en la página QSO." +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "Opciones de Menú" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "Mostrar notas en el Menú Principal." -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "Campo Registro Rápido" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." @@ -15587,25 +15840,25 @@ msgstr "" "Con esta característica, puedes registrar indicativos usando el campo de " "búsqueda en el encabezado." -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "Registro Rápido - Acción al presionar Intro" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "Registrar Indicativo" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" "¿Qué acción se debe ejecutar al presionar Intro en el campo Registro Rápido?" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "Cambio rápido de ubicaciones de estación" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." @@ -15614,140 +15867,140 @@ msgstr "" "Puedes añadir ubicaciones agregándolas a favoritos en la página de " "configuración de la estación." -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "Hora UTC en el menú" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "Mostrar la hora UTC actual en el menú" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "Configuración de Mapa" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "Icono" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "No mostrar" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "No mostrado" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "QSO (por defecto)" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "QSO (confirmadas)" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "(Si 'No', se muestra como 'QSO (por defecto))'" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "Mostrar Localizador" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "Tipo de QSL previo" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "Selecciona el tipo de QSL a mostrar en la sección de QSO previo." -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "Configuración del panel de control" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "Selecciona el número de QSOs más recientes para mostrar en el panel." -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "Elige el número de QSOs más recientes para mostrar en el panel." -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "Mostrar mapa del tablero" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "Mapa a la derecha" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "Elegir si mostrar el mapa en el panel o no" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "Marquesina de Notificación en la Vista General" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" "Esto permite deshabilitar la marquesina de notificaciones globales que se " "muestra en la Vista General." -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "Datos solares y de propagación del panel de control" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" "Esto cambia la visualización de los datos solares y de propagación en el " "panel." -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "Mostrar campos de referencia en la pestaña QSO" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" "Los elementos habilitados se mostrarán en la pestaña QSO en lugar de la " "pestaña General." -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "Configuración de solicitud de QSL en línea (OQRS)" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "Texto global" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "Este texto es un texto opcional que se mostrará en la parte superior de la " "página de OQRS." -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "Búsqueda agrupada" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "Apagado" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "En" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -15755,12 +16008,12 @@ msgstr "" "Cuando está activo, se buscarán en simultáneo todas las localizaciones de " "estación con OQRS activo." -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "" "Mostrar localización de la estación en los resultados de búsqueda agrupados" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -15768,11 +16021,11 @@ msgstr "" "Si la búsqueda agrupada esta ACTIVA, puede decidir si el nombre de la " "localización de la estación se mostrará en la tabla de resultados." -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "Coincidencia automática de OQRS" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -15781,69 +16034,69 @@ msgstr "" "sistema intentará emparejar automáticamente las solicitudes entrantes con " "los registros existentes." -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "Coincidencia automática de OQRS para solicitudes directas" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" "Si esto está activado, se realizará la coincidencia automática de OQRS para " "solicitudes directas." -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "Valores por Defecto" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "Configuración para Banda por Defecto y Confirmación" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "Banda por Defecto" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "Métodos de QSL por Defecto" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "Servicios de Terceros" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "Nombre de Usuario Logbook of The World (LoTW)" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "Contraseña Logbook of The World (LoTW)" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "Prueba de inicio de sesión" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "Nombre de Usuario eQSL.cc" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "Contraseña eQSL.cc" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "Club Log" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "Correo de Club Log" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "Contraseña de Club Log" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -15853,15 +16106,15 @@ msgstr "" "generar una contraseña de aplicación para usar Clublog en Wavelog. Visita " "%stu página de configuración de Clublog%s para hacerlo." -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "Widgets" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "Widget en el aire" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." @@ -15869,16 +16122,16 @@ msgstr "" "Nota: Para usar este widget, necesitas tener al menos una radio CAT " "configurada y funcionando." -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "Cuando esté habilitado, el widget estará disponible en %s." -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "Mostrar hora de \"última vez visto\"" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." @@ -15886,15 +16139,15 @@ msgstr "" "Esta configuración controla si la hora de 'Última vez visto' se muestra en " "el widget o no." -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "Mostrar solo la radio actualizada más recientemente" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "No, muestra todos los radios" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -15906,15 +16159,15 @@ msgstr "" "más recientemente actualizada. En caso de que solo tengas una radio, esta " "configuración no tiene efecto." -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "Widget de QSOs" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "Mostrar la hora exacta del QSO" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." @@ -15922,40 +16175,40 @@ msgstr "" "Esta configuración controla si se debe mostrar la hora exacta del QSO en el " "widget de QSO o no." -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "Otras Opciones" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "Subida de estados AMSAT" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "Subir los estados de QSOs de SAT QSOs a" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "Servidor de Mastodon" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "URL del Servidor de Mastodon" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "URL principal de tu servidor Mastodon, por ejemplo, %s" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "Características de Winkeyer Activadas" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -15964,25 +16217,25 @@ msgstr "" "El soporte de Winkeyer en Wavelog es muy experimental. Lee primero la wiki " "en %s antes de habilitarlo." -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "Clave de alimentación privada" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "Consulta tu perfil en %s." -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "Mostrar solo pases utilizables" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -15991,7 +16244,7 @@ msgstr "" "cuadrícula establecido en tu cuenta de hams.at. Requiere que se establezca " "la clave de alimentación privada." -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "Guardar Cambios de la Cuenta" @@ -16690,6 +16943,10 @@ msgstr "Enviar solicitud" msgid "Rcvd" msgstr "Recibido" +#, php-format +#~ msgid "You're not logged in. Please %slogin%s" +#~ msgstr "No has iniciado sesión. Por favor %sinicia sesión%s" + #~ msgid "CFD Export" #~ msgstr "Exportar en CFD" diff --git a/application/locale/et/LC_MESSAGES/messages.po b/application/locale/et/LC_MESSAGES/messages.po index 92e246d48..8415ab070 100644 --- a/application/locale/et/LC_MESSAGES/messages.po +++ b/application/locale/et/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: 2025-02-11 12:33+0000\n" "Last-Translator: tviitkar \n" "Language-Team: Estonian 1.1.10)" msgstr "" @@ -6564,14 +6566,17 @@ msgid "Worked, not Confirmed" msgstr "" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "" @@ -6858,7 +6863,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "" @@ -6990,7 +6995,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7013,12 +7018,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "Jah" @@ -7053,7 +7058,7 @@ msgstr "Jah" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7076,12 +7081,12 @@ msgstr "Jah" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "Ei" @@ -7410,6 +7415,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7441,8 +7610,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "" @@ -7656,7 +7825,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "" @@ -7767,7 +7936,7 @@ msgid "Reset QSO" msgstr "" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "" @@ -7802,9 +7971,9 @@ msgstr "" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "" @@ -7941,7 +8110,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "" @@ -8057,7 +8226,7 @@ msgid "" msgstr "" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8093,7 +8262,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8178,7 +8347,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9301,10 +9470,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9393,7 +9562,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "" #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "" @@ -9402,7 +9571,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "" @@ -9455,151 +9624,220 @@ msgstr "" msgid "Duplication is disabled for Contacts notes" msgstr "" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -9609,20 +9847,20 @@ msgstr "" "asukoha jaoks korrektne. Kui olete oma valikus kindel, siis võite seda " "teadet ignoreerida." -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -9630,62 +9868,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "" @@ -9873,7 +10106,7 @@ msgstr "" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" @@ -10279,7 +10512,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "" @@ -10399,7 +10632,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10420,7 +10653,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10439,7 +10672,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10454,49 +10687,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "" @@ -10658,7 +10891,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10695,7 +10928,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -10928,7 +11161,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "" @@ -11279,7 +11512,7 @@ msgid "Note Contents" msgstr "" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "" @@ -11711,7 +11944,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -11730,12 +11963,12 @@ msgstr "" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -11759,7 +11992,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12326,11 +12559,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -12340,25 +12573,25 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "" @@ -12371,38 +12604,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12411,8 +12644,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "" @@ -12433,7 +12666,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12477,7 +12710,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "" @@ -12514,155 +12747,167 @@ msgstr "" msgid "Invalid value for antenna elevation:" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "" -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "" @@ -13950,7 +14195,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14618,303 +14863,311 @@ msgstr "" msgid "Number of previous contacts displayed on QSO page." msgstr "" +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "" -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." msgstr "" -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." msgstr "" -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "" -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -14922,85 +15175,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "" diff --git a/application/locale/fi_FI/LC_MESSAGES/messages.po b/application/locale/fi_FI/LC_MESSAGES/messages.po index 149fcd34f..abd62d610 100644 --- a/application/locale/fi_FI/LC_MESSAGES/messages.po +++ b/application/locale/fi_FI/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: 2025-08-19 17:14+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Finnish 1.1.10)" msgstr "" @@ -6562,14 +6564,17 @@ msgid "Worked, not Confirmed" msgstr "" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "" @@ -6856,7 +6861,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "Sijainti" @@ -6988,7 +6993,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7011,12 +7016,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "Kyllä" @@ -7051,7 +7056,7 @@ msgstr "Kyllä" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7074,12 +7079,12 @@ msgstr "Kyllä" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "Ei" @@ -7408,6 +7413,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7439,8 +7608,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "Kommentti" @@ -7654,7 +7823,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "" @@ -7765,7 +7934,7 @@ msgid "Reset QSO" msgstr "Nollaa QSO" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "TALLENNA QSO" @@ -7800,9 +7969,9 @@ msgstr "" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "" @@ -7939,7 +8108,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "Propagaatiomuoto" @@ -8055,7 +8224,7 @@ msgid "" msgstr "" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8091,7 +8260,7 @@ msgstr "Tarvittu" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8176,7 +8345,7 @@ msgstr "Vastaanotetut" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9301,10 +9470,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9393,7 +9562,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "" #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "" @@ -9402,7 +9571,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "" @@ -9455,171 +9624,240 @@ msgstr "" msgid "Duplication is disabled for Contacts notes" msgstr "" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "Poista muistiinpano" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -9627,62 +9865,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "" @@ -9870,7 +10103,7 @@ msgstr "" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" @@ -10276,7 +10509,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "" @@ -10396,7 +10629,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10417,7 +10650,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10436,7 +10669,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10451,49 +10684,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Manageri" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "" @@ -10655,7 +10888,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10692,7 +10925,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -10925,7 +11158,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "" @@ -11282,7 +11515,7 @@ msgid "Note Contents" msgstr "Muistiinpanon teksti" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "Tallenna muistiinpano" @@ -11714,7 +11947,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -11733,12 +11966,12 @@ msgstr "" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -11762,7 +11995,7 @@ msgstr "Asema" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12329,11 +12562,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Anna teholukema Watteina käyttäen vain numeroita." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -12343,25 +12576,25 @@ msgstr "Lähetysteho (W)" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "" @@ -12374,38 +12607,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12414,8 +12647,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "Method / tapa" @@ -12436,7 +12669,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12480,7 +12713,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "Edelliset yhteydet" @@ -12517,155 +12750,167 @@ msgstr "" msgid "Invalid value for antenna elevation:" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "IOTA ref.nro" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "SOTA ref.nro" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "Taajuus (RX)" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "Bandi (RX)" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "Esimerkiksi: OH/JS-004." -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "Esimerkiksi: OHFF-1234." -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "Esimerkiksi: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "Esimerkiksi: GMA" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "Esimerkiksi: DA/NW-357" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "Esimerkiksi: Q03" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "Satelliitti" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "Satelliitin Mode" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "" -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "Kutsumerkkiehdotukset" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "Profiilikuva" @@ -13953,7 +14198,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14624,303 +14869,311 @@ msgstr "" msgid "Number of previous contacts displayed on QSO page." msgstr "" +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "Näytä 'Muistio' päävalikossa." -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." msgstr "" -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." msgstr "" -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "" -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "Oletusbandi" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "Logbook of The World (LoTW) Käyttäjänimi" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "Logbook of The World (LoTW) Salasana" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "eQSL.cc Käyttäjänimi" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "eQSL.cc Salasana" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "Club Log Salasana" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -14928,85 +15181,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "Tallenna käyttäjätilin muutokset" diff --git a/application/locale/fr_FR/LC_MESSAGES/messages.po b/application/locale/fr_FR/LC_MESSAGES/messages.po index 367381f73..fd0665767 100644 --- a/application/locale/fr_FR/LC_MESSAGES/messages.po +++ b/application/locale/fr_FR/LC_MESSAGES/messages.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: 2025-10-27 22:16+0000\n" "Last-Translator: F5MQU \n" "Language-Team: French 1.1.10)" msgstr "" @@ -6996,14 +6998,17 @@ msgid "Worked, not Confirmed" msgstr "Contacté, non Confirmé" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "Phonie" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "CW" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "Digi" @@ -7307,7 +7312,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "Lieu" @@ -7442,7 +7447,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7465,12 +7470,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "Oui" @@ -7505,7 +7510,7 @@ msgstr "Oui" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7528,12 +7533,12 @@ msgstr "Oui" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "Non" @@ -7888,6 +7893,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "Téléchargez les QSL depuis Clublog" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7919,8 +8088,8 @@ msgstr "Aucune activation à venir trouvée. Veuillez revenir plus tard." #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "Commentaire" @@ -8145,7 +8314,7 @@ msgstr "Numéro progressif + Locator + Report" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "Indicatif de l'opérateur" @@ -8259,7 +8428,7 @@ msgid "Reset QSO" msgstr "Réinitialiser QSO" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "Sauvegarder QSO" @@ -8294,9 +8463,9 @@ msgstr "Identifier" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "Activé" @@ -8443,7 +8612,7 @@ msgstr "Seuls les QSO avec un Locator défini seront exportés !" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "Mode Propagation" @@ -8577,7 +8746,7 @@ msgstr "" "d'être dépassée" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, fuzzy, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8613,7 +8782,7 @@ msgstr "Demandés" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8698,7 +8867,7 @@ msgstr "Reçues" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9916,10 +10085,10 @@ msgid "QSL Date" msgstr "Date de la QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -10018,7 +10187,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "Attention ! Êtes-vous sûr de vouloir supprimer le QSO avec " #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "Couleurs" @@ -10027,7 +10196,7 @@ msgid "Worked not confirmed" msgstr "Réalisés - non confirmés" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "Effacer" @@ -10082,151 +10251,220 @@ msgstr "Tri" msgid "Duplication is disabled for Contacts notes" msgstr "La reproduction des notes pour les Contacts est désactivée" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "Duplicata" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "Supprimer" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "Note en double" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "Supprimer cette note ?" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "Reproduire cette note ?" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "Reproduction désactivée" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "Aucune note n'a été trouvée" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "Aucune note pour cet indicatif" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "Remarque sur l'indicatif" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "Note supprimée avec succès" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "Note créée avec succès" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "Note enregistrée avec succès" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "Erreur lors de l'enregistrement de la note" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "Informations sur la version" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "Échec du chargement de la fenêtre modale. Veuillez réessayer." -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "Description :" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "Description de la requête" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "Votre requête a été enregistrée !" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "Modifier les requêtes" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "Requêtes stockées :" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "Exécuter la requête" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "Requêtes stockées" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "Vous devez faire une requête avant de rechercher !" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "Exporter vers ADIF" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "Ouvrir dans le journal de trafic avancé" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Attention ! Voulez-vous vraiment supprimer cette requête enregistrée ?" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "La requête enregistrée a été supprimée !" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "La requête enregistrée n'a pas pu être supprimée. Veuillez réessayer !" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "La description de la requête a été mise à jour !" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "Une erreur s'est produite lors de la sauvegarde. Veuillez réessayer !" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -10236,20 +10474,20 @@ msgstr "" "plus valide. Vérifiez quel DXCC correspond à cet localisation. Si vous en " "êtes sûr, ignorez cet avertissement." -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "Indicatif : " -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "Quantité : " -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "Locator : " -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -10257,62 +10495,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Locator" -#: application/views/interface_assets/footer.php:1559 -#, fuzzy, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "Vous n'êtes pas connecté. Veuillez vous connecter %slogin%s" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "Grilles des Locators" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "Total" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "Carte QSL pour " -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Attention ! Voulez-vous vraiment supprimer cette carte QSL ?" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "Carte eQSL" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "eQSL pour " -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "Fichier image de la QSL" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "Recto de la carte QSL :" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "Verso de la carte QSL :" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "Ajouter des QSO supplémentaires à une carte QSL" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "Une erreur s'est produite. Veuillez réessayer !" @@ -10500,7 +10733,7 @@ msgstr "Log" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "Rechercher l'indicatif" @@ -10918,7 +11151,7 @@ msgstr "Puissance de la station" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "Région" @@ -11038,7 +11271,7 @@ msgstr "Vérifiée" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -11059,7 +11292,7 @@ msgstr "Direct" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -11078,7 +11311,7 @@ msgstr "Bureau" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -11093,49 +11326,49 @@ msgstr "Numérique" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Manager" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "AUCUNE" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "Italie Africaine" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "Ile de Bear" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "Turquie européenne" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "ITU Vienne" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "Kosovo" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "Iles Shetland" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "Sicile" @@ -11312,7 +11545,7 @@ msgstr "QSL Envoyée" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -11349,7 +11582,7 @@ msgstr "En attente" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11584,7 +11817,7 @@ msgstr "De" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "QRZ" @@ -11956,7 +12189,7 @@ msgid "Note Contents" msgstr "Contenu de la note" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "Enregistrer" @@ -12433,7 +12666,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -12452,12 +12685,12 @@ msgstr "" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -12481,7 +12714,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -13048,11 +13281,11 @@ msgstr "Fréquence de réception" msgid "RX Band" msgstr "Bande de réception" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Saisissez la ouissance en Watts en utilisant uniquement des chiffres." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -13062,25 +13295,25 @@ msgstr "Puissance Emission (W)" msgid "Used for VUCC MultiGrids" msgstr "Utilisé pour les Locators VUCC" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "Trajet de l'antenne" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "Ligne grise" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "Autre" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "Chemin court" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "Chemin long" @@ -13093,38 +13326,38 @@ msgstr "Nom du satellite" msgid "Sat Mode" msgstr "Mode du satellite" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "Azimuth (°) de l'antenne" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "Azimuth (°) de l'antenne en degrés décimal." -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "Elévation (°) de l'antenne" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "Elevation de l'antenne en degrés décimal." -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "Comté de la station" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "Information sur le signal" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "Remarque : exporté vers des services tiers." @@ -13133,8 +13366,8 @@ msgid "Sent Method" msgstr "Méthode envoyée" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "Méthode" @@ -13155,7 +13388,7 @@ msgstr "Vérifié (correspondance)" msgid "Received Method" msgstr "Méthode reçue" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "Récupérer le message par défaut pour ce lieu de station." @@ -13199,7 +13432,7 @@ msgstr "Enregistrer les changements" msgid "TimeOff is less than TimeOn" msgstr "Heure de fin inférieure à celle de début" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "Contacts précédents" @@ -13236,113 +13469,125 @@ msgstr "Utilisateur de LoTW. Dernière mise en ligne il y a %x jours." msgid "Invalid value for antenna elevation:" msgstr "Valeur non valide pour l'élévation de l'antenne :" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "EN DIRECT" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "Satellitte" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "Ajouter une bande/un mode aux favoris" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "Heure début" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "Heure fin" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "Recherchez le dernier Spot sur DXCluster" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "Référence IOTA" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "Référence SOTA" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "Frequence (RX)" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "Bande (RX)" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "Par exemple : GM/NS-001." -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "Par exemple : DLFF-0069." -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "Par exemple : PA-0150. (Plusieurs valeurs autorisées)." -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "Par exemple : GMA" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "Par exemple : DA/NW-357" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "Par exemple : Q03" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "Adresse e-mail du correspondant" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "Nom du Satellite" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "Mode du Satellite" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "Commentaire du QSO" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "QSL MSG" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "Réinitialiser les paramètres par défaut" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "Notes sur l'indicatif" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." @@ -13350,43 +13595,43 @@ msgstr "" "Conservez les informations privées à propos de votre correspondant. Ces " "notes ne sont jamais partagées, ni exportées vers des services externes." -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "Connecter" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "Vitesse CW" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "Stop" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "Tune" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "Arrêter le Tune" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "Entrer du texte..." -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "Envoyer" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "Suggestions" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "Photo de profil" @@ -14797,7 +15042,7 @@ msgid "Special Interest Group Information" msgstr "Informations sur les groupes d'intérêt spéciaux" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Problème ? Consultez le %swiki%s." @@ -15480,19 +15725,27 @@ msgstr "POTA : Renseigner automatiquement le Locateur et le nom du parc." msgid "Number of previous contacts displayed on QSO page." msgstr "" +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "Menu principal" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "Voir les notes dans le main principal." -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "Champ Quicklog" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." @@ -15500,288 +15753,288 @@ msgstr "" "(Si 'oui', vous pouvez enregistrer les indicatifs d'appel en utilisant le " "champ de recherche dans la barre du haut)." -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "Quicklog - Action sur la touche 'Entrée'" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "Enregistre l'indicatif" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" "Action effectuée lorsque vous appuyez sur 'Entrée' dans le champ quicklog ?" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." msgstr "" -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "Paramètre de la carte" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "Icône" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "Ne pas afficher" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "QSO (par défaut)" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "QSO (confirmé)" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "Afficher les Locator" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "Type de QSL pour le statut" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "" "Sélectionner le type de QSL pour le statut à afficher dans la session " "'Contacts précédents'." -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "Valeur par défaut" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "Paramètres par défaut" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "Bandes" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "Méthode QSL" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "Utilisateur" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "Mot de passe" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "Utilisateur" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "Mot de passe" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "Mot de passe" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "Non, montrer toutes les radios" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -15793,85 +16046,85 @@ msgstr "" "uniquement la dernière mise à jour. Si vous n'avez qu'une seule radio, ce " "paramètre n'a aucun effet." -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "Divers" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "Envoi du statut AMSAT" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "Envoi des statuts des QSO par Satellite sur" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "Mastodon Serveur" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "URL du serveur Mastodon" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "Activer Winkeyer" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "Sauvegarder" @@ -16515,6 +16768,10 @@ msgstr "Soumettre la demande" msgid "Rcvd" msgstr "Reçu" +#, fuzzy, php-format +#~ msgid "You're not logged in. Please %slogin%s" +#~ msgstr "Vous n'êtes pas connecté. Veuillez vous connecter %slogin%s" + #~ msgid "CFD Export" #~ msgstr "Exporter en CFD" diff --git a/application/locale/hr/LC_MESSAGES/messages.po b/application/locale/hr/LC_MESSAGES/messages.po index 6d397fcbb..f1a2fc681 100644 --- a/application/locale/hr/LC_MESSAGES/messages.po +++ b/application/locale/hr/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: 2024-11-23 16:17+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Croatian 1.1.10)" msgstr "" @@ -6569,14 +6571,17 @@ msgid "Worked, not Confirmed" msgstr "" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "" @@ -6863,7 +6868,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "" @@ -6995,7 +7000,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7018,12 +7023,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "" @@ -7058,7 +7063,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7081,12 +7086,12 @@ msgstr "" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "" @@ -7415,6 +7420,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7446,8 +7615,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "" @@ -7661,7 +7830,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "" @@ -7772,7 +7941,7 @@ msgid "Reset QSO" msgstr "" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "" @@ -7807,9 +7976,9 @@ msgstr "" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "" @@ -7946,7 +8115,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "" @@ -8063,7 +8232,7 @@ msgid "" msgstr "" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8100,7 +8269,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8185,7 +8354,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9310,10 +9479,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9402,7 +9571,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "" #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "" @@ -9411,7 +9580,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "" @@ -9464,171 +9633,240 @@ msgstr "" msgid "Duplication is disabled for Contacts notes" msgstr "" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -9636,62 +9874,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "" @@ -9879,7 +10112,7 @@ msgstr "" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" @@ -10285,7 +10518,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "" @@ -10405,7 +10638,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10426,7 +10659,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10445,7 +10678,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10460,49 +10693,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "" @@ -10664,7 +10897,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10701,7 +10934,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -10934,7 +11167,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "" @@ -11286,7 +11519,7 @@ msgid "Note Contents" msgstr "" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "" @@ -11718,7 +11951,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -11737,12 +11970,12 @@ msgstr "" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -11766,7 +11999,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12335,11 +12568,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -12349,25 +12582,25 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "" @@ -12380,38 +12613,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12420,8 +12653,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "" @@ -12442,7 +12675,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12486,7 +12719,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "" @@ -12523,155 +12756,167 @@ msgstr "" msgid "Invalid value for antenna elevation:" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "" -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "" @@ -13959,7 +14204,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14627,303 +14872,311 @@ msgstr "" msgid "Number of previous contacts displayed on QSO page." msgstr "" +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "" -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." msgstr "" -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." msgstr "" -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "" -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -14931,85 +15184,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "" diff --git a/application/locale/hu/LC_MESSAGES/messages.po b/application/locale/hu/LC_MESSAGES/messages.po index 110e89092..595557fe6 100644 --- a/application/locale/hu/LC_MESSAGES/messages.po +++ b/application/locale/hu/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: 2025-08-05 07:10+0000\n" "Last-Translator: Mathias Regner \n" "Language-Team: Hungarian 1.1.10)" msgstr "" @@ -6571,14 +6573,17 @@ msgid "Worked, not Confirmed" msgstr "" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "" @@ -6865,7 +6870,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "" @@ -6997,7 +7002,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7020,12 +7025,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "Igen" @@ -7060,7 +7065,7 @@ msgstr "Igen" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7083,12 +7088,12 @@ msgstr "Igen" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "Nem" @@ -7417,6 +7422,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7448,8 +7617,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "" @@ -7663,7 +7832,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "" @@ -7774,7 +7943,7 @@ msgid "Reset QSO" msgstr "" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "" @@ -7809,9 +7978,9 @@ msgstr "" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "" @@ -7948,7 +8117,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "" @@ -8064,7 +8233,7 @@ msgid "" msgstr "" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8100,7 +8269,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8185,7 +8354,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9308,10 +9477,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9400,7 +9569,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "" #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "" @@ -9409,7 +9578,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "" @@ -9462,151 +9631,220 @@ msgstr "" msgid "Duplication is disabled for Contacts notes" msgstr "" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -9616,20 +9854,20 @@ msgstr "" "érvényes. Ellenőrizd, hogy melyik DXCC a helyes az adott helyhez. Ha biztos " "vagy benne, hagyd figyelmen kívül ezt a figyelmeztetést." -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -9637,62 +9875,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "" @@ -9880,7 +10113,7 @@ msgstr "" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" @@ -10286,7 +10519,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "" @@ -10406,7 +10639,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10427,7 +10660,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10446,7 +10679,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10461,49 +10694,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "" @@ -10665,7 +10898,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10702,7 +10935,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -10935,7 +11168,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "" @@ -11286,7 +11519,7 @@ msgid "Note Contents" msgstr "" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "" @@ -11718,7 +11951,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -11737,12 +11970,12 @@ msgstr "" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -11766,7 +11999,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12333,11 +12566,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -12347,25 +12580,25 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "" @@ -12378,38 +12611,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12418,8 +12651,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "" @@ -12440,7 +12673,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12484,7 +12717,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "" @@ -12521,155 +12754,167 @@ msgstr "" msgid "Invalid value for antenna elevation:" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "" -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "" @@ -13957,7 +14202,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14625,303 +14870,311 @@ msgstr "" msgid "Number of previous contacts displayed on QSO page." msgstr "" +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "" -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." msgstr "" -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." msgstr "" -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "" -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -14929,85 +15182,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "" diff --git a/application/locale/hy/LC_MESSAGES/messages.po b/application/locale/hy/LC_MESSAGES/messages.po index e203f14fa..3c23226bc 100644 --- a/application/locale/hy/LC_MESSAGES/messages.po +++ b/application/locale/hy/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: 2025-08-23 15:21+0000\n" "Last-Translator: Matthias Jung \n" "Language-Team: Armenian 1.1.10)" msgstr "" @@ -6563,14 +6565,17 @@ msgid "Worked, not Confirmed" msgstr "" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "" @@ -6857,7 +6862,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "" @@ -6989,7 +6994,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7012,12 +7017,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "" @@ -7052,7 +7057,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7075,12 +7080,12 @@ msgstr "" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "" @@ -7409,6 +7414,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7440,8 +7609,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "" @@ -7655,7 +7824,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "" @@ -7766,7 +7935,7 @@ msgid "Reset QSO" msgstr "" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "" @@ -7801,9 +7970,9 @@ msgstr "" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "" @@ -7940,7 +8109,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "" @@ -8056,7 +8225,7 @@ msgid "" msgstr "" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8092,7 +8261,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8177,7 +8346,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9300,10 +9469,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9392,7 +9561,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "" #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "" @@ -9401,7 +9570,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "" @@ -9454,171 +9623,240 @@ msgstr "" msgid "Duplication is disabled for Contacts notes" msgstr "" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -9626,62 +9864,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "" @@ -9869,7 +10102,7 @@ msgstr "" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" @@ -10275,7 +10508,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "" @@ -10395,7 +10628,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10416,7 +10649,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10435,7 +10668,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10450,49 +10683,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "" @@ -10654,7 +10887,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10691,7 +10924,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -10924,7 +11157,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "" @@ -11275,7 +11508,7 @@ msgid "Note Contents" msgstr "" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "" @@ -11707,7 +11940,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -11726,12 +11959,12 @@ msgstr "" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -11755,7 +11988,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12322,11 +12555,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -12336,25 +12569,25 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "" @@ -12367,38 +12600,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12407,8 +12640,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "" @@ -12429,7 +12662,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12473,7 +12706,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "" @@ -12510,155 +12743,167 @@ msgstr "" msgid "Invalid value for antenna elevation:" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "" -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "" @@ -13946,7 +14191,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14614,303 +14859,311 @@ msgstr "" msgid "Number of previous contacts displayed on QSO page." msgstr "" +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "" -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." msgstr "" -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." msgstr "" -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "" -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -14918,85 +15171,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "" diff --git a/application/locale/it_IT/LC_MESSAGES/messages.mo b/application/locale/it_IT/LC_MESSAGES/messages.mo index f0b14f4d3de1b4e2aa82777a14f456875ddc651a..9f545ebd3bf217447f8362c4488e2df9b0623d52 100644 GIT binary patch delta 44424 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 k;4dl)klA18do5>nfMU89R diff --git a/application/locale/it_IT/LC_MESSAGES/messages.po b/application/locale/it_IT/LC_MESSAGES/messages.po index 0537efbd6..c8adc2aec 100644 --- a/application/locale/it_IT/LC_MESSAGES/messages.po +++ b/application/locale/it_IT/LC_MESSAGES/messages.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: 2025-09-15 19:44+0000\n" "Last-Translator: Luca \n" "Language-Team: Italian 1.1.10)" msgstr "" @@ -6958,14 +6960,17 @@ msgid "Worked, not Confirmed" msgstr "Collegato, non Confermato" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "Fonia" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "CW" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "DIGI" @@ -7268,7 +7273,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "Luogo" @@ -7403,7 +7408,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7426,12 +7431,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "Si" @@ -7466,7 +7471,7 @@ msgstr "Si" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7489,12 +7494,12 @@ msgstr "Si" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "No" @@ -7843,6 +7848,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "Scarica le QSL da Clublog" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7874,8 +8043,8 @@ msgstr "Nessuna attivazione imminente trovata. Riprova più tardi." #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "Commento" @@ -8095,7 +8264,7 @@ msgstr "Progressivo + Locatore + Exchange" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "Indicativo di chiamata dell'operatore" @@ -8210,7 +8379,7 @@ msgid "Reset QSO" msgstr "Azzera QSO" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "Salva QSO" @@ -8245,9 +8414,9 @@ msgstr "Identificativo" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "Abilitato" @@ -8394,7 +8563,7 @@ msgstr "Verranno esportati solo i QSO con informazioni SOTA!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "Modo di Propagazione" @@ -8512,7 +8681,7 @@ msgid "" msgstr "" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8548,7 +8717,7 @@ msgstr "Mancanti" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8633,7 +8802,7 @@ msgstr "Ricevuta" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9859,10 +10028,10 @@ msgid "QSL Date" msgstr "Data QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9963,7 +10132,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "Attenzione! Sei sicuro di voler eliminare il QSO con " #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "Colori" @@ -9972,7 +10141,7 @@ msgid "Worked not confirmed" msgstr "Collegato ma non confermato" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "Pulisci" @@ -10027,152 +10196,221 @@ msgstr "" msgid "Duplication is disabled for Contacts notes" msgstr "" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "Cancella Nota" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "Informazioni sulla versione" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "Impossibile caricare il modulo. Per favore riprova." -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "Descrizione:" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "Descrizione della query" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "La tua query è stata salvata!" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "Modifica query" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "Query salvate:" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "Esegui Query" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "Query salvate" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "Devi definire una query prima di cercare!" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "Esporta in ADIF" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "Apri il registro avanzato" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Attenzione! Sei sicuro di voler eliminare questa query salvata?" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "La query memorizzata è stata eliminata!" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "La query memorizzata non può essere eliminata. Per favore riprova!" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "La descrizione della query è stata aggiornata!" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "" "Qualcosa è andato storto con il salvataggio. Ti preghiamo di riprovare!" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -10182,20 +10420,20 @@ msgstr "" "Controlla quale DXCC per questa particolare posizione è quello corretto. Se " "sei sicuro, ignora questo avviso." -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "Nominativo: " -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "Quantità: " -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "Locatori: " -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -10203,62 +10441,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Locatori" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "Non sei connesso. Per favore %saccedi%s" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "locatore" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "Conteggio totale" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "Cartolina per " -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Attenzione! Sei sicuro di voler eliminare questa QSL?" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "Cartolina eQSL" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "Cartolina eQSL per " -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "Immagine della QSL" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "Fronte QSL:" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "Retro QSL:" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "Aggiungi ulteriori QSO a una QSL" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "Qualcosa è andato storto. Per favore riprova!" @@ -10446,7 +10679,7 @@ msgstr "Registro" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "Cerca nominativo" @@ -10864,7 +11097,7 @@ msgstr "Potenza di trasmissione" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "Regione" @@ -10984,7 +11217,7 @@ msgstr "Verificato" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -11005,7 +11238,7 @@ msgstr "Diretta" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -11024,7 +11257,7 @@ msgstr "Bureau" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -11039,49 +11272,49 @@ msgstr "Elettronica" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Manager" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "NESSUNI" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "Italia africana" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "Isola degli Orsi" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "Turchia Europea" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "ITU Vienna" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "Kosovo" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "Isole Shetland" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "Sicilia" @@ -11256,7 +11489,7 @@ msgstr "QSL inviata" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -11293,7 +11526,7 @@ msgstr "In coda" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11526,7 +11759,7 @@ msgstr "Da" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "QRZ" @@ -11891,7 +12124,7 @@ msgid "Note Contents" msgstr "Contenuti Nota" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "Salva Nota" @@ -12377,7 +12610,7 @@ msgstr "C'è qualche informazione aggiuntiva che dobbiamo sapere?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -12396,12 +12629,12 @@ msgstr "Invia richiesta non in log" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -12425,7 +12658,7 @@ msgstr "Stazione" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -13022,11 +13255,11 @@ msgstr "Frequenza RX" msgid "RX Band" msgstr "Banda RX" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Dare valore di potenza in Watt. Includere solo numeri nell input." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -13036,25 +13269,25 @@ msgstr "Potenza di Trasmissione (W)" msgid "Used for VUCC MultiGrids" msgstr "Utilizzato per i VUCC MultiGrids" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "Percorso dell'antenna" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "Greyline" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "Altro" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "Percorso breve" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "Percorso lungo" @@ -13067,38 +13300,38 @@ msgstr "Nome del satellite" msgid "Sat Mode" msgstr "Modalità satellite" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "Azimut dell'antenna (°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "Azimut dell'antenna in gradi decimali." -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "Elevazione dell'antenna (°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "Elevazione dell'antenna in gradi decimali." -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "Contea della Stazione" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "Informazioni SIG" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "Nota: Viene esportato a servizi di terze parti." @@ -13107,8 +13340,8 @@ msgid "Sent Method" msgstr "Metodo di invio" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "Metodo" @@ -13129,7 +13362,7 @@ msgstr "Verificato (Corrisponde)" msgid "Received Method" msgstr "Metodo Ricevuto" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "Ottieni il messaggio predefinito per eQSL, per questa stazione." @@ -13173,7 +13406,7 @@ msgstr "Salva le modifiche" msgid "TimeOff is less than TimeOn" msgstr "L'ora di fine è prima dell'ora di inizio" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "Contatti Precedenti" @@ -13210,155 +13443,167 @@ msgstr "Utente LoTW. Ultimo caricamento %x giorni fa." msgid "Invalid value for antenna elevation:" msgstr "Valore non valido per l'elevazione dell'antenna:" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "DAL VIVO" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "PASSATO" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "Satellite" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "Aggiungi Banda/Modo ai Preferiti" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "Tempo di inizio" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "Tempo di fine" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "Cerca DXCluster per l'ultimo Spot" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "Referenza IOTA" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "Referenza SOTA" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "Frequenza (RX)" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "Banda (RX)" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "Per esempio: GM/NS-001." -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "Per esempio: DLFF-0069." -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "Per esempio: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "Per esempio: GMA" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "Per esempio: DA/NW-357" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "Per esempio: Q03" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "Indirizzo e-mail del corrispondente" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "Nome Satellite" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "Modo Satellite" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "Messaggio QSL" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "Reimposta ai valori predefiniti" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "Connetti" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "Velocità CW" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "Arresta" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "Sintonizza" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "Ferma la sintonia" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "" -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "Trasmetti" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "Suggerimenti" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "Immagine Profilo" @@ -14759,7 +15004,7 @@ msgid "Special Interest Group Information" msgstr "Informazioni sul Gruppo di Interesse Speciale" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Problemi? Prova a cercare nella %swiki%s." @@ -15496,19 +15741,27 @@ msgstr "Ricerca automatica POTA di locatore e nome per il parco." msgid "Number of previous contacts displayed on QSO page." msgstr "Numero di contatti precedenti visualizzati nella pagina QSO." +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "Opzioni di menu" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "Mostra note nel menu principale." -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "Campo Quicklog" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." @@ -15516,26 +15769,26 @@ msgstr "" "Con questa funzione, puoi registrare i callsign utilizzando il campo di " "ricerca nell'intestazione." -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "Quicklog - Azione al rilascio del tasto Invio" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "Chiamata di log" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" "Quale azione dovrebbe essere eseguita quando viene premuto Invio nel campo " "quicklog?" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "Posizioni delle stazioni Quickswitch" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." @@ -15544,139 +15797,139 @@ msgstr "" "aggiungere posizioni alla lista contrassegnandole come preferite nella " "pagina di configurazione della stazione." -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "Tempo UTC nel menu" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "Mostra l'ora UTC attuale nel menu" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "Impostazioni della mappa" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "Icona" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "Non visualizzare" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "Non visualizzato" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "QSO (per impostazione predefinita)" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "QSO (confermato)" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "(Se 'No', visualizzato come 'QSO (per impostazione predefinita))'" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "Mostra Localizzatore" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "Tipo di QSL precedente" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "" "Seleziona il tipo di QSL da mostrare nella sezione delle precedenti QSOs." -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "Impostazioni della Dashboard" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "Seleziona il numero di ultimi QSOs da visualizzare nella dashboard." -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "Scegli il numero di ultimi QSO da visualizzare nella dashboard." -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "Mostra la mappa del cruscotto" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "Mappa a destra" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "Scegli se mostrare la mappa sulla dashboard o meno" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "Banner di notifica della dashboard" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" "Questo consente di disabilitare il banner di notifica globale nella " "dashboard." -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "Mostra i campi di riferimento nella scheda QSO" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" "Gli elementi abilitati verranno mostrati nella scheda QSO anziché nella " "scheda Generale." -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "Impostazioni della richiesta QSL online (OQRS)" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "Testo globale" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "Questo testo è un testo facoltativo che può essere visualizzato in cima alla " "pagina OQRS." -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "Ricerca raggruppata" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "Spento" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "Acceso" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -15684,13 +15937,13 @@ msgstr "" "Quando questo è attivo, tutte le località della stazione con OQRS attivo " "verranno cercate contemporaneamente." -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "" "Mostra il nome della posizione della stazione nei risultati di ricerca " "raggruppati" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -15698,11 +15951,11 @@ msgstr "" "Se la ricerca raggruppata è ATTIVA, puoi decidere se il nome della posizione " "della stazione deve essere mostrato nella tabella dei risultati." -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "Corrispondenza OQRS automatica" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -15711,69 +15964,69 @@ msgstr "" "sistema cercherà di abbinare le richieste in arrivo con i log esistenti in " "modo automatico." -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "Abbinamento OQRS automatico per richieste dirette" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" "Se questo è attivo, il matching automatico OQRS per la richiesta diretta " "avverrà." -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "Valori predefiniti" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "Impostazioni per la banda predefinita e conferma" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "Default Band" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "Metodi QSL predefiniti" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "Servizi di terze parti" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "Nome utente di Logbook of The World (LoTW)" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "Password di Logbook of The World (LoTW)" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "Test di accesso" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "Nome utente eQSL.cc" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "Password eQSL.cc" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "Club Log" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "Password del Club Log" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -15783,15 +16036,15 @@ msgstr "" "generare una password per l'app per utilizzare Clublog in Wavelog. Visita " "%sle impostazioni di Clublog%s per farlo." -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "Widget" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "Widget On-Air" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." @@ -15799,16 +16052,16 @@ msgstr "" "Nota: Per utilizzare questo widget, è necessario avere almeno una radio CAT " "configurata e funzionante." -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "Quando abilitato, il widget sarà disponibile su %s." -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "Mostra il tempo di \"Ultima visualizzazione\"" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." @@ -15816,15 +16069,15 @@ msgstr "" "Questa impostazione controlla se l'orario 'Ultimo accesso' viene " "visualizzato nel widget o meno." -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "Mostra solo la radio aggiornata più di recente" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "No, mostra tutte le radio" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -15836,15 +16089,15 @@ msgstr "" "aggiornata più di recente. Nel caso tu abbia solo una radio, questa " "impostazione non ha effetto." -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "Widget QSOs" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "Mostra l'ora esatta del QSO" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." @@ -15852,40 +16105,40 @@ msgstr "" "Questa impostazione controlla se l'orario esatto del QSO deve essere " "visualizzato nel widget QSO oppure no." -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "Varie" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "Caricamento dello stato AMSAT" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "Carica lo stato dei QSOs SAT su" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "Mastodonserver" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "URL del server Mastodon" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "URL principale del tuo server Mastodon, ad esempio %s" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "Caratteristiche Winkeyer abilitate" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -15894,25 +16147,25 @@ msgstr "" "Il supporto per Winkeyer in Wavelog è molto sperimentale. Leggi prima il " "wiki su %s prima di abilitare." -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "Chiave di alimentazione privata" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "Guarda il tuo profilo su %s." -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "Mostra solo passaggi funzionanti" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -15921,7 +16174,7 @@ msgstr "" "impostata nel tuo account hams.at. Richiede che la chiave del feed privato " "sia impostata." -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "Salva Account" @@ -16617,6 +16870,10 @@ msgstr "Invia richiesta" msgid "Rcvd" msgstr "Ricevuto" +#, php-format +#~ msgid "You're not logged in. Please %slogin%s" +#~ msgstr "Non sei connesso. Per favore %saccedi%s" + #~ msgid "CFD Export" #~ msgstr "Esporta CFD" diff --git a/application/locale/ja/LC_MESSAGES/messages.mo b/application/locale/ja/LC_MESSAGES/messages.mo index fdb6018dd738b378591bbc6a36d34843eb34589d..b3d711b84e82997543c62a2ad85178c6513594f4 100644 GIT binary patch delta 59872 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 JLD1kR{|D^FFhKwS delta 60079 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\n" "Language-Team: Japanese 1.1.10)" msgstr "WebSocket (WLGate>1.1.10 が必要)" @@ -6888,14 +6890,17 @@ msgid "Worked, not Confirmed" msgstr "動作したが、確認されていない" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "電話" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "CW" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "デジ" @@ -7194,7 +7199,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "位置" @@ -7329,7 +7334,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7352,12 +7357,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "はい" @@ -7392,7 +7397,7 @@ msgstr "はい" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7415,12 +7420,12 @@ msgstr "はい" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "いいえ" @@ -7761,6 +7766,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "ClublogからQSLをダウンロードする" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7796,8 +7965,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "コメント" @@ -8015,7 +8184,7 @@ msgstr "シリアル + グリッドスクエア + 交換" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "オペレーターのコールサイン" @@ -8128,7 +8297,7 @@ msgid "Reset QSO" msgstr "QSOをリセット" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "QSOを保存" @@ -8163,9 +8332,9 @@ msgstr "識別子" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "有効" @@ -8312,7 +8481,7 @@ msgstr "SOTA 情報を含む QSO のみがエクスポートされます!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "伝播方式" @@ -8443,7 +8612,7 @@ msgid "" msgstr "少なくとも 1 つの QSO 証明書の有効期限がまもなく切れます" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8478,7 +8647,7 @@ msgstr "必要" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8563,7 +8732,7 @@ msgstr "受領" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9780,10 +9949,10 @@ msgid "QSL Date" msgstr "QSL日付" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9881,7 +10050,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "警告!QSOを削除してもよろしいですか? " #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "色" @@ -9890,7 +10059,7 @@ msgid "Worked not confirmed" msgstr "動作確認はされていません" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "クリア" @@ -9944,151 +10113,220 @@ msgstr "並べ替え" msgid "Duplication is disabled for Contacts notes" msgstr "連絡先のメモの複製は無効です" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "重複" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "メモを削除" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "重複したメモ" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "このメモを削除しますか?" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "このメモを複製しますか?" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "複製無効" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "メモが見つかりませんでした" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "このコールサインに関するメモはありません" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "コールサインメモ" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "メモは正常に削除されました" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "メモが正常に作成されました" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "メモは正常に保存されました" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "メモの保存中にエラーが発生しました" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "バージョン情報" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "モーダルの読み込みに失敗しました。もう一度お試しください。" -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "説明:" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "クエリの説明" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "クエリが保存されました!" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "クエリを編集する" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "保存されたクエリ:" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "クエリを実行" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "保存されたクエリ" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "検索する前にクエリを作成する必要があります!" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "ADIFへのエクスポート" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "詳細ログブックで開く" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "警告! この保存されたクエリを削除してもよろしいですか?" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "保存されたクエリが削除されました!" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "保存されたクエリを削除できませんでした。もう一度お試しください!" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "クエリの説明が更新されました!" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "保存中にエラーが発生しました。もう一度お試しください!" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -10098,20 +10336,20 @@ msgstr "" "場所のDXCCが正しいかご確認ください。間違いがなければ、この警告は無視してくだ" "さい。" -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "コールサイン: " -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "カウント: " -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "グリッド: " -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -10119,62 +10357,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "グリッドスクエア" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "ログインしていません。%slogin%sしてください" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "グリッドスクエア" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "合計数" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "QSLカード " -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "警告! このQSLカードを削除してもよろしいですか?" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSLカード" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "eQSLカード " -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "QSL画像ファイル" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "表面QSLカード:" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "裏面QSLカード:" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "QSLカードにQSOを追加する" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "問題が発生しました。もう一度お試しください!" @@ -10362,7 +10595,7 @@ msgstr "ログ" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "コールサインを検索" @@ -10778,7 +11011,7 @@ msgstr "ステーションの出力" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "地域" @@ -10898,7 +11131,7 @@ msgstr "検証済み" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10919,7 +11152,7 @@ msgstr "直接" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10938,7 +11171,7 @@ msgstr "局" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10953,49 +11186,49 @@ msgstr "電子" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "マネージャー" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "なし" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "アフリカのイタリア" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "ベアアイランド" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "ヨーロッパのトルコ" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "ウィーン" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "コソボ" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "シェトランド諸島" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "シチリア島" @@ -11166,7 +11399,7 @@ msgstr "QSLを送信しました" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -11203,7 +11436,7 @@ msgstr "キュー" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11436,7 +11669,7 @@ msgstr "De" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "QRZ" @@ -11803,7 +12036,7 @@ msgid "Note Contents" msgstr "メモの内容" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "メモを保存" @@ -12278,7 +12511,7 @@ msgstr "追加で知っておくべき情報はありますか?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -12297,12 +12530,12 @@ msgstr "ログにないリクエストを送信する" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -12326,7 +12559,7 @@ msgstr "ステーション" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12906,12 +13139,12 @@ msgstr "受信周波数" msgid "RX Band" msgstr "RXバンド" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" "電力値はワット単位で入力してください。入力には数字のみを入力してください。" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -12921,25 +13154,25 @@ msgstr "送信電力(W)" msgid "Used for VUCC MultiGrids" msgstr "VUCCマルチグリッドに使用" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "アンテナパス" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "グレーライン" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "他の" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "ショートパス" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "ロングパス" @@ -12952,38 +13185,38 @@ msgstr "衛星の名前" msgid "Sat Mode" msgstr "衛星モード" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "アンテナ方位角(°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "アンテナの方位角(十進度)。" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "アンテナ仰角(°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "アンテナの仰角(十進度)。" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "ステーション郡" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "SIG情報" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "注: サードパーティのサービスにエクスポートされます。" @@ -12992,8 +13225,8 @@ msgid "Sent Method" msgstr "送信方法" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "方法" @@ -13014,7 +13247,7 @@ msgstr "検証済み(一致)" msgid "Received Method" msgstr "受信方法" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "この局の eQSL のデフォルト メッセージを取得します。" @@ -13058,7 +13291,7 @@ msgstr "変更を保存" msgid "TimeOff is less than TimeOn" msgstr "TimeOff が TimeOn より短い" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "以前の連絡先" @@ -13095,113 +13328,125 @@ msgstr "LoTWユーザー。最終アップロードは %x 日前。" msgid "Invalid value for antenna elevation:" msgstr "アンテナの仰角の値が無効です:" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "交信中" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "投稿" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "衛星" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "バンド/モードをお気に入りに追加" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "時間" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "休暇" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "DXClusterで最新のスポットを検索" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "IOTAリファレンス" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "SOTA リファレンス" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "周波数(RX)" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "バンド(RX)" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "例:GM/NS-001。" -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "例: DLFF-0069。" -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "例: PA-0150。複数の値を指定できます。" -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "例: GMA" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "例: DA/NW-357" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "例: Q03" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "QSO相手のメールアドレス" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "衛星名" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "衛星モード" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "QSOコメント" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "QSLメッセージ" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "デフォルトにリセット" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "コールサインに関する注記" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." @@ -13209,43 +13454,43 @@ msgstr "" "QSO相手の個人情報を保存します。これらのメモは外部サービスと共有またはエクス" "ポートされることはありません。" -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "接続する" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "CW速度" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "停止" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "チューニング" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "チューニングを停止" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "テキストを入力してください..." -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "送信" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "提案" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "プロフィール写真" @@ -14622,7 +14867,7 @@ msgid "Special Interest Group Information" msgstr "特別関心グループ(SIG)情報" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "問題が発生しましたか?%swiki%sを確認してください。" @@ -15351,19 +15596,27 @@ msgstr "POTA は公園のグリッドスクエアと名前を自動検索しま msgid "Number of previous contacts displayed on QSO page." msgstr "QSO ページに表示される以前のコンタクトの数。" +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "メニューオプション" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "メインメニューにメモを表示します。" -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "クイックログフィールド" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." @@ -15371,26 +15624,26 @@ msgstr "" "この機能を使用すると、ヘッダーの検索フィールドを使用してコールサインを記録で" "きます。" -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "クイックログ - Enter キーを押したときのアクション" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "コールサインをログに記録" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" "クイックログ フィールドで Enter キーが押されたときに実行するアクションは何で" "すか?" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "ステーションの場所クイックスイッチ" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." @@ -15398,137 +15651,137 @@ msgstr "" "メインメニューにステーションの場所のクイックスイッチを表示します。ステーショ" "ン設定ページでお気に入りに追加することで、場所を追加できます。" -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "メニュー内のUTC時間" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "メニューに現在のUTC時間を表示する" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "マップ設定" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "アイコン" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "表示されない" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "表示されない" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "QSO(デフォルト)" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "QSO(確認済み)" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "(もし「いいえ」の場合、デフォルトで「QSO」と表示されます)" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "ロケーターを表示" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "以前のQSLタイプ" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "以前の QSO セクションに表示する QSL の種類を選択します。" -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "ダッシュボード設定" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "ダッシュボードに表示する最新の QSO の数を選択します。" -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "ダッシュボードに表示する最新の QSO の数を選択します。" -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "ダッシュボードマップを表示" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "右の地図" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "ダッシュボードにマップを表示するかどうかを選択します" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "ダッシュボード通知バナー" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" "これにより、ダッシュボード上のグローバル通知バナーを無効にすることができま" "す。" -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "ダッシュボードの太陽活動と電波伝播データ" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" "これにより、ダッシュボード上の太陽活動データと伝播データの表示が切り替わりま" "す。" -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "QSOタブに参照フィールドを表示する" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "有効になっている項目は、[全般] タブではなく [QSO] タブに表示されます。" -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "オンラインQSLリクエスト(OQRS)設定" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "グローバルテキスト" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "このテキストは、OQRS ページの上部に表示できるオプションのテキストです。" -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "グループ検索" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "オフ" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "オン" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -15536,11 +15789,11 @@ msgstr "" "これをオンにすると、OQRS がアクティブなすべてのステーションの場所が一度に検索" "されます。" -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "グループ化された検索結果にステーションの場所名を表示する" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -15548,11 +15801,11 @@ msgstr "" "グループ検索がオンの場合、結果テーブルにステーションの場所の名前を表示するか" "どうかを決定できます。" -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "自動OQRSマッチング" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -15560,68 +15813,68 @@ msgstr "" "これがオンの場合、自動 OQRS マッチングが行われ、システムは受信したリクエスト" "を既存のログと自動的にマッチングしようとします。" -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "直接リクエストの自動OQRSマッチング" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" "これがオンの場合、直接リクエストに対する自動 OQRS マッチングが行われます。" -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "デフォルト値" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "デフォルトバンドと確認の設定" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "デフォルトバンド" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "デフォルトのQSL方法" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "サードパーティのサービス" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "Logbook of The World (LoTW) ユーザー名" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "ログブック・オブ・ザ・ワールド(LoTW)のパスワード" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "テストログイン" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "eQSL.cc ユーザー名" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "eQSL.cc パスワード" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "Club Log" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "Club Log メール" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "Club Log パスワード" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -15631,15 +15884,15 @@ msgstr "" "ワードを生成する必要があります。その場合は、%syour clublog settings page%s に" "アクセスしてください。" -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "ウィジェット" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "オンエアウィジェット" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." @@ -15647,31 +15900,31 @@ msgstr "" "注意: このウィジェットを使用するには、少なくとも 1 つの CAT 無線が構成され動" "作している必要があります。" -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "有効にすると、ウィジェットは%sで利用可能になります。" -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "「最終閲覧」時間を表示する" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" "この設定は、ウィジェットに「最終確認」時間を表示するかどうかを制御します。" -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "最近更新されたラジオのみを表示する" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "いいえ、すべてのラジオを表示" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -15682,55 +15935,55 @@ msgstr "" "ラジオをすべて表示するか、最新のラジオのみを表示するかを指定します。ラジオが1" "台しかない場合、この設定は無効です。" -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "QSOウィジェット" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "正確なQSO時間を表示" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" "この設定は、QSO ウィジェットに正確な QSO 時間を表示するかどうかを制御します。" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "その他" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "AMSATステータスアップロード" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "SAT QSOのステータスをアップロードする" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "マストドンサーバー" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "マストドンサーバーのURL" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "MastodonサーバーのメインURL、例: %s" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "Winkeyer機能が有効" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -15739,25 +15992,25 @@ msgstr "" "Wavelogにおけるウィンキーヤーのサポートは、非常に実験的な段階です。有効化する" "前に、まず%sのWikiをお読みください。" -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "プライベートフィードキー" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "プロフィールはこちら %s 。" -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "実行可能なパスのみを表示" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -15765,7 +16018,7 @@ msgstr "" "有効にすると、hams.atアカウントで設定されたグリッドスクエアに基づいて、有効な" "パスのみが表示されます。プライベートフィードキーの設定が必要です。" -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "アカウントを保存" @@ -16452,6 +16705,10 @@ msgstr "リクエストを送信" msgid "Rcvd" msgstr "受信" +#, php-format +#~ msgid "You're not logged in. Please %slogin%s" +#~ msgstr "ログインしていません。%slogin%sしてください" + #~ msgid "CFD Export" #~ msgstr "CFDエクスポート" diff --git a/application/locale/lt/LC_MESSAGES/messages.po b/application/locale/lt/LC_MESSAGES/messages.po index dc3a5d2c0..6be2ec0cd 100644 --- a/application/locale/lt/LC_MESSAGES/messages.po +++ b/application/locale/lt/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: 2024-11-19 01:22+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Lithuanian 1.1.10)" msgstr "" @@ -6565,14 +6567,17 @@ msgid "Worked, not Confirmed" msgstr "" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "" @@ -6859,7 +6864,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "" @@ -6991,7 +6996,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7014,12 +7019,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "" @@ -7054,7 +7059,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7077,12 +7082,12 @@ msgstr "" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "" @@ -7411,6 +7416,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7442,8 +7611,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "" @@ -7657,7 +7826,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "" @@ -7768,7 +7937,7 @@ msgid "Reset QSO" msgstr "" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "" @@ -7803,9 +7972,9 @@ msgstr "" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "" @@ -7942,7 +8111,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "" @@ -8058,7 +8227,7 @@ msgid "" msgstr "" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8095,7 +8264,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8180,7 +8349,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9303,10 +9472,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9395,7 +9564,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "" #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "" @@ -9404,7 +9573,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "" @@ -9457,171 +9626,240 @@ msgstr "" msgid "Duplication is disabled for Contacts notes" msgstr "" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -9629,62 +9867,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "" @@ -9872,7 +10105,7 @@ msgstr "" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" @@ -10278,7 +10511,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "" @@ -10398,7 +10631,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10419,7 +10652,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10438,7 +10671,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10453,49 +10686,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "" @@ -10657,7 +10890,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10694,7 +10927,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -10927,7 +11160,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "" @@ -11278,7 +11511,7 @@ msgid "Note Contents" msgstr "" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "" @@ -11710,7 +11943,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -11729,12 +11962,12 @@ msgstr "" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -11758,7 +11991,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12325,11 +12558,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -12339,25 +12572,25 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "" @@ -12370,38 +12603,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12410,8 +12643,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "" @@ -12432,7 +12665,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12476,7 +12709,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "" @@ -12513,155 +12746,167 @@ msgstr "" msgid "Invalid value for antenna elevation:" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "" -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "" @@ -13949,7 +14194,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14617,303 +14862,311 @@ msgstr "" msgid "Number of previous contacts displayed on QSO page." msgstr "" +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "" -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." msgstr "" -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." msgstr "" -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "" -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -14921,85 +15174,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "" diff --git a/application/locale/lv/LC_MESSAGES/messages.po b/application/locale/lv/LC_MESSAGES/messages.po index cdcfb1d9f..662db6e5d 100644 --- a/application/locale/lv/LC_MESSAGES/messages.po +++ b/application/locale/lv/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: 2024-11-19 01:22+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Latvian 1.1.10)" msgstr "" @@ -6564,14 +6566,17 @@ msgid "Worked, not Confirmed" msgstr "" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "" @@ -6858,7 +6863,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "" @@ -6990,7 +6995,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7013,12 +7018,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "" @@ -7053,7 +7058,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7076,12 +7081,12 @@ msgstr "" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "" @@ -7410,6 +7415,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7441,8 +7610,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "" @@ -7656,7 +7825,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "" @@ -7767,7 +7936,7 @@ msgid "Reset QSO" msgstr "" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "" @@ -7802,9 +7971,9 @@ msgstr "" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "" @@ -7941,7 +8110,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "" @@ -8057,7 +8226,7 @@ msgid "" msgstr "" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8094,7 +8263,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8179,7 +8348,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9302,10 +9471,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9394,7 +9563,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "" #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "" @@ -9403,7 +9572,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "" @@ -9456,171 +9625,240 @@ msgstr "" msgid "Duplication is disabled for Contacts notes" msgstr "" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -9628,62 +9866,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "" @@ -9871,7 +10104,7 @@ msgstr "" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" @@ -10277,7 +10510,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "" @@ -10397,7 +10630,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10418,7 +10651,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10437,7 +10670,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10452,49 +10685,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "" @@ -10656,7 +10889,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10693,7 +10926,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -10926,7 +11159,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "" @@ -11277,7 +11510,7 @@ msgid "Note Contents" msgstr "" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "" @@ -11709,7 +11942,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -11728,12 +11961,12 @@ msgstr "" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -11757,7 +11990,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12324,11 +12557,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -12338,25 +12571,25 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "" @@ -12369,38 +12602,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12409,8 +12642,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "" @@ -12431,7 +12664,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12475,7 +12708,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "" @@ -12512,155 +12745,167 @@ msgstr "" msgid "Invalid value for antenna elevation:" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "" -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "" @@ -13948,7 +14193,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14616,303 +14861,311 @@ msgstr "" msgid "Number of previous contacts displayed on QSO page." msgstr "" +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "" -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." msgstr "" -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." msgstr "" -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "" -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -14920,85 +15173,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "" diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.mo b/application/locale/nl_NL/LC_MESSAGES/messages.mo index fe38725b1fb1a55301b3a38386d5cd4422361251..baff0a89cddfc29cd4941d1b39a771578572a891 100644 GIT binary patch delta 45680 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 delta 45765 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 D!@HdT diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.po b/application/locale/nl_NL/LC_MESSAGES/messages.po index b494d8f49..52e9c9e2e 100644 --- a/application/locale/nl_NL/LC_MESSAGES/messages.po +++ b/application/locale/nl_NL/LC_MESSAGES/messages.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: 2025-10-27 04:27+0000\n" "Last-Translator: Alexander \n" "Language-Team: Dutch 1.1.10)" msgstr "WebSocket (Vereist WLGate>1.1.10)" @@ -6953,14 +6955,17 @@ msgid "Worked, not Confirmed" msgstr "Gewerkt maar niet bevestigd" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "Spraak" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "CW" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "Digitaal" @@ -7260,7 +7265,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "Locatie" @@ -7395,7 +7400,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7418,12 +7423,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "Ja" @@ -7458,7 +7463,7 @@ msgstr "Ja" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7481,12 +7486,12 @@ msgstr "Ja" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "Nee" @@ -7834,6 +7839,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "Download QSL's van Clublog" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7865,8 +8034,8 @@ msgstr "Geen aankomende activaties gevonden. Kom later terug." #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "Opmerking" @@ -8087,7 +8256,7 @@ msgstr "Serienummer + Locatorvak + Uitwisseling" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "Operator roepnaam" @@ -8203,7 +8372,7 @@ msgid "Reset QSO" msgstr "Wis QSO" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "Bewaar QSO" @@ -8238,9 +8407,9 @@ msgstr "Identificator" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "Ingeschakeld" @@ -8386,7 +8555,7 @@ msgstr "Alleen QSOs met SOTA-informatie worden geëxporteerd!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "Propagattie Mode" @@ -8515,7 +8684,7 @@ msgstr "" "overschreden" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8551,7 +8720,7 @@ msgstr "Nodig" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8636,7 +8805,7 @@ msgstr "Ontvangen" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9858,10 +10027,10 @@ msgid "QSL Date" msgstr "QSL Datum" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9958,7 +10127,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "Waarschuwing! Weet je zeker dat je het QSO wilt verwijderen met " #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "Kleuren" @@ -9967,7 +10136,7 @@ msgid "Worked not confirmed" msgstr "Gewerkt maar niet bevestigd" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "Wissen" @@ -10022,154 +10191,223 @@ msgstr "Sorteren" msgid "Duplication is disabled for Contacts notes" msgstr "Duplicatie is uitgeschakeld voor Contactnotities" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "Duplicaat" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "Notitie verwijderen" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "Dupliceer notitie" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "Deze notitie verwijderen?" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "Dupliceer deze notitie?" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "Dupliceren uitgeschakeld" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "Er zijn geen notities gevonden" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "Geen aantekeningen voor deze roepnaam" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "Roepletternotitie" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "Notitie succesvol verwijderd" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "Notitie succesvol aangemaakt" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "Notitie succesvol opgeslagen" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "Fout bij opslaan van notitie" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "Versie-informatie" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "Laden van het popup venster mislukt. Probeer het opnieuw." -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "Beschrijving:" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "Beschrijving zoekopdracht" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "Je zoekopdracht is opgeslagen!" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "Bewerk zoekopdrachten" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "Opgeslagen zoekopdrachten:" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "Zoekopdracht uitvoeren" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "Opgeslagen zoekopdrachten" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "Je moet een zoekopdracht maken voordat je zoekt!" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "Exporteren naar ADIF" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "Openen in het geavanceerde logboek" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" "Waarschuwing! Weet je zeker dat je deze opgeslagen zoekopdracht wilt " "verwijderen?" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "De opgeslagen zoekopdracht is verwijderd!" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "" "De opgeslagen zoekopdracht kon niet worden verwijderd. Probeer het opnieuw!" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "De beschrijving van de zoekopdracht is bijgewerkt!" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "Er is iets misgegaan met het opslaan. Probeer het opnieuw!" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -10178,20 +10416,20 @@ msgstr "" "Even wachten. De gekozen DXCC is oud en iet meer geldig. Controleer welke " "DXCC wel de correcte is. Bent u zeker, negeer dan deze waarschuwing." -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "Roepnaam: " -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "Aantal: " -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "Vakken: " -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -10199,62 +10437,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Locatorvakken" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "Je bent niet ingelogd. Gelieve %sinloggen%s" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "locatorvak" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "Totaal aantal" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "QSL-kaart voor " -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Waarschuwing! Weet je zeker dat je deze QSL-kaart wilt verwijderen?" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL-kaart" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "eQSL-kaart voor " -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "QSL-afbeeldingsbestand" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "Voorkant QSL-kaart:" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "Achterkant QSL-kaart:" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "Voeg extra QSOs toe aan een QSL-kaart" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "Er is iets misgegaan. Probeer het opnieuw!" @@ -10442,7 +10675,7 @@ msgstr "Logboek" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "Zoek roepnaam" @@ -10857,7 +11090,7 @@ msgstr "Zendvermogen" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "Regio" @@ -10977,7 +11210,7 @@ msgstr "Geverifieerd" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10998,7 +11231,7 @@ msgstr "Direct" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -11017,7 +11250,7 @@ msgstr "Bureau" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -11032,49 +11265,49 @@ msgstr "Elektronisch" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Manager" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "GEEN" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "Afrikaans Italië" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "Beren Eiland" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "Europees Turkije" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "ITU Wenen" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "Kosovo" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "Shetlandeilanden" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "Sicilië" @@ -11247,7 +11480,7 @@ msgstr "QSL verzonden" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -11284,7 +11517,7 @@ msgstr "In de wachtrij geplaatst" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11518,7 +11751,7 @@ msgstr "Van" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "QRZ" @@ -11889,7 +12122,7 @@ msgid "Note Contents" msgstr "Inhoud van de notitie" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "Notitie opslaan" @@ -12373,7 +12606,7 @@ msgstr "Is er nog extra informatie die we moeten weten?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -12392,12 +12625,12 @@ msgstr "Verzoek niet in logboek opnemen" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -12421,7 +12654,7 @@ msgstr "Station" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -13019,11 +13252,11 @@ msgstr "RX Frequentie" msgid "RX Band" msgstr "RX-band" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Geef vermogen in Watt. Vermeld alleen cijfers." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -13033,25 +13266,25 @@ msgstr "Vermogen (W)" msgid "Used for VUCC MultiGrids" msgstr "Gebruikt voor VUCC MultiGrids" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "Antennepad" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "Grijze lijn" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "Andere" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "Korte pad" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "Lange pad" @@ -13064,38 +13297,38 @@ msgstr "Satellietnaam" msgid "Sat Mode" msgstr "Satellietmodus" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "Antenna-azimut (°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "Antenne-azimut in decimale graden." -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "Antenne Elevatie (°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "Antenne-elevatie in decimale graden." -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "Station County" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "SIG-info" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "Opmerking: Wordt geëxporteerd naar diensten van derden." @@ -13104,8 +13337,8 @@ msgid "Sent Method" msgstr "Verzendmethode" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "Methode" @@ -13126,7 +13359,7 @@ msgstr "Geverifieerd (Komt overeen)" msgid "Received Method" msgstr "Ontvangen methode" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "Haal het standaardbericht voor eQSL op, voor dit station." @@ -13170,7 +13403,7 @@ msgstr "Wijzigingen opslaan" msgid "TimeOff is less than TimeOn" msgstr "TimeOff is minder dan TimeOn" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "Eerdere verbindingen" @@ -13207,113 +13440,125 @@ msgstr "LoTW-gebruiker. Laatste upload was %x dagen geleden." msgid "Invalid value for antenna elevation:" msgstr "Ongeldige waarde voor antenne elevatie:" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "LIVE" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "POST" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "Satelliet" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "Band/Mode aan favorieten toevoegen" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "Begintijd" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "Eindtijd" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "Zoek DXCluster voor de laatste spotter rapport" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "IOTA Referentie" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "SOTA Referentie" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "Frequentie (RX)" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "Band (RX)" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "Bijvoorbeeld: GM/NS-001." -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "Bijvoorbeeld: DLFF-0069." -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "Bijvoorbeeld: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "Bijvoorbeeld: GMA" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "Bijvoorbeeld: DA/NW-357" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "Bijvoorbeeld: Q03" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "E-mailadres van QSO-partner" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "Satelliet Naam" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "Satelliet Mode" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "QSO-opmerking" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "QSL Bericht" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "Opnieuw instellen naar standaard" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "Roepnaam aantekeningen" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." @@ -13321,43 +13566,43 @@ msgstr "" "Bewaar privégegevens over je QSO-partner. Deze notities worden nooit gedeeld " "of geëxporteerd naar externe diensten." -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "Verbinden" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "CW-snelheid" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "Stoppen" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "Afstemmen" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "Stop afstemmen" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "Voer tekst in..." -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "Zend" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "Suggesties" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "Profielfoto" @@ -14753,7 +14998,7 @@ msgid "Special Interest Group Information" msgstr "Informatie over Special Interest Group" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Problemen? Raadpleeg de %swiki%s." @@ -15489,19 +15734,27 @@ msgstr "POTA zoekt automatisch locatorvak en naam op voor park." msgid "Number of previous contacts displayed on QSO page." msgstr "Aantal eerdere contacten weergegeven op de QSO-pagina." +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "Menu-opties" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "Notities weergeven in het hoofdmenu." -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "Quicklog veld" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." @@ -15509,26 +15762,26 @@ msgstr "" "Met deze functie kun je roepnamen loggen met behulp van het zoekveld in de " "koptekst." -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "Quicklog - Actie bij indrukken van Enter" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "Log roepnaam" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" "Welke actie moet worden uitgevoerd wanneer Enter wordt ingedrukt in het " "quicklog-veld?" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "Snelle wissel van stationslocaties" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." @@ -15536,142 +15789,142 @@ msgstr "" "Toon de locatiesnelkoppeling in het hoofdmenu. Je kunt locaties toevoegen " "door ze toe te voegen aan favorieten op de stationsinstellingenpagina." -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "UTC-tijd in menu" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "Toon de huidige UTC-tijd in het menu" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "Kaartinstellingen" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "Icoon" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "Niet weergeven" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "Niet weergegeven" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "QSO (standaard)" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "QSO (bevestigd)" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "(Indien 'Nee', weergegeven als 'QSO (standaard)')" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "Toon locator" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "Vorige QSL-type" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "" "Selecteer het type QSL om weer te geven in het gedeelte van de vorige QSOs." -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "Dashboardinstellingen" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "" "Selecteer het aantal nieuwste QSO's dat op het dashboard moet worden " "weergegeven." -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "Kies het aantal laatste QSO's dat op het dashboard wordt weergegeven." -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "Dashboardkaart weergeven" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "Kaart rechts" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "Kies of je de kaart op het dashboard wilt weergeven of niet" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "Dashboard-meldingsbanner" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" "Hiermee kun je de globale meldingsbanner op het dashboard uitschakelen." -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "Dashboard zon- en propagatiegegevens" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" "Hiermee wissel je tussen de weergave van de zon- en voortplantingsgegevens " "op het dashboard." -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "Toon referentievelden op QSO-tabblad" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" "De ingeschakelde items worden op het QSO-tabblad weergegeven in plaats van " "op het Algemeen-tabblad." -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "Instellingen voor online QSL-aanvraag (OQRS)" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "Globale tekst" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "Deze tekst is een optionele tekst die bovenaan de OQRS-pagina kan worden " "weergegeven." -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "Gegroepeerd zoeken" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "Uit" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "Aan" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -15679,11 +15932,11 @@ msgstr "" "Wanneer dit aanstaat, worden alle stationslocaties met actieve OQRS tegelijk " "doorzocht." -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "Toon de naam van de stationslocatie in gegroepeerde zoekresultaten" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -15691,11 +15944,11 @@ msgstr "" "Als de gegroepeerde zoekopdracht AAN staat, kun je beslissen of de naam van " "de stationslocatie in de resultaatstabel wordt weergegeven." -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "Automatische OQRS verificatie" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -15704,69 +15957,69 @@ msgstr "" "systeem proberen binnenkomende verzoeken automatisch met bestaande logs te " "matchen." -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "Automatische OQRS verificatie voor directe verzoeken" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" "Als dit aanstaat, zal automatische OQRS verificatie voor directe verzoeken " "plaatsvinden." -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "Standaardwaarden" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "Instellingen voor standaardband en bevestiging" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "Standaardband" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "Standaard QSL-methoden" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "Diensten van derden" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "Logbook of The World (LoTW) gebruikersnaam" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "Logbook of The World (LoTW) wachtwoord" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "Test inloggen" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "eQSL.cc gebruikersnaam" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "eQSL.cc wachtwoord" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "Club Log" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "Club Log e-mail" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "Club Log-wachtwoord" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -15776,15 +16029,15 @@ msgstr "" "genereren om Clublog in Wavelog te gebruiken. Bezoek %sje clublog-" "instellingenpagina%s om dit te doen." -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "Widgets" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "On-Air widget" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." @@ -15792,16 +16045,16 @@ msgstr "" "Opmerking: Om deze widget te gebruiken, moet je ten minste één CAT-radio " "geconfigureerd en werkend hebben." -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "Wanneer ingeschakeld, zal de widget beschikbaar zijn op %s." -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "Toon \"Laatst gezien\" tijd" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." @@ -15809,15 +16062,15 @@ msgstr "" "Met deze instelling bepaal je of de 'Laatst gezien' tijd in de widget wordt " "weergegeven of niet." -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "Toon alleen de meest recent bijgewerkte radio" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "Nee, toon alle radio's" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -15829,15 +16082,15 @@ msgstr "" "meest recent bijgewerkte. Als je slechts één radio hebt, heeft deze " "instelling geen effect." -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "QSOs widget" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "Toon exacte QSO-tijd" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." @@ -15845,40 +16098,40 @@ msgstr "" "Met deze instelling wordt bepaald of de exacte QSO-tijd in de QSO-widget " "moet worden weergegeven of niet." -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "Diversen" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "AMSAT-statusupload" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "Uploadstatus van SAT QSOs naar" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "Mastodon-server" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "URL van Mastodonserver" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "Hoofd-URL van je Mastodon-server, bijv. %s" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "Winkeyer-functies ingeschakeld" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -15887,25 +16140,25 @@ msgstr "" "Winkeyer-ondersteuning in Wavelog is zeer experimenteel. Lees eerst de wiki " "op %s voordat je het inschakelt." -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "Privé Feed Sleutel" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "Bekijk je profiel op %s." -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "Toon alleen werkbare passages" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -15914,7 +16167,7 @@ msgstr "" "het locatorvak dat in je hams.at-account is ingesteld. Vereist dat de " "private feed-sleutel is ingesteld." -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "Account opslaan" @@ -16612,6 +16865,10 @@ msgstr "Verzoek indienen" msgid "Rcvd" msgstr "Ontvangen" +#, php-format +#~ msgid "You're not logged in. Please %slogin%s" +#~ msgstr "Je bent niet ingelogd. Gelieve %sinloggen%s" + #~ msgid "CFD Export" #~ msgstr "CFD-export" diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.mo b/application/locale/pl_PL/LC_MESSAGES/messages.mo index c11b9202e5bbe070d65f0e7f27aa099e5d076969..ed48e536a76251a0810034a60e04bc6a0c913495 100644 GIT binary patch delta 45685 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 delta 45764 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\n" "Language-Team: Polish 1.1.10)" msgstr "WebSocket (Wymaga WLGate>1.1.10)" @@ -6966,14 +6968,17 @@ msgid "Worked, not Confirmed" msgstr "Zaliczono, niepotwierdzone" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "Fonia" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "CW" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "Emisje cyfrowe" @@ -7276,7 +7281,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "Lokalizacja" @@ -7411,7 +7416,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7434,12 +7439,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "Tak" @@ -7474,7 +7479,7 @@ msgstr "Tak" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7497,12 +7502,12 @@ msgstr "Tak" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "Nie" @@ -7848,6 +7853,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "Pobierz QSL z ClubLog" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7881,8 +8050,8 @@ msgstr "Brak nadchodzących aktywacji. Należy sprawdzić ponownie później." #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "Komentarz" @@ -8101,7 +8270,7 @@ msgstr "Numer seryjny + Lokator + Wymiana" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "Znak wywoławczy operatora" @@ -8215,7 +8384,7 @@ msgid "Reset QSO" msgstr "Wyczyść łączność" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "Zapisz łączność" @@ -8250,9 +8419,9 @@ msgstr "Identyfikator" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "Włączone" @@ -8398,7 +8567,7 @@ msgstr "Wyeksportowane zostaną tylko QSO z informacjami SOTA!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "Typ propagacji" @@ -8529,7 +8698,7 @@ msgstr "" "przekroczenia" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8566,7 +8735,7 @@ msgstr "Wymagane" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8651,7 +8820,7 @@ msgstr "Odebrane" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9872,10 +10041,10 @@ msgid "QSL Date" msgstr "Data QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9973,7 +10142,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "Uwaga! Czy na pewno usunąć QSO z " #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "Kolory" @@ -9982,7 +10151,7 @@ msgid "Worked not confirmed" msgstr "Zaliczone, niepotwierdzone" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "Wyczyść" @@ -10037,151 +10206,220 @@ msgstr "Sortowanie" msgid "Duplication is disabled for Contacts notes" msgstr "Duplikowanie notatek w kategorii Kontakty jest wyłączone" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "Duplikuj" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "Usuń notatkę" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "Duplikuj notatkę" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "Skasować tą notatkę?" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "Zduplikować tą notatkę?" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "Duplikowanie wyłączone" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "Nie znaleziono notatek" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "Brak notatek dla tego znaku wywoławczego" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "Notatka znaku wywoławczego" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "Usunięto notatkę" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "Utworzono notatkę" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "Zapisano notatkę" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "Błąd zapisywania notatki" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "Informacje o wersji" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "Nie udało się załadować okna modalnego. Należy spróbować ponownie." -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "Opis:" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "Opis kwerendy" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "Twoja kwerenda została zapisana!" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "Edytuj kwerendy" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "Zapisane kwerendy:" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "Uruchom kwerendę" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "Zapisane kwerendy" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "Należy przygotować kwerendę przed rozpoczęciem wyszukiwania!" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "Eksport do ADIF" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "Otwórz w zaawansowanym dzienniku łączności" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Uwaga! Czy na pewno usunąć zapisaną kwerendę?" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "Zapisana kwerenda została usunięta!" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "Nie można usunąć zapisanej kwerendy. Należy spróbować ponownie!" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "Opis kwerendy został zaktualizowany!" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "Coś poszło nie tak podczas zapisywania. Należy spróbować ponownie!" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -10191,20 +10429,20 @@ msgstr "" "nieważny. Należy sprawdzić, który DXCC dla tej konkretnej lokalizacji jest " "właściwy. Jeśli istnieje pewność, należy zignorować to ostrzeżenie." -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "Znak wywoławczy: " -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "Liczba: " -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "Lokatory: " -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -10212,62 +10450,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Lokatory" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "Nie jesteś zalogowany. %sZaloguj się%s" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "lokator" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "Całkowita liczba" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "Karta QSL dla " -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Uwaga! Czy na pewno usunąć tę kartę QSL?" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "Karta eQSL" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "Karta eQSL dla " -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "Plik obrazu QSL" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "Przód karty QSL:" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "Tył karty QSL:" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "Dodaj dodatkowe QSO do karty QSL" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "Coś poszło nie tak. Spróbuj jeszcze raz!" @@ -10455,7 +10688,7 @@ msgstr "Logowanie" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "Wyszukaj znak" @@ -10870,7 +11103,7 @@ msgstr "Moc stacji" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "Region" @@ -10990,7 +11223,7 @@ msgstr "Zweryfikowano" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -11011,7 +11244,7 @@ msgstr "Bezpośrednio" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -11030,7 +11263,7 @@ msgstr "Biuro" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -11045,49 +11278,49 @@ msgstr "Elektroniczne" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Manager" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "BRAK" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "Afrykańskie Włochy" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "Wyspa Niedźwiedzia" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "Europejska Turcja" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "ITU Wiedeń" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "Kosowo" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "Wyspy Szetlandzkie" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "Sycylia" @@ -11262,7 +11495,7 @@ msgstr "Wysłano QSL" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -11299,7 +11532,7 @@ msgstr "Zakolejkowano" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11532,7 +11765,7 @@ msgstr "De" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "QRZ" @@ -11899,7 +12132,7 @@ msgid "Note Contents" msgstr "Zawartość notatki" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "Zapisz notatkę" @@ -12379,7 +12612,7 @@ msgstr "Czy są jakieś dodatkowe informacje, które powinniśmy znać?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -12398,12 +12631,12 @@ msgstr "Wyślij zgłoszenie „brak w logu”" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -12427,7 +12660,7 @@ msgstr "Stacja" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -13018,11 +13251,11 @@ msgstr "Częstotliwość RX" msgid "RX Band" msgstr "Pasmo RX" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Wpisz wartość mocy w watach. W polu podaj same cyfry." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -13032,25 +13265,25 @@ msgstr "Moc nadajnika (W)" msgid "Used for VUCC MultiGrids" msgstr "Wykorzystywane w VUCC MultiGrids" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "Ścieżka antenowa" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "Greyline" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "Inne" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "Krótka ścieżka" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "Długa ścieżka" @@ -13063,38 +13296,38 @@ msgstr "Nazwa SAT" msgid "Sat Mode" msgstr "Tryb SAT" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "Azymut anteny (°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "Azymut anteny w stopniach dziesiętnych." -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "Elewacja anteny (°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "Elewacja anteny w stopniach dziesiętnych." -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "Powiat/Hrabstwo stacji" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "Informacja SIG" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "Uwaga: Zostaną wyeksportowane do usług zewnętrznych." @@ -13103,8 +13336,8 @@ msgid "Sent Method" msgstr "Metoda wysłania" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "Metoda" @@ -13125,7 +13358,7 @@ msgstr "Zweryfikowano (dopasowanie)" msgid "Received Method" msgstr "Metoda otrzymania" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "Pobierz domyślną wiadomość dla eQSL dla tej stacji." @@ -13169,7 +13402,7 @@ msgstr "Zapisz zmiany" msgid "TimeOff is less than TimeOn" msgstr "Czas zakończenia jest wcześniejszy niż czas rozpoczęcia" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "Poprzednie łączności" @@ -13206,113 +13439,125 @@ msgstr "Użytkownik LoTW. Ostatnie przesłanie %x dni temu." msgid "Invalid value for antenna elevation:" msgstr "Niewłaściwa wartość elewacji anteny:" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "NA ŻYWO" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "PO FAKCIE" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "SAT" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "Dodaj pasmo/emisję do ulubionych" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "Czas rozpoczęcia" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "Czas zakończenia" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "Wyszukaj ostatnie spoty w DXCluster" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "Podmiot IOTA" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "Podmiot SOTA" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "Częstotliwość (RX)" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "Pasmo (RX)" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "Na przykład: GM/NS-001." -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "Na przykład: DLFF-0069." -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "Na przykład: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "Na przykład: GMA" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "Na przykład: DA/NW-357" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "Na przykład: Q03" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "Adres email partnera QSO" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "Nazwa satelity" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "Tryb Satelitarny" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "Komentarz do QSO" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "Wiadomość QSL" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "Przywróć domyślne ustawienia" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "Notatki znaku wywoławczego" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." @@ -13320,43 +13565,43 @@ msgstr "" "Przechowuje notatki dotyczące parterów QSO. Te notatki nigdy nie są " "udostępniane lub przesyłane do usług zewnętrznych." -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "Połącz" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "Prędkość CW" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "Zatrzymaj" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "Strojenie" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "Zatrzymaj strojenie" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "Wprowadź tekst..." -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "Wyślij" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "Sugestie" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "Zdjęcie profilowe" @@ -14764,7 +15009,7 @@ msgid "Special Interest Group Information" msgstr "Informacja Specjalnej Grupy Zainteresowań" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Problemy? Sprawdzenie %swiki%s." @@ -15497,19 +15742,27 @@ msgstr "Automatyczne wyszukiwanie lokatora i nazwy dla parku POTA." msgid "Number of previous contacts displayed on QSO page." msgstr "Liczba poprzednich łączności wyświetlana na stronie QSO." +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "Menu Opcji" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "Pokazuj notatki w głównym menu." -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "Pole szybkiego logowania" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." @@ -15517,26 +15770,26 @@ msgstr "" "Dzięki tej funkcji można logować znaki wywoławcze, korzystając z pola " "wyszukiwania w nagłówku." -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "Szybkie logowanie - akcja na wciśnięcie enter" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "Logowanie znaku" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" "Jaka akcja powinna zostać wykonana po wciśnięciu przycisku Enter w polu " "quicklog?" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "Szybka zmiana lokalizacji stacji" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." @@ -15545,144 +15798,144 @@ msgstr "" "głównym. Można dodać lokalizacje, dodając je do ulubionych na stronie " "konfiguracji stacji." -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "Czas UTC w menu" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "Wyświetlaj aktualny czas UTC w menu" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "Ustawienia mapy" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "Ikona" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "Nie wyświetlaj" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "Nie wyświetlane" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "QSO (domyślnie)" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "QSO (potwierdzone)" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "(Jeśli „Nie”, wyświetlane jako „QSO (domyślnie)”)" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "Wyświetl lokator" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "Poprzedni typ QSL" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "" "Należy wybrać typ QSL, który ma być wyświetlany w sekcji poprzednich " "łączności (QSO)." -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "Ustawienia Panelu Użytkownika" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "" "Należy wybrać ile ostatnich QSO ma być wyświetlanych w Panelu Użytkownika." -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "" "Należy wybrać liczbę ostatnich łączności (QSO), które mają być wyświetlane " "na Panelu Użytkownika." -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "Wyświetlaj mapę na Panelu Użytkownika" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "Mapa po prawej" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "Należy wybrać, czy mapa ma być wyświetlana na Panelu Użytkownika" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "Wyświetlaj baner powiadomień na Panelu Użytkownika" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" "Ta opcja pozwala wyłączyć globalny baner powiadomień na Panelu Użytkownika." -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "Dane słoneczne oraz propagacja na panelu użytkownika" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" "Przełącza widoczność danych słonecznych oraz propagacji na panelu " "użytkownika." -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "Wyświetlaj pola referencji na zakładce QSO" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" "Włączone elementy będą wyświetlane na zakładce QSO, zamiast na zakładce " "Ogólne." -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "Ustawienia żądania QSL online (OQRS)" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "Tekst globalny" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "Ten tekst jest opcjonalnym komunikatem, który może być wyświetlany na górze " "strony OQRS." -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "Pogrupowane wyszukiwanie" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "Wyłączone" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "Włączone" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -15690,12 +15943,12 @@ msgstr "" "Jeśli ta opcja jest włączona, wszystkie lokalizacje stacji z aktywnym OQRS " "będą przeszukiwane jednocześnie." -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "" "Wyświetl nazwę lokalizacji stacji w pogrupowanych wynikach wyszukiwania" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -15703,11 +15956,11 @@ msgstr "" "Jeśli pogrupowane wyszukiwanie jest włączone, można zdecydować, czy nazwa " "lokalizacji stacji ma być wyświetlana w tabeli wyników." -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "Automatyczne dopasowywanie OQRS" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -15716,69 +15969,69 @@ msgstr "" "aktywne, a system spróbuje automatycznie dopasować przychodzące żądania do " "istniejących logów." -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "Automatyczne dopasowywanie OQRS dla żądań bezpośrednich" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" "Jeśli ta opcja jest włączona, automatyczne dopasowywanie OQRS dla żądań " "bezpośrednich będzie aktywne." -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "Wartości domyślne" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "Ustawienia domyślnego pasma i potwierdzenia" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "Domyślne pasmo" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "Domyślne metody QSL" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "Usługi stron trzecich" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "Nazwa użytkownika Logbook of The World (LoTW)" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "Hasło Logbook of The World (LoTW)" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "Sprawdź login" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "Nazwa użytkownika eQSL.cc" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "Hasło eQSL.cc" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "ClubLog" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "Email ClubLog" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "Hasło ClubLog" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -15788,15 +16041,15 @@ msgstr "" "hasło aplikacji, aby używać ClubLog w Wavelog. Należy odwiedzić %sstronę " "ustawień ClubLog%s, aby to zrobić." -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "Widżety" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "Widżet \"Na żywo\"" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." @@ -15804,16 +16057,16 @@ msgstr "" "Uwaga: Aby używać tego widżetu, należy mieć skonfigurowaną i działającą co " "najmniej jedną radiostację CAT." -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "Po włączeniu, widżet będzie dostępny pod adresem %s." -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "Wyświetl czas „ostatnio widziany”" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." @@ -15821,15 +16074,15 @@ msgstr "" "To ustawienie kontroluje, czy czas „ostatnio widziany” będzie wyświetlany w " "widżecie." -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "Wyświetl tylko ostatnio zaktualizowaną radiostację" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "Nie, pokazuj wszystkie radiostacje" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -15841,15 +16094,15 @@ msgstr "" "tą, która zostało zaktualizowana jako ostatnia. W przypadku posiadania tylko " "jednej radiostacji, to ustawienie nie ma wpływu." -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "Widżet QSO" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "Wyświetlaj dokładny czas QSO" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." @@ -15857,40 +16110,40 @@ msgstr "" "To ustawienie kontroluje, czy dokładny czas QSO ma być wyświetlany w " "widżecie QSO." -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "Różne" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "Przesłanie statusu AMSAT" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "Przesyłanie statusu QSO satelitarnych do" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "Serwer Mastodon" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "URL serwera Mastodon" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "Główny URL twojego serwera Mastodon, np. %s" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "Włącznie funkcje Winkeyer" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -15899,25 +16152,25 @@ msgstr "" "Obsługa Winkeyer w Wavelog jest bardzo eksperymentalna. Przed włączeniem " "należy zapoznać się wiki pod adresem %s." -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "Prywatny klucz kanału" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "Zobacz profil użytkownika na %s." -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "Pokaż tylko możliwe do zaliczenia przeloty" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -15926,7 +16179,7 @@ msgstr "" "podstawie lokatora ustawionego na koncie hams.at. Wymaga ustawienia " "prywatnego klucza kanału." -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "Zapisz ustawienia konta" @@ -16617,6 +16870,10 @@ msgstr "Prześlij prośbę" msgid "Rcvd" msgstr "Rcvd" +#, php-format +#~ msgid "You're not logged in. Please %slogin%s" +#~ msgstr "Nie jesteś zalogowany. %sZaloguj się%s" + #~ msgid "CFD Export" #~ msgstr "Eksport CFD" diff --git a/application/locale/pt_PT/LC_MESSAGES/messages.mo b/application/locale/pt_PT/LC_MESSAGES/messages.mo index 6661f31a09c0b7f564f3ec50231481ee512d6d91..e1fddd605e3ec9d630aebf8214ce9ba525e2dd6d 100644 GIT binary patch delta 45165 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 Ztn`rltn|=lOIF-!@3hH}k9V?a{~w-69t8jZ delta 45276 zcmXWkcc72eAHebNz1Jq$vvTddw`^IFtjvrOS)r6v@{K5pN}`lK67fp|ku)ikNJ)uy zX`rl1$?yICp7ZD5N;zC6V3Sv|A#;%wX z2gdT@n4A10v?DVx1LvTVKMx(iDy)R-u_PYEEASM$X!(yP64kLRT2Hs*$?#x53i42J zBVLlm2z5p?A9u@0_67wr(1$CFqF3!e-&LY5%WAD#Oomd4fS;_X5^yw3~v zdde;9|Ux<5bA!LmMcLPJKnpi*@l*Y>kenJNo?X=u+N`1@LjqhpW(rH=(ihCKkXw zNC%RMqa>PBa0=~N?bBf<8lw%hLm%jcPWcF|iuYkTT!-$f{b)x%Luc-5^!amWN3xv> zGguTI*cDhmjrFfa!eF}bY^Y!unjedfcsx3Sspw41isesXTk@;1Gakog*yLOo&_t|E zelw22Z?FS){WH|J0JG74VucA@i%!vtm>;*HBiM_D@F*6<)A4%tzru_Z$5NEnLSv{a z`rH6C2ya2_n}Y`H3UsD+VX_*Dk4ZSi7tszB_&Zd1IhG*b44Yyfyawmt2>cFx{+jb) z-`|bS$QpEDC$Sce{U^8-Ym(oOjWF$BZgWbS{2SKveyl+L1+<3;F$;c$FXH#;Qp~@Q zNKC<{*age{mq-l5Td@HiLSy67i{YrNhsI22EP@l!0Y7>%8G>aw1qRWp=nQN}mt+^( z;68Nizd)z$>s*B?S>bOHMOaywor)oJz1Y z(2mqcr?3UOB;C;^>Wv;8H=#jv8&1NRXocCbrKJv@OVKGWk8am`==SY^);j<*ah%s_ zKQSj3tilrHccLBn1|9jYXa~-rBh1L2mU_*WMf2U!nYay&mAhj8adZh6#Qa&bqyM5a zn>9yTBI$^VlF;(#g}P`kwM9qLE9Qry_f0@YG!2b~1u?%03zOd(^ZU^K{{uQ>MRKMk z9>D5224Bg^`CEfT*<5L(Lo`2i@NvqCuJ^cj!niw8N#)`f8yw zF$f*NM6})q(e1k?x+VAAD!FncE&7}y-{3!^W6F~!E%7)OLtjtNV}1MuZ6cG;glc## zPQ^)Rv|Pkg*Ybu%%Y_c1C^~o5u>xL+)A7c<%t3h)$0#t4^In>kI&3SU6%9qBVielI z1L!I~jE?OIbkSCz9p8vX%UkH2?8Tz^6;{DNW4=tjuuq!gONJX-Q(%1dLm#{at!Q%0 zKOFN5(T3K<@{RZr`JI?L!t#f>e+CW97owZcjrn@a??Cs*2T2k({59I}X|&-i1;WVk zN6Vs9SRajsHrNBNK`UN{&deJ85MRP>cwfOVQy-)EeS^-}&(Y*RF>y(u7)H@rXl%5K zc0)UM1J=VacqOht*Z3y~|?xi~ zhb+KT*cTJU(-JeFAA0>ew4w`WM+=n*W};JD4W0Ui(UxeebVM8Ofp%;#+Ob

9&|j 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\n" "Language-Team: Portuguese (Portugal) 1.1.10)" msgstr "" @@ -6971,14 +6973,17 @@ msgid "Worked, not Confirmed" msgstr "Contactado, não confirmado" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "Fonia" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "CW" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "Digital" @@ -7280,7 +7285,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "Localização" @@ -7415,7 +7420,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7438,12 +7443,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "Sim" @@ -7478,7 +7483,7 @@ msgstr "Sim" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7501,12 +7506,12 @@ msgstr "Sim" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "Não" @@ -7853,6 +7858,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "Descarregar QSLs do Clublog" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7885,8 +8054,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "Comentário" @@ -8106,7 +8275,7 @@ msgstr "Número de série + Locator + Troca" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "Indicativo do operador" @@ -8220,7 +8389,7 @@ msgid "Reset QSO" msgstr "Reiniciar contacto" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "Guardar contacto" @@ -8255,9 +8424,9 @@ msgstr "Identificador" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "Ativado" @@ -8403,7 +8572,7 @@ msgstr "Apenas os contactos com informações SOTA serão exportados!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "Modo de Propagação" @@ -8528,7 +8697,7 @@ msgid "" msgstr "" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8564,7 +8733,7 @@ msgstr "Necessário" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8649,7 +8818,7 @@ msgstr "Recebido" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9876,10 +10045,10 @@ msgid "QSL Date" msgstr "Data QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9979,7 +10148,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "Atenção! Tem a certeza que quer apagar o contacto com " #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "Cores" @@ -9988,7 +10157,7 @@ msgid "Worked not confirmed" msgstr "Contactado mas não confirmado" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "Limpar" @@ -10043,152 +10212,221 @@ msgstr "Ordenação" msgid "Duplication is disabled for Contacts notes" msgstr "A duplicação está desativada para as notas de Contactos." -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "Duplicado" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "Apagar nota" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "Nota duplicada" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "Apagar esta nota?" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "Duplicar esta nota?" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "Duplicação desativada" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "Não foram encontradas notas" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "Informação da Versão" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "Falha ao carregar o modal. Por favor, tente novamente." -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "Descrição:" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "Descrição da consulta" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "A sua consulta foi guardada!" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "Editar consultas" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "Consultas guardadas:" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "Executar Consulta" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "Consultas Guardadas" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "Tens de fazer uma consulta antes de pesquisar!" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "Exportar para ADIF" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "Abrir no Logbook Avançado" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Aviso! Tem a certeza de que quer eliminar esta consulta guardada?" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "A consulta armazenada foi eliminada!" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "" "A consulta armazenada não pôde ser eliminada. Por favor, tente novamente!" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "A descrição da consulta foi atualizada!" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "Algo correu mal com a gravação. Por favor, tente novamente!" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -10198,20 +10436,20 @@ msgstr "" "qual é o DXCC correto para o local em questão. Se tiver a certeza, ignore " "este aviso." -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "Indicativo: " -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "Quantidade: " -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "Grelhas: " -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -10219,62 +10457,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Gridsquares" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "Não tem sessão iniciada. Por favor %slogin%s" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "quadrícula" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "Número total" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "Cartão QSL para " -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Aviso! Tem a certeza de que quer eliminar este cartão QSL?" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "Cartão eQSL" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "Cartão eQSL para " -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "Ficheiro de imagem QSL" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "Frente do Cartão QSL:" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "Parte traseira do Cartão QSL:" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "Adicionar QSOs adicionais a um Cartão QSL" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "Algo correu mal. Por favor, tente novamente!" @@ -10462,7 +10695,7 @@ msgstr "Log" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "Pesquisar Indicativo" @@ -10878,7 +11111,7 @@ msgstr "Potência da estação" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "Região" @@ -10998,7 +11231,7 @@ msgstr "Verificado" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -11019,7 +11252,7 @@ msgstr "Direto" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -11038,7 +11271,7 @@ msgstr "Bureau" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -11053,49 +11286,49 @@ msgstr "Eletrónico" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Manager" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "NENHUM" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "Itália Africana" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "Ilha do Urso" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "Turquia Europeia" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "ITU Viena" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "Kosovo" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "Ilhas Shetland" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "Sicília" @@ -11271,7 +11504,7 @@ msgstr "QSL enviada" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -11308,7 +11541,7 @@ msgstr "Em fila" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11542,7 +11775,7 @@ msgstr "De" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "QRZ" @@ -11912,7 +12145,7 @@ msgid "Note Contents" msgstr "Conteúdos da nota" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "Guardar nota" @@ -12400,7 +12633,7 @@ msgstr "Há alguma informação adicional que seja necessário conhecer?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -12419,12 +12652,12 @@ msgstr "Enviar não no pedido de logs" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -12448,7 +12681,7 @@ msgstr "Estação" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -13043,12 +13276,12 @@ msgstr "Frequência RX" msgid "RX Band" msgstr "Banda RX" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" "Forneça o valor da potência em Watts. Inclua apenas números na entrada." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -13058,25 +13291,25 @@ msgstr "Potência de Transmissão (W)" msgid "Used for VUCC MultiGrids" msgstr "Usado para VUCC MultiGrids" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "Direção da Antena" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "Linha cinzenta" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "Outro" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "Caminho Curto" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "Caminho Longo" @@ -13089,38 +13322,38 @@ msgstr "Nome do Satélite" msgid "Sat Mode" msgstr "Modo Satélite" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "Azimute da Antena (°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "Azimute da antena em graus decimais." -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "Elevação da Antena (°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "Elevação da antena em graus decimais." -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "Condado da Estação" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "Informação SIG" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "Nota: Exportado para serviços de terceiros." @@ -13129,8 +13362,8 @@ msgid "Sent Method" msgstr "Método de envio" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "Método" @@ -13151,7 +13384,7 @@ msgstr "Verificado (Correspondência)" msgid "Received Method" msgstr "Método de receção" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "Obtém a mensagem padrão para eQSL, para esta estação." @@ -13195,7 +13428,7 @@ msgstr "Guardar alterações" msgid "TimeOff is less than TimeOn" msgstr "O tempo de inatividade é menor que o tempo de atividade" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "Contactos anteriores" @@ -13232,155 +13465,167 @@ msgstr "Utilizador do LoTW. Último envio foi à %x dias." msgid "Invalid value for antenna elevation:" msgstr "Valor inválido para a elevação da antena:" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "AO VIVO" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "ENVIAR" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "Satélite" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "Adicionar Banda/Modo aos favoritos" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "Tempo ligado" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "Tempo desligado" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "Pesquisar DXCluster para o spot mais recente" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "Referência IOTA" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "Referência SOTA" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "Frequência (RX)" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "Banda (RX)" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "Por exemplo: GM/NS-001." -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "Por exemplo: DLFF-0069." -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "Por exemplo: PA-0150. Vários valores permitidos." -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "Por exemplo: GMA" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "Por exemplo: DA/NW-357" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "Por exemplo: Q03" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "Endereço de correio eletrónico do parceiro de contacto" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "Nome do Satélite" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "Modo Satélite" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "MSG QSL" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "Repor a predefinição" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "Conectar" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "Velocidade CW" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "Parar" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "Sintonizar" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "Parar Sintonização" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "Insira o texto..." -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "Enviar" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "Sugestões" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "Foto de Perfil" @@ -14783,7 +15028,7 @@ msgid "Special Interest Group Information" msgstr "Informação do Grupo de Interesse Especial" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Problemas? Verifique a %swiki%s." @@ -15518,19 +15763,27 @@ msgstr "Procura automaticamente a quadrícula e o nome do parque POTA." msgid "Number of previous contacts displayed on QSO page." msgstr "Número de contactos anteriores exibidos na página de QSO." +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "Opções do Menu" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "Mostrar notas no menu principal." -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "Campo de log rápido" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." @@ -15538,26 +15791,26 @@ msgstr "" "Com esta funcionalidade, pode registar indicativos utilizando o campo de " "pesquisa no cabeçalho." -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "Quicklog - Ação ao premir Enter" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "Registar Indicativo" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" "Que ação deve ser executada quando a tecla “Enter” é premido no campo de log " "rápido?" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "Mudança rápida de localizações de estações" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." @@ -15566,139 +15819,139 @@ msgstr "" "adicionar localizações ao adicioná-las aos favoritos na página de " "configuração da estação." -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "Hora UTC no menu" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "Mostrar a hora UTC atual no menu" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "Configurações do mapa" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "Ícone" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "Não exibir" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "Não exibido" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "Contacto (por defeito)" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "Contacto (confirmado)" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "(Se 'Não', exibido como 'contacto (por padrão))'" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "Mostrar locator" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "Tipo de QSL anterior" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "Seleccione o tipo de QSL a mostrar na secção de contacto anteriores." -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "Configurações do Painel" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "Selecione o número de QSOs mais recentes a serem exibidos no painel." -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "" "Escolha o número de contactos mais recentes a serem exibidos no painel." -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "Mostrar o mapa do painel" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "Mapa à direita" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "Escolha se quer mostrar o mapa no painel ou não" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "Banner de notificação do painel de controlo" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" "Esta opção permite desativar a faixa de notificação global no painel de " "controlo." -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "Painel de dados solares e de propagação" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "Isto altera a exibição dos dados solares e de propagação no painel." -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "Mostrar campos de referência no separador de contacto" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" "Os itens activados serão mostrados no separador de contacto em vez de no " "separador Geral." -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "Configurações de pedido de QSL online (OQRS)" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "Texto global" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "Este texto é um texto opcional que pode ser apresentado no topo da página do " "OQRS." -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "Pesquisa agrupada" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "Desligado" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "Ligado" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -15706,11 +15959,11 @@ msgstr "" "Quando esta opção está activada, todos os locais de estações com OQRS ativo " "serão pesquisados de uma só vez." -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "Mostrar o nome do local da estação em resultados de pesquisa agrupada" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -15718,11 +15971,11 @@ msgstr "" "Se a pesquisa agrupada estiver activada, pode decidir se o nome da " "localização da estação deve ser apresentado na tabela de resultados." -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "Correspondência automática OQRS" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -15731,69 +15984,69 @@ msgstr "" "o sistema tentará corresponder automaticamente os pedidos recebidos com os " "registos log existentes." -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "Correspondência automática de OQRS para pedidos via direto" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" "Se isto estiver ativado, a correspondência automática de OQRS para pedidos " "via direto acontecerá." -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "Valores por defeito" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "Definições para banda predefinida e confirmação" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "Banda predefinida" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "Métodos QSL predefinidos" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "Serviços de terceiros" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "Nome de utilizador do Logbook of The World (LoTW)" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "Palavra-passe do Logbook of The World (LoTW)" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "Teste de Login" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "Nome de utilizador eQSL.cc" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "Palavra-passe do eQSL.cc" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "ClubLog" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "Email do Club Log" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "Palavra-passe do ClubLog" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -15803,15 +16056,15 @@ msgstr "" "senha de aplicação para usar o Clublog no Wavelog. Visite %sa sua página de " "definições do Clublog%s para o fazer." -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "Widgets" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "Widget On-Air" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." @@ -15819,16 +16072,16 @@ msgstr "" "Nota: Para utilizar este widget, é necessário ter pelo menos um rádio CAT " "configurado e a funcionar." -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "Quando ativado, o widget estará disponível em %s." -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "Exibir hora do \"visto por último\"" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." @@ -15836,15 +16089,15 @@ msgstr "" "Esta configuração controla se o horário de 'Última vez visto' é exibido no " "widget ou não." -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "Exibir apenas o rádio atualizado mais recentemente" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "Não, mostra todos os rádios" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -15856,15 +16109,15 @@ msgstr "" "recentemente atualizado. No caso de ter apenas um rádio, esta definição não " "tem efeito." -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "Widget de contactos" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "Exibir hora exata do contacto" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." @@ -15872,40 +16125,40 @@ msgstr "" "Esta configuração controla se o tempo exato do contacto deve ser exibido no " "widget contactos ou não." -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "Diversos" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "Estado do envio para AMSAT" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "Estado do envio dos contactos satélite para" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "Mastodonserver" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "URL do Mastodonserver" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "URL principal do seu servidor Mastodon, por exemplo, %s" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "Funcionalidades do Winkeyer ativadas" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -15914,25 +16167,25 @@ msgstr "" "O suporte ao Winkeyer no Wavelog é muito experimental. Leia primeiro o wiki " "em %s antes de o ativar." -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "Chave privada de envio" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "Ver o seu perfil em %s." -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "Mostrar apenas passagens válidas" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -15941,7 +16194,7 @@ msgstr "" "definido na sua conta hams.at. Requer a definição de uma chave de feed " "privada." -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "Guardar conta" @@ -16634,6 +16887,10 @@ msgstr "Submeter pedido" msgid "Rcvd" msgstr "Recebido" +#, php-format +#~ msgid "You're not logged in. Please %slogin%s" +#~ msgstr "Não tem sessão iniciada. Por favor %slogin%s" + #~ msgid "CFD Export" #~ msgstr "Exportar CFD" diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.mo b/application/locale/ru_RU/LC_MESSAGES/messages.mo index 80a03d0dfa907de53949559b08f7f033f9b1dc74..438656bc53f085ff5f9377fab47ec3cf2d0abe22 100644 GIT binary patch delta 45684 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

cu}4~YYV`jM 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 T-NCa{DyQj|dsj}@MYaA1a;#G6 diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.po b/application/locale/ru_RU/LC_MESSAGES/messages.po index 21540476d..7e6a9d5ed 100644 --- a/application/locale/ru_RU/LC_MESSAGES/messages.po +++ b/application/locale/ru_RU/LC_MESSAGES/messages.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: 2025-10-28 14:44+0000\n" "Last-Translator: Michael Skolsky \n" "Language-Team: Russian 1.1.10)" msgstr "WebSocket (Требуется WLGate>1.1.10)" @@ -6951,14 +6953,17 @@ msgid "Worked, not Confirmed" msgstr "Сработано, не подтверждено" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "Phone" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "CW" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "Digi" @@ -7263,7 +7268,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "QTH" @@ -7398,7 +7403,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7421,12 +7426,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "Да" @@ -7461,7 +7466,7 @@ msgstr "Да" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7484,12 +7489,12 @@ msgstr "Да" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "Нет" @@ -7841,6 +7846,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "Скачать QSL с Clublog" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7873,8 +8042,8 @@ msgstr "Не найдены предстоящие активации. Пров #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "Комментарий" @@ -8097,7 +8266,7 @@ msgstr "Порядковый номер + Квадрат + Контрольны #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "Позывной оператора" @@ -8213,7 +8382,7 @@ msgid "Reset QSO" msgstr "Сбросить QSO" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "Сохранить QSO" @@ -8248,9 +8417,9 @@ msgstr "Идентификатор" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "Включено" @@ -8397,7 +8566,7 @@ msgstr "Будут экспортированы только QSO с информ #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "Тип распространения радиоволн" @@ -8527,7 +8696,7 @@ msgid "" msgstr "Срок действия, как минимум, одного из ваших сертификатов скоро истечёт" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8564,7 +8733,7 @@ msgstr "Необходимо" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8649,7 +8818,7 @@ msgstr "Принято" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9873,10 +10042,10 @@ msgid "QSL Date" msgstr "Дата QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9975,7 +10144,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "Предупреждение! Вы уверены в том, что хотите удалить QSO c " #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "Цвета" @@ -9984,7 +10153,7 @@ msgid "Worked not confirmed" msgstr "Сработано, не подтверждено" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "Очистить" @@ -10037,151 +10206,220 @@ msgstr "Сортировка" msgid "Duplication is disabled for Contacts notes" msgstr "Дублирование отключено для заметок о контактах" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "Дубликат" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "Удалить заметку" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "Дублировать заметку" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "Удалить эту заметку?" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "Дублировать эту заметку?" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "Дублирование отключено" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "Заметки не найдены" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "Нет заметок для этого позывного" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "Заметка о позывном" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "Заметка успешно удалена" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "Заметка успешно создана" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "Заметка успешно сохранена" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "Ошибка при сохранении заметки" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "Информация о версии" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "Не удалось загрузить модальное окно. Пожалуйста, попробуйте еще раз." -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "Описание:" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "Описание запроса" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "Ваш запрос сохранён!" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "Редактировать запросы" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "Сохранённые запросы:" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "Выполнить запрос" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "Сохранённые запросы" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "Сначала нужно сформировать запрос, прежде чем искать!" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "Экспортировать в ADIF" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "Открыть в расширенном журнале" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Внимание! Вы уверены, что хотите удалить этот сохранённый запрос?" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "Сохранённый запрос был удален!" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "Не удалось удалить сохранённый запрос. Пожалуйста, попробуйте еще раз!" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "Описание запроса было обновлено!" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "Что-то пошло не так с сохранением. Пожалуйста, попробуйте еще раз!" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -10191,20 +10429,20 @@ msgstr "" "действителен. Проверьте, какой DXCC для данного конкретного места является " "правильным. Если вы уверены, проигнорируйте это предупреждение." -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "Позывной: " -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "Всего: " -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "Квадратов: " -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -10212,62 +10450,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Квадраты" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "Вы не вошли в систему. Пожалуйста, %sвойдите%s" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "квадрат(/-а/-ов)" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "Всего" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "QSL-карточка для " -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Внимание! Вы уверены, что хотите удалить эту QSL-карточку?" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL-карточка" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "eQSL-карточка для " -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "Изображение QSL-карточки" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "Лицевая сторона QSL-карточки:" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "Обратная сторона QSL-карточки:" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "Добавить дополнительные QSO на QSL-карточку" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "Что-то пошло не так. Пожалуйста, попробуйте еще раз!" @@ -10455,7 +10688,7 @@ msgstr "Журнал" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "Поиск позывного" @@ -10870,7 +11103,7 @@ msgstr "Выходная мощность" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "Регион" @@ -10990,7 +11223,7 @@ msgstr "Верифицировано" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -11011,7 +11244,7 @@ msgstr "Напрямую" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -11030,7 +11263,7 @@ msgstr "Бюро" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -11045,49 +11278,49 @@ msgstr "Электронное" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Менеджер" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "—" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "Африканская Италия" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "Медвежий остров" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "Европейская Турция" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "МСЭ Вена" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "Косово" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "Шетландские острова" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "Сицилия" @@ -11262,7 +11495,7 @@ msgstr "QSL отправлено" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -11299,7 +11532,7 @@ msgstr "В очереди" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11532,7 +11765,7 @@ msgstr "от" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "QRZ" @@ -11905,7 +12138,7 @@ msgid "Note Contents" msgstr "Содержание заметки" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "Сохранить заметку" @@ -12386,7 +12619,7 @@ msgstr "Есть ли дополнительная информация, о ко #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -12405,12 +12638,12 @@ msgstr "Отправить запрос 'не в журнале'" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -12434,7 +12667,7 @@ msgstr "Профиль QTH" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -13022,11 +13255,11 @@ msgstr "Частота приёма" msgid "RX Band" msgstr "Диапазон приёма" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Укажите мощность в Ваттах (только цифры)." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -13036,25 +13269,25 @@ msgstr "Мощность передачи (Вт)" msgid "Used for VUCC MultiGrids" msgstr "Используется для мультиквадратов VUCC" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "Траектория" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "Терминатор" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "Другое" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "Короткий путь" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "Длинный путь" @@ -13067,38 +13300,38 @@ msgstr "Название спутника" msgid "Sat Mode" msgstr "Вид модуляции (для спутника)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "Азимут антенны (°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "Азимут антенны в десятичных градусах." -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "Возвышение антенны (°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "Возвышение антенны в десятичных градусах." -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "Район (округ)" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "Информация SIG" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "Примечание: Экспортируется в сторонние сервисы." @@ -13107,8 +13340,8 @@ msgid "Sent Method" msgstr "Способ отправки" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "Способ" @@ -13129,7 +13362,7 @@ msgstr "Проверено (Совпадает)" msgid "Received Method" msgstr "Способ получения" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "Сообщение в eQSL по умолчанию для этого профиля QTH." @@ -13173,7 +13406,7 @@ msgstr "Сохранить изменения" msgid "TimeOff is less than TimeOn" msgstr "Время окончания меньше времени начала" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "Предыдущие QSO" @@ -13210,113 +13443,125 @@ msgstr "Пользователь LoTW. Последняя загрузка бы msgid "Invalid value for antenna elevation:" msgstr "Недопустимое значение для угла возвышения антенны:" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "Вживую" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "Прошедшее" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "Спутн." -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "Добавить диапазон/вид модуляции в избранное" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "Время начала" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "Время окончания" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "Поиск в DX кластере последнего спота" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "Справочник IOTA" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "Справочник SOTA" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "Частота (RX)" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "Диапазон (RX)" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "Например: GM/NS-001." -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "Например: DLFF-0069." -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "Например: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "Например: GMA" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "Например: DA/NW-357" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "Например: Q03" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "Адрес электронной почты корреспондента в QSO" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "Название спутника" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "Вид модуляции (для спутника)" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "Комментарий к QSO" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "QSL MSG" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "Сброс на настройки по умолчанию" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "Заметки о позывных" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." @@ -13324,43 +13569,43 @@ msgstr "" "Храните частную информацию о вашем корреспонденте. Эти заметки никогда не " "передаются и не экспортируются во внешние сервисы." -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "Подключить" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "Скорость CW" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "Стоп" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "Настройка" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "Остановить настройку" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "Введите текст..." -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "Отправить" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "Предложения" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "Изображение профиля" @@ -14748,7 +14993,7 @@ msgid "Special Interest Group Information" msgstr "Данные SIG" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Проблемы? Смотри в %swiki%s." @@ -15476,19 +15721,27 @@ msgstr "Автозаполнение QTH локатора и названия п msgid "Number of previous contacts displayed on QSO page." msgstr "Количество предыдущих контактов, отображаемых на странице QSO." +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "Главное меню" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "Показывать заметки в главном меню." -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "Быстрая запись" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." @@ -15496,25 +15749,25 @@ msgstr "" "С этой функцией вы можете записывать позывные, используя строку поиска в " "заголовке." -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "Быстрая запись - действие по нажатию Ввод" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "Запись позывного в журнал" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" "Какое действие должно выполняться при нажатии Ввод в поле быстрой записи?" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "Быстрое переключение профилей QTH" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." @@ -15522,140 +15775,140 @@ msgstr "" "Отобразить быстрое переключение профилей QTH в главном меню. Для добавления " "профиля QTH в списоу, добавьте его в избранное на странице настройки станции." -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "Время UTC в меню" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "Показывать текущее время UTC в меню" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "Настройки карты" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "Иконка" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "Не отображать" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "Не отображается" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "QSO (по умолчанию)" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "QSO (подтверждено)" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "(Если 'Нет', то отображается как 'QSO (по умолчанию)')" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "Показывать QTH локатор" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "Тип предыдущего QSL" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "Выберите тип QSL для отображения в секции предыдущих QSO." -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "Настройки панели управления" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "" "Выберите количество последних QSO для отображения на панели управления." -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "" "Выберите, какое количество последних QSO отображать на панели управления." -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "Показать карту на панели управления" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "Карта справа" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "Выберите, показывать ли карту на панели управления или нет" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "Баннер на экране сводных данных" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "Включение отображения баннера на экране сводных данных." -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "Информация о солнечной активности и прохождении на панели управления" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" "Включение/выключение отображения информации о солнечной активности и " "прохождении на панели управления." -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "Отображать поля референций на вкладках QSO" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" "Включенные элементы будут отображаться на вкладке QSO, а не на вкладке " "General." -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "Настройки онлайн-запроса QSL (OQRS)" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "Сообщение на странице OQRS" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "Необязательный текст, который может быть отображён в верхней части страницы " "OQRS." -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "Объединённый поиск" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "Выкл" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "Вкл" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -15663,11 +15916,11 @@ msgstr "" "Если включено, то поиск будет осуществляться во всех профилях QTH, где " "активен OQRS." -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "Показывать название профиля QTH в сгруппированных результатах поиска" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -15675,11 +15928,11 @@ msgstr "" "Если включен групповой поиск, вы можете решить, должно ли название профиля " "QTH отображаться в таблице результатов." -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "Автоматическая обработка OQRS" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -15687,70 +15940,70 @@ msgstr "" "Если включено, будет выполнена автоматическая обработка OQRS, т.е. система " "попытается автоматически сопоставить входящие запросы с существующими логами." -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "Автоматическая обработка OQRS для запросов напрямую" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" "Если включено, будет выполнена автоматическая обработка OQRS для заппросов " "напрямую, т.е. система попытается автоматически сопоставить входящие запросы " "с существующими логами." -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "Значения по умолчанию" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "Настройки для диапазона и способ подтверждения (QSL) по умолчанию" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "Диапазон по умолчанию" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "Способы подтверждения (QSL) по умолчанию" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "Сторонние сервисы" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "Логин" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "Пароль" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "Тестовый вход" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "Логин" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "Пароль" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "Clublog" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "Адрес электронной почты аккаунта в Clublog" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "Пароль" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -15760,15 +16013,15 @@ msgstr "" "сгенерировать пароль приложения для использования Clublog в Wavelog. " "Посетите %sстраницу настроек вашего Clublog%s, чтобы сделать это." -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "Виджеты" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "Виджет \"В эфире\"" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." @@ -15776,16 +16029,16 @@ msgstr "" "Примечание: Чтобы использовать этот виджет, у вас должен быть настроен и " "работать, как минимум, один интерфейс радиостанции." -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "После включения виджет будет доступен на %s." -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "Отобразить время \"Последней активности\"" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." @@ -15793,15 +16046,15 @@ msgstr "" "Эта настройка управляет отображением времени \"Последней активности\" в " "виджете." -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "Отображать только недавно обновлённые данные от радиостанции" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "Нет, отображать все радиостанции" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -15813,15 +16066,15 @@ msgstr "" "пользователя или только последнюю обновленную. Если у вас настроена только " "одна радиостанция, эта настройка не имеет эффекта." -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "QSO виджет" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "Отображать точное время QSO" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." @@ -15829,40 +16082,40 @@ msgstr "" "Эта настройка контролирует, следует ли отображать точное время QSO в виджете " "QSO или нет." -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "Разное" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "Загрузка статуса AMSAT" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "Загружать статус QSO через спутники в" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "Сервер Mastodon" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "URL профиля пользователя Mastodon" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "Главный URL вашего сервера Mastodon, т.е. %s" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "Функционал Winkeyer включен" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -15871,25 +16124,25 @@ msgstr "" "Поддержка Winkeyer в Wavelog является очень экспериментальной. Перед " "включением сначала прочитайте вики в %s." -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "Приватный ключ потока" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "Смотри свой профиль на %s." -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "Показывать только пригодные для работы витки" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -15898,7 +16151,7 @@ msgstr "" "квадрате, установленном в вашем аккаунте на hams.at. Требуется указание " "приватного ключа потока." -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "Сохранить изменения" @@ -16593,6 +16846,10 @@ msgstr "Отправить запрос" msgid "Rcvd" msgstr "Получено" +#, php-format +#~ msgid "You're not logged in. Please %slogin%s" +#~ msgstr "Вы не вошли в систему. Пожалуйста, %sвойдите%s" + #~ msgid "CFD Export" #~ msgstr "Экспорт CDF" diff --git a/application/locale/sk/LC_MESSAGES/messages.po b/application/locale/sk/LC_MESSAGES/messages.po index 5de0af785..d738c681d 100644 --- a/application/locale/sk/LC_MESSAGES/messages.po +++ b/application/locale/sk/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -76,11 +76,11 @@ msgstr "" #: application/controllers/Qsl.php:13 application/controllers/Qsl.php:49 #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 -#: application/controllers/Qso.php:22 application/controllers/Qso.php:187 -#: application/controllers/Qso.php:318 application/controllers/Qso.php:339 -#: application/controllers/Qso.php:362 application/controllers/Qso.php:662 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:291 -#: application/controllers/Radio.php:317 application/controllers/Radio.php:333 +#: application/controllers/Qso.php:22 application/controllers/Qso.php:195 +#: application/controllers/Qso.php:326 application/controllers/Qso.php:347 +#: application/controllers/Qso.php:370 application/controllers/Qso.php:670 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 +#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -112,11 +112,11 @@ msgstr "" #: application/controllers/Update.php:355 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 -#: application/controllers/User.php:376 application/controllers/User.php:377 -#: application/controllers/User.php:1010 application/controllers/User.php:1029 -#: application/controllers/User.php:1261 application/controllers/User.php:1403 -#: application/controllers/User.php:1621 application/controllers/User.php:1637 -#: application/controllers/User.php:1663 +#: application/controllers/User.php:379 application/controllers/User.php:380 +#: application/controllers/User.php:1023 application/controllers/User.php:1042 +#: application/controllers/User.php:1274 application/controllers/User.php:1416 +#: application/controllers/User.php:1634 application/controllers/User.php:1650 +#: application/controllers/User.php:1676 #: application/controllers/User_options.php:9 #: application/controllers/Usermode.php:15 #: application/controllers/Webadif.php:91 application/models/Club_model.php:52 @@ -329,8 +329,8 @@ msgstr "" #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 -#: application/views/qso/edit_ajax.php:401 application/views/qso/index.php:302 -#: application/views/qso/index.php:594 application/views/user/edit.php:682 +#: application/views/qso/edit_ajax.php:401 application/views/qso/index.php:335 +#: application/views/qso/index.php:627 application/views/user/edit.php:693 #: application/views/view_log/qso.php:466 msgid "DOK" msgstr "" @@ -349,7 +349,7 @@ msgstr "" #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 -#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:402 +#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:435 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 #: application/views/search/result.php:27 @@ -551,8 +551,8 @@ msgstr "" #: application/controllers/Awards.php:1224 #: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/useroptions.php:142 -#: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:286 -#: application/views/qso/index.php:580 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:319 +#: application/views/qso/index.php:613 application/views/user/edit.php:689 #: application/views/view_log/qso.php:431 #: application/views/view_log/qso.php:742 msgid "SIG" @@ -612,11 +612,11 @@ msgstr "" msgid "Bands" msgstr "" -#: application/controllers/Band.php:57 application/controllers/Mode.php:41 +#: application/controllers/Band.php:74 application/controllers/Mode.php:41 msgid "Create Mode" msgstr "" -#: application/controllers/Band.php:82 application/views/bands/index.php:158 +#: application/controllers/Band.php:99 application/views/bands/index.php:158 msgid "Edit Band" msgstr "" @@ -750,8 +750,8 @@ msgstr "" #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/edit.php:357 #: application/views/timeline/index.php:68 -#: application/views/update/index.php:16 application/views/user/edit.php:595 -#: application/views/user/edit.php:818 +#: application/views/update/index.php:16 application/views/user/edit.php:606 +#: application/views/user/edit.php:829 #: application/views/view_log/partial/log_ajax.php:222 #: application/views/view_log/qso.php:571 #: application/views/view_log/qso.php:576 @@ -884,7 +884,7 @@ msgstr "" #: application/views/logbookadvanced/useroptions.php:90 #: application/views/qso/edit_ajax.php:434 #: application/views/search/search_result_ajax.php:127 -#: application/views/user/edit.php:596 application/views/user/edit.php:826 +#: application/views/user/edit.php:607 application/views/user/edit.php:837 #: application/views/view_log/partial/log_ajax.php:225 #: application/views/view_log/qso.php:581 #: application/views/view_log/qso.php:586 @@ -1257,9 +1257,9 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:18 -#: application/views/qso/edit_ajax.php:39 application/views/qso/index.php:75 -#: application/views/timeline/index.php:56 application/views/user/edit.php:591 -#: application/views/user/edit.php:784 +#: application/views/qso/edit_ajax.php:39 application/views/qso/index.php:108 +#: application/views/timeline/index.php:56 application/views/user/edit.php:602 +#: application/views/user/edit.php:795 msgid "QSL" msgstr "" @@ -1295,8 +1295,8 @@ msgstr "" #: application/views/satellite/satinfo.php:13 #: application/views/search/search_result_ajax.php:301 #: application/views/search/search_result_ajax.php:316 -#: application/views/timeline/index.php:60 application/views/user/edit.php:592 -#: application/views/user/edit.php:794 application/views/view_log/qso.php:537 +#: application/views/timeline/index.php:60 application/views/user/edit.php:603 +#: application/views/user/edit.php:805 application/views/view_log/qso.php:537 #: application/views/view_log/qso.php:542 msgid "LoTW" msgstr "" @@ -1331,8 +1331,8 @@ msgstr "" #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:276 #: application/views/station_profile/edit.php:309 -#: application/views/timeline/index.php:64 application/views/user/edit.php:593 -#: application/views/user/edit.php:802 application/views/user/edit.php:876 +#: application/views/timeline/index.php:64 application/views/user/edit.php:604 +#: application/views/user/edit.php:813 application/views/user/edit.php:887 msgid "eQSL" msgstr "" @@ -1378,7 +1378,9 @@ msgstr "" #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 #: application/views/gridmap/index.php:104 -#: application/views/hamsat/index.php:33 application/views/kml/index.php:31 +#: application/views/hamsat/index.php:33 +#: application/views/interface_assets/footer.php:82 +#: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:12 #: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/index.php:764 @@ -1400,7 +1402,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:25 #: application/views/qslprint/qsolist.php:9 #: application/views/qso/components/previous_contacts.php:77 -#: application/views/qso/edit_ajax.php:121 application/views/qso/index.php:170 +#: application/views/qso/edit_ajax.php:121 application/views/qso/index.php:203 #: application/views/satellite/satinfo.php:7 #: application/views/search/cqzones_result.php:10 #: application/views/search/ituzones_result.php:10 @@ -1441,7 +1443,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:12 #: application/views/qso/components/previous_contacts.php:78 -#: application/views/qso/edit_ajax.php:143 application/views/qso/index.php:215 +#: application/views/qso/edit_ajax.php:143 application/views/qso/index.php:248 #: application/views/search/search_result_ajax.php:5 #: application/views/simplefle/index.php:159 #: application/views/user/edit.php:244 application/views/user/edit.php:267 @@ -1470,7 +1472,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:29 #: application/views/qslprint/qsolist.php:13 #: application/views/qso/components/previous_contacts.php:79 -#: application/views/qso/edit_ajax.php:148 application/views/qso/index.php:220 +#: application/views/qso/edit_ajax.php:148 application/views/qso/index.php:253 #: application/views/search/search_result_ajax.php:6 #: application/views/simplefle/index.php:160 #: application/views/user/edit.php:245 application/views/user/edit.php:268 @@ -1585,7 +1587,7 @@ msgstr "" #: application/views/qslcard/searchresult.php:83 #: application/views/qso/award_tabs.php:45 #: application/views/qso/components/previous_contacts.php:86 -#: application/views/qso/edit_ajax.php:157 application/views/qso/index.php:317 +#: application/views/qso/edit_ajax.php:157 application/views/qso/index.php:350 #: application/views/satellite/pass.php:46 #: application/views/satellite/pass.php:85 #: application/views/search/cqzones_result.php:12 @@ -1695,7 +1697,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:10 #: application/views/qso/components/previous_contacts.php:88 -#: application/views/qso/edit_ajax.php:85 application/views/qso/index.php:185 +#: application/views/qso/edit_ajax.php:85 application/views/qso/index.php:218 #: application/views/search/cqzones_result.php:11 #: application/views/search/ituzones_result.php:11 #: application/views/search/lotw_unconfirmed_result.php:9 @@ -1733,7 +1735,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:11 #: application/views/qso/components/previous_contacts.php:89 -#: application/views/qso/edit_ajax.php:73 application/views/qso/index.php:203 +#: application/views/qso/edit_ajax.php:73 application/views/qso/index.php:236 #: application/views/search/search_result_ajax.php:16 #: application/views/user/edit.php:242 application/views/user/edit.php:265 #: application/views/user/edit.php:288 application/views/user/edit.php:311 @@ -1775,13 +1777,13 @@ msgstr "" #: application/views/awards/wae/index.php:175 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:772 +#: application/views/interface_assets/footer.php:789 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:252 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 -#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:411 +#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:444 #: application/views/station_profile/create.php:77 #: application/views/station_profile/edit.php:109 #: application/views/stationsetup/linkedlocations.php:17 @@ -1811,7 +1813,7 @@ msgstr "" #: application/views/interface_assets/header.php:494 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 -#: application/views/user/edit.php:848 application/views/visitor/index.php:328 +#: application/views/user/edit.php:859 application/views/visitor/index.php:328 msgid "Logbook of the World" msgstr "" @@ -1914,7 +1916,7 @@ msgid "Note" msgstr "" #: application/controllers/Notes.php:128 application/views/notes/edit.php:20 -#: application/views/notes/view.php:47 application/views/qso/index.php:732 +#: application/views/notes/view.php:47 application/views/qso/index.php:765 msgid "Edit Note" msgstr "" @@ -2214,19 +2216,19 @@ msgstr "" msgid "Print Requested QSLs" msgstr "" -#: application/controllers/Qso.php:112 +#: application/controllers/Qso.php:120 msgid "Add QSO" msgstr "" -#: application/controllers/Qso.php:723 +#: application/controllers/Qso.php:731 msgid "You have to be logged in to access this URL." msgstr "" -#: application/controllers/Qso.php:729 +#: application/controllers/Qso.php:737 msgid "Call Transfer" msgstr "" -#: application/controllers/Qso.php:736 +#: application/controllers/Qso.php:744 msgid "No callsign provided." msgstr "" @@ -2238,7 +2240,7 @@ msgstr "" #: application/controllers/Radio.php:41 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:67 #: application/views/contesting/index.php:157 -#: application/views/qso/index.php:350 +#: application/views/qso/index.php:383 msgid "Radio" msgstr "" @@ -2256,7 +2258,7 @@ msgid "Options" msgstr "" #: application/controllers/Radio.php:50 application/views/debug/index.php:312 -#: application/views/qso/index.php:772 +#: application/views/qso/index.php:808 msgid "Settings" msgstr "" @@ -2266,7 +2268,7 @@ msgstr "" #: application/controllers/Radio.php:98 #: application/views/contesting/index.php:162 -#: application/views/qso/index.php:355 +#: application/views/qso/index.php:388 msgid "last updated" msgstr "" @@ -2283,8 +2285,8 @@ msgstr "" #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:248 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:632 -#: application/views/interface_assets/footer.php:641 +#: application/views/interface_assets/footer.php:649 +#: application/views/interface_assets/footer.php:658 #: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:718 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 @@ -2303,11 +2305,11 @@ msgstr "" #: application/views/club/permissions.php:304 #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:63 -#: application/views/interface_assets/footer.php:2912 -#: application/views/interface_assets/footer.php:2930 -#: application/views/interface_assets/footer.php:2951 -#: application/views/interface_assets/footer.php:2969 +#: application/views/interface_assets/footer.php:62 +#: application/views/interface_assets/footer.php:3419 +#: application/views/interface_assets/footer.php:3437 +#: application/views/interface_assets/footer.php:3458 +#: application/views/interface_assets/footer.php:3476 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:734 #: application/views/lotw_views/index.php:128 @@ -2479,7 +2481,7 @@ msgstr "" #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 #: application/views/logbookadvanced/edit.php:18 -#: application/views/qslprint/index.php:20 application/views/qso/index.php:338 +#: application/views/qslprint/index.php:20 application/views/qso/index.php:371 #: application/views/search/search_result_ajax.php:18 #: application/views/station_profile/create.php:311 #: application/views/station_profile/edit.php:466 @@ -2495,7 +2497,7 @@ msgid "Duplicate Station Location:" msgstr "" #: application/controllers/Station.php:221 -#: application/controllers/User.php:1284 application/controllers/User.php:1534 +#: application/controllers/User.php:1297 application/controllers/User.php:1547 #, php-format msgid "Please check value for grid locator (%s)" msgstr "" @@ -2520,7 +2522,7 @@ msgstr "" #: application/controllers/Stationsetup.php:156 #: application/controllers/Stationsetup.php:177 #: application/controllers/Stationsetup.php:478 -#: application/views/qso/index.php:707 application/views/simplefle/index.php:39 +#: application/views/qso/index.php:740 application/views/simplefle/index.php:39 #: application/views/widgets/on_air.php:102 msgid "Error" msgstr "" @@ -2558,8 +2560,9 @@ msgstr "" #: application/views/station_profile/edit.php:344 #: application/views/station_profile/edit.php:401 #: application/views/stationsetup/stationsetup.php:79 -#: application/views/user/edit.php:480 application/views/user/edit.php:489 -#: application/views/user/edit.php:635 application/views/user/edit.php:645 +#: application/views/user/edit.php:440 application/views/user/edit.php:491 +#: application/views/user/edit.php:500 application/views/user/edit.php:646 +#: application/views/user/edit.php:656 msgid "Disabled" msgstr "" @@ -2609,7 +2612,7 @@ msgstr "" #: application/controllers/Stationsetup.php:396 #: application/views/interface_assets/header.php:119 -#: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:53 +#: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:86 #: application/views/simplefle/index.php:28 #: application/views/stationsetup/stationsetup.php:168 #: application/views/user/index.php:82 application/views/user/index.php:86 @@ -2856,98 +2859,98 @@ msgstr "" msgid "Add User" msgstr "" -#: application/controllers/User.php:314 +#: application/controllers/User.php:316 #, php-format msgid "Username %s already in use!" msgstr "" -#: application/controllers/User.php:317 +#: application/controllers/User.php:319 #, php-format msgid "E-mail %s already in use!" msgstr "" -#: application/controllers/User.php:320 +#: application/controllers/User.php:322 msgid "Invalid Password!" msgstr "" -#: application/controllers/User.php:324 +#: application/controllers/User.php:326 #, php-format msgid "User %s added!" msgstr "" -#: application/controllers/User.php:328 +#: application/controllers/User.php:330 msgid "Users" msgstr "" -#: application/controllers/User.php:425 +#: application/controllers/User.php:428 #: application/views/club/permissions.php:253 msgid "Edit User" msgstr "" -#: application/controllers/User.php:945 application/controllers/User.php:948 +#: application/controllers/User.php:958 application/controllers/User.php:961 #, php-format msgid "User %s edited" msgstr "" -#: application/controllers/User.php:1013 +#: application/controllers/User.php:1026 msgid "Profile" msgstr "" -#: application/controllers/User.php:1078 +#: application/controllers/User.php:1091 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "" -#: application/controllers/User.php:1117 +#: application/controllers/User.php:1130 msgid "This is not allowed!" msgstr "" -#: application/controllers/User.php:1154 application/controllers/User.php:1167 +#: application/controllers/User.php:1167 application/controllers/User.php:1180 msgid "Login failed. Try again." msgstr "" -#: application/controllers/User.php:1175 +#: application/controllers/User.php:1188 #: application/views/interface_assets/header.php:394 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "" -#: application/controllers/User.php:1213 +#: application/controllers/User.php:1226 msgid "" "You can't login to a clubstation directly. Use your personal account instead." msgstr "" -#: application/controllers/User.php:1216 +#: application/controllers/User.php:1229 msgid "" "Your account is locked, due to too many failed login-attempts. Please reset " "your password." msgstr "" -#: application/controllers/User.php:1220 +#: application/controllers/User.php:1233 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " "Only administrators are currently allowed to log in." msgstr "" -#: application/controllers/User.php:1223 +#: application/controllers/User.php:1236 msgid "Incorrect username or password!" msgstr "" -#: application/controllers/User.php:1248 +#: application/controllers/User.php:1261 #, php-format msgid "User %s logged out." msgstr "" -#: application/controllers/User.php:1264 +#: application/controllers/User.php:1277 #: application/views/oqrs/request_grouped.php:16 #: application/views/user/modals/first_login_wizard.php:26 msgid "Station Name" msgstr "" -#: application/controllers/User.php:1265 application/views/debug/index.php:599 +#: application/controllers/User.php:1278 application/views/debug/index.php:599 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:61 #: application/views/station_profile/edit.php:77 @@ -2957,128 +2960,128 @@ msgstr "" msgid "Station Callsign" msgstr "" -#: application/controllers/User.php:1266 +#: application/controllers/User.php:1279 #: application/views/station_profile/create.php:72 #: application/views/station_profile/edit.php:100 #: application/views/user/modals/first_login_wizard.php:42 msgid "Station DXCC" msgstr "" -#: application/controllers/User.php:1267 +#: application/controllers/User.php:1280 msgid "Station CQ Zone" msgstr "" -#: application/controllers/User.php:1268 +#: application/controllers/User.php:1281 msgid "Station ITU Zone" msgstr "" -#: application/controllers/User.php:1269 +#: application/controllers/User.php:1282 #: application/views/user/modals/first_login_wizard.php:91 msgid "Station Locator" msgstr "" -#: application/controllers/User.php:1292 +#: application/controllers/User.php:1305 #, php-format msgid "" "Station created successfully! Welcome to Wavelog! To complete your station " "setup, click %shere%s." msgstr "" -#: application/controllers/User.php:1295 +#: application/controllers/User.php:1308 msgid "Station setup failed! Please set up your station manually." msgstr "" -#: application/controllers/User.php:1312 +#: application/controllers/User.php:1325 msgid "Password Reset is disabled on the Demo!" msgstr "" -#: application/controllers/User.php:1326 +#: application/controllers/User.php:1339 msgid "Forgot Password" msgstr "" -#: application/controllers/User.php:1377 +#: application/controllers/User.php:1390 #: application/views/user/modals/more_actions_modal.php:88 msgid "Email settings are incorrect." msgstr "" -#: application/controllers/User.php:1381 application/controllers/User.php:1386 +#: application/controllers/User.php:1394 application/controllers/User.php:1399 msgid "Password Reset Processed." msgstr "" -#: application/controllers/User.php:1487 +#: application/controllers/User.php:1500 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "" -#: application/controllers/User.php:1508 +#: application/controllers/User.php:1521 #, php-format msgid "" "Couldn't set account to this username. Please try another one than \"%s\"." msgstr "" -#: application/controllers/User.php:1517 +#: application/controllers/User.php:1530 #, php-format msgid "" "Couldn't set account to this email. Please try another address than \"%s\"." msgstr "" -#: application/controllers/User.php:1556 +#: application/controllers/User.php:1569 #, php-format msgid "" "You currently can't impersonate another user. You need to set %s to %s in " "your config.php!" msgstr "" -#: application/controllers/User.php:1570 +#: application/controllers/User.php:1583 #: application/views/user/modals/admin_impersonate_modal.php:36 msgid "" "You currently can't impersonate another user. Please change the " "encryption_key in your config.php file first!" msgstr "" -#: application/controllers/User.php:1577 +#: application/controllers/User.php:1590 msgid "Invalid Hash" msgstr "" -#: application/controllers/User.php:1590 +#: application/controllers/User.php:1603 msgid "The impersonation hash is too old. Please try again." msgstr "" -#: application/controllers/User.php:1597 +#: application/controllers/User.php:1610 msgid "" "You can't impersonate another user while you're not logged in as the source " "user" msgstr "" -#: application/controllers/User.php:1603 +#: application/controllers/User.php:1616 msgid "There was a problem with your session. Please try again." msgstr "" -#: application/controllers/User.php:1610 +#: application/controllers/User.php:1623 msgid "The requested user to impersonate does not exist" msgstr "" -#: application/controllers/User.php:1631 +#: application/controllers/User.php:1644 msgid "" "Could not determine the correct permission level for the clubstation. Try " "again after re-login." msgstr "" -#: application/controllers/User.php:1676 application/controllers/User.php:1688 -#: application/controllers/User.php:1694 application/controllers/User.php:1703 -#: application/controllers/User.php:1711 +#: application/controllers/User.php:1689 application/controllers/User.php:1701 +#: application/controllers/User.php:1707 application/controllers/User.php:1716 +#: application/controllers/User.php:1724 msgid "Ups.. Something went wrong. Try to log back in." msgstr "" -#: application/controllers/User.php:1717 +#: application/controllers/User.php:1730 msgid "" "The ability to return quickly has been disabled after the security hash " "expired. Please log in again." msgstr "" -#: application/controllers/User.php:1733 +#: application/controllers/User.php:1746 #, php-format msgid "" "You have been logged out of the account %s. Welcome back, %s, to your " @@ -3388,7 +3391,7 @@ msgstr "" msgid "Contacts" msgstr "" -#: application/models/Note.php:8 application/views/qso/index.php:61 +#: application/models/Note.php:8 application/views/qso/index.php:94 #: application/views/statistics/index.php:46 #: application/views/user/edit.php:168 msgid "General" @@ -3575,8 +3578,8 @@ msgstr "" #: application/views/gridmap/index.php:107 #: application/views/gridmap/index.php:121 #: application/views/interface_assets/footer.php:46 -#: application/views/interface_assets/footer.php:1802 -#: application/views/interface_assets/footer.php:1941 +#: application/views/interface_assets/footer.php:2309 +#: application/views/interface_assets/footer.php:2448 #: 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 @@ -3621,7 +3624,7 @@ msgstr "" #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 -#: application/views/user/edit.php:768 +#: application/views/user/edit.php:779 #: application/views/visitor/layout/footer.php:172 msgid "All" msgstr "" @@ -3697,7 +3700,7 @@ msgstr "" #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:47 application/views/kml/index.php:80 #: application/views/logbookadvanced/index.php:314 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:478 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:511 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 #: application/views/view_log/qso.php:239 @@ -3711,7 +3714,7 @@ msgstr "" #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:48 application/views/kml/index.php:81 #: application/views/logbookadvanced/index.php:315 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:479 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:512 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 #: application/views/view_log/qso.php:242 @@ -3725,7 +3728,7 @@ msgstr "" #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:49 application/views/kml/index.php:82 #: application/views/logbookadvanced/index.php:316 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:480 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:513 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 #: application/views/view_log/qso.php:245 @@ -3739,7 +3742,7 @@ msgstr "" #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:50 application/views/kml/index.php:83 #: application/views/logbookadvanced/index.php:317 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:481 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:514 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 #: application/views/view_log/qso.php:248 @@ -3753,7 +3756,7 @@ msgstr "" #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:51 application/views/kml/index.php:84 #: application/views/logbookadvanced/index.php:318 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:482 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:515 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 #: application/views/view_log/qso.php:251 @@ -3767,7 +3770,7 @@ msgstr "" #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:52 application/views/kml/index.php:85 #: application/views/logbookadvanced/index.php:319 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:483 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:516 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 #: application/views/view_log/qso.php:254 @@ -3781,7 +3784,7 @@ msgstr "" #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:53 application/views/kml/index.php:86 #: application/views/logbookadvanced/index.php:320 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:484 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:517 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 #: application/views/view_log/qso.php:257 @@ -3795,7 +3798,7 @@ msgstr "" #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:54 application/views/kml/index.php:87 #: application/views/logbookadvanced/index.php:321 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:485 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:518 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 #: application/views/view_log/qso.php:260 @@ -3809,7 +3812,7 @@ msgstr "" #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:55 application/views/kml/index.php:88 #: application/views/logbookadvanced/index.php:322 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:486 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:519 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 #: application/views/view_log/qso.php:263 @@ -3823,7 +3826,7 @@ msgstr "" #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:56 application/views/kml/index.php:89 #: application/views/logbookadvanced/index.php:323 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:487 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:520 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 #: application/views/view_log/qso.php:266 @@ -3837,7 +3840,7 @@ msgstr "" #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:57 application/views/kml/index.php:90 #: application/views/logbookadvanced/index.php:324 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:488 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:521 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 #: application/views/view_log/qso.php:269 @@ -3851,7 +3854,7 @@ msgstr "" #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:58 application/views/kml/index.php:91 #: application/views/logbookadvanced/index.php:325 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:489 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:522 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 #: application/views/view_log/qso.php:272 @@ -3865,7 +3868,7 @@ msgstr "" #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:59 application/views/kml/index.php:92 #: application/views/logbookadvanced/index.php:326 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:490 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:523 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 #: application/views/view_log/qso.php:275 @@ -3879,7 +3882,7 @@ msgstr "" #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:60 application/views/kml/index.php:93 #: application/views/logbookadvanced/index.php:327 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:491 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:524 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 #: application/views/view_log/qso.php:278 @@ -3893,7 +3896,7 @@ msgstr "" #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:61 application/views/kml/index.php:94 #: application/views/logbookadvanced/index.php:328 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:492 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:525 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 #: application/views/view_log/qso.php:281 @@ -3907,7 +3910,7 @@ msgstr "" #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:62 application/views/kml/index.php:95 #: application/views/logbookadvanced/index.php:329 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:493 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:526 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 #: application/views/view_log/qso.php:284 @@ -3921,7 +3924,7 @@ msgstr "" #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:63 application/views/kml/index.php:96 #: application/views/logbookadvanced/index.php:330 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:494 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:527 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 #: application/views/view_log/qso.php:287 @@ -3935,7 +3938,7 @@ msgstr "" #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:64 application/views/kml/index.php:97 #: application/views/logbookadvanced/index.php:331 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:495 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:528 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 #: application/views/view_log/qso.php:290 @@ -4048,7 +4051,7 @@ msgstr "" #: application/views/awards/wapc/index.php:56 #: application/views/awards/was/index.php:68 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:165 application/views/user/edit.php:810 +#: application/views/gridmap/index.php:165 application/views/user/edit.php:821 msgid "QRZ.com" msgstr "" @@ -4151,7 +4154,7 @@ msgstr "" #: application/views/qslprint/index.php:24 #: application/views/qslprint/qslprint.php:22 #: application/views/qslprint/qsolist.php:6 -#: application/views/qso/edit_ajax.php:64 application/views/qso/index.php:157 +#: application/views/qso/edit_ajax.php:64 application/views/qso/index.php:190 #: application/views/reg1test/index.php:33 #: application/views/search/cqzones.php:35 #: application/views/search/cqzones_result.php:9 @@ -4259,8 +4262,8 @@ msgstr "" #: application/views/qslcard/index.php:41 #: application/views/qslcard/searchresult.php:4 #: application/views/qslprint/qslprint.php:23 -#: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:97 -#: application/views/qso/index.php:133 application/views/satellite/pass.php:50 +#: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:130 +#: application/views/qso/index.php:166 application/views/satellite/pass.php:50 #: application/views/satellite/skedtable.php:7 #: application/views/search/cqzones_result.php:7 #: application/views/search/ituzones_result.php:7 @@ -4300,7 +4303,7 @@ msgstr "" #: application/views/qslcard/index.php:42 #: application/views/qslcard/searchresult.php:6 #: application/views/qslprint/qslprint.php:24 -#: application/views/qslprint/qsolist.php:8 application/views/qso/index.php:138 +#: application/views/qslprint/qsolist.php:8 application/views/qso/index.php:171 #: application/views/search/cqzones_result.php:8 #: application/views/search/ituzones_result.php:8 #: application/views/search/search_result_ajax.php:91 @@ -4444,8 +4447,8 @@ msgstr "" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:592 -#: application/views/interface_assets/footer.php:2674 +#: application/views/interface_assets/footer.php:609 +#: application/views/interface_assets/footer.php:3181 msgid "DANGER" msgstr "" @@ -4814,7 +4817,7 @@ msgstr "" #: application/views/club/permissions.php:297 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:49 -#: application/views/interface_assets/footer.php:627 +#: application/views/interface_assets/footer.php:644 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:97 #: application/views/options/dxcluster.php:67 @@ -5137,7 +5140,7 @@ msgstr "" #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:308 -#: application/views/qso/index.php:451 +#: application/views/qso/index.php:484 #: application/views/search/cqzones_result.php:13 #: application/views/station_profile/create.php:110 #: application/views/station_profile/edit.php:157 @@ -5282,7 +5285,7 @@ msgstr "" #: application/views/awards/iota/index.php:62 #: application/views/awards/itu/index.php:57 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2653 +#: application/views/interface_assets/footer.php:3160 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -5308,7 +5311,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:739 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 -#: application/views/search/filter.php:43 application/views/user/edit.php:686 +#: application/views/search/filter.php:43 application/views/user/edit.php:697 msgid "Reset" msgstr "" @@ -5539,7 +5542,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:408 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 -#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:426 +#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:459 #: application/views/view_log/qso.php:356 msgid "Antarctica" msgstr "" @@ -5552,7 +5555,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:407 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 -#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:425 +#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:458 #: application/views/view_log/qso.php:353 msgid "Africa" msgstr "" @@ -5565,7 +5568,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:410 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 -#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:427 +#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:460 #: application/views/view_log/qso.php:359 msgid "Asia" msgstr "" @@ -5578,7 +5581,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:411 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 -#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:428 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:461 #: application/views/view_log/qso.php:362 msgid "Europe" msgstr "" @@ -5591,7 +5594,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:409 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 -#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:429 +#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:462 #: application/views/view_log/qso.php:365 msgid "North America" msgstr "" @@ -5604,7 +5607,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:412 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 -#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:431 +#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:464 #: application/views/view_log/qso.php:371 msgid "South America" msgstr "" @@ -5617,7 +5620,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:413 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 -#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:430 +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:463 #: application/views/view_log/qso.php:368 msgid "Oceania" msgstr "" @@ -5878,7 +5881,7 @@ msgstr "" #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:58 #: application/views/lotw/satupdate.php:7 -#: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:226 +#: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:259 #: application/views/satellite/satinfo.php:6 #: application/views/search/result.php:16 #: application/views/search/search_result_ajax.php:19 @@ -5906,7 +5909,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:827 #: application/views/logbookadvanced/useroptions.php:118 #: application/views/lookup/index.php:8 application/views/qso/edit_ajax.php:316 -#: application/views/qso/index.php:461 +#: application/views/qso/index.php:494 #: application/views/search/ituzones_result.php:13 #: application/views/station_profile/create.php:124 #: application/views/station_profile/edit.php:174 @@ -6029,10 +6032,10 @@ msgid "Fields taken for this Award: POTA_REF (must contain Park-Reference)" msgstr "" #: application/views/awards/pota/index.php:32 -#: application/views/qso/index.php:274 application/views/qso/index.php:568 +#: application/views/qso/index.php:307 application/views/qso/index.php:601 #: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:276 -#: application/views/user/edit.php:674 application/views/view_log/qso.php:409 +#: application/views/user/edit.php:685 application/views/view_log/qso.php:409 #: application/views/view_log/qso.php:735 msgid "POTA Reference(s)" msgstr "" @@ -6232,7 +6235,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:866 #: application/views/logbookadvanced/useroptions.php:170 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 -#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:422 +#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:455 #: application/views/view_log/qso.php:348 msgid "Continent" msgstr "" @@ -6463,10 +6466,10 @@ msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" msgstr "" #: application/views/awards/wwff/index.php:32 -#: application/views/qso/index.php:262 application/views/qso/index.php:555 +#: application/views/qso/index.php:295 application/views/qso/index.php:588 #: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:263 -#: application/views/user/edit.php:670 application/views/view_log/qso.php:402 +#: application/views/user/edit.php:681 application/views/view_log/qso.php:402 #: application/views/view_log/qso.php:728 msgid "WWFF Reference" msgstr "" @@ -6524,7 +6527,7 @@ msgstr "" #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 -#: application/views/qso/index.php:352 +#: application/views/qso/index.php:385 msgid "None" msgstr "" @@ -6542,7 +6545,6 @@ msgstr "" #: application/views/bandmap/list.php:70 #: application/views/contesting/index.php:160 -#: application/views/qso/index.php:353 msgid "WebSocket (Requires WLGate>1.1.10)" msgstr "" @@ -6560,14 +6562,17 @@ msgid "Worked, not Confirmed" msgstr "" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "" @@ -6854,7 +6859,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "" @@ -6986,7 +6991,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7009,12 +7014,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "" @@ -7049,7 +7054,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7072,12 +7077,12 @@ msgstr "" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "" @@ -7406,6 +7411,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7437,8 +7606,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "" @@ -7652,7 +7821,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "" @@ -7763,7 +7932,7 @@ msgid "Reset QSO" msgstr "" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "" @@ -7798,9 +7967,9 @@ msgstr "" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "" @@ -7937,7 +8106,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "" @@ -8053,7 +8222,7 @@ msgid "" msgstr "" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8089,7 +8258,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8174,7 +8343,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9297,10 +9466,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9389,7 +9558,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "" #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "" @@ -9398,7 +9567,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "" @@ -9451,171 +9620,240 @@ msgstr "" msgid "Duplication is disabled for Contacts notes" msgstr "" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -9623,62 +9861,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "" @@ -9866,7 +10099,7 @@ msgstr "" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" @@ -10272,7 +10505,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "" @@ -10392,7 +10625,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10413,7 +10646,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10432,7 +10665,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10447,49 +10680,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "" @@ -10651,7 +10884,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10688,7 +10921,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -10921,7 +11154,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "" @@ -11272,7 +11505,7 @@ msgid "Note Contents" msgstr "" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "" @@ -11704,7 +11937,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -11723,12 +11956,12 @@ msgstr "" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -11752,7 +11985,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12319,11 +12552,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -12333,25 +12566,25 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "" @@ -12364,38 +12597,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12404,8 +12637,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "" @@ -12426,7 +12659,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12470,7 +12703,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "" @@ -12507,155 +12740,167 @@ msgstr "" msgid "Invalid value for antenna elevation:" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "" -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "" @@ -13943,7 +14188,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14611,303 +14856,311 @@ msgstr "" msgid "Number of previous contacts displayed on QSO page." msgstr "" +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "" -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." msgstr "" -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." msgstr "" -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "" -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -14915,85 +15168,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "" diff --git a/application/locale/sl/LC_MESSAGES/messages.po b/application/locale/sl/LC_MESSAGES/messages.po index bed96687e..3e8a001b8 100644 --- a/application/locale/sl/LC_MESSAGES/messages.po +++ b/application/locale/sl/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -77,11 +77,11 @@ msgstr "" #: application/controllers/Qsl.php:13 application/controllers/Qsl.php:49 #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 -#: application/controllers/Qso.php:22 application/controllers/Qso.php:187 -#: application/controllers/Qso.php:318 application/controllers/Qso.php:339 -#: application/controllers/Qso.php:362 application/controllers/Qso.php:662 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:291 -#: application/controllers/Radio.php:317 application/controllers/Radio.php:333 +#: application/controllers/Qso.php:22 application/controllers/Qso.php:195 +#: application/controllers/Qso.php:326 application/controllers/Qso.php:347 +#: application/controllers/Qso.php:370 application/controllers/Qso.php:670 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 +#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -113,11 +113,11 @@ msgstr "" #: application/controllers/Update.php:355 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 -#: application/controllers/User.php:376 application/controllers/User.php:377 -#: application/controllers/User.php:1010 application/controllers/User.php:1029 -#: application/controllers/User.php:1261 application/controllers/User.php:1403 -#: application/controllers/User.php:1621 application/controllers/User.php:1637 -#: application/controllers/User.php:1663 +#: application/controllers/User.php:379 application/controllers/User.php:380 +#: application/controllers/User.php:1023 application/controllers/User.php:1042 +#: application/controllers/User.php:1274 application/controllers/User.php:1416 +#: application/controllers/User.php:1634 application/controllers/User.php:1650 +#: application/controllers/User.php:1676 #: application/controllers/User_options.php:9 #: application/controllers/Usermode.php:15 #: application/controllers/Webadif.php:91 application/models/Club_model.php:52 @@ -330,8 +330,8 @@ msgstr "" #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 -#: application/views/qso/edit_ajax.php:401 application/views/qso/index.php:302 -#: application/views/qso/index.php:594 application/views/user/edit.php:682 +#: application/views/qso/edit_ajax.php:401 application/views/qso/index.php:335 +#: application/views/qso/index.php:627 application/views/user/edit.php:693 #: application/views/view_log/qso.php:466 msgid "DOK" msgstr "" @@ -350,7 +350,7 @@ msgstr "" #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 -#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:402 +#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:435 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 #: application/views/search/result.php:27 @@ -552,8 +552,8 @@ msgstr "" #: application/controllers/Awards.php:1224 #: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/useroptions.php:142 -#: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:286 -#: application/views/qso/index.php:580 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:319 +#: application/views/qso/index.php:613 application/views/user/edit.php:689 #: application/views/view_log/qso.php:431 #: application/views/view_log/qso.php:742 msgid "SIG" @@ -613,11 +613,11 @@ msgstr "" msgid "Bands" msgstr "" -#: application/controllers/Band.php:57 application/controllers/Mode.php:41 +#: application/controllers/Band.php:74 application/controllers/Mode.php:41 msgid "Create Mode" msgstr "" -#: application/controllers/Band.php:82 application/views/bands/index.php:158 +#: application/controllers/Band.php:99 application/views/bands/index.php:158 msgid "Edit Band" msgstr "" @@ -751,8 +751,8 @@ msgstr "" #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/edit.php:357 #: application/views/timeline/index.php:68 -#: application/views/update/index.php:16 application/views/user/edit.php:595 -#: application/views/user/edit.php:818 +#: application/views/update/index.php:16 application/views/user/edit.php:606 +#: application/views/user/edit.php:829 #: application/views/view_log/partial/log_ajax.php:222 #: application/views/view_log/qso.php:571 #: application/views/view_log/qso.php:576 @@ -885,7 +885,7 @@ msgstr "" #: application/views/logbookadvanced/useroptions.php:90 #: application/views/qso/edit_ajax.php:434 #: application/views/search/search_result_ajax.php:127 -#: application/views/user/edit.php:596 application/views/user/edit.php:826 +#: application/views/user/edit.php:607 application/views/user/edit.php:837 #: application/views/view_log/partial/log_ajax.php:225 #: application/views/view_log/qso.php:581 #: application/views/view_log/qso.php:586 @@ -1258,9 +1258,9 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:18 -#: application/views/qso/edit_ajax.php:39 application/views/qso/index.php:75 -#: application/views/timeline/index.php:56 application/views/user/edit.php:591 -#: application/views/user/edit.php:784 +#: application/views/qso/edit_ajax.php:39 application/views/qso/index.php:108 +#: application/views/timeline/index.php:56 application/views/user/edit.php:602 +#: application/views/user/edit.php:795 msgid "QSL" msgstr "" @@ -1296,8 +1296,8 @@ msgstr "" #: application/views/satellite/satinfo.php:13 #: application/views/search/search_result_ajax.php:301 #: application/views/search/search_result_ajax.php:316 -#: application/views/timeline/index.php:60 application/views/user/edit.php:592 -#: application/views/user/edit.php:794 application/views/view_log/qso.php:537 +#: application/views/timeline/index.php:60 application/views/user/edit.php:603 +#: application/views/user/edit.php:805 application/views/view_log/qso.php:537 #: application/views/view_log/qso.php:542 msgid "LoTW" msgstr "" @@ -1332,8 +1332,8 @@ msgstr "" #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:276 #: application/views/station_profile/edit.php:309 -#: application/views/timeline/index.php:64 application/views/user/edit.php:593 -#: application/views/user/edit.php:802 application/views/user/edit.php:876 +#: application/views/timeline/index.php:64 application/views/user/edit.php:604 +#: application/views/user/edit.php:813 application/views/user/edit.php:887 msgid "eQSL" msgstr "" @@ -1379,7 +1379,9 @@ msgstr "" #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 #: application/views/gridmap/index.php:104 -#: application/views/hamsat/index.php:33 application/views/kml/index.php:31 +#: application/views/hamsat/index.php:33 +#: application/views/interface_assets/footer.php:82 +#: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:12 #: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/index.php:764 @@ -1401,7 +1403,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:25 #: application/views/qslprint/qsolist.php:9 #: application/views/qso/components/previous_contacts.php:77 -#: application/views/qso/edit_ajax.php:121 application/views/qso/index.php:170 +#: application/views/qso/edit_ajax.php:121 application/views/qso/index.php:203 #: application/views/satellite/satinfo.php:7 #: application/views/search/cqzones_result.php:10 #: application/views/search/ituzones_result.php:10 @@ -1442,7 +1444,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:12 #: application/views/qso/components/previous_contacts.php:78 -#: application/views/qso/edit_ajax.php:143 application/views/qso/index.php:215 +#: application/views/qso/edit_ajax.php:143 application/views/qso/index.php:248 #: application/views/search/search_result_ajax.php:5 #: application/views/simplefle/index.php:159 #: application/views/user/edit.php:244 application/views/user/edit.php:267 @@ -1471,7 +1473,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:29 #: application/views/qslprint/qsolist.php:13 #: application/views/qso/components/previous_contacts.php:79 -#: application/views/qso/edit_ajax.php:148 application/views/qso/index.php:220 +#: application/views/qso/edit_ajax.php:148 application/views/qso/index.php:253 #: application/views/search/search_result_ajax.php:6 #: application/views/simplefle/index.php:160 #: application/views/user/edit.php:245 application/views/user/edit.php:268 @@ -1586,7 +1588,7 @@ msgstr "" #: application/views/qslcard/searchresult.php:83 #: application/views/qso/award_tabs.php:45 #: application/views/qso/components/previous_contacts.php:86 -#: application/views/qso/edit_ajax.php:157 application/views/qso/index.php:317 +#: application/views/qso/edit_ajax.php:157 application/views/qso/index.php:350 #: application/views/satellite/pass.php:46 #: application/views/satellite/pass.php:85 #: application/views/search/cqzones_result.php:12 @@ -1696,7 +1698,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:10 #: application/views/qso/components/previous_contacts.php:88 -#: application/views/qso/edit_ajax.php:85 application/views/qso/index.php:185 +#: application/views/qso/edit_ajax.php:85 application/views/qso/index.php:218 #: application/views/search/cqzones_result.php:11 #: application/views/search/ituzones_result.php:11 #: application/views/search/lotw_unconfirmed_result.php:9 @@ -1734,7 +1736,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:11 #: application/views/qso/components/previous_contacts.php:89 -#: application/views/qso/edit_ajax.php:73 application/views/qso/index.php:203 +#: application/views/qso/edit_ajax.php:73 application/views/qso/index.php:236 #: application/views/search/search_result_ajax.php:16 #: application/views/user/edit.php:242 application/views/user/edit.php:265 #: application/views/user/edit.php:288 application/views/user/edit.php:311 @@ -1776,13 +1778,13 @@ msgstr "" #: application/views/awards/wae/index.php:175 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:772 +#: application/views/interface_assets/footer.php:789 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:252 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 -#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:411 +#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:444 #: application/views/station_profile/create.php:77 #: application/views/station_profile/edit.php:109 #: application/views/stationsetup/linkedlocations.php:17 @@ -1812,7 +1814,7 @@ msgstr "" #: application/views/interface_assets/header.php:494 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 -#: application/views/user/edit.php:848 application/views/visitor/index.php:328 +#: application/views/user/edit.php:859 application/views/visitor/index.php:328 msgid "Logbook of the World" msgstr "" @@ -1915,7 +1917,7 @@ msgid "Note" msgstr "" #: application/controllers/Notes.php:128 application/views/notes/edit.php:20 -#: application/views/notes/view.php:47 application/views/qso/index.php:732 +#: application/views/notes/view.php:47 application/views/qso/index.php:765 msgid "Edit Note" msgstr "" @@ -2215,19 +2217,19 @@ msgstr "" msgid "Print Requested QSLs" msgstr "" -#: application/controllers/Qso.php:112 +#: application/controllers/Qso.php:120 msgid "Add QSO" msgstr "" -#: application/controllers/Qso.php:723 +#: application/controllers/Qso.php:731 msgid "You have to be logged in to access this URL." msgstr "" -#: application/controllers/Qso.php:729 +#: application/controllers/Qso.php:737 msgid "Call Transfer" msgstr "" -#: application/controllers/Qso.php:736 +#: application/controllers/Qso.php:744 msgid "No callsign provided." msgstr "" @@ -2239,7 +2241,7 @@ msgstr "" #: application/controllers/Radio.php:41 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:67 #: application/views/contesting/index.php:157 -#: application/views/qso/index.php:350 +#: application/views/qso/index.php:383 msgid "Radio" msgstr "" @@ -2257,7 +2259,7 @@ msgid "Options" msgstr "" #: application/controllers/Radio.php:50 application/views/debug/index.php:312 -#: application/views/qso/index.php:772 +#: application/views/qso/index.php:808 msgid "Settings" msgstr "" @@ -2267,7 +2269,7 @@ msgstr "" #: application/controllers/Radio.php:98 #: application/views/contesting/index.php:162 -#: application/views/qso/index.php:355 +#: application/views/qso/index.php:388 msgid "last updated" msgstr "" @@ -2284,8 +2286,8 @@ msgstr "" #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:248 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:632 -#: application/views/interface_assets/footer.php:641 +#: application/views/interface_assets/footer.php:649 +#: application/views/interface_assets/footer.php:658 #: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:718 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 @@ -2304,11 +2306,11 @@ msgstr "" #: application/views/club/permissions.php:304 #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:63 -#: application/views/interface_assets/footer.php:2912 -#: application/views/interface_assets/footer.php:2930 -#: application/views/interface_assets/footer.php:2951 -#: application/views/interface_assets/footer.php:2969 +#: application/views/interface_assets/footer.php:62 +#: application/views/interface_assets/footer.php:3419 +#: application/views/interface_assets/footer.php:3437 +#: application/views/interface_assets/footer.php:3458 +#: application/views/interface_assets/footer.php:3476 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:734 #: application/views/lotw_views/index.php:128 @@ -2480,7 +2482,7 @@ msgstr "" #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 #: application/views/logbookadvanced/edit.php:18 -#: application/views/qslprint/index.php:20 application/views/qso/index.php:338 +#: application/views/qslprint/index.php:20 application/views/qso/index.php:371 #: application/views/search/search_result_ajax.php:18 #: application/views/station_profile/create.php:311 #: application/views/station_profile/edit.php:466 @@ -2496,7 +2498,7 @@ msgid "Duplicate Station Location:" msgstr "" #: application/controllers/Station.php:221 -#: application/controllers/User.php:1284 application/controllers/User.php:1534 +#: application/controllers/User.php:1297 application/controllers/User.php:1547 #, php-format msgid "Please check value for grid locator (%s)" msgstr "" @@ -2521,7 +2523,7 @@ msgstr "" #: application/controllers/Stationsetup.php:156 #: application/controllers/Stationsetup.php:177 #: application/controllers/Stationsetup.php:478 -#: application/views/qso/index.php:707 application/views/simplefle/index.php:39 +#: application/views/qso/index.php:740 application/views/simplefle/index.php:39 #: application/views/widgets/on_air.php:102 msgid "Error" msgstr "" @@ -2559,8 +2561,9 @@ msgstr "" #: application/views/station_profile/edit.php:344 #: application/views/station_profile/edit.php:401 #: application/views/stationsetup/stationsetup.php:79 -#: application/views/user/edit.php:480 application/views/user/edit.php:489 -#: application/views/user/edit.php:635 application/views/user/edit.php:645 +#: application/views/user/edit.php:440 application/views/user/edit.php:491 +#: application/views/user/edit.php:500 application/views/user/edit.php:646 +#: application/views/user/edit.php:656 msgid "Disabled" msgstr "" @@ -2610,7 +2613,7 @@ msgstr "" #: application/controllers/Stationsetup.php:396 #: application/views/interface_assets/header.php:119 -#: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:53 +#: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:86 #: application/views/simplefle/index.php:28 #: application/views/stationsetup/stationsetup.php:168 #: application/views/user/index.php:82 application/views/user/index.php:86 @@ -2857,98 +2860,98 @@ msgstr "" msgid "Add User" msgstr "" -#: application/controllers/User.php:314 +#: application/controllers/User.php:316 #, php-format msgid "Username %s already in use!" msgstr "" -#: application/controllers/User.php:317 +#: application/controllers/User.php:319 #, php-format msgid "E-mail %s already in use!" msgstr "" -#: application/controllers/User.php:320 +#: application/controllers/User.php:322 msgid "Invalid Password!" msgstr "" -#: application/controllers/User.php:324 +#: application/controllers/User.php:326 #, php-format msgid "User %s added!" msgstr "" -#: application/controllers/User.php:328 +#: application/controllers/User.php:330 msgid "Users" msgstr "" -#: application/controllers/User.php:425 +#: application/controllers/User.php:428 #: application/views/club/permissions.php:253 msgid "Edit User" msgstr "" -#: application/controllers/User.php:945 application/controllers/User.php:948 +#: application/controllers/User.php:958 application/controllers/User.php:961 #, php-format msgid "User %s edited" msgstr "" -#: application/controllers/User.php:1013 +#: application/controllers/User.php:1026 msgid "Profile" msgstr "" -#: application/controllers/User.php:1078 +#: application/controllers/User.php:1091 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "" -#: application/controllers/User.php:1117 +#: application/controllers/User.php:1130 msgid "This is not allowed!" msgstr "" -#: application/controllers/User.php:1154 application/controllers/User.php:1167 +#: application/controllers/User.php:1167 application/controllers/User.php:1180 msgid "Login failed. Try again." msgstr "" -#: application/controllers/User.php:1175 +#: application/controllers/User.php:1188 #: application/views/interface_assets/header.php:394 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "" -#: application/controllers/User.php:1213 +#: application/controllers/User.php:1226 msgid "" "You can't login to a clubstation directly. Use your personal account instead." msgstr "" -#: application/controllers/User.php:1216 +#: application/controllers/User.php:1229 msgid "" "Your account is locked, due to too many failed login-attempts. Please reset " "your password." msgstr "" -#: application/controllers/User.php:1220 +#: application/controllers/User.php:1233 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " "Only administrators are currently allowed to log in." msgstr "" -#: application/controllers/User.php:1223 +#: application/controllers/User.php:1236 msgid "Incorrect username or password!" msgstr "" -#: application/controllers/User.php:1248 +#: application/controllers/User.php:1261 #, php-format msgid "User %s logged out." msgstr "" -#: application/controllers/User.php:1264 +#: application/controllers/User.php:1277 #: application/views/oqrs/request_grouped.php:16 #: application/views/user/modals/first_login_wizard.php:26 msgid "Station Name" msgstr "" -#: application/controllers/User.php:1265 application/views/debug/index.php:599 +#: application/controllers/User.php:1278 application/views/debug/index.php:599 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:61 #: application/views/station_profile/edit.php:77 @@ -2958,128 +2961,128 @@ msgstr "" msgid "Station Callsign" msgstr "" -#: application/controllers/User.php:1266 +#: application/controllers/User.php:1279 #: application/views/station_profile/create.php:72 #: application/views/station_profile/edit.php:100 #: application/views/user/modals/first_login_wizard.php:42 msgid "Station DXCC" msgstr "" -#: application/controllers/User.php:1267 +#: application/controllers/User.php:1280 msgid "Station CQ Zone" msgstr "" -#: application/controllers/User.php:1268 +#: application/controllers/User.php:1281 msgid "Station ITU Zone" msgstr "" -#: application/controllers/User.php:1269 +#: application/controllers/User.php:1282 #: application/views/user/modals/first_login_wizard.php:91 msgid "Station Locator" msgstr "" -#: application/controllers/User.php:1292 +#: application/controllers/User.php:1305 #, php-format msgid "" "Station created successfully! Welcome to Wavelog! To complete your station " "setup, click %shere%s." msgstr "" -#: application/controllers/User.php:1295 +#: application/controllers/User.php:1308 msgid "Station setup failed! Please set up your station manually." msgstr "" -#: application/controllers/User.php:1312 +#: application/controllers/User.php:1325 msgid "Password Reset is disabled on the Demo!" msgstr "" -#: application/controllers/User.php:1326 +#: application/controllers/User.php:1339 msgid "Forgot Password" msgstr "" -#: application/controllers/User.php:1377 +#: application/controllers/User.php:1390 #: application/views/user/modals/more_actions_modal.php:88 msgid "Email settings are incorrect." msgstr "" -#: application/controllers/User.php:1381 application/controllers/User.php:1386 +#: application/controllers/User.php:1394 application/controllers/User.php:1399 msgid "Password Reset Processed." msgstr "" -#: application/controllers/User.php:1487 +#: application/controllers/User.php:1500 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "" -#: application/controllers/User.php:1508 +#: application/controllers/User.php:1521 #, php-format msgid "" "Couldn't set account to this username. Please try another one than \"%s\"." msgstr "" -#: application/controllers/User.php:1517 +#: application/controllers/User.php:1530 #, php-format msgid "" "Couldn't set account to this email. Please try another address than \"%s\"." msgstr "" -#: application/controllers/User.php:1556 +#: application/controllers/User.php:1569 #, php-format msgid "" "You currently can't impersonate another user. You need to set %s to %s in " "your config.php!" msgstr "" -#: application/controllers/User.php:1570 +#: application/controllers/User.php:1583 #: application/views/user/modals/admin_impersonate_modal.php:36 msgid "" "You currently can't impersonate another user. Please change the " "encryption_key in your config.php file first!" msgstr "" -#: application/controllers/User.php:1577 +#: application/controllers/User.php:1590 msgid "Invalid Hash" msgstr "" -#: application/controllers/User.php:1590 +#: application/controllers/User.php:1603 msgid "The impersonation hash is too old. Please try again." msgstr "" -#: application/controllers/User.php:1597 +#: application/controllers/User.php:1610 msgid "" "You can't impersonate another user while you're not logged in as the source " "user" msgstr "" -#: application/controllers/User.php:1603 +#: application/controllers/User.php:1616 msgid "There was a problem with your session. Please try again." msgstr "" -#: application/controllers/User.php:1610 +#: application/controllers/User.php:1623 msgid "The requested user to impersonate does not exist" msgstr "" -#: application/controllers/User.php:1631 +#: application/controllers/User.php:1644 msgid "" "Could not determine the correct permission level for the clubstation. Try " "again after re-login." msgstr "" -#: application/controllers/User.php:1676 application/controllers/User.php:1688 -#: application/controllers/User.php:1694 application/controllers/User.php:1703 -#: application/controllers/User.php:1711 +#: application/controllers/User.php:1689 application/controllers/User.php:1701 +#: application/controllers/User.php:1707 application/controllers/User.php:1716 +#: application/controllers/User.php:1724 msgid "Ups.. Something went wrong. Try to log back in." msgstr "" -#: application/controllers/User.php:1717 +#: application/controllers/User.php:1730 msgid "" "The ability to return quickly has been disabled after the security hash " "expired. Please log in again." msgstr "" -#: application/controllers/User.php:1733 +#: application/controllers/User.php:1746 #, php-format msgid "" "You have been logged out of the account %s. Welcome back, %s, to your " @@ -3389,7 +3392,7 @@ msgstr "" msgid "Contacts" msgstr "" -#: application/models/Note.php:8 application/views/qso/index.php:61 +#: application/models/Note.php:8 application/views/qso/index.php:94 #: application/views/statistics/index.php:46 #: application/views/user/edit.php:168 msgid "General" @@ -3578,8 +3581,8 @@ msgstr "" #: application/views/gridmap/index.php:107 #: application/views/gridmap/index.php:121 #: application/views/interface_assets/footer.php:46 -#: application/views/interface_assets/footer.php:1802 -#: application/views/interface_assets/footer.php:1941 +#: application/views/interface_assets/footer.php:2309 +#: application/views/interface_assets/footer.php:2448 #: 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 @@ -3624,7 +3627,7 @@ msgstr "" #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 -#: application/views/user/edit.php:768 +#: application/views/user/edit.php:779 #: application/views/visitor/layout/footer.php:172 msgid "All" msgstr "" @@ -3700,7 +3703,7 @@ msgstr "" #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:47 application/views/kml/index.php:80 #: application/views/logbookadvanced/index.php:314 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:478 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:511 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 #: application/views/view_log/qso.php:239 @@ -3714,7 +3717,7 @@ msgstr "" #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:48 application/views/kml/index.php:81 #: application/views/logbookadvanced/index.php:315 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:479 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:512 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 #: application/views/view_log/qso.php:242 @@ -3728,7 +3731,7 @@ msgstr "" #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:49 application/views/kml/index.php:82 #: application/views/logbookadvanced/index.php:316 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:480 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:513 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 #: application/views/view_log/qso.php:245 @@ -3742,7 +3745,7 @@ msgstr "" #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:50 application/views/kml/index.php:83 #: application/views/logbookadvanced/index.php:317 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:481 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:514 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 #: application/views/view_log/qso.php:248 @@ -3756,7 +3759,7 @@ msgstr "" #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:51 application/views/kml/index.php:84 #: application/views/logbookadvanced/index.php:318 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:482 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:515 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 #: application/views/view_log/qso.php:251 @@ -3770,7 +3773,7 @@ msgstr "" #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:52 application/views/kml/index.php:85 #: application/views/logbookadvanced/index.php:319 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:483 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:516 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 #: application/views/view_log/qso.php:254 @@ -3784,7 +3787,7 @@ msgstr "" #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:53 application/views/kml/index.php:86 #: application/views/logbookadvanced/index.php:320 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:484 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:517 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 #: application/views/view_log/qso.php:257 @@ -3798,7 +3801,7 @@ msgstr "" #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:54 application/views/kml/index.php:87 #: application/views/logbookadvanced/index.php:321 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:485 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:518 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 #: application/views/view_log/qso.php:260 @@ -3812,7 +3815,7 @@ msgstr "" #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:55 application/views/kml/index.php:88 #: application/views/logbookadvanced/index.php:322 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:486 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:519 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 #: application/views/view_log/qso.php:263 @@ -3826,7 +3829,7 @@ msgstr "" #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:56 application/views/kml/index.php:89 #: application/views/logbookadvanced/index.php:323 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:487 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:520 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 #: application/views/view_log/qso.php:266 @@ -3840,7 +3843,7 @@ msgstr "" #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:57 application/views/kml/index.php:90 #: application/views/logbookadvanced/index.php:324 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:488 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:521 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 #: application/views/view_log/qso.php:269 @@ -3854,7 +3857,7 @@ msgstr "" #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:58 application/views/kml/index.php:91 #: application/views/logbookadvanced/index.php:325 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:489 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:522 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 #: application/views/view_log/qso.php:272 @@ -3868,7 +3871,7 @@ msgstr "" #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:59 application/views/kml/index.php:92 #: application/views/logbookadvanced/index.php:326 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:490 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:523 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 #: application/views/view_log/qso.php:275 @@ -3882,7 +3885,7 @@ msgstr "" #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:60 application/views/kml/index.php:93 #: application/views/logbookadvanced/index.php:327 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:491 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:524 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 #: application/views/view_log/qso.php:278 @@ -3896,7 +3899,7 @@ msgstr "" #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:61 application/views/kml/index.php:94 #: application/views/logbookadvanced/index.php:328 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:492 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:525 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 #: application/views/view_log/qso.php:281 @@ -3910,7 +3913,7 @@ msgstr "" #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:62 application/views/kml/index.php:95 #: application/views/logbookadvanced/index.php:329 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:493 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:526 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 #: application/views/view_log/qso.php:284 @@ -3924,7 +3927,7 @@ msgstr "" #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:63 application/views/kml/index.php:96 #: application/views/logbookadvanced/index.php:330 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:494 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:527 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 #: application/views/view_log/qso.php:287 @@ -3938,7 +3941,7 @@ msgstr "" #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:64 application/views/kml/index.php:97 #: application/views/logbookadvanced/index.php:331 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:495 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:528 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 #: application/views/view_log/qso.php:290 @@ -4051,7 +4054,7 @@ msgstr "" #: application/views/awards/wapc/index.php:56 #: application/views/awards/was/index.php:68 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:165 application/views/user/edit.php:810 +#: application/views/gridmap/index.php:165 application/views/user/edit.php:821 msgid "QRZ.com" msgstr "" @@ -4154,7 +4157,7 @@ msgstr "" #: application/views/qslprint/index.php:24 #: application/views/qslprint/qslprint.php:22 #: application/views/qslprint/qsolist.php:6 -#: application/views/qso/edit_ajax.php:64 application/views/qso/index.php:157 +#: application/views/qso/edit_ajax.php:64 application/views/qso/index.php:190 #: application/views/reg1test/index.php:33 #: application/views/search/cqzones.php:35 #: application/views/search/cqzones_result.php:9 @@ -4262,8 +4265,8 @@ msgstr "" #: application/views/qslcard/index.php:41 #: application/views/qslcard/searchresult.php:4 #: application/views/qslprint/qslprint.php:23 -#: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:97 -#: application/views/qso/index.php:133 application/views/satellite/pass.php:50 +#: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:130 +#: application/views/qso/index.php:166 application/views/satellite/pass.php:50 #: application/views/satellite/skedtable.php:7 #: application/views/search/cqzones_result.php:7 #: application/views/search/ituzones_result.php:7 @@ -4303,7 +4306,7 @@ msgstr "" #: application/views/qslcard/index.php:42 #: application/views/qslcard/searchresult.php:6 #: application/views/qslprint/qslprint.php:24 -#: application/views/qslprint/qsolist.php:8 application/views/qso/index.php:138 +#: application/views/qslprint/qsolist.php:8 application/views/qso/index.php:171 #: application/views/search/cqzones_result.php:8 #: application/views/search/ituzones_result.php:8 #: application/views/search/search_result_ajax.php:91 @@ -4447,8 +4450,8 @@ msgstr "" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:592 -#: application/views/interface_assets/footer.php:2674 +#: application/views/interface_assets/footer.php:609 +#: application/views/interface_assets/footer.php:3181 msgid "DANGER" msgstr "" @@ -4817,7 +4820,7 @@ msgstr "" #: application/views/club/permissions.php:297 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:49 -#: application/views/interface_assets/footer.php:627 +#: application/views/interface_assets/footer.php:644 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:97 #: application/views/options/dxcluster.php:67 @@ -5140,7 +5143,7 @@ msgstr "" #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:308 -#: application/views/qso/index.php:451 +#: application/views/qso/index.php:484 #: application/views/search/cqzones_result.php:13 #: application/views/station_profile/create.php:110 #: application/views/station_profile/edit.php:157 @@ -5285,7 +5288,7 @@ msgstr "" #: application/views/awards/iota/index.php:62 #: application/views/awards/itu/index.php:57 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2653 +#: application/views/interface_assets/footer.php:3160 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -5311,7 +5314,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:739 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 -#: application/views/search/filter.php:43 application/views/user/edit.php:686 +#: application/views/search/filter.php:43 application/views/user/edit.php:697 msgid "Reset" msgstr "" @@ -5542,7 +5545,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:408 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 -#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:426 +#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:459 #: application/views/view_log/qso.php:356 msgid "Antarctica" msgstr "" @@ -5555,7 +5558,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:407 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 -#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:425 +#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:458 #: application/views/view_log/qso.php:353 msgid "Africa" msgstr "" @@ -5568,7 +5571,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:410 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 -#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:427 +#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:460 #: application/views/view_log/qso.php:359 msgid "Asia" msgstr "" @@ -5581,7 +5584,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:411 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 -#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:428 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:461 #: application/views/view_log/qso.php:362 msgid "Europe" msgstr "" @@ -5594,7 +5597,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:409 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 -#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:429 +#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:462 #: application/views/view_log/qso.php:365 msgid "North America" msgstr "" @@ -5607,7 +5610,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:412 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 -#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:431 +#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:464 #: application/views/view_log/qso.php:371 msgid "South America" msgstr "" @@ -5620,7 +5623,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:413 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 -#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:430 +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:463 #: application/views/view_log/qso.php:368 msgid "Oceania" msgstr "" @@ -5881,7 +5884,7 @@ msgstr "" #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:58 #: application/views/lotw/satupdate.php:7 -#: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:226 +#: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:259 #: application/views/satellite/satinfo.php:6 #: application/views/search/result.php:16 #: application/views/search/search_result_ajax.php:19 @@ -5909,7 +5912,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:827 #: application/views/logbookadvanced/useroptions.php:118 #: application/views/lookup/index.php:8 application/views/qso/edit_ajax.php:316 -#: application/views/qso/index.php:461 +#: application/views/qso/index.php:494 #: application/views/search/ituzones_result.php:13 #: application/views/station_profile/create.php:124 #: application/views/station_profile/edit.php:174 @@ -6032,10 +6035,10 @@ msgid "Fields taken for this Award: POTA_REF (must contain Park-Reference)" msgstr "" #: application/views/awards/pota/index.php:32 -#: application/views/qso/index.php:274 application/views/qso/index.php:568 +#: application/views/qso/index.php:307 application/views/qso/index.php:601 #: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:276 -#: application/views/user/edit.php:674 application/views/view_log/qso.php:409 +#: application/views/user/edit.php:685 application/views/view_log/qso.php:409 #: application/views/view_log/qso.php:735 msgid "POTA Reference(s)" msgstr "" @@ -6235,7 +6238,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:866 #: application/views/logbookadvanced/useroptions.php:170 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 -#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:422 +#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:455 #: application/views/view_log/qso.php:348 msgid "Continent" msgstr "" @@ -6466,10 +6469,10 @@ msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" msgstr "" #: application/views/awards/wwff/index.php:32 -#: application/views/qso/index.php:262 application/views/qso/index.php:555 +#: application/views/qso/index.php:295 application/views/qso/index.php:588 #: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:263 -#: application/views/user/edit.php:670 application/views/view_log/qso.php:402 +#: application/views/user/edit.php:681 application/views/view_log/qso.php:402 #: application/views/view_log/qso.php:728 msgid "WWFF Reference" msgstr "" @@ -6527,7 +6530,7 @@ msgstr "" #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 -#: application/views/qso/index.php:352 +#: application/views/qso/index.php:385 msgid "None" msgstr "" @@ -6545,7 +6548,6 @@ msgstr "" #: application/views/bandmap/list.php:70 #: application/views/contesting/index.php:160 -#: application/views/qso/index.php:353 msgid "WebSocket (Requires WLGate>1.1.10)" msgstr "" @@ -6563,14 +6565,17 @@ msgid "Worked, not Confirmed" msgstr "" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "" @@ -6857,7 +6862,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "" @@ -6989,7 +6994,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7012,12 +7017,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "" @@ -7052,7 +7057,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7075,12 +7080,12 @@ msgstr "" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "" @@ -7409,6 +7414,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7440,8 +7609,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "" @@ -7655,7 +7824,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "" @@ -7766,7 +7935,7 @@ msgid "Reset QSO" msgstr "" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "" @@ -7801,9 +7970,9 @@ msgstr "" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "" @@ -7940,7 +8109,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "" @@ -8056,7 +8225,7 @@ msgid "" msgstr "" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8094,7 +8263,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8179,7 +8348,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9302,10 +9471,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9394,7 +9563,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "" #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "" @@ -9403,7 +9572,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "" @@ -9456,171 +9625,240 @@ msgstr "" msgid "Duplication is disabled for Contacts notes" msgstr "" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -9628,62 +9866,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "" @@ -9871,7 +10104,7 @@ msgstr "" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" @@ -10277,7 +10510,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "" @@ -10397,7 +10630,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10418,7 +10651,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10437,7 +10670,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10452,49 +10685,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "" @@ -10656,7 +10889,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10693,7 +10926,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -10926,7 +11159,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "" @@ -11277,7 +11510,7 @@ msgid "Note Contents" msgstr "" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "" @@ -11709,7 +11942,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -11728,12 +11961,12 @@ msgstr "" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -11757,7 +11990,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12324,11 +12557,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -12338,25 +12571,25 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "" @@ -12369,38 +12602,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12409,8 +12642,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "" @@ -12431,7 +12664,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12475,7 +12708,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "" @@ -12512,155 +12745,167 @@ msgstr "" msgid "Invalid value for antenna elevation:" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "" -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "" @@ -13948,7 +14193,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14616,303 +14861,311 @@ msgstr "" msgid "Number of previous contacts displayed on QSO page." msgstr "" +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "" -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." msgstr "" -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." msgstr "" -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "" -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -14920,85 +15173,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "" diff --git a/application/locale/sq/LC_MESSAGES/messages.po b/application/locale/sq/LC_MESSAGES/messages.po index 548eff697..0acf75b4e 100644 --- a/application/locale/sq/LC_MESSAGES/messages.po +++ b/application/locale/sq/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: 2024-08-17 10:49+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Albanian 1.1.10)" msgstr "" @@ -6562,14 +6564,17 @@ msgid "Worked, not Confirmed" msgstr "" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "" @@ -6856,7 +6861,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "" @@ -6988,7 +6993,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7011,12 +7016,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "" @@ -7051,7 +7056,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7074,12 +7079,12 @@ msgstr "" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "" @@ -7408,6 +7413,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7439,8 +7608,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "" @@ -7654,7 +7823,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "" @@ -7765,7 +7934,7 @@ msgid "Reset QSO" msgstr "" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "" @@ -7800,9 +7969,9 @@ msgstr "" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "" @@ -7939,7 +8108,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "" @@ -8055,7 +8224,7 @@ msgid "" msgstr "" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8091,7 +8260,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8176,7 +8345,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9299,10 +9468,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9391,7 +9560,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "" #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "" @@ -9400,7 +9569,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "" @@ -9453,171 +9622,240 @@ msgstr "" msgid "Duplication is disabled for Contacts notes" msgstr "" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -9625,62 +9863,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "" @@ -9868,7 +10101,7 @@ msgstr "" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" @@ -10274,7 +10507,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "" @@ -10394,7 +10627,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10415,7 +10648,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10434,7 +10667,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10449,49 +10682,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "" @@ -10653,7 +10886,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10690,7 +10923,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -10923,7 +11156,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "" @@ -11274,7 +11507,7 @@ msgid "Note Contents" msgstr "" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "" @@ -11706,7 +11939,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -11725,12 +11958,12 @@ msgstr "" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -11754,7 +11987,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12321,11 +12554,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -12335,25 +12568,25 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "" @@ -12366,38 +12599,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12406,8 +12639,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "" @@ -12428,7 +12661,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12472,7 +12705,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "" @@ -12509,155 +12742,167 @@ msgstr "" msgid "Invalid value for antenna elevation:" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "" -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "" @@ -13945,7 +14190,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14613,303 +14858,311 @@ msgstr "" msgid "Number of previous contacts displayed on QSO page." msgstr "" +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "" -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." msgstr "" -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." msgstr "" -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "" -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -14917,85 +15170,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "" diff --git a/application/locale/sr/LC_MESSAGES/messages.mo b/application/locale/sr/LC_MESSAGES/messages.mo index 01bb6edc9a192b64e1d28e2cc630b406c527aefc..9228283c93e20147988e47f7c98ddcc3acb44181 100644 GIT binary patch delta 43984 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 delta 44071 zcmZ791$Y$60G?K!rp#3o{dryo)1YHrjDEzAp=RtErpCCNU9QNO1J#jysP>AYqlU^6 zNP@L7A$G=CI0990x{c36jeM<*@5ZjgPhnpyxW&YGq3X%J)yz;aRKpceGgt%Ff!14@ ze+9abpo;sVrhXL0#%ZV#EJNixf${JnYU&@N*7%i8|AK13dz)#{2Q|QSsQPlE$`?mA zpR3k3=078W4kV<-*{EH90M+0zRKfEY2k)U~3pA8kyi|SxO)PPE% zX0#fXz@}IpS2_d=68MOPFvm_)unTHr{V*<$Ky_pmCcsswk?yz8!%!o7gg*EkwHK1_ zGJB;kYCz2~6Lvt&gfoYL8d{GkxC@ivO{{<)ur(IlZF;^IwQ1jBHte#;xCBcRzk(4l z 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

FG z6pER!tBo&2<=QCZ8u2IlJbDZBJSnQaOsID9d*YnG3Iw#)^-;&B6>22o zP*XV@HR6q^7t|@#W_pC0F?UPTKzuAhJOC?WD=dJ!Pz`>l1;CP8dxZ*ozCcZ8YG|w z7NI^3ci8xKRD-Xqt~TcTL44E8^{5#RzZ-Zbq^xm>6{ zRi-`XUk`eapkp-})uE-R&-q>00`H@KvMJfY?fHjAgHbP%gQyNX!lL*Q^&ZL7(KJ*5 z^RmCg!8QY3+9ignSzGfz4VglNCB_NJ8~*(=(#-2cbGv63byt)UjHOdhuL9orY_e3vZ!18h3yx zpJ)K*KPw3tNYJaYE^1fLz?QfjwT7uUrpl*Z*J+crLcMs#U;@@O40W8I4s?6|D|itG zu|%W~#66_19_)5q#}-5AFzJPcnm??nIE;e*d9ZevIoBD6n|E_7)cK!f;|DM^@i!QZ zsYbY6gRwdm!s}QA6OD9x{u3v|O zzTj#sKH2R$i?6XdI(w&>a~XH4`Mq2YEXsram=6!4M*JN$_1UMHcy-jL;%L;`F2R0y z3;nRxbTc!3QLp6Pm;tY%>T%8R{JxOC|3{z-@qwt#5r*1y*HOpiflYs5<8QD5>EBUr z#yT_2rkjW5iJ!)5n0S^s#%)m_yK8OyF>0v-X6wU>^Vg4njzjV}=8cvO6A~|st*{1$ z;C{@8zft+K%{6bz5~%Y(9kb&qtb?~PCkD@RyCz~AR7bv}mMZ6bw`-8je{TYs>hGu* zMy>^B({#dy#P4AxEV$4t%{bI)xQHR>TIBZp$7PD3mL%$8v$m;Gr=$n!6z#(@cpaNz z>Lr|i^=KFYP3eAYiz$|xcl=1yCLE6%@odycH=tf5hfy!0i>S|naGU-Hby|Me=b4t7 zjuk}ZuZhavavA4eFNz){xUoNGX15PSb!h!^^G1uY!YoB1)Q69QDmM&O(OA^S>>QiE z8TIDdg&O%8)NfE8qc)>^r5Q-dm7IT#FdGS4^8%ey@M>C^3o)c9*AL!8lm@k^9LEJP%}FaJK;QRjj=YEH)JnNr}MvnfG-bDpep#+X84W; ziKp3U(i@|utSf3pCZX1FEo$iwqRQXE*!Tjq3BTKT%uS}FDN!??1;^<8=OLi;coh3! z`pu@NOHd8Q++tp_8BuS@rs#()QE$jG*6FCJU4-i3dej~`g<7&ps1LQL7>qHua{he? z6eExco1vz5A}Zrr)Vn$iL+~SNMsjU4BkN`zjsc|4L~X(Ys1Y7Pl|P4?sW+(85^=j( z;`rM+|LR$K5;TQ{P#vgg<6TfA8jY%W2KwS0R0Df)5FSU(Oz9owk8CR7IO4rg<)Z8~ zo6j4SFEIvUik+N)^{6BX*{}v`_YcQ2xDYkP?RJ@0b5ATud=nPNFIWuo>^3vh5A}Q> z7R88r%qzDPmLfh0i{MSniOHS4X6-AZ_QF=wH=vyR%#>9_b+9FBCVJTPA*jtZ1GU*! z<22ljn$gPp%@Vc1TEu&y>b;1Cz4-h`eOx$7B;g|ytVmkbQX)(odb83p9*17{W!cD01aZi|!>9UxfcpnVFC0Gqlqv!wsFV#u6 z=imKTM}4lJ!AkfYL$KT_Gt#lBFBpq43tmAT+X$!4AF*V^VB%v@4Iaj(_yU!$;u-TE z>5FBFZ$?Mw{3ijek>6SKL*^`;L_FR(lW{55B>vi3^1KbvpL*r4K^(bl+UPtYLPZv4=`3OY1WR61!<|f`9o8dataf};g)-ogNU0)P+j;oHV=2}K>tcBlr{+UI*vpPDC7d*dqV)AgBta8Mw@Wn*E~W@>|4LkCsSPE!K{mB33e%90A-yE5izW74n^^dMWa!DTr)Vy@`0L}Y6Qn<(%r4Si z*z`1{W#oBJPcDATf}=>=#s2e5V-p&fM&<_GQ+en|rD>=v6XD-v3?Y7kcmndpRA+3( z4G1sbu1-DOc;3sVf74pnYbE7%J>*$)@~q%qMh9~dcUlmbXA3FQTjILTk|{Nn_9uRV z%32a1Mn#c`-zBUo0p;@2_-x{JxQp;y-}`mtB3;*T%4W88W+l%J+nH?`jemdOnr)}^ zAO(8ba54&AB10)G&CQG2a~&n^Je7U4m7gX&iRS}R=bC@R;<@f&e9AaH>tM?^#hsL! zOpe>s6H4bp_1|AyN5VWZMz$GKQCVFcW}=c|SeHVf6gXw-cKO>z6g^KkE_wc3FUXge z^15R3Y%XCPxBTQ8j7#wy4!}>`hxPX_^U*+QGQOt+5eRpr;33_%BJ#Tml5Z_($9b-+ ziNTeVjz1;bpR$X{^Ujt@LHb1EOUeI*a1EZv=h<#LsH+y~AJM7LLtXq+4c8nSR=hLe z2i!9Vr?Zu&wcezX&pbPgn`~M#?E6>w9k!$8sQ2%yAL&C#>t&uhu6^|K2lsRCQ&iH; zRx*K1OGq1OD|$mMNr->4wWTCHfxJ~2nLbo>HKu$u?)f}RMdya{yb;egQP&{ib$Ql@ z`WEv%FZZ?xoUg-Vn#cohG9KY!Gb+l&LtWWPzsGZ3iz7_&S{Pp+Kb7p5^q1>$P6=NW z-$_jVKpI#@9sJnfdO)sml=CJ>1kx7}AItrZIz?ImZa2@bQ-2t3wk6z~I;K;03wd<$ zVe0wI?f2Cu^8dMt6Td=y1g64Y5jaIxDda^3>2WW<;bA(AKm*0?0LoFJuH+P&h1ryD zE9N_m=dW@1Ch0qM#3ub7W&d2K2}H5=9OcU2hmkL!RBV6=tJz7wogqgl~|)Iq?cq-h;erxLxx8r1n$<<$v-J`wI=^ao?W93f6|vkVg1Y4!o6%E72HIDKNp{6u7>1^Le_+;xpxSAE-w z>UzM{k`A1*;dX?5DO`#?J8eS+$P?FgvXpHoA@PTVV{<2?EZ-1Z9l2u?{`FS}Ymu)% z^*QJ4Xtq$GI2DGIX$}wmpNqo#dG13+pZ}_41eILmPEPtY>Zya@$y=1Xx`yC*(yCBj z2zL_O)>P7T@ny$xmA8pX_)6s`$@niBp4;>##7o#le^Ox!!r?UHPyQ}6K9{s~O6MNR zv)7c(P5ML1-6l^WETYP}_-Bcp>neHcQ^&l>%>QRHei(R1mG z>_wYa4xR4w&IPEyB1 z;(d5_m9#UIjY!Tnp_3#VbO=Me=lf`20MB1=`*Y8y@(w&t zOjy5_*i5`9cQyu*i@fo87T-3w*$(D5@l50?!tlp3%0EB{+*b87M!PXUVWF1@it?mz%T+ zv{9A3VV?OXLk1!_NQ^@xf37=Z{BxbK;ZihOoIJ5;qzd^fQL+24GIjsz-~paT{_9zE z;>)Qp_n%79SwX|&sN_$+nluoVJ1Oby$S|GoCkno0A&~6fY5spdWKUYKBXf@J)Q+X`%jj+!H?6b{(<$pzm>qtLBqZ@4{b9kOsU)7zw zJUvGZf3B~8mGq;;BU@vB>`y*#oA*A?bd5B)TJxOWtNuTiKWTkPn@JlhZ9O@NFC>1P zdO{+z(07SUCQ=0tGAFvW64rIaHllE9o;|_Jc0Fd;yn$4_kn*b}&zDnX1&x#w3(yON7tbdbiRGU9(8nZ^`=b?3cdJJ+cp0 zk(h+=NGe)R<+|EaI3IUv3PtAb$McswTS1;xIF5Te;k{Irg=eK~xsQZnao0B0xNeia znmjides1z#AiXp7I+1x@UL#=(8TcKu=h{oAiiAg!K|cdGhQ&8I(apSM5DlC9Kfy1mx}UGI2M`m z+n!${eFpiuk|(=Oi(##eCAnu)&WDDEkgq9s1y5}}qn^^#ca3MKZKw2Tj!s@D9wwx4 z9SZ-)-GEHG;tpvn9$e5OdGBl*?7nyvB2b)YLQE?iH|5u}nDc8?Dbp;Ww zKwTZkGtlNafRCt4*9|O>%Xt3hs-g9-N1>`DW~YKmWD2zze*V>v3cRwV_S4C2lAx2`O7h+ngNt~va#bA$|6x%m&t zxVB>tD$v!@;3`7Al`W9PRGimG z5PxLr((|K~%Vrx_yrq5~ZuwUQN-RskMz$l0>zYm_({K@mJJ<^EQSJlr%GivCrqHqB zSdsG4Nc%=SHgWyIK{4#gor3Tup0DNEF79gjeON;(p38%KROUmXuIdI?EDE);X_Krc zF*@an^NgS8Tq`Ntm0Quc%`d_jwxO&wM;rBO2EA#dg}n_^HR%tN3QU z|G!h5BAif!;uL-M3e8%F+N z#3NFs8+j*U4bqxv{a=$Q50&&G@e?*iT{CS5b`a-}L0vl;?H1D06CS~{A5_49M$Pq# zI~rk%{_iSDp0cE^;MO&TIzE$@0MC(eu1R)D!I%Q?{B6U^GM_s+&nMH_ zv+4j2=Xq+>^@4C`GEO0Uz?N%4zKHg@ClmiOhC0TP7D#)#oESEUqjO0QR!ZrZ}gu`n8*Ix6VLjQ zHV{uxxD)wm((on1hY8Oh?_2HzH2A>Qp|X=~xG>Mw@a!rUr;Z&wE1{K*OGH;?gKHZV z>bHckh=<`+8mU2AYzpe?NW1{)$LY)o(qh>WzQ>lNcc#8;q<TIn)Rh&nG5fr{l`Z_WPQm8JOGm@U2N&?BKt1fx?TMn)xJc~)5zpwVBrzhVT z(mRoFJ8@kZh?l|{)Uyb0+Pd_tsQ%~A&Q^FU4c4LZ!ep9;x}uVnhzk1>AI`ml@G{zVKzh<9ahE60ck(YH zT#V;$xiirjUE9g`f0{NMn5gS8j^FVr(yKEkt>%d_j1@>0(iCbE%_0aafnwCoy1b*~ zj_wd&nvhzu1j&Xk1*K_fq;fzjnHnmWR14cEAPhBM1_4qe!X{J8KEJ!?zx|)>;d!3# z^L@V0^FJ8e7_5{hT>@tiZ=`1di}X_rq2y=D%YtacLD1|Ql2YnR9F#|1#sWK>sSJEc z9s!n*PolOG^=6|#A;;%3udE23X02cm9QQGCGTbfduL?A~pGF;vm&;Q;070_@U>)?* z5t{;7L@x>KZV^8OHY$7%(aeIC9CDrbuIQNm6)96(N%KkJ2VrgChRF(@t zZ>0=55$J{E5{~LW#R2g^P@ z64gGJ$xRUMNvn9{CKJJq~tM4p>ayj!rJUOyU#pb`nE~%Kn4*HaF^)(@JO*q8&L6}dW!Xa_r1;hJHo{+yEBl&W1{&db zF?of|jKgd4?&7tnb_mM|%jAp06EMN};gfcgd&!(T_7x&Q~ z22+;Aj(hPD@;(lX^zGpJ+Ytz2;As)=fMjPVjQT6$Rq7Au*D&-6+%9|#y;=m4$fJnC z^sC`jQ~xXrXOl)w{$|g9\n" "Language-Team: Serbian 1.1.10)" msgstr "" @@ -6783,14 +6785,17 @@ msgid "Worked, not Confirmed" msgstr "" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "" @@ -7086,7 +7091,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "Lokacija" @@ -7218,7 +7223,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7241,12 +7246,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "Da" @@ -7281,7 +7286,7 @@ msgstr "Da" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7304,12 +7309,12 @@ msgstr "Da" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "Ne" @@ -7638,6 +7643,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7672,8 +7841,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "Komentar" @@ -7892,7 +8061,7 @@ msgstr "Serijski broj + polje + razmena" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "Pozivni znak operatora" @@ -8006,7 +8175,7 @@ msgid "Reset QSO" msgstr "Resetuj QSO" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "Sačuvaj QSO" @@ -8041,9 +8210,9 @@ msgstr "Identifikator" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "Omogućeno" @@ -8190,7 +8359,7 @@ msgstr "Samo QSO sa SOTA informacijama će biti izvezeni!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "Vrsta propagacija" @@ -8309,7 +8478,7 @@ msgid "" msgstr "" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8346,7 +8515,7 @@ msgstr "Potrebno" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8431,7 +8600,7 @@ msgstr "Primljeno" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9628,10 +9797,10 @@ msgid "QSL Date" msgstr "QSL datum" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9728,7 +9897,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "Upozorenje! Da li ste sigurni da želite obrisati QSO sa " #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "Boje" @@ -9737,7 +9906,7 @@ msgid "Worked not confirmed" msgstr "Rađene nepotvrđene" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "Obriši" @@ -9792,151 +9961,220 @@ msgstr "" msgid "Duplication is disabled for Contacts notes" msgstr "" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "Izbriši napomenu" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "Informacija o verziji" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "Opis:" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "Opis upita" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "Vaš upit je sačuvan!" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "Uredi upite" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "Sačuvani upiti:" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "Pokreni upit" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "Sačuvani upiti" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "Morate napraviti upit prije pretrage!" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "Izvoz u ADIF" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Upozorenje! Da li ste sigurni da želite obrisati ovaj sačuvani upit?" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "Sačuvani upit je obrisan!" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "Sačuvani upit ne može biti obrisan. Molim pokušajte ponovo!" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "Opis upita je ažuriran!" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "Nešto je bilo pogrešno prilikom čuvanja. Molimo pokušajte ponovo!" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -9946,20 +10184,20 @@ msgstr "" "nije validna. Proverite koja DXCC je ispravna za ovu lokaciju. Ako ste " "sigurni da ste upisali tačne podatke, ignorišite ovo upozrenje." -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "Pozivni znak: " -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "Broj: " -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "Polja: " -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -9967,62 +10205,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Polja" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "Niste prijavljeni. Molimo %sprijavite se%s" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "polje" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "Ukupan broj" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "QSL karta za " -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Upozorenje! Da li ste sigurni da želite izbrisati ovu QSL kartu?" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL karta" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "eQSL karta za " -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "Datoteka slike QSL karte" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "Prednja strana QSL karte:" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "Zadnja strana QSL karte:" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "Dodajte dodatne QSOe na QSL kartu" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "Nešto je pošlo naopako. Molimo pokušajte ponovo!" @@ -10210,7 +10443,7 @@ msgstr "Dnevnik" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "Pretraga pozivnog znaka" @@ -10625,7 +10858,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "" @@ -10745,7 +10978,7 @@ msgstr "Verifikovano" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10766,7 +10999,7 @@ msgstr "Direktno" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10785,7 +11018,7 @@ msgstr "Biro" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10800,49 +11033,49 @@ msgstr "Elektronski" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Menadžer" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "NIŠTA" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "" @@ -11004,7 +11237,7 @@ msgstr "QSL poslata" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -11041,7 +11274,7 @@ msgstr "U nizu" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11274,7 +11507,7 @@ msgstr "De" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "QRZ" @@ -11642,7 +11875,7 @@ msgid "Note Contents" msgstr "Sadržaj napomene" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "Sačuvaj napomenu" @@ -12109,7 +12342,7 @@ msgstr "Da li postoje neke dodatne informacije koje bismo trebali znati?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -12128,12 +12361,12 @@ msgstr "Pošaljite zahtev za proveru veze u logu" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -12157,7 +12390,7 @@ msgstr "Stanica" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12734,11 +12967,11 @@ msgstr "RX frekvencija" msgid "RX Band" msgstr "RX opseg" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Dajte vrednost snage u W. Unesite samo brojčanu vrednost." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -12748,25 +12981,25 @@ msgstr "Snaga predajnika (W)" msgid "Used for VUCC MultiGrids" msgstr "Koristi se za VUCC MultiGrids" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "" @@ -12779,38 +13012,38 @@ msgstr "Ime satelita" msgid "Sat Mode" msgstr "Vrsta rada preko satelita" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "Azimut antene (°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "Azimut antene u decimalnim stepenima." -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "Elevacija antene (°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "Elevacija antene u decimalnim stepenima." -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "Okrug stanice" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "Napomena: biće izvezeno na treće servise." @@ -12819,8 +13052,8 @@ msgid "Sent Method" msgstr "Način slanja" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "Način" @@ -12841,7 +13074,7 @@ msgstr "Verifikovano (preklapa se)" msgid "Received Method" msgstr "Način primanja" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "Dodajte podrazumevanu poruku za eQSL, za ovu stanicu." @@ -12885,7 +13118,7 @@ msgstr "Sačuvajte izmene" msgid "TimeOff is less than TimeOn" msgstr "Vreme završetka je manje nego vreme početka" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "Prethodni kontakti" @@ -12922,155 +13155,167 @@ msgstr "" msgid "Invalid value for antenna elevation:" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "UŽIVO" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "OBJAVI" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "Satelit" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "Dodaj opseg/vrstu rada u omiljene" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "Vreme početka" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "Vreme završetka" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "Pretražite najnovije spotove na DX Klasteru" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "IOTA Referenca" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "SOTA referenca" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "Frekvencija (RX)" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "Opseg (RX)" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "Na primer: YU/ZS-001." -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "Na primer: YUFF-0024." -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "Na primer: PA-0150. Dozvoljeno je uneti višestruke unose." -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "Na primer: GMA" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "Na primer: DA/NW-357" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "Na primer: Q03" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "Ime satelita" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "Vrsta rada satelita" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "QSL MSG" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "Reset na podrazumevano" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "Povežite" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "Brzina CW" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "Stop" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "Podešavanje" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "Zaustavi podešavanje" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "" -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "Pošalji" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "Predlozi" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "Profilna slika" @@ -14427,7 +14672,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -15157,19 +15402,27 @@ msgstr "POTA auto pretraga polja i naziva za park." msgid "Number of previous contacts displayed on QSO page." msgstr "" +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "Opcije menija" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "Prikaži Zabeleške u glavnom meniju." -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "Polje brzog upisa veze" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." @@ -15177,159 +15430,159 @@ msgstr "" "Sa ovom karakteristikom, moći ćete upisivati pozivne znakove korišćenjem " "polja za pretragu u zaglavlju." -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "Brzi upis - akcija se odvija pritiskom na Enter" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "Upiši pozivni znak" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" "Koja akcija bi trebalo biti izvedena kada je pritisnut Enter u polju za brzi " "unos?" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "Brza promena Stanične lokacije" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." msgstr "" -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "UTC vreme u meniju" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "Pokaži trenutno UTC vreme u meniju" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "Podešavanje karte" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "Ikona" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "Ne prikazuj" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "QSO (podrazumevano)" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "QSO (potvrđen)" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "(Ako izaberete 'Ne', prikazano će biti kao 'QSO (podrazumevano))'" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "Prikaži lokator" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "Prethodna vrsta QSL" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "Izaberite vrstu QSL za prikaz u sekciji prethodnih veza." -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "Mapa u desno" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "Polje napomene na kontrolnoj tabli" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "Ovim ćete onemogućiti prikaz napomena na vrhu kontrolne table." -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "Prikaži polja referenci u kartici QSO" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" "Omogućene stavke će biti prikazane na kartici QSO a ne na kartici Opšte." -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "Globalni tekst" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "Ovaj tekst je opcioni tekst koji će biti prikazan na vrhu OQRS stranice." -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "Grupisana pretraga" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "Isključeno" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "Uključeno" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -15337,11 +15590,11 @@ msgstr "" "Kada je ovo uključeno, sve stanične lokacije sa aktivnim OQRS će odjednom " "biti uključene u pretragu." -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "Prikaži ime stanične lokacije u grunim rezultatima pretrage" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -15349,77 +15602,77 @@ msgstr "" "Ako je grupna pretraga uključena, možete odlučiti da li će naziv stanične " "lokacije biti prikazan u tabeli sa rezultatima." -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "Podrazumevane vrednosti" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "Podešavanja za podrazumevani opseg i potvrde" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "Podrazumevani opseg" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "Podrazumevani metod potvrde veza" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "Usluge treće strane" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "Korisničko ime Loogbook of The World (LoTW)" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "Lozinka Loogbook of The World (LoTW)" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "Korisničko ime eQSL.cc" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "Lozinka eQSL.cc" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "Club Log" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "Lozinka za Club Log" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -15429,44 +15682,44 @@ msgstr "" "korišćenje Clubloga u Wavelogu. Posjetite %svaša Clublog podešavanja%s da to " "uradite." -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -15474,54 +15727,54 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "Razno" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "Učitavanje na AMSAT Status" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "Učitajte status SAT veza na" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "Mastodonserver" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "URL Mastodonservera" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "Glavni URL vašeg Mastodon servera. npr. %s" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "Omogućene karakteristike Winkeyera" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -15530,25 +15783,25 @@ msgstr "" "Winkeyer podrška u Wavelug je veoma eksperimentalna. Prvo pročitajte Wiki na " "%s prije nego omogućite ovu funkciju." -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "Privatni ključ za dobavu" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "Pogledajte vaš profil na %s." -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "Prikaži samo prelete koje je moguće raditi" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -15557,7 +15810,7 @@ msgstr "" "osnovu polja koje ste uneli u vaš hams.at nalog. Zahteva se unos privatnog " "ključa." -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "Sačuvajte nalog" @@ -16220,6 +16473,10 @@ msgstr "Pošaljite zahtev" msgid "Rcvd" msgstr "Rcvd" +#, php-format +#~ msgid "You're not logged in. Please %slogin%s" +#~ msgstr "Niste prijavljeni. Molimo %sprijavite se%s" + #~ msgid "CFD Export" #~ msgstr "Izvezi CFD" diff --git a/application/locale/sv_SE/LC_MESSAGES/messages.mo b/application/locale/sv_SE/LC_MESSAGES/messages.mo index 1861ab87a88f51100b002e5f5db6594665061447..57a05c7617d55a3e68d01218306dc36cbd683169 100644 GIT binary patch delta 45658 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 L%f|Khb~O7x;Jmlq diff --git a/application/locale/tr_TR/LC_MESSAGES/messages.po b/application/locale/tr_TR/LC_MESSAGES/messages.po index b60853453..4e7945c6b 100644 --- a/application/locale/tr_TR/LC_MESSAGES/messages.po +++ b/application/locale/tr_TR/LC_MESSAGES/messages.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: 2025-10-27 09:41+0000\n" "Last-Translator: \"Erkin Mercan (TA4AQG-SP9AQG)\" \n" "Language-Team: Turkish 1.1.10)" msgstr "WebSocket (WLGate>1.1.10 Gerektirir)" @@ -6936,14 +6938,17 @@ msgid "Worked, not Confirmed" msgstr "Çalışıldı fakat onaylanmadı" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "Telefon" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "CW" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "Dijital" @@ -7244,7 +7249,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "Konum" @@ -7379,7 +7384,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7402,12 +7407,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "Evet" @@ -7442,7 +7447,7 @@ msgstr "Evet" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7465,12 +7470,12 @@ msgstr "Evet" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "Hayır" @@ -7816,6 +7821,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "Clublog'dan QSL'leri indir" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7848,8 +8017,8 @@ msgstr "Yaklaşan aktivite yok. Lütfen daha sonra tekrar kontrol edin." #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "Yorum" @@ -8071,7 +8240,7 @@ msgstr "Seri + Grid + Exchange" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "Operatör Çağrı İşareti" @@ -8186,7 +8355,7 @@ msgid "Reset QSO" msgstr "QSO'yu baştan başlat" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "QSO'yu kaydet" @@ -8221,9 +8390,9 @@ msgstr "Tanımlayıcı" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "Etkin" @@ -8369,7 +8538,7 @@ msgstr "Yalnızca SOTA bilgisi içeren QSO'lar dışa aktarılacaktır!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "Yayın Mode" @@ -8495,7 +8664,7 @@ msgid "" msgstr "Sertifikalarınızın en az birinin QSO bitiş tarihi geçmek üzere" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8531,7 +8700,7 @@ msgstr "Geriye Kalan" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8616,7 +8785,7 @@ msgstr "Alınan" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9838,10 +10007,10 @@ msgid "QSL Date" msgstr "QSL Tarihi" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9937,7 +10106,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "Uyarı! QSO'yu silmek istediğinizden emin misiniz? " #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "Renkler" @@ -9946,7 +10115,7 @@ msgid "Worked not confirmed" msgstr "Çalışıldı fakat onaylanmadı" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "Temizle" @@ -10001,152 +10170,221 @@ msgstr "Sıralama" msgid "Duplication is disabled for Contacts notes" msgstr "Kişi notları için kopyalama devre dışı bırakılmıştır" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "Çoğalt" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "Notu sil" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "Notu Çoğalt" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "Notu silmek istediğinize emin misiniz?" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "Bu notu çoğaltmak istiyor musunuz?" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "Çoğaltma Devre Dışı" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "Hiç not bulunamadı" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "Bu çağrı işareti için not yok" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "Çağrı işareti notu" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "Not başarıyla silindi" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "Not başarıyla oluşturuldu" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "Not kaydedildi" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "Not kaydedilemedi" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "Sürüm Bilgisi" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "Modal yüklenemedi. Lütfen tekrar deneyin." -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "Açıklama:" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "Sorgu Açıklaması" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "Sorgunuz kaydedildi!" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "Sorguları Düzenle" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "Kaydedilmiş sorgular:" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "Sorguyu Çalıştır" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "Kaydedilmiş sorgular" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "Arama yapmadan önce bir sorgu oluşturmanız gerekiyor!" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "ADIF'e aktar" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "Gelişmiş Logbook’ta Aç" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Uyarı! Bu kayıtlı sorguyu silmek istediğinizden emin misiniz?" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "Kaydedilmiş sorgu silindi!" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "Kaydedilmiş sorgu silinemedi. Lütfen tekrar deneyin!" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "Sorgu açıklaması güncellendi!" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "" "Kaydetme işlemi sırasında bir şeyler yanlış gitti. Lütfen tekrar deneyin!" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -10156,20 +10394,20 @@ msgstr "" "için doğru DXCC’yi kontrol edin. Eğer eminseniz, bu uyarıyı yok " "sayabilirsiniz." -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "Çağrı işareti: " -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "Adet: " -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "Grid: " -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -10177,62 +10415,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Grid Karesi" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "Giris yapmadiniz. Lütfen %sgiris yapin%s" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "grid" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "Toplam Sayı" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "QSL Kartın Alıcısı: " -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Uyarı! Bu QSL kartını silmek istediğinizden emin misiniz?" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL Kartı" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "eQSL Kartın Alıcısı: " -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "QSL kart görüntüsü" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "QSL Kartın Ön Yüzü:" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "QSL Kartın Arka Yüzü:" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "QSL Kartına ek QSO ekle" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "Bir şeyler ters gitti. Lütfen tekrar deneyin!" @@ -10420,7 +10653,7 @@ msgstr "Kayıt" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "Çağrı İşareti Ara" @@ -10833,7 +11066,7 @@ msgstr "İstasyon Gücü" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "Bölge" @@ -10953,7 +11186,7 @@ msgstr "Doğrulandı" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10974,7 +11207,7 @@ msgstr "Direkt" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10993,7 +11226,7 @@ msgstr "Büro" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -11008,49 +11241,49 @@ msgstr "Elektronik" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Yönetici" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "HİÇBİRİ" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "Afrikan-İtalya (Özel DXCC Varlığı)" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "Bear Island (Ayı Adası)" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "Türkiye'nin Avrupa Yakası" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "ITU Viyana" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "Kosova" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "Shetland Adaları" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "Sicilya" @@ -11224,7 +11457,7 @@ msgstr "QSL gönderildi" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -11261,7 +11494,7 @@ msgstr "Sıralanan" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11494,7 +11727,7 @@ msgstr "De" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "QRZ" @@ -11864,7 +12097,7 @@ msgid "Note Contents" msgstr "Not içeriği" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "Notu kaydet" @@ -12336,7 +12569,7 @@ msgstr "Bilmemiz gereken ek bir bilgi var mı?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -12355,12 +12588,12 @@ msgstr "Log’da Yok Talebini Gönder" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -12384,7 +12617,7 @@ msgstr "İstasyon" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12971,11 +13204,11 @@ msgstr "RX Frekansı" msgid "RX Band" msgstr "RX Bandı" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Gücü Watt olarak veriniz. Sadece rakamları giriniz." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -12985,25 +13218,25 @@ msgstr "Yayın Gücü (W)" msgid "Used for VUCC MultiGrids" msgstr "VUCC Çoklu Grid'ler için kullanılır" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "Anten Yönü" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "Gri Çizgi (Greyline)" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "Diğer" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "Kısa Yol (Short Path)" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "Uzun Yol (Long Path)" @@ -13016,38 +13249,38 @@ msgstr "Uydu Adı" msgid "Sat Mode" msgstr "Uydu Modu" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "Anten Yönü (Azimut)(°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "Ondalık derece cinsinden anten azimutu." -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "Anten Yüksekliği (°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "Ondalık derece cinsinden anten yüksekliği." -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "İstasyon İdari Bölgesi" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "SIG (Special Interest Group) Bilgisi" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "Not: Üçüncü taraf hizmetlere aktarılır." @@ -13056,8 +13289,8 @@ msgid "Sent Method" msgstr "Gönderim Yöntemi" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "Metod" @@ -13078,7 +13311,7 @@ msgstr "Doğrulandı (Eşleşme)" msgid "Received Method" msgstr "Alınma Yöntemi" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "Bu istasyon için eQSL varsayılan mesajını al." @@ -13122,7 +13355,7 @@ msgstr "Değişiklikleri kaydet" msgid "TimeOff is less than TimeOn" msgstr "Bitiş Zamanı, Başlangıç Zamanından önce" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "Önceki Görüşmeler" @@ -13159,113 +13392,125 @@ msgstr "LoTW Kullanıcısı. Son yükleme %x gün önce yapıldı." msgid "Invalid value for antenna elevation:" msgstr "Anten yüksekliği için geçersiz değer:" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "CANLI" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "GEÇMİŞ" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "Uydu" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "Band/Modu Favorilere Ekle" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "Başlangıç Zamanı" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "Bitiş Zamanı" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "DXCluster'da son Spot'u ara" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "IOTA Referansı" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "SOTA Referansı" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "Frekans (RX)" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "Bant (RX)" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "Örnek: GM/NS-001." -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "Örnek: DLFF-0069." -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "Örnek: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "Örnek: GMA" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "Örnek: DA/NW-357" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "Örnek: Q03" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "Karşı Operatörün e-posta adresi" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "Uydu Adı" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "Uydu Modu" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "QSO Yorumu" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "QSL Mesajı" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "Varsayılana Sıfırla" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "Çağrı İşareti Notları" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." @@ -13273,43 +13518,43 @@ msgstr "" "QSO partnerinizle ilgili özel bilgileri saklayın. Bu notlar asla paylaşılmaz " "veya harici hizmetlere aktarılmaz." -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "Bağlan" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "CW Hızı" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "Durdur" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "Tune" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "Tune Yapmayı Durdur" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "Metni girin..." -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "Gönder" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "Öneriler" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "Profil Resmi" @@ -14701,7 +14946,7 @@ msgid "Special Interest Group Information" msgstr "Özel İlgi Grubu Bilgisi" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Sorun mu var? %sviki%s sayfasını kontrol edin." @@ -15437,19 +15682,27 @@ msgstr "POTA otomatik arama gird ve park adı." msgid "Number of previous contacts displayed on QSO page." msgstr "QSO sayfasında görüntülenecek önceki görüşme sayısı." +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "Menü Seçenekleri" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "Ana menüde notları göster." -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "Hızlılog Alanı" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." @@ -15457,24 +15710,24 @@ msgstr "" "Bu özellikle, başlıktaki arama alanını kullanarak çağrı işaretlerini " "kaydedebilirsiniz." -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "Quicklog - Enter tuşuna basıldığında yapılacak işlem" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "Çağrı işaretini kaydet" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "Quicklog alanında Enter tuşuna basıldığında hangi işlem yapılsın?" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "İstasyon Konumları Hızlı Geçiş" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." @@ -15482,137 +15735,137 @@ msgstr "" "Ana menüde İstasyon Konumları Hızlı Geçişi gösterin. Yeni konumları İstasyon " "Kurulum sayfasında favorilere ekleyebilirsiniz." -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "Menüye UTC Saati Ekle" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "Menüde geçerli UTC saatini göster" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "Harita Ayarları" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "Simge" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "Görüntülenmez" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "Görüntülenmiyor" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "QSO (varsayılan olarak)" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "QSO (onaylandı)" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "" "('Hayır' ise, onaylı QSO varsayılan olarak 'QSO' şeklinde görüntülenir)" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "Locator’ı Göster" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "Önceki QSL Türü" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "Önceki QSO’lar bölümünde gösterilecek QSL türünü seçin." -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "Panel Ayarları" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "Panelde görüntülenecek son QSO sayısını seçin." -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "Panelde gösterilecek son QSO sayısını seçin." -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "Panelde Haritayı Göster" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "Sağ panelde göster" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "Haritayı panelde gösterip göstermemeyi seçin" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "Panel Bildirim Afişi" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "Bu ayar bildirim afişini devre dışı bırakmanıza olanak tanır." -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "Güneş ve Yayılım Verileri Paneli" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "Bu ayar, güneş ve yayılım verilerinin görüntülenmesini değiştirir." -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "QSO Sekmesinde Referans Alanını Göster" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" "Etkinleştirilen referanslar, Genel sekmesi yerine QSO sekmesinde " "gösterilecektir." -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "Çevrimiçi QSL talep (OQRS) ayarları" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "Global metin" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "Bu metin, OQRS sayfasının üst kısmında görüntülenebilecek isteğe bağlı bir " "metindir." -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "Gruplandırılmış arama" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "Kapalı" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "Açık" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -15620,11 +15873,11 @@ msgstr "" "Bu özellik açık olduğunda, OQRS aktif olan tüm istasyon konumları aynı anda " "aranacaktır." -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "Gruplandırılmış arama sonuçlarında istasyon konumu adını göster" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -15632,11 +15885,11 @@ msgstr "" "Gruplandırılmış arama açık olduğunda, istasyon konumu adının sonuçlar " "tablosunda gösterilip gösterilmeyeceğine karar verebilirsiniz." -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "Otomatik OQRS eşleştirmesi" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -15644,69 +15897,69 @@ msgstr "" "Bu açık olduğunda, otomatik OQRS eşleştirmesi yapılacak ve sistem, gelen " "talepleri mevcut loglarla otomatik olarak eşleştirmeye çalışacaktır." -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "Gönderim (Direkt) talepler için otomatik OQRS eşleştirmesi" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" "Bu açık olduğunda, direkt gönderim metodu ile gelen talepler için otomatik " "OQRS eşleştirmesi yapılacaktır." -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "Varsayılan Değerler" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "Varsayılan Bant ve Onay Ayarları" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "Varsayılan Bant" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "Varsayılan QSL Yöntemleri" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "Üçüncü Taraf Hizmetler" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "Logbook of The World (LoTW) Kullanıcı Adı" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "Logbook of The World (LoTW) Şifresi" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "Bağlantıyı Test Et" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "eQSL.cc Kullanıcı Adı" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "eQSL.cc Şifre" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "Club Log" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "Club Log E-Posta" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "Club Log Şifre" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -15716,15 +15969,15 @@ msgstr "" "Clublog'u kullanabilmek için bir Uygulama Şifresi oluşturmanız gerekir. Bunu " "yapmak için %sclublog ayarları sayfanızı%s ziyaret edin." -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "Widget'lar" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "On-Air widget" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." @@ -15732,16 +15985,16 @@ msgstr "" "Not: Bu widget'ı kullanabilmek için en az bir (CAT) telsiz yapılandırılmış " "ve çalışıyor olmalıdır." -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "Etkinleştirildiğinde, widget %s adresinde kullanılabilir olacaktır." -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "\"Son görülme\" zamanını göster" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." @@ -15749,15 +16002,15 @@ msgstr "" "Bu ayar, \"Son Görülme\" zamanının widget'ta görüntülenip " "görüntülenmeyeceğini kontrol eder." -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "Sadece en son güncellenen telsizi görüntüle" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "Hayır, tüm telsizleri göster" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -15769,15 +16022,15 @@ msgstr "" "telsizi mi görüntüleyeceğini kontrol eder. Eğer yalnızca bir telsiziniz " "varsa, bu ayarın bir etkisi olmaz." -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "QSO'lar Widget'ı" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "Tam QSO zamanını göster" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." @@ -15785,40 +16038,40 @@ msgstr "" "Bu ayar, tam QSO zamanının QSO widget'ında görüntülenip görüntülenmeyeceğini " "kontrol eder." -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "Çeşitli Özellikler" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "AMSAT Durum Yükleme" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "Uydu QSO'larının durumunu şuraya yükle" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "Mastodon Sunucusu" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "Mastodon sunucusunun URL'si" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "Mastodon sunucunuzun ana URL'si, örneğin %s" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "Winkeyer Özellikleri Etkinleştirildi" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -15827,25 +16080,25 @@ msgstr "" "Wavelog'da Winkeyer desteği oldukça deneyseldir. Etkinleştirmeden önce %s " "adresindeki wiki'yi okuyun." -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "Özel Feed Anahtarı" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "Profilini %s'de gör." -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "Yalnızca Çalışabilir Geçişleri Göster" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -15853,7 +16106,7 @@ msgstr "" "Etkilendiğinde, hams.at hesabınızdaki grid'e göre yalnızca yapılabilir " "geçişleri gösterir. Özel feed anahtarının ayarlanması gerekmektedir." -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "Hesabı Kaydet" @@ -16544,6 +16797,10 @@ msgstr "Talep Gönder" msgid "Rcvd" msgstr "Alındı" +#, php-format +#~ msgid "You're not logged in. Please %slogin%s" +#~ msgstr "Giris yapmadiniz. Lütfen %sgiris yapin%s" + #~ msgid "CFD Export" #~ msgstr "CFD Dışa Aktarımı" diff --git a/application/locale/zh_CN/LC_MESSAGES/messages.mo b/application/locale/zh_CN/LC_MESSAGES/messages.mo index 7f7b203bdc11fc8861809b892e48cb00b97e52d6..58470cfc7fe2235e1503a0d0b1606745bf6d6189 100644 GIT binary patch delta 44567 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 delta 44661 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\n" "Language-Team: Chinese (Simplified Han script) 1.1.10)" msgstr "" @@ -6726,14 +6728,17 @@ msgid "Worked, not Confirmed" msgstr "通联过,但未获得确认" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "Phone" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "CW" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "Digi" @@ -7025,7 +7030,7 @@ msgstr "RSGB-IOTA 比赛,此信息包含 IOTA 名称(非 IOTA 标识符) #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "位置" @@ -7159,7 +7164,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7182,12 +7187,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "是" @@ -7222,7 +7227,7 @@ msgstr "是" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7245,12 +7250,12 @@ msgstr "是" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "否" @@ -7581,6 +7586,170 @@ msgstr "如果没有给出开始日期,那么上次确认之后的 QSL 将会 msgid "Download QSLs from Clublog" msgstr "从 Clublog 下载 QSL" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7612,8 +7781,8 @@ msgstr "未找到即将进行的激活。 请稍后再回来查看。" #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "备注" @@ -7827,7 +7996,7 @@ msgstr "序号 + 网格 + 交换信息" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "操作员呼号" @@ -7939,7 +8108,7 @@ msgid "Reset QSO" msgstr "重置 QSO" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "保存 QSO" @@ -7974,9 +8143,9 @@ msgstr "标识符" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "已启用" @@ -8114,7 +8283,7 @@ msgstr "只有具有 SOTA 信息的 QSO 才会被导出!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "传播模式" @@ -8229,7 +8398,7 @@ msgid "" msgstr "" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8264,7 +8433,7 @@ msgstr "待通联" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8349,7 +8518,7 @@ msgstr "已收到" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9530,10 +9699,10 @@ msgid "QSL Date" msgstr "QSL 日期" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9624,7 +9793,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "警告!您确定要删除 QSO 和 " #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "颜色" @@ -9633,7 +9802,7 @@ msgid "Worked not confirmed" msgstr "已通联未确认" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "清除" @@ -9686,151 +9855,220 @@ msgstr "" msgid "Duplication is disabled for Contacts notes" msgstr "" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "删除笔记" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "版本信息" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "加载模式失败。请重试。" -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "说明:" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "查询说明" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "查询已储存!" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "编辑查询" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "存储的查询:" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "执行查询" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "存储的查询" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "您需要创建查询来进行搜索!" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "导出 ADIF" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "在详细日志中打开" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "警告!确定要删除存储的查询?" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "存储的查询已删除!" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "无法删除存储的查询,请重试!" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "查询说明已更新!" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "存储出错,请重试!" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -9839,20 +10077,20 @@ msgstr "" "请稍等,您选择的 DXCC 已经失效,请确认最新的 DXCC 实体,如果您十分确认,请忽" "略该警告。" -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "呼号: " -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "总数: " -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "网格: " -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -9860,62 +10098,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "网格" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "请前往 %s这里%s 登录" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "网格" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "总数" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "QSL 卡片至 " -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "警告!确定要删除这个 QSL 卡片吗?" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "电子 QSL 卡片" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "eQSL 卡片至 " -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "QSL 图片文件" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "QSL 卡片正面:" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "QSL 卡片背面:" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "向一张卡片添加额外的 QSO" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "出现了错误,请重试!" @@ -10103,7 +10336,7 @@ msgstr "日志" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "查询呼号" @@ -10509,7 +10742,7 @@ msgstr "台站功率" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "区" @@ -10629,7 +10862,7 @@ msgstr "已验证" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10650,7 +10883,7 @@ msgstr "直邮" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10669,7 +10902,7 @@ msgstr "卡片局" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10684,49 +10917,49 @@ msgstr "电子" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "管理员" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "无" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "非洲意大利" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "熊岛" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "欧洲土耳其" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "国际电信联盟维也纳办事处" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "科索沃" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "设得兰群岛" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "西西里岛" @@ -10894,7 +11127,7 @@ msgstr "QSL 已发送" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10931,7 +11164,7 @@ msgstr "已排队" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11164,7 +11397,7 @@ msgstr "本台呼号(De)" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "QRZ" @@ -11518,7 +11751,7 @@ msgid "Note Contents" msgstr "笔记内容" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "保存笔记" @@ -11954,7 +12187,7 @@ msgstr "有额外的信息需要记录吗?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -11973,12 +12206,12 @@ msgstr "发送“未记录日志”请求" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -12002,7 +12235,7 @@ msgstr "电台站" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12573,11 +12806,11 @@ msgstr "接收频率" msgid "RX Band" msgstr "接收频段" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "以 W 为单位的功率(只需要填写数值)。" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -12587,25 +12820,25 @@ msgstr "发射功率 (W)" msgid "Used for VUCC MultiGrids" msgstr "被 VUCC 网格计算使用" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "天线波束路径" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "晨昏线" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "其它" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "短路径" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "长路径" @@ -12618,38 +12851,38 @@ msgstr "卫星名称" msgid "Sat Mode" msgstr "卫星模式" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "天线方位角(°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "天线方位角(以十进制度为单位)。" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "天线仰角(°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "天线仰角(以十进制度为单位)。" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "台站县区" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "SIG 信息" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "注意:将导出到第三方服务提供方。" @@ -12658,8 +12891,8 @@ msgid "Sent Method" msgstr "发送方式" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "方式" @@ -12680,7 +12913,7 @@ msgstr "已确认" msgid "Received Method" msgstr "接收方式" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "获取该站的 eQSL 默认消息。" @@ -12724,7 +12957,7 @@ msgstr "保存" msgid "TimeOff is less than TimeOn" msgstr "结束时间小于开始时间" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "先前通联" @@ -12761,155 +12994,167 @@ msgstr "对方使用 LoTW,最近上传时间 %x 天前。" msgid "Invalid value for antenna elevation:" msgstr "无效的天线海拔高度:" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "LIVE" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "提交" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "卫星" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "添加 模式/频段 到收藏" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "打开时间" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "关闭时间" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "在 DXCluster 搜索最新 Spot" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "IOTA 编号" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "SOTA 编号" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "频率(接收)" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "频段(接收)" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "例如: GM/NS-001." -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "例如: DLFF-0069." -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "例如: PA-0150. 可使用多个值。" -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "例如: GMA" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "例如: DA/NW-357" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "例如: Q03" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "对方 QSO 的电子邮件地址" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "卫星名称" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "卫星模式" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "QSL 确认信息" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "重置为默认" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "连接" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "CW 速度" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "停止" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "调谐" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "停止调谐" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "" -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "发射" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "建议" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "操作员照片" @@ -14243,7 +14488,7 @@ msgid "Special Interest Group Information" msgstr "电台兴趣组信息" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "遇到麻烦了?请参考%s维基%s。" @@ -14931,42 +15176,50 @@ msgstr "根据 POTA 编号自动查找网格坐标和公园。" msgid "Number of previous contacts displayed on QSO page." msgstr "QSO 页面中通联过的电台数量。" +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "主菜单" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "在主菜单显示便签。" -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "快速日志" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." msgstr "快速日志功能可以使用标题栏中的搜索字段来记录呼号。" -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "快速日志 - 回车键操作" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "记录呼号" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "在快速日志字段中按 '回车键' 后应执行的操作?" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "台址快速切换" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." @@ -14974,152 +15227,152 @@ msgstr "" "在主菜单中显示台址快速切换功能。您可以在设置台站页面将台址设置为“喜爱的”来增" "加可快速切换的台址。" -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "主菜单显示 UTC 时间" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "在菜单显示当前 UTC 时间" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "地图设置" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "图标" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "不显示" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "未显示" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "QSO (默认)" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "QSO (已确认)" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "(如设置 No,显示为 QSO,默认)" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "显示定位地图" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "上一个 QSL 方式" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "选择要在上一个 QSO 部分中显示的 QSL 方式。" -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "仪表盘设置" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "选择要在仪表板上显示的最新 QSO 的数量。" -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "选择要在仪表板上显示的最新的 QSO 。" -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "显示首页地图" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "地图右侧" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "选择是否在首页显示地图" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "仪表盘通知栏" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "禁用仪表板上的全局通知横幅。" -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "太阳和传播数据仪表盘" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "这会切换仪表板上的太阳和传播数据显示。" -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "在 QSO 页面显示标识代号栏" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "启用后在 QSO 页面显示(非通用页面)。" -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "在线 QSL 请求(OQRS)设置" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "全局文本" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "该文本是一个可选文本,可以显示在 OQRS 页面的顶部。" -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "分组搜索" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "关闭" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "开启" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "当此选项打开时,所有具有 OQRS 活动的电台位置将同时搜索。" -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "在分组搜索结果中显示台站名称" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "如果分组搜索被启用,台站名称将会显示在表格当中。" -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "自动 OQRS 匹配" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -15127,67 +15380,67 @@ msgstr "" "如果此功能启用,系统将自动进行OQRS匹配,并尝试将传入的请求与现有日志自动匹" "配。" -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "对于直接请求的自动OQRS匹配" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "如果此功能启用,直接请求将自动进行OQRS匹配。" -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "默认值" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "默认频段和 QSL 确认方式设置" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "默认频段" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "默认 QSL 方式" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "第三方服务" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "Logbook of The World (LoTW) 用户名" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "Logbook of The World (LoTW) 密码" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "登录测试" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "eQSL.cc 用户名" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "eQSL.cc 密码" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "Clublog" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "Clublog 密码" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -15196,44 +15449,44 @@ msgstr "" "如在 Clublog 启用了双因素验证,则需要在 Clublog 为 Wavelog 创建一个 App. " "Password,创建地址 %s %s。" -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "插件" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "On-Air 插件" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "注意:为了使用这个插件,你至少需要设置一个 CAT 电台并使其正常工作。" -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "当激活时,插件将可以从 %s 访问。" -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "展示 “上次出现” 时间" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "这个设置控制是否在插件上显示 “上次出现” 时间。" -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "仅显示最近更新的电台" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "不,显示所有电台" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -15243,79 +15496,79 @@ msgstr "" "如果您配置了多个 CAT 无线电,则此设置控制小部件是否应显示用户的所有电台,还是" "仅显示最近更新的电台。如果您只有一个电台,则此设置无效。" -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "QSO 小部件" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "显示确切通联时间" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "此设置控制 QSO 小部件中是否显示确切的通联时间。" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "其它" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "上传 AMSAT" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "上传卫星状态到" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "Mastodon 服务器" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "Mastodon 地址" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "您的 Mastodon 服务器地址,例如 %s" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "启用 Winkeyer 功能" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "Wavelog 对 Winkeyer 的支持是实验性的,请在使用前阅读说明 %s。" -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "Private Feed Key" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "在 %s 查看个人资料。" -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "只显示可通联的过境" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -15323,7 +15576,7 @@ msgstr "" "如果启用,仅显示基于在 hams.at 设置好的位置信息计算过境,需要设置好 Private " "Feed Key。" -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "保存账户更改" @@ -15981,6 +16234,10 @@ msgstr "提交请求" msgid "Rcvd" msgstr "收" +#, php-format +#~ msgid "You're not logged in. Please %slogin%s" +#~ msgstr "请前往 %s这里%s 登录" + #~ msgid "CFD Export" #~ msgstr "CFD 导出" diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index c5f78189f..501204d66 100644 --- a/assets/lang_src/messages.pot +++ b/assets/lang_src/messages.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -76,11 +76,11 @@ msgstr "" #: application/controllers/Qsl.php:13 application/controllers/Qsl.php:49 #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 -#: application/controllers/Qso.php:22 application/controllers/Qso.php:187 -#: application/controllers/Qso.php:318 application/controllers/Qso.php:339 -#: application/controllers/Qso.php:362 application/controllers/Qso.php:662 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:291 -#: application/controllers/Radio.php:317 application/controllers/Radio.php:333 +#: application/controllers/Qso.php:22 application/controllers/Qso.php:195 +#: application/controllers/Qso.php:326 application/controllers/Qso.php:347 +#: application/controllers/Qso.php:370 application/controllers/Qso.php:670 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 +#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -112,11 +112,11 @@ msgstr "" #: application/controllers/Update.php:355 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 -#: application/controllers/User.php:376 application/controllers/User.php:377 -#: application/controllers/User.php:1010 application/controllers/User.php:1029 -#: application/controllers/User.php:1261 application/controllers/User.php:1403 -#: application/controllers/User.php:1621 application/controllers/User.php:1637 -#: application/controllers/User.php:1663 +#: application/controllers/User.php:379 application/controllers/User.php:380 +#: application/controllers/User.php:1023 application/controllers/User.php:1042 +#: application/controllers/User.php:1274 application/controllers/User.php:1416 +#: application/controllers/User.php:1634 application/controllers/User.php:1650 +#: application/controllers/User.php:1676 #: application/controllers/User_options.php:9 #: application/controllers/Usermode.php:15 #: application/controllers/Webadif.php:91 application/models/Club_model.php:52 @@ -329,8 +329,8 @@ msgstr "" #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 -#: application/views/qso/edit_ajax.php:401 application/views/qso/index.php:302 -#: application/views/qso/index.php:594 application/views/user/edit.php:682 +#: application/views/qso/edit_ajax.php:401 application/views/qso/index.php:335 +#: application/views/qso/index.php:627 application/views/user/edit.php:693 #: application/views/view_log/qso.php:466 msgid "DOK" msgstr "" @@ -349,7 +349,7 @@ msgstr "" #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 -#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:402 +#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:435 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 #: application/views/search/result.php:27 @@ -551,8 +551,8 @@ msgstr "" #: application/controllers/Awards.php:1224 #: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/useroptions.php:142 -#: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:286 -#: application/views/qso/index.php:580 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:319 +#: application/views/qso/index.php:613 application/views/user/edit.php:689 #: application/views/view_log/qso.php:431 #: application/views/view_log/qso.php:742 msgid "SIG" @@ -612,11 +612,11 @@ msgstr "" msgid "Bands" msgstr "" -#: application/controllers/Band.php:57 application/controllers/Mode.php:41 +#: application/controllers/Band.php:74 application/controllers/Mode.php:41 msgid "Create Mode" msgstr "" -#: application/controllers/Band.php:82 application/views/bands/index.php:158 +#: application/controllers/Band.php:99 application/views/bands/index.php:158 msgid "Edit Band" msgstr "" @@ -750,8 +750,8 @@ msgstr "" #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/edit.php:357 #: application/views/timeline/index.php:68 -#: application/views/update/index.php:16 application/views/user/edit.php:595 -#: application/views/user/edit.php:818 +#: application/views/update/index.php:16 application/views/user/edit.php:606 +#: application/views/user/edit.php:829 #: application/views/view_log/partial/log_ajax.php:222 #: application/views/view_log/qso.php:571 #: application/views/view_log/qso.php:576 @@ -884,7 +884,7 @@ msgstr "" #: application/views/logbookadvanced/useroptions.php:90 #: application/views/qso/edit_ajax.php:434 #: application/views/search/search_result_ajax.php:127 -#: application/views/user/edit.php:596 application/views/user/edit.php:826 +#: application/views/user/edit.php:607 application/views/user/edit.php:837 #: application/views/view_log/partial/log_ajax.php:225 #: application/views/view_log/qso.php:581 #: application/views/view_log/qso.php:586 @@ -1257,9 +1257,9 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:18 -#: application/views/qso/edit_ajax.php:39 application/views/qso/index.php:75 -#: application/views/timeline/index.php:56 application/views/user/edit.php:591 -#: application/views/user/edit.php:784 +#: application/views/qso/edit_ajax.php:39 application/views/qso/index.php:108 +#: application/views/timeline/index.php:56 application/views/user/edit.php:602 +#: application/views/user/edit.php:795 msgid "QSL" msgstr "" @@ -1295,8 +1295,8 @@ msgstr "" #: application/views/satellite/satinfo.php:13 #: application/views/search/search_result_ajax.php:301 #: application/views/search/search_result_ajax.php:316 -#: application/views/timeline/index.php:60 application/views/user/edit.php:592 -#: application/views/user/edit.php:794 application/views/view_log/qso.php:537 +#: application/views/timeline/index.php:60 application/views/user/edit.php:603 +#: application/views/user/edit.php:805 application/views/view_log/qso.php:537 #: application/views/view_log/qso.php:542 msgid "LoTW" msgstr "" @@ -1331,8 +1331,8 @@ msgstr "" #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:276 #: application/views/station_profile/edit.php:309 -#: application/views/timeline/index.php:64 application/views/user/edit.php:593 -#: application/views/user/edit.php:802 application/views/user/edit.php:876 +#: application/views/timeline/index.php:64 application/views/user/edit.php:604 +#: application/views/user/edit.php:813 application/views/user/edit.php:887 msgid "eQSL" msgstr "" @@ -1378,7 +1378,9 @@ msgstr "" #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 #: application/views/gridmap/index.php:104 -#: application/views/hamsat/index.php:33 application/views/kml/index.php:31 +#: application/views/hamsat/index.php:33 +#: application/views/interface_assets/footer.php:82 +#: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:12 #: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/index.php:764 @@ -1400,7 +1402,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:25 #: application/views/qslprint/qsolist.php:9 #: application/views/qso/components/previous_contacts.php:77 -#: application/views/qso/edit_ajax.php:121 application/views/qso/index.php:170 +#: application/views/qso/edit_ajax.php:121 application/views/qso/index.php:203 #: application/views/satellite/satinfo.php:7 #: application/views/search/cqzones_result.php:10 #: application/views/search/ituzones_result.php:10 @@ -1441,7 +1443,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:12 #: application/views/qso/components/previous_contacts.php:78 -#: application/views/qso/edit_ajax.php:143 application/views/qso/index.php:215 +#: application/views/qso/edit_ajax.php:143 application/views/qso/index.php:248 #: application/views/search/search_result_ajax.php:5 #: application/views/simplefle/index.php:159 #: application/views/user/edit.php:244 application/views/user/edit.php:267 @@ -1470,7 +1472,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:29 #: application/views/qslprint/qsolist.php:13 #: application/views/qso/components/previous_contacts.php:79 -#: application/views/qso/edit_ajax.php:148 application/views/qso/index.php:220 +#: application/views/qso/edit_ajax.php:148 application/views/qso/index.php:253 #: application/views/search/search_result_ajax.php:6 #: application/views/simplefle/index.php:160 #: application/views/user/edit.php:245 application/views/user/edit.php:268 @@ -1585,7 +1587,7 @@ msgstr "" #: application/views/qslcard/searchresult.php:83 #: application/views/qso/award_tabs.php:45 #: application/views/qso/components/previous_contacts.php:86 -#: application/views/qso/edit_ajax.php:157 application/views/qso/index.php:317 +#: application/views/qso/edit_ajax.php:157 application/views/qso/index.php:350 #: application/views/satellite/pass.php:46 #: application/views/satellite/pass.php:85 #: application/views/search/cqzones_result.php:12 @@ -1695,7 +1697,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:10 #: application/views/qso/components/previous_contacts.php:88 -#: application/views/qso/edit_ajax.php:85 application/views/qso/index.php:185 +#: application/views/qso/edit_ajax.php:85 application/views/qso/index.php:218 #: application/views/search/cqzones_result.php:11 #: application/views/search/ituzones_result.php:11 #: application/views/search/lotw_unconfirmed_result.php:9 @@ -1733,7 +1735,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:11 #: application/views/qso/components/previous_contacts.php:89 -#: application/views/qso/edit_ajax.php:73 application/views/qso/index.php:203 +#: application/views/qso/edit_ajax.php:73 application/views/qso/index.php:236 #: application/views/search/search_result_ajax.php:16 #: application/views/user/edit.php:242 application/views/user/edit.php:265 #: application/views/user/edit.php:288 application/views/user/edit.php:311 @@ -1775,13 +1777,13 @@ msgstr "" #: application/views/awards/wae/index.php:175 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:772 +#: application/views/interface_assets/footer.php:789 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:252 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 -#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:411 +#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:444 #: application/views/station_profile/create.php:77 #: application/views/station_profile/edit.php:109 #: application/views/stationsetup/linkedlocations.php:17 @@ -1811,7 +1813,7 @@ msgstr "" #: application/views/interface_assets/header.php:494 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 -#: application/views/user/edit.php:848 application/views/visitor/index.php:328 +#: application/views/user/edit.php:859 application/views/visitor/index.php:328 msgid "Logbook of the World" msgstr "" @@ -1914,7 +1916,7 @@ msgid "Note" msgstr "" #: application/controllers/Notes.php:128 application/views/notes/edit.php:20 -#: application/views/notes/view.php:47 application/views/qso/index.php:732 +#: application/views/notes/view.php:47 application/views/qso/index.php:765 msgid "Edit Note" msgstr "" @@ -2214,19 +2216,19 @@ msgstr "" msgid "Print Requested QSLs" msgstr "" -#: application/controllers/Qso.php:112 +#: application/controllers/Qso.php:120 msgid "Add QSO" msgstr "" -#: application/controllers/Qso.php:723 +#: application/controllers/Qso.php:731 msgid "You have to be logged in to access this URL." msgstr "" -#: application/controllers/Qso.php:729 +#: application/controllers/Qso.php:737 msgid "Call Transfer" msgstr "" -#: application/controllers/Qso.php:736 +#: application/controllers/Qso.php:744 msgid "No callsign provided." msgstr "" @@ -2238,7 +2240,7 @@ msgstr "" #: application/controllers/Radio.php:41 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:67 #: application/views/contesting/index.php:157 -#: application/views/qso/index.php:350 +#: application/views/qso/index.php:383 msgid "Radio" msgstr "" @@ -2256,7 +2258,7 @@ msgid "Options" msgstr "" #: application/controllers/Radio.php:50 application/views/debug/index.php:312 -#: application/views/qso/index.php:772 +#: application/views/qso/index.php:808 msgid "Settings" msgstr "" @@ -2266,7 +2268,7 @@ msgstr "" #: application/controllers/Radio.php:98 #: application/views/contesting/index.php:162 -#: application/views/qso/index.php:355 +#: application/views/qso/index.php:388 msgid "last updated" msgstr "" @@ -2283,8 +2285,8 @@ msgstr "" #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:248 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:632 -#: application/views/interface_assets/footer.php:641 +#: application/views/interface_assets/footer.php:649 +#: application/views/interface_assets/footer.php:658 #: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:718 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 @@ -2303,11 +2305,11 @@ msgstr "" #: application/views/club/permissions.php:304 #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:63 -#: application/views/interface_assets/footer.php:2912 -#: application/views/interface_assets/footer.php:2930 -#: application/views/interface_assets/footer.php:2951 -#: application/views/interface_assets/footer.php:2969 +#: application/views/interface_assets/footer.php:62 +#: application/views/interface_assets/footer.php:3419 +#: application/views/interface_assets/footer.php:3437 +#: application/views/interface_assets/footer.php:3458 +#: application/views/interface_assets/footer.php:3476 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:734 #: application/views/lotw_views/index.php:128 @@ -2479,7 +2481,7 @@ msgstr "" #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 #: application/views/logbookadvanced/edit.php:18 -#: application/views/qslprint/index.php:20 application/views/qso/index.php:338 +#: application/views/qslprint/index.php:20 application/views/qso/index.php:371 #: application/views/search/search_result_ajax.php:18 #: application/views/station_profile/create.php:311 #: application/views/station_profile/edit.php:466 @@ -2495,7 +2497,7 @@ msgid "Duplicate Station Location:" msgstr "" #: application/controllers/Station.php:221 -#: application/controllers/User.php:1284 application/controllers/User.php:1534 +#: application/controllers/User.php:1297 application/controllers/User.php:1547 #, php-format msgid "Please check value for grid locator (%s)" msgstr "" @@ -2520,7 +2522,7 @@ msgstr "" #: application/controllers/Stationsetup.php:156 #: application/controllers/Stationsetup.php:177 #: application/controllers/Stationsetup.php:478 -#: application/views/qso/index.php:707 application/views/simplefle/index.php:39 +#: application/views/qso/index.php:740 application/views/simplefle/index.php:39 #: application/views/widgets/on_air.php:102 msgid "Error" msgstr "" @@ -2558,8 +2560,9 @@ msgstr "" #: application/views/station_profile/edit.php:344 #: application/views/station_profile/edit.php:401 #: application/views/stationsetup/stationsetup.php:79 -#: application/views/user/edit.php:480 application/views/user/edit.php:489 -#: application/views/user/edit.php:635 application/views/user/edit.php:645 +#: application/views/user/edit.php:440 application/views/user/edit.php:491 +#: application/views/user/edit.php:500 application/views/user/edit.php:646 +#: application/views/user/edit.php:656 msgid "Disabled" msgstr "" @@ -2609,7 +2612,7 @@ msgstr "" #: application/controllers/Stationsetup.php:396 #: application/views/interface_assets/header.php:119 -#: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:53 +#: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:86 #: application/views/simplefle/index.php:28 #: application/views/stationsetup/stationsetup.php:168 #: application/views/user/index.php:82 application/views/user/index.php:86 @@ -2856,98 +2859,98 @@ msgstr "" msgid "Add User" msgstr "" -#: application/controllers/User.php:314 +#: application/controllers/User.php:316 #, php-format msgid "Username %s already in use!" msgstr "" -#: application/controllers/User.php:317 +#: application/controllers/User.php:319 #, php-format msgid "E-mail %s already in use!" msgstr "" -#: application/controllers/User.php:320 +#: application/controllers/User.php:322 msgid "Invalid Password!" msgstr "" -#: application/controllers/User.php:324 +#: application/controllers/User.php:326 #, php-format msgid "User %s added!" msgstr "" -#: application/controllers/User.php:328 +#: application/controllers/User.php:330 msgid "Users" msgstr "" -#: application/controllers/User.php:425 +#: application/controllers/User.php:428 #: application/views/club/permissions.php:253 msgid "Edit User" msgstr "" -#: application/controllers/User.php:945 application/controllers/User.php:948 +#: application/controllers/User.php:958 application/controllers/User.php:961 #, php-format msgid "User %s edited" msgstr "" -#: application/controllers/User.php:1013 +#: application/controllers/User.php:1026 msgid "Profile" msgstr "" -#: application/controllers/User.php:1078 +#: application/controllers/User.php:1091 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "" -#: application/controllers/User.php:1117 +#: application/controllers/User.php:1130 msgid "This is not allowed!" msgstr "" -#: application/controllers/User.php:1154 application/controllers/User.php:1167 +#: application/controllers/User.php:1167 application/controllers/User.php:1180 msgid "Login failed. Try again." msgstr "" -#: application/controllers/User.php:1175 +#: application/controllers/User.php:1188 #: application/views/interface_assets/header.php:394 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "" -#: application/controllers/User.php:1213 +#: application/controllers/User.php:1226 msgid "" "You can't login to a clubstation directly. Use your personal account instead." msgstr "" -#: application/controllers/User.php:1216 +#: application/controllers/User.php:1229 msgid "" "Your account is locked, due to too many failed login-attempts. Please reset " "your password." msgstr "" -#: application/controllers/User.php:1220 +#: application/controllers/User.php:1233 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " "Only administrators are currently allowed to log in." msgstr "" -#: application/controllers/User.php:1223 +#: application/controllers/User.php:1236 msgid "Incorrect username or password!" msgstr "" -#: application/controllers/User.php:1248 +#: application/controllers/User.php:1261 #, php-format msgid "User %s logged out." msgstr "" -#: application/controllers/User.php:1264 +#: application/controllers/User.php:1277 #: application/views/oqrs/request_grouped.php:16 #: application/views/user/modals/first_login_wizard.php:26 msgid "Station Name" msgstr "" -#: application/controllers/User.php:1265 application/views/debug/index.php:599 +#: application/controllers/User.php:1278 application/views/debug/index.php:599 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:61 #: application/views/station_profile/edit.php:77 @@ -2957,128 +2960,128 @@ msgstr "" msgid "Station Callsign" msgstr "" -#: application/controllers/User.php:1266 +#: application/controllers/User.php:1279 #: application/views/station_profile/create.php:72 #: application/views/station_profile/edit.php:100 #: application/views/user/modals/first_login_wizard.php:42 msgid "Station DXCC" msgstr "" -#: application/controllers/User.php:1267 +#: application/controllers/User.php:1280 msgid "Station CQ Zone" msgstr "" -#: application/controllers/User.php:1268 +#: application/controllers/User.php:1281 msgid "Station ITU Zone" msgstr "" -#: application/controllers/User.php:1269 +#: application/controllers/User.php:1282 #: application/views/user/modals/first_login_wizard.php:91 msgid "Station Locator" msgstr "" -#: application/controllers/User.php:1292 +#: application/controllers/User.php:1305 #, php-format msgid "" "Station created successfully! Welcome to Wavelog! To complete your station " "setup, click %shere%s." msgstr "" -#: application/controllers/User.php:1295 +#: application/controllers/User.php:1308 msgid "Station setup failed! Please set up your station manually." msgstr "" -#: application/controllers/User.php:1312 +#: application/controllers/User.php:1325 msgid "Password Reset is disabled on the Demo!" msgstr "" -#: application/controllers/User.php:1326 +#: application/controllers/User.php:1339 msgid "Forgot Password" msgstr "" -#: application/controllers/User.php:1377 +#: application/controllers/User.php:1390 #: application/views/user/modals/more_actions_modal.php:88 msgid "Email settings are incorrect." msgstr "" -#: application/controllers/User.php:1381 application/controllers/User.php:1386 +#: application/controllers/User.php:1394 application/controllers/User.php:1399 msgid "Password Reset Processed." msgstr "" -#: application/controllers/User.php:1487 +#: application/controllers/User.php:1500 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "" -#: application/controllers/User.php:1508 +#: application/controllers/User.php:1521 #, php-format msgid "" "Couldn't set account to this username. Please try another one than \"%s\"." msgstr "" -#: application/controllers/User.php:1517 +#: application/controllers/User.php:1530 #, php-format msgid "" "Couldn't set account to this email. Please try another address than \"%s\"." msgstr "" -#: application/controllers/User.php:1556 +#: application/controllers/User.php:1569 #, php-format msgid "" "You currently can't impersonate another user. You need to set %s to %s in " "your config.php!" msgstr "" -#: application/controllers/User.php:1570 +#: application/controllers/User.php:1583 #: application/views/user/modals/admin_impersonate_modal.php:36 msgid "" "You currently can't impersonate another user. Please change the " "encryption_key in your config.php file first!" msgstr "" -#: application/controllers/User.php:1577 +#: application/controllers/User.php:1590 msgid "Invalid Hash" msgstr "" -#: application/controllers/User.php:1590 +#: application/controllers/User.php:1603 msgid "The impersonation hash is too old. Please try again." msgstr "" -#: application/controllers/User.php:1597 +#: application/controllers/User.php:1610 msgid "" "You can't impersonate another user while you're not logged in as the source " "user" msgstr "" -#: application/controllers/User.php:1603 +#: application/controllers/User.php:1616 msgid "There was a problem with your session. Please try again." msgstr "" -#: application/controllers/User.php:1610 +#: application/controllers/User.php:1623 msgid "The requested user to impersonate does not exist" msgstr "" -#: application/controllers/User.php:1631 +#: application/controllers/User.php:1644 msgid "" "Could not determine the correct permission level for the clubstation. Try " "again after re-login." msgstr "" -#: application/controllers/User.php:1676 application/controllers/User.php:1688 -#: application/controllers/User.php:1694 application/controllers/User.php:1703 -#: application/controllers/User.php:1711 +#: application/controllers/User.php:1689 application/controllers/User.php:1701 +#: application/controllers/User.php:1707 application/controllers/User.php:1716 +#: application/controllers/User.php:1724 msgid "Ups.. Something went wrong. Try to log back in." msgstr "" -#: application/controllers/User.php:1717 +#: application/controllers/User.php:1730 msgid "" "The ability to return quickly has been disabled after the security hash " "expired. Please log in again." msgstr "" -#: application/controllers/User.php:1733 +#: application/controllers/User.php:1746 #, php-format msgid "" "You have been logged out of the account %s. Welcome back, %s, to your " @@ -3388,7 +3391,7 @@ msgstr "" msgid "Contacts" msgstr "" -#: application/models/Note.php:8 application/views/qso/index.php:61 +#: application/models/Note.php:8 application/views/qso/index.php:94 #: application/views/statistics/index.php:46 #: application/views/user/edit.php:168 msgid "General" @@ -3575,8 +3578,8 @@ msgstr "" #: application/views/gridmap/index.php:107 #: application/views/gridmap/index.php:121 #: application/views/interface_assets/footer.php:46 -#: application/views/interface_assets/footer.php:1802 -#: application/views/interface_assets/footer.php:1941 +#: application/views/interface_assets/footer.php:2309 +#: application/views/interface_assets/footer.php:2448 #: 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 @@ -3621,7 +3624,7 @@ msgstr "" #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 -#: application/views/user/edit.php:768 +#: application/views/user/edit.php:779 #: application/views/visitor/layout/footer.php:172 msgid "All" msgstr "" @@ -3697,7 +3700,7 @@ msgstr "" #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:47 application/views/kml/index.php:80 #: application/views/logbookadvanced/index.php:314 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:478 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:511 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 #: application/views/view_log/qso.php:239 @@ -3711,7 +3714,7 @@ msgstr "" #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:48 application/views/kml/index.php:81 #: application/views/logbookadvanced/index.php:315 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:479 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:512 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 #: application/views/view_log/qso.php:242 @@ -3725,7 +3728,7 @@ msgstr "" #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:49 application/views/kml/index.php:82 #: application/views/logbookadvanced/index.php:316 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:480 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:513 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 #: application/views/view_log/qso.php:245 @@ -3739,7 +3742,7 @@ msgstr "" #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:50 application/views/kml/index.php:83 #: application/views/logbookadvanced/index.php:317 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:481 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:514 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 #: application/views/view_log/qso.php:248 @@ -3753,7 +3756,7 @@ msgstr "" #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:51 application/views/kml/index.php:84 #: application/views/logbookadvanced/index.php:318 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:482 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:515 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 #: application/views/view_log/qso.php:251 @@ -3767,7 +3770,7 @@ msgstr "" #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:52 application/views/kml/index.php:85 #: application/views/logbookadvanced/index.php:319 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:483 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:516 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 #: application/views/view_log/qso.php:254 @@ -3781,7 +3784,7 @@ msgstr "" #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:53 application/views/kml/index.php:86 #: application/views/logbookadvanced/index.php:320 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:484 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:517 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 #: application/views/view_log/qso.php:257 @@ -3795,7 +3798,7 @@ msgstr "" #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:54 application/views/kml/index.php:87 #: application/views/logbookadvanced/index.php:321 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:485 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:518 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 #: application/views/view_log/qso.php:260 @@ -3809,7 +3812,7 @@ msgstr "" #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:55 application/views/kml/index.php:88 #: application/views/logbookadvanced/index.php:322 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:486 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:519 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 #: application/views/view_log/qso.php:263 @@ -3823,7 +3826,7 @@ msgstr "" #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:56 application/views/kml/index.php:89 #: application/views/logbookadvanced/index.php:323 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:487 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:520 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 #: application/views/view_log/qso.php:266 @@ -3837,7 +3840,7 @@ msgstr "" #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:57 application/views/kml/index.php:90 #: application/views/logbookadvanced/index.php:324 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:488 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:521 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 #: application/views/view_log/qso.php:269 @@ -3851,7 +3854,7 @@ msgstr "" #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:58 application/views/kml/index.php:91 #: application/views/logbookadvanced/index.php:325 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:489 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:522 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 #: application/views/view_log/qso.php:272 @@ -3865,7 +3868,7 @@ msgstr "" #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:59 application/views/kml/index.php:92 #: application/views/logbookadvanced/index.php:326 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:490 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:523 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 #: application/views/view_log/qso.php:275 @@ -3879,7 +3882,7 @@ msgstr "" #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:60 application/views/kml/index.php:93 #: application/views/logbookadvanced/index.php:327 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:491 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:524 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 #: application/views/view_log/qso.php:278 @@ -3893,7 +3896,7 @@ msgstr "" #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:61 application/views/kml/index.php:94 #: application/views/logbookadvanced/index.php:328 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:492 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:525 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 #: application/views/view_log/qso.php:281 @@ -3907,7 +3910,7 @@ msgstr "" #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:62 application/views/kml/index.php:95 #: application/views/logbookadvanced/index.php:329 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:493 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:526 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 #: application/views/view_log/qso.php:284 @@ -3921,7 +3924,7 @@ msgstr "" #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:63 application/views/kml/index.php:96 #: application/views/logbookadvanced/index.php:330 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:494 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:527 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 #: application/views/view_log/qso.php:287 @@ -3935,7 +3938,7 @@ msgstr "" #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:64 application/views/kml/index.php:97 #: application/views/logbookadvanced/index.php:331 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:495 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:528 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 #: application/views/view_log/qso.php:290 @@ -4048,7 +4051,7 @@ msgstr "" #: application/views/awards/wapc/index.php:56 #: application/views/awards/was/index.php:68 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:165 application/views/user/edit.php:810 +#: application/views/gridmap/index.php:165 application/views/user/edit.php:821 msgid "QRZ.com" msgstr "" @@ -4151,7 +4154,7 @@ msgstr "" #: application/views/qslprint/index.php:24 #: application/views/qslprint/qslprint.php:22 #: application/views/qslprint/qsolist.php:6 -#: application/views/qso/edit_ajax.php:64 application/views/qso/index.php:157 +#: application/views/qso/edit_ajax.php:64 application/views/qso/index.php:190 #: application/views/reg1test/index.php:33 #: application/views/search/cqzones.php:35 #: application/views/search/cqzones_result.php:9 @@ -4259,8 +4262,8 @@ msgstr "" #: application/views/qslcard/index.php:41 #: application/views/qslcard/searchresult.php:4 #: application/views/qslprint/qslprint.php:23 -#: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:97 -#: application/views/qso/index.php:133 application/views/satellite/pass.php:50 +#: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:130 +#: application/views/qso/index.php:166 application/views/satellite/pass.php:50 #: application/views/satellite/skedtable.php:7 #: application/views/search/cqzones_result.php:7 #: application/views/search/ituzones_result.php:7 @@ -4300,7 +4303,7 @@ msgstr "" #: application/views/qslcard/index.php:42 #: application/views/qslcard/searchresult.php:6 #: application/views/qslprint/qslprint.php:24 -#: application/views/qslprint/qsolist.php:8 application/views/qso/index.php:138 +#: application/views/qslprint/qsolist.php:8 application/views/qso/index.php:171 #: application/views/search/cqzones_result.php:8 #: application/views/search/ituzones_result.php:8 #: application/views/search/search_result_ajax.php:91 @@ -4444,8 +4447,8 @@ msgstr "" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:592 -#: application/views/interface_assets/footer.php:2674 +#: application/views/interface_assets/footer.php:609 +#: application/views/interface_assets/footer.php:3181 msgid "DANGER" msgstr "" @@ -4814,7 +4817,7 @@ msgstr "" #: application/views/club/permissions.php:297 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:49 -#: application/views/interface_assets/footer.php:627 +#: application/views/interface_assets/footer.php:644 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:97 #: application/views/options/dxcluster.php:67 @@ -5137,7 +5140,7 @@ msgstr "" #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:308 -#: application/views/qso/index.php:451 +#: application/views/qso/index.php:484 #: application/views/search/cqzones_result.php:13 #: application/views/station_profile/create.php:110 #: application/views/station_profile/edit.php:157 @@ -5282,7 +5285,7 @@ msgstr "" #: application/views/awards/iota/index.php:62 #: application/views/awards/itu/index.php:57 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2653 +#: application/views/interface_assets/footer.php:3160 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -5308,7 +5311,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:739 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 -#: application/views/search/filter.php:43 application/views/user/edit.php:686 +#: application/views/search/filter.php:43 application/views/user/edit.php:697 msgid "Reset" msgstr "" @@ -5539,7 +5542,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:408 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 -#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:426 +#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:459 #: application/views/view_log/qso.php:356 msgid "Antarctica" msgstr "" @@ -5552,7 +5555,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:407 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 -#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:425 +#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:458 #: application/views/view_log/qso.php:353 msgid "Africa" msgstr "" @@ -5565,7 +5568,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:410 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 -#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:427 +#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:460 #: application/views/view_log/qso.php:359 msgid "Asia" msgstr "" @@ -5578,7 +5581,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:411 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 -#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:428 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:461 #: application/views/view_log/qso.php:362 msgid "Europe" msgstr "" @@ -5591,7 +5594,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:409 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 -#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:429 +#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:462 #: application/views/view_log/qso.php:365 msgid "North America" msgstr "" @@ -5604,7 +5607,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:412 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 -#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:431 +#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:464 #: application/views/view_log/qso.php:371 msgid "South America" msgstr "" @@ -5617,7 +5620,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:413 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 -#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:430 +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:463 #: application/views/view_log/qso.php:368 msgid "Oceania" msgstr "" @@ -5878,7 +5881,7 @@ msgstr "" #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:58 #: application/views/lotw/satupdate.php:7 -#: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:226 +#: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:259 #: application/views/satellite/satinfo.php:6 #: application/views/search/result.php:16 #: application/views/search/search_result_ajax.php:19 @@ -5906,7 +5909,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:827 #: application/views/logbookadvanced/useroptions.php:118 #: application/views/lookup/index.php:8 application/views/qso/edit_ajax.php:316 -#: application/views/qso/index.php:461 +#: application/views/qso/index.php:494 #: application/views/search/ituzones_result.php:13 #: application/views/station_profile/create.php:124 #: application/views/station_profile/edit.php:174 @@ -6029,10 +6032,10 @@ msgid "Fields taken for this Award: POTA_REF (must contain Park-Reference)" msgstr "" #: application/views/awards/pota/index.php:32 -#: application/views/qso/index.php:274 application/views/qso/index.php:568 +#: application/views/qso/index.php:307 application/views/qso/index.php:601 #: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:276 -#: application/views/user/edit.php:674 application/views/view_log/qso.php:409 +#: application/views/user/edit.php:685 application/views/view_log/qso.php:409 #: application/views/view_log/qso.php:735 msgid "POTA Reference(s)" msgstr "" @@ -6232,7 +6235,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:866 #: application/views/logbookadvanced/useroptions.php:170 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 -#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:422 +#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:455 #: application/views/view_log/qso.php:348 msgid "Continent" msgstr "" @@ -6463,10 +6466,10 @@ msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" msgstr "" #: application/views/awards/wwff/index.php:32 -#: application/views/qso/index.php:262 application/views/qso/index.php:555 +#: application/views/qso/index.php:295 application/views/qso/index.php:588 #: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:263 -#: application/views/user/edit.php:670 application/views/view_log/qso.php:402 +#: application/views/user/edit.php:681 application/views/view_log/qso.php:402 #: application/views/view_log/qso.php:728 msgid "WWFF Reference" msgstr "" @@ -6524,7 +6527,7 @@ msgstr "" #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 -#: application/views/qso/index.php:352 +#: application/views/qso/index.php:385 msgid "None" msgstr "" @@ -6542,7 +6545,6 @@ msgstr "" #: application/views/bandmap/list.php:70 #: application/views/contesting/index.php:160 -#: application/views/qso/index.php:353 msgid "WebSocket (Requires WLGate>1.1.10)" msgstr "" @@ -6560,14 +6562,17 @@ msgid "Worked, not Confirmed" msgstr "" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "" @@ -6854,7 +6859,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "" @@ -6986,7 +6991,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7009,12 +7014,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "" @@ -7049,7 +7054,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7072,12 +7077,12 @@ msgstr "" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "" @@ -7406,6 +7411,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7437,8 +7606,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "" @@ -7652,7 +7821,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "" @@ -7763,7 +7932,7 @@ msgid "Reset QSO" msgstr "" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "" @@ -7798,9 +7967,9 @@ msgstr "" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "" @@ -7937,7 +8106,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "" @@ -8053,7 +8222,7 @@ msgid "" msgstr "" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8089,7 +8258,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8174,7 +8343,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9297,10 +9466,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9389,7 +9558,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "" #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "" @@ -9398,7 +9567,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "" @@ -9451,171 +9620,240 @@ msgstr "" msgid "Duplication is disabled for Contacts notes" msgstr "" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -9623,62 +9861,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "" @@ -9866,7 +10099,7 @@ msgstr "" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" @@ -10272,7 +10505,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "" @@ -10392,7 +10625,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10413,7 +10646,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10432,7 +10665,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10447,49 +10680,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "" @@ -10651,7 +10884,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10688,7 +10921,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -10921,7 +11154,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "" @@ -11272,7 +11505,7 @@ msgid "Note Contents" msgstr "" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "" @@ -11704,7 +11937,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -11723,12 +11956,12 @@ msgstr "" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -11752,7 +11985,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12319,11 +12552,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -12333,25 +12566,25 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "" @@ -12364,38 +12597,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12404,8 +12637,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "" @@ -12426,7 +12659,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12470,7 +12703,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "" @@ -12507,155 +12740,167 @@ msgstr "" msgid "Invalid value for antenna elevation:" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "" -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "" @@ -13943,7 +14188,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14611,303 +14856,311 @@ msgstr "" msgid "Number of previous contacts displayed on QSO page." msgstr "" +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "" -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." msgstr "" -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." msgstr "" -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "" -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "" -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -14915,85 +15168,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr ""

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 diff --git a/application/locale/sv_SE/LC_MESSAGES/messages.po b/application/locale/sv_SE/LC_MESSAGES/messages.po index 4cffdf6bf..48c0b5df6 100644 --- a/application/locale/sv_SE/LC_MESSAGES/messages.po +++ b/application/locale/sv_SE/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-30 07:40+0000\n" +"POT-Creation-Date: 2025-10-30 15:57+0000\n" "PO-Revision-Date: 2025-10-27 04:27+0000\n" "Last-Translator: \"Jorgen Dahl, NU1T\" \n" "Language-Team: Swedish 1.1.10)" msgstr "WebSocket (Kräver WLGate>1.1.10)" @@ -6913,14 +6915,17 @@ msgid "Worked, not Confirmed" msgstr "Kontaktade, ej Bekräftade" #: application/views/bandmap/list.php:114 +#: application/views/components/dxwaterfall.php:32 msgid "Phone" msgstr "Foni" #: application/views/bandmap/list.php:115 +#: application/views/components/dxwaterfall.php:34 msgid "CW" msgstr "CW" #: application/views/bandmap/list.php:116 +#: application/views/components/dxwaterfall.php:36 msgid "Digi" msgstr "Digi" @@ -7220,7 +7225,7 @@ msgstr "" #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 #: application/views/oqrs/showrequests.php:31 -#: application/views/qso/index.php:310 +#: application/views/qso/index.php:343 #: application/views/station_profile/edit.php:96 msgid "Location" msgstr "QTH" @@ -7355,7 +7360,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:688 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7378,12 +7383,12 @@ msgstr "" #: application/views/user/edit.php:367 application/views/user/edit.php:378 #: application/views/user/edit.php:389 application/views/user/edit.php:399 #: application/views/user/edit.php:409 application/views/user/edit.php:419 -#: application/views/user/edit.php:448 application/views/user/edit.php:459 -#: application/views/user/edit.php:569 application/views/user/edit.php:623 -#: application/views/user/edit.php:948 application/views/user/edit.php:964 -#: application/views/user/edit.php:972 application/views/user/edit.php:992 -#: application/views/user/edit.php:1021 application/views/user/edit.php:1053 -#: application/views/user/edit.php:1078 +#: application/views/user/edit.php:459 application/views/user/edit.php:470 +#: application/views/user/edit.php:580 application/views/user/edit.php:634 +#: application/views/user/edit.php:959 application/views/user/edit.php:975 +#: application/views/user/edit.php:983 application/views/user/edit.php:1003 +#: application/views/user/edit.php:1032 application/views/user/edit.php:1064 +#: application/views/user/edit.php:1089 msgid "Yes" msgstr "Ja" @@ -7418,7 +7423,7 @@ msgstr "Ja" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:654 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:687 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7441,12 +7446,12 @@ msgstr "Ja" #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:390 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 -#: application/views/user/edit.php:449 application/views/user/edit.php:460 -#: application/views/user/edit.php:551 application/views/user/edit.php:555 -#: application/views/user/edit.php:570 application/views/user/edit.php:625 -#: application/views/user/edit.php:947 application/views/user/edit.php:963 -#: application/views/user/edit.php:991 application/views/user/edit.php:1022 -#: application/views/user/edit.php:1052 application/views/user/edit.php:1077 +#: application/views/user/edit.php:460 application/views/user/edit.php:471 +#: application/views/user/edit.php:562 application/views/user/edit.php:566 +#: application/views/user/edit.php:581 application/views/user/edit.php:636 +#: application/views/user/edit.php:958 application/views/user/edit.php:974 +#: application/views/user/edit.php:1002 application/views/user/edit.php:1033 +#: application/views/user/edit.php:1063 application/views/user/edit.php:1088 msgid "No" msgstr "Nej" @@ -7789,6 +7794,170 @@ msgstr "" msgid "Download QSLs from Clublog" msgstr "Ladda ner QSL från Clublog" +#: application/views/components/dxwaterfall.php:14 +msgid "Tune to spot frequency and start logging QSO" +msgstr "" + +#: application/views/components/dxwaterfall.php:15 +msgid "Cycle through nearby spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:16 +msgid "spots" +msgstr "" + +#: application/views/components/dxwaterfall.php:17 +msgid "New Continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:18 +msgid "New DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:19 +msgid "New Callsign" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "First spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:20 +msgid "Previous spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:21 +msgid "No spots at lower frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Last spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:22 +msgid "Next spot" +msgstr "" + +#: application/views/components/dxwaterfall.php:23 +msgid "No spots at higher frequency" +msgstr "" + +#: application/views/components/dxwaterfall.php:24 +msgid "No spots available" +msgstr "" + +#: application/views/components/dxwaterfall.php:25 +msgid "Cycle through unworked continents/DXCC" +msgstr "" + +#: application/views/components/dxwaterfall.php:26 +msgid "DX Hunter" +msgstr "" + +#: application/views/components/dxwaterfall.php:27 +msgid "No unworked continents/DXCC on this band" +msgstr "" + +#: application/views/components/dxwaterfall.php:28 +msgid "Click to cycle or wait 1.5s to apply" +msgstr "" + +#: application/views/components/dxwaterfall.php:29 +msgid "Change spotter continent" +msgstr "" + +#: application/views/components/dxwaterfall.php:30 +msgid "Filter by mode" +msgstr "" + +#: application/views/components/dxwaterfall.php:31 +msgid "Toggle Phone mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:33 +msgid "Toggle CW mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:35 +msgid "Toggle Digital mode filter" +msgstr "" + +#: application/views/components/dxwaterfall.php:37 +msgid "Zoom out" +msgstr "" + +#: application/views/components/dxwaterfall.php:38 +msgid "Reset zoom to default (3)" +msgstr "" + +#: application/views/components/dxwaterfall.php:39 +msgid "Zoom in" +msgstr "" + +#: application/views/components/dxwaterfall.php:40 +msgid "Downloading DX Cluster data" +msgstr "" + +#: application/views/components/dxwaterfall.php:41 +msgid "Comment: " +msgstr "" + +#: application/views/components/dxwaterfall.php:42 +msgid "modes:" +msgstr "" + +#: application/views/components/dxwaterfall.php:43 +msgid "OUT OF BANDPLAN" +msgstr "" + +#: application/views/components/dxwaterfall.php:44 +msgid "Changing radio frequency..." +msgstr "" + +#: application/views/components/dxwaterfall.php:45 +msgid "INVALID" +msgstr "" + +#: application/views/components/dxwaterfall.php:46 +msgid "Click to turn on the DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:47 +msgid "Turn off DX Waterfall" +msgstr "" + +#: application/views/components/dxwaterfall.php:48 +msgid "Please wait" +msgstr "" + +#: application/views/components/dxwaterfall.php:49 +msgid "Cycle label size" +msgstr "" + +#: application/views/components/dxwaterfall.php:50 +msgid "X-Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:51 +msgid "Small" +msgstr "" + +#: application/views/components/dxwaterfall.php:52 +msgid "Medium" +msgstr "" + +#: application/views/components/dxwaterfall.php:53 +msgid "Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:54 +msgid "X-Large" +msgstr "" + +#: application/views/components/dxwaterfall.php:55 +msgid "by:" +msgstr "" + #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" @@ -7820,8 +7989,8 @@ msgstr "Inga kommande aktiveringar hittades. Vänligen återkom senare." #: application/views/logbookadvanced/index.php:420 #: application/views/logbookadvanced/index.php:854 #: application/views/logbookadvanced/useroptions.php:154 -#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:71 -#: application/views/qso/index.php:327 application/views/view_log/qso.php:228 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:104 +#: application/views/qso/index.php:360 application/views/view_log/qso.php:228 msgid "Comment" msgstr "Notering" @@ -8039,7 +8208,7 @@ msgstr "Serienummer + Rutnätsruta + Utbyte" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:425 msgid "Operator Callsign" msgstr "Operatörens anropssignal" @@ -8152,7 +8321,7 @@ msgid "Reset QSO" msgstr "Återställ QSO" #: application/views/contesting/index.php:240 -#: application/views/qso/index.php:706 +#: application/views/qso/index.php:739 msgid "Save QSO" msgstr "Spara QSO" @@ -8187,9 +8356,9 @@ msgstr "Identifierare" #: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:346 #: application/views/stationsetup/stationsetup.php:76 -#: application/views/user/edit.php:481 application/views/user/edit.php:490 -#: application/views/user/edit.php:634 application/views/user/edit.php:644 -#: application/views/user/edit.php:944 +#: application/views/user/edit.php:439 application/views/user/edit.php:492 +#: application/views/user/edit.php:501 application/views/user/edit.php:645 +#: application/views/user/edit.php:655 application/views/user/edit.php:955 msgid "Enabled" msgstr "Aktiverad" @@ -8335,7 +8504,7 @@ msgstr "Endast QSOs med SOTA-information kommer att exporteras!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:508 msgid "Propagation Mode" msgstr "Utbredningstyp" @@ -8463,7 +8632,7 @@ msgstr "" "QSO Slutdatum för minst ett av dina certifikat håller på att överskridas" #: application/views/dashboard/index.php:297 -#: application/views/qso/index.php:851 +#: application/views/qso/index.php:887 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8499,7 +8668,7 @@ msgstr "Behövs" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:651 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:684 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8584,7 +8753,7 @@ msgstr "Mottagen" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:689 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -9801,10 +9970,10 @@ msgid "QSL Date" msgstr "QSL-datum" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2913 -#: application/views/interface_assets/footer.php:2931 -#: application/views/interface_assets/footer.php:2952 -#: application/views/interface_assets/footer.php:2970 +#: application/views/interface_assets/footer.php:3420 +#: application/views/interface_assets/footer.php:3438 +#: application/views/interface_assets/footer.php:3459 +#: application/views/interface_assets/footer.php:3477 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:779 msgid "View" @@ -9902,7 +10071,7 @@ msgid "Warning! Are you sure you want delete QSO with " msgstr "Varning! Är du säker på att du vill ta bort QSO med " #: application/views/interface_assets/footer.php:42 -#: application/views/user/edit.php:522 +#: application/views/user/edit.php:533 msgid "Colors" msgstr "Färger" @@ -9911,7 +10080,7 @@ msgid "Worked not confirmed" msgstr "Kontaktade, ej Bekräftade" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:700 +#: application/views/qso/index.php:733 msgid "Clear" msgstr "Rensa" @@ -9964,151 +10133,220 @@ msgstr "Sortering" msgid "Duplication is disabled for Contacts notes" msgstr "Duplicering är inaktiverad för kontaktsanteckningar" -#: application/views/interface_assets/footer.php:62 -#: application/views/interface_assets/footer.php:64 +#: application/views/interface_assets/footer.php:63 msgid "Duplicate" msgstr "Duplicera" -#: application/views/interface_assets/footer.php:65 +#: application/views/interface_assets/footer.php:64 #: application/views/notes/view.php:48 msgid "Delete Note" msgstr "Radera anteckning" -#: application/views/interface_assets/footer.php:66 +#: application/views/interface_assets/footer.php:65 msgid "Duplicate Note" msgstr "Duplicera Anteckning" -#: application/views/interface_assets/footer.php:67 +#: application/views/interface_assets/footer.php:66 msgid "Delete this note?" msgstr "Radera den här anteckningen?" -#: application/views/interface_assets/footer.php:68 +#: application/views/interface_assets/footer.php:67 msgid "Duplicate this note?" msgstr "Duplicera denna anteckning?" -#: application/views/interface_assets/footer.php:69 +#: application/views/interface_assets/footer.php:68 msgid "Duplication Disabled" msgstr "Duplicering inaktiverad" -#: application/views/interface_assets/footer.php:70 +#: application/views/interface_assets/footer.php:69 msgid "No notes were found" msgstr "Inga anteckningar hittades" -#: application/views/interface_assets/footer.php:71 +#: application/views/interface_assets/footer.php:70 msgid "No notes for this callsign" msgstr "Inga anteckningar för denna anropssignal" -#: application/views/interface_assets/footer.php:72 +#: application/views/interface_assets/footer.php:71 msgid "Callsign Note" msgstr "Anropssignalanteckning" -#: application/views/interface_assets/footer.php:73 +#: application/views/interface_assets/footer.php:72 msgid "Note deleted successfully" msgstr "Anteckning raderad framgångsrikt" -#: application/views/interface_assets/footer.php:74 +#: application/views/interface_assets/footer.php:73 msgid "Note created successfully" msgstr "Anteckning skapad framgångsrikt" -#: application/views/interface_assets/footer.php:75 +#: application/views/interface_assets/footer.php:74 msgid "Note saved successfully" msgstr "Anteckning sparad framgångsrikt" -#: application/views/interface_assets/footer.php:76 +#: application/views/interface_assets/footer.php:75 msgid "Error saving note" msgstr "Fel vid sparande av anteckning" +#: application/views/interface_assets/footer.php:76 +msgid "live" +msgstr "" + #: application/views/interface_assets/footer.php:77 -msgid "Location is fetched from provided gridsquare" +msgid "polling" msgstr "" #: application/views/interface_assets/footer.php:78 +msgid "" +"Periodic polling is slow. When operating locally, WebSockets are a more " +"convenient way to control your radio in real-time." +msgstr "" + +#: application/views/interface_assets/footer.php:79 +msgid "TX" +msgstr "" + +#: application/views/interface_assets/footer.php:80 +msgid "RX" +msgstr "" + +#: application/views/interface_assets/footer.php:81 +msgid "TX/RX" +msgstr "" + +#: application/views/interface_assets/footer.php:83 +msgid "Power" +msgstr "" + +#: application/views/interface_assets/footer.php:84 +msgid "Radio connection error" +msgstr "" + +#: application/views/interface_assets/footer.php:85 +msgid "Connection lost, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:86 +msgid "Radio connection timeout" +msgstr "" + +#: application/views/interface_assets/footer.php:87 +msgid "Data is stale, please select another radio." +msgstr "" + +#: application/views/interface_assets/footer.php:88 +msgid "You're not logged in. Please log in." +msgstr "" + +#: application/views/interface_assets/footer.php:89 +msgid "Radio Tuning Failed" +msgstr "" + +#: application/views/interface_assets/footer.php:90 +msgid "Failed to tune radio to" +msgstr "" + +#: application/views/interface_assets/footer.php:91 +msgid "CAT interface not responding. Please check your radio connection." +msgstr "" + +#: application/views/interface_assets/footer.php:92 +msgid "No CAT URL configured for this radio" +msgstr "" + +#: application/views/interface_assets/footer.php:93 +msgid "WebSocket Radio" +msgstr "" + +#: application/views/interface_assets/footer.php:94 +msgid "Location is fetched from provided gridsquare" +msgstr "" + +#: application/views/interface_assets/footer.php:95 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" -#: application/views/interface_assets/footer.php:159 +#: application/views/interface_assets/footer.php:176 #: application/views/interface_assets/header.php:513 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "Versionsinformation" -#: application/views/interface_assets/footer.php:213 -#: application/views/interface_assets/footer.php:228 +#: application/views/interface_assets/footer.php:230 +#: application/views/interface_assets/footer.php:245 msgid "Failed to load the modal. Please try again." msgstr "Det gick inte att ladda modalen. Försök igen." -#: application/views/interface_assets/footer.php:482 +#: application/views/interface_assets/footer.php:499 msgid "Description:" msgstr "Beskrivning:" -#: application/views/interface_assets/footer.php:485 +#: application/views/interface_assets/footer.php:502 msgid "Query description" msgstr "Frågebeskrivning" -#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:518 msgid "Your query has been saved!" msgstr "Din förfrågan har sparats!" -#: application/views/interface_assets/footer.php:503 +#: application/views/interface_assets/footer.php:520 #: application/views/search/filter.php:49 msgid "Edit queries" msgstr "Redigera frågor" -#: application/views/interface_assets/footer.php:505 +#: application/views/interface_assets/footer.php:522 msgid "Stored queries:" msgstr "Lagrade frågor:" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:527 #: application/views/search/filter.php:63 msgid "Run Query" msgstr "Kör fråga" -#: application/views/interface_assets/footer.php:522 -#: application/views/interface_assets/footer.php:658 -#: application/views/interface_assets/footer.php:728 +#: application/views/interface_assets/footer.php:539 +#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:745 msgid "Stored Queries" msgstr "Lagrade frågor" -#: application/views/interface_assets/footer.php:527 -#: application/views/interface_assets/footer.php:733 +#: application/views/interface_assets/footer.php:544 +#: application/views/interface_assets/footer.php:750 msgid "You need to make a query before you search!" msgstr "Du måste göra en förfrågan innan du söker!" -#: application/views/interface_assets/footer.php:548 -#: application/views/interface_assets/footer.php:685 +#: application/views/interface_assets/footer.php:565 +#: application/views/interface_assets/footer.php:702 #: application/views/search/filter.php:82 msgid "Export to ADIF" msgstr "Exportera till ADIF" -#: application/views/interface_assets/footer.php:549 -#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:566 +#: application/views/interface_assets/footer.php:703 #: application/views/search/cqzones.php:40 #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" msgstr "Öppna i den avancerade loggboken" -#: application/views/interface_assets/footer.php:593 +#: application/views/interface_assets/footer.php:610 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Varning! Är du säker på att du vill ta bort denna sparade fråga?" -#: application/views/interface_assets/footer.php:607 +#: application/views/interface_assets/footer.php:624 msgid "The stored query has been deleted!" msgstr "Den sparade frågan har raderats!" -#: application/views/interface_assets/footer.php:616 +#: application/views/interface_assets/footer.php:633 msgid "The stored query could not be deleted. Please try again!" msgstr "Den sparade frågan kunde inte raderas. Försök igen!" -#: application/views/interface_assets/footer.php:642 +#: application/views/interface_assets/footer.php:659 msgid "The query description has been updated!" msgstr "Frågebeskrivningen har uppdaterats!" -#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:663 msgid "Something went wrong with the save. Please try again!" msgstr "Något gick fel med sparandet. Försök igen!" -#: application/views/interface_assets/footer.php:775 +#: application/views/interface_assets/footer.php:792 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -10118,20 +10356,20 @@ msgstr "" "vilken DXCC som är korrekt för denna specifika plats. Om du är säker, " "ignorera denna varning." -#: application/views/interface_assets/footer.php:828 +#: application/views/interface_assets/footer.php:845 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " msgstr "Anropssignal: " -#: application/views/interface_assets/footer.php:829 +#: application/views/interface_assets/footer.php:846 msgid "Count: " msgstr "Antal: " -#: application/views/interface_assets/footer.php:830 +#: application/views/interface_assets/footer.php:847 msgid "Grids: " msgstr "Rutnätsrutor: " -#: application/views/interface_assets/footer.php:1138 +#: application/views/interface_assets/footer.php:1165 #: application/views/logbookadvanced/index.php:13 #: application/views/logbookadvanced/useroptions.php:210 #: application/views/satellite/flightpath.php:11 @@ -10139,62 +10377,57 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Rutnätsrutor" -#: application/views/interface_assets/footer.php:1559 -#, php-format -msgid "You're not logged in. Please %slogin%s" -msgstr "Du är inte inloggad. Vänligen %slogga in%s" - -#: application/views/interface_assets/footer.php:1729 -#: application/views/interface_assets/footer.php:1733 -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1873 -#: application/views/interface_assets/footer.php:1877 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2236 +#: application/views/interface_assets/footer.php:2240 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2384 +#: application/views/interface_assets/footer.php:2387 msgid "grid square" msgstr "rutnätsruta" -#: application/views/interface_assets/footer.php:1736 -#: application/views/interface_assets/footer.php:1880 +#: application/views/interface_assets/footer.php:2243 +#: application/views/interface_assets/footer.php:2387 msgid "Total count" msgstr "Totalt antal" -#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:3162 msgid "QSL Card for " msgstr "QSL-kort för " -#: application/views/interface_assets/footer.php:2675 +#: application/views/interface_assets/footer.php:3182 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Varning! Är du säker på att du vill ta bort detta QSL-kort?" -#: application/views/interface_assets/footer.php:2715 +#: application/views/interface_assets/footer.php:3222 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL-kort" -#: application/views/interface_assets/footer.php:2717 +#: application/views/interface_assets/footer.php:3224 msgid "eQSL Card for " msgstr "eQSL-kort för " -#: application/views/interface_assets/footer.php:2924 -#: application/views/interface_assets/footer.php:2963 +#: application/views/interface_assets/footer.php:3431 +#: application/views/interface_assets/footer.php:3470 #: application/views/view_log/qso.php:769 msgid "QSL image file" msgstr "QSL-bildfil" -#: application/views/interface_assets/footer.php:2943 +#: application/views/interface_assets/footer.php:3450 msgid "Front QSL Card:" msgstr "Framsida QSL-kort:" -#: application/views/interface_assets/footer.php:2981 +#: application/views/interface_assets/footer.php:3488 msgid "Back QSL Card:" msgstr "Baksida QSL-kort:" -#: application/views/interface_assets/footer.php:2992 -#: application/views/interface_assets/footer.php:3017 +#: application/views/interface_assets/footer.php:3499 +#: application/views/interface_assets/footer.php:3524 msgid "Add additional QSOs to a QSL Card" msgstr "Lägg till ytterligare QSOs på ett QSL-kort" -#: application/views/interface_assets/footer.php:3028 +#: application/views/interface_assets/footer.php:3535 msgid "Something went wrong. Please try again!" msgstr "Något gick fel. Försök igen!" @@ -10382,7 +10615,7 @@ msgstr "Logg" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 -#: application/views/oqrs/index.php:28 application/views/user/edit.php:469 +#: application/views/oqrs/index.php:28 application/views/user/edit.php:480 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "Sök anropssignal" @@ -10796,7 +11029,7 @@ msgstr "Stationens uteffekt" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:468 #: application/views/view_log/qso.php:481 msgid "Region" msgstr "Region" @@ -10916,7 +11149,7 @@ msgstr "Verifierad" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:701 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10937,7 +11170,7 @@ msgstr "Direkt" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:702 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10956,7 +11189,7 @@ msgstr "Byrå" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:703 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10971,49 +11204,49 @@ msgstr "Elektroniskt" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:704 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Manager" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:471 msgid "NONE" msgstr "INGEN" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:472 msgid "African Italy" msgstr "Afrikanska Italien" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:473 msgid "Bear Island" msgstr "Bear Island" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:474 msgid "European Turkey" msgstr "Europeiska Turkiet" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:475 msgid "ITU Vienna" msgstr "ITU Wien" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:476 msgid "Kosovo" msgstr "Kosovo" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:477 msgid "Shetland Islands" msgstr "Shetlandsöarna" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:478 msgid "Sicily" msgstr "Sicilien" @@ -11186,7 +11419,7 @@ msgstr "QSL skickat" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:690 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -11223,7 +11456,7 @@ msgstr "Köad" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:691 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11456,7 +11689,7 @@ msgstr "De" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 -#: application/views/timeline/index.php:72 application/views/user/edit.php:594 +#: application/views/timeline/index.php:72 application/views/user/edit.php:605 msgid "QRZ" msgstr "QRZ" @@ -11823,7 +12056,7 @@ msgid "Note Contents" msgstr "Innehåll" #: application/views/notes/add.php:67 application/views/notes/edit.php:63 -#: application/views/qso/index.php:733 +#: application/views/qso/index.php:766 msgid "Save Note" msgstr "Spara anteckning" @@ -12297,7 +12530,7 @@ msgstr "Finns det någon extra information vi behöver känna till?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:634 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:488 msgid "E-mail" @@ -12316,12 +12549,12 @@ msgstr "Skicka inte in loggförfrågan" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:57 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 #: application/views/search/cqzones_result.php:16 #: application/views/search/ituzones_result.php:16 #: application/views/search/lotw_unconfirmed_result.php:11 #: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:507 +#: application/views/user/edit.php:518 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 #: application/views/view_log/qso.php:668 @@ -12345,7 +12578,7 @@ msgstr "Station" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:710 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12937,11 +13170,11 @@ msgstr "RX Frekvens" msgid "RX Band" msgstr "RX-band" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:420 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Ange effekt i watt, enbart med siffror." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:418 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:707 msgid "Transmit Power (W)" @@ -12951,25 +13184,25 @@ msgstr "Effekt (W)" msgid "Used for VUCC MultiGrids" msgstr "Används för VUCC MultiGrids" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:532 msgid "Antenna Path" msgstr "Antennväg" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:535 #: application/views/view_log/qso.php:168 msgid "Greyline" msgstr "Grålinje" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:536 msgid "Other" msgstr "Annat" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:537 #: application/views/view_log/qso.php:159 msgid "Short Path" msgstr "Kort väg" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:538 #: application/views/view_log/qso.php:162 msgid "Long Path" msgstr "Lång väg" @@ -12982,38 +13215,38 @@ msgstr "Sat Namn" msgid "Sat Mode" msgstr "Sat Trafiksätt" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:626 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:659 msgid "Antenna Azimuth (°)" msgstr "Antennens azimut (°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:661 msgid "Antenna azimuth in decimal degrees." msgstr "Antennens azimuth i decimalgrader." -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:632 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:665 msgid "Antenna Elevation (°)" msgstr "Antennens elevation (°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:667 msgid "Antenna elevation in decimal degrees." msgstr "Antennens elevation i decimalgrader." -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:552 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "Station County" -#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:586 application/views/user/edit.php:678 +#: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:326 +#: application/views/qso/index.php:619 application/views/user/edit.php:689 #: application/views/view_log/qso.php:447 #: application/views/view_log/qso.php:747 msgid "SIG Info" msgstr "SIG Info" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:643 -#: application/views/qso/index.php:687 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:676 +#: application/views/qso/index.php:720 msgid "Note: Gets exported to third-party services." msgstr "Obs: Exporteras till tredjepartstjänster." @@ -13022,8 +13255,8 @@ msgid "Sent Method" msgstr "Skickat metod" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:664 -#: application/views/qso/index.php:667 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:697 +#: application/views/qso/index.php:700 msgid "Method" msgstr "Metod" @@ -13044,7 +13277,7 @@ msgstr "Verifierad (Match)" msgid "Received Method" msgstr "Mottaget metod" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:684 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:717 msgid "Get the default message for eQSL, for this station." msgstr "Hämta standardmeddelandet för eQSL, för denna station." @@ -13088,7 +13321,7 @@ msgstr "Spara ändringar" msgid "TimeOff is less than TimeOn" msgstr "Tid Av är mindre än Tid På" -#: application/views/qso/index.php:30 application/views/qso/index.php:837 +#: application/views/qso/index.php:30 application/views/qso/index.php:873 msgid "Previous Contacts" msgstr "Föregående QSOs" @@ -13125,113 +13358,125 @@ msgstr "LoTW-användare. Senaste uppladdningen var för %x dagar sedan." msgid "Invalid value for antenna elevation:" msgstr "Ogiltigt värde för antenn elevation:" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "LIVE" msgstr "LIVE" -#: application/views/qso/index.php:53 +#: application/views/qso/index.php:86 msgid "POST" msgstr "EFTER" -#: application/views/qso/index.php:66 +#: application/views/qso/index.php:99 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" msgstr "Satelit" -#: application/views/qso/index.php:81 +#: application/views/qso/index.php:114 msgid "Add Band/Mode to Favs" msgstr "Lägg till Band/Trafiksätt till favoriterna" -#: application/views/qso/index.php:102 +#: application/views/qso/index.php:135 msgid "Time on" msgstr "Tid på" -#: application/views/qso/index.php:114 +#: application/views/qso/index.php:147 msgid "Time off" msgstr "Tid av" -#: application/views/qso/index.php:157 +#: application/views/qso/index.php:190 msgid "Search DXCluster for latest Spot" msgstr "Sök DXCluster efter senaste Spot" -#: application/views/qso/index.php:234 application/views/qso/index.php:525 +#: application/views/qso/index.php:267 application/views/qso/index.php:558 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 -#: application/views/user/edit.php:662 application/views/view_log/qso.php:388 +#: application/views/user/edit.php:673 application/views/view_log/qso.php:388 #: application/views/view_log/qso.php:714 msgid "IOTA Reference" msgstr "IOTA-referens" -#: application/views/qso/index.php:250 application/views/qso/index.php:542 +#: application/views/qso/index.php:283 application/views/qso/index.php:575 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 -#: application/views/user/edit.php:666 application/views/view_log/qso.php:395 +#: application/views/user/edit.php:677 application/views/view_log/qso.php:395 #: application/views/view_log/qso.php:721 msgid "SOTA Reference" msgstr "SOTA-referens" -#: application/views/qso/index.php:361 application/views/view_log/qso.php:107 +#: application/views/qso/index.php:386 +msgid "Live - " +msgstr "" + +#: application/views/qso/index.php:386 +msgid "WebSocket (Requires WLGate>=1.1.10)" +msgstr "" + +#: application/views/qso/index.php:388 +msgid "Polling - " +msgstr "" + +#: application/views/qso/index.php:394 application/views/view_log/qso.php:107 msgid "Frequency (RX)" msgstr "Frekvens (RX)" -#: application/views/qso/index.php:366 +#: application/views/qso/index.php:399 msgid "Band (RX)" msgstr "Band (RX)" -#: application/views/qso/index.php:544 +#: application/views/qso/index.php:577 msgid "For example: GM/NS-001." msgstr "Exempel: GM/NS-001." -#: application/views/qso/index.php:557 +#: application/views/qso/index.php:590 msgid "For example: DLFF-0069." msgstr "Exempel: SMFF-0069." -#: application/views/qso/index.php:570 +#: application/views/qso/index.php:603 msgid "For example: PA-0150. Multiple values allowed." msgstr "Exempel: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:582 +#: application/views/qso/index.php:615 msgid "For example: GMA" msgstr "Exempel: GMA" -#: application/views/qso/index.php:588 +#: application/views/qso/index.php:621 msgid "For example: DA/NW-357" msgstr "Exempel: DA/NW-357" -#: application/views/qso/index.php:596 +#: application/views/qso/index.php:629 msgid "For example: Q03" msgstr "Exempel: Q03" -#: application/views/qso/index.php:603 +#: application/views/qso/index.php:636 msgid "E-mail address of QSO-partner" msgstr "E-postadress till QSO-partner" -#: application/views/qso/index.php:610 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:302 msgid "Satellite Name" msgstr "Satellitnamn" -#: application/views/qso/index.php:618 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:651 application/views/view_log/qso.php:316 msgid "Satellite Mode" msgstr "Satellite-mode" -#: application/views/qso/index.php:641 +#: application/views/qso/index.php:674 msgid "QSO Comment" msgstr "QSO-kommentar" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:717 msgid "QSL MSG" msgstr "QSL MSG" -#: application/views/qso/index.php:703 +#: application/views/qso/index.php:736 msgid "Reset to Default" msgstr "Återställ till standardinställningar" -#: application/views/qso/index.php:720 +#: application/views/qso/index.php:753 msgid "Callsign Notes" msgstr "Anropssignal Anteckningar" -#: application/views/qso/index.php:721 +#: application/views/qso/index.php:754 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." @@ -13239,43 +13484,43 @@ msgstr "" "Lagra privat information om din QSO-partner. Dessa anteckningar delas aldrig " "och exporteras aldrig till externa tjänster." -#: application/views/qso/index.php:768 +#: application/views/qso/index.php:804 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:770 +#: application/views/qso/index.php:806 msgid "Connect" msgstr "Anslut" -#: application/views/qso/index.php:798 +#: application/views/qso/index.php:834 msgid "CW Speed" msgstr "CW-hastighet" -#: application/views/qso/index.php:800 +#: application/views/qso/index.php:836 msgid "Stop" msgstr "Stopp" -#: application/views/qso/index.php:801 +#: application/views/qso/index.php:837 msgid "Tune" msgstr "Stämma av" -#: application/views/qso/index.php:802 +#: application/views/qso/index.php:838 msgid "Stop Tune" msgstr "Stoppa stämma av" -#: application/views/qso/index.php:807 +#: application/views/qso/index.php:843 msgid "Enter text..." msgstr "Ange text..." -#: application/views/qso/index.php:808 +#: application/views/qso/index.php:844 msgid "Send" msgstr "Sänd" -#: application/views/qso/index.php:820 +#: application/views/qso/index.php:856 msgid "Suggestions" msgstr "Förslag" -#: application/views/qso/index.php:827 +#: application/views/qso/index.php:863 msgid "Profile Picture" msgstr "Profilbild" @@ -14658,7 +14903,7 @@ msgid "Special Interest Group Information" msgstr "Information om specialintressegrupp" #: application/views/station_profile/edit.php:309 -#: application/views/user/edit.php:876 +#: application/views/user/edit.php:887 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Problem? Kolla %swiki%s." @@ -15387,19 +15632,27 @@ msgstr "POTA auto lookup gridsquare och namn för park." msgid "Number of previous contacts displayed on QSO page." msgstr "Antalet tidigare kontakter att visa på QSO-sidan." +#: application/views/user/edit.php:436 +msgid "DX Waterfall" +msgstr "" + #: application/views/user/edit.php:442 +msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." +msgstr "" + +#: application/views/user/edit.php:453 msgid "Menu Options" msgstr "Huvudmeny" -#: application/views/user/edit.php:445 +#: application/views/user/edit.php:456 msgid "Show notes in the main menu." msgstr "Visa anteckningar i huvudmenyn." -#: application/views/user/edit.php:456 +#: application/views/user/edit.php:467 msgid "Quicklog Field" msgstr "Snabblogg-fält" -#: application/views/user/edit.php:462 +#: application/views/user/edit.php:473 msgid "" "With this feature, you can log callsigns using the search field in the " "header." @@ -15407,24 +15660,24 @@ msgstr "" "Med den här funktionen kan du logga anropssignaler med hjälp av sökfältet i " "rubriken." -#: application/views/user/edit.php:466 +#: application/views/user/edit.php:477 msgid "Quicklog - Action on press Enter" msgstr "Snabblogg - Åtgärd vid tryck på Enter" -#: application/views/user/edit.php:470 +#: application/views/user/edit.php:481 msgid "Log Callsign" msgstr "Logga anropssignal" -#: application/views/user/edit.php:472 +#: application/views/user/edit.php:483 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "Vilken åtgärd ska utföras när Enter trycks i snabbloggfältet?" -#: application/views/user/edit.php:478 +#: application/views/user/edit.php:489 msgid "Station Locations Quickswitch" msgstr "Snabbväxling av stationsplatser" -#: application/views/user/edit.php:483 +#: application/views/user/edit.php:494 msgid "" "Show the Station Locations Quickswitch in the main menu. You can add " "locations by adding them to favourites at the station setup page." @@ -15433,137 +15686,137 @@ msgstr "" "platser genom att lägga till dem som favoriter på sidan med " "stationsinställningar." -#: application/views/user/edit.php:487 +#: application/views/user/edit.php:498 msgid "UTC Time in Menu" msgstr "UTC-tid i menyn" -#: application/views/user/edit.php:492 +#: application/views/user/edit.php:503 msgid "Show the current UTC Time in the menu" msgstr "Visa aktuell UTC-tid i menyn" -#: application/views/user/edit.php:503 +#: application/views/user/edit.php:514 msgid "Map Settings" msgstr "Kartinställningar" -#: application/views/user/edit.php:510 +#: application/views/user/edit.php:521 msgid "Icon" msgstr "Ikon" -#: application/views/user/edit.php:513 +#: application/views/user/edit.php:524 msgid "Not display" msgstr "Inte visa" -#: application/views/user/edit.php:517 +#: application/views/user/edit.php:528 msgid "Not displayed" msgstr "Inte visad" -#: application/views/user/edit.php:526 +#: application/views/user/edit.php:537 msgid "QSO (by default)" msgstr "QSO (som standard)" -#: application/views/user/edit.php:545 +#: application/views/user/edit.php:556 msgid "QSO (confirmed)" msgstr "QSO (bekräftad)" -#: application/views/user/edit.php:546 +#: application/views/user/edit.php:557 msgid "(If 'No', displayed as 'QSO (by default))'" msgstr "(Om 'Nej', visas som 'QSO (som standard))'" -#: application/views/user/edit.php:565 +#: application/views/user/edit.php:576 msgid "Show Locator" msgstr "Visa lokator" -#: application/views/user/edit.php:584 +#: application/views/user/edit.php:595 msgid "Previous QSL Type" msgstr "Tidigare QSL-typ" -#: application/views/user/edit.php:588 +#: application/views/user/edit.php:599 msgid "Select the type of QSL to show in the previous QSOs section." msgstr "Välj den typ av QSL som ska visas i föregående QSO-avsnitt." -#: application/views/user/edit.php:605 +#: application/views/user/edit.php:616 msgid "Dashboard Settings" msgstr "Instrumentpanelinställningar" -#: application/views/user/edit.php:609 +#: application/views/user/edit.php:620 msgid "Select the number of latest QSOs to be displayed on dashboard." msgstr "Välj antalet senaste QSOs som ska visas på instrumentpanelen." -#: application/views/user/edit.php:616 +#: application/views/user/edit.php:627 msgid "Choose the number of latest QSOs to be displayed on dashboard." msgstr "Välj antalet senaste QSOs som ska visas på instrumentpanelen." -#: application/views/user/edit.php:620 +#: application/views/user/edit.php:631 msgid "Show Dashboard Map" msgstr "Visa instrumentpanelkarta" -#: application/views/user/edit.php:624 +#: application/views/user/edit.php:635 msgid "Map at right" msgstr "Karta till höger" -#: application/views/user/edit.php:627 +#: application/views/user/edit.php:638 msgid "Choose whether to show map on dashboard or not" msgstr "Välj om kartan ska visas på instrumentpanelen eller inte" -#: application/views/user/edit.php:631 +#: application/views/user/edit.php:642 msgid "Dashboard Notification Banner" msgstr "Instrumentpanelens notifikations fält" -#: application/views/user/edit.php:637 +#: application/views/user/edit.php:648 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" "Detta gör det möjligt att inaktivera det globala notifikations fältet på " "instrumentpanelen." -#: application/views/user/edit.php:641 +#: application/views/user/edit.php:652 msgid "Dashboard solar and propagation data" msgstr "Instrumentpanel för sol- och vågutbredningsdata" -#: application/views/user/edit.php:647 +#: application/views/user/edit.php:658 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" "Detta växlar visningen av sol- och vågutbredningsdata på instrumentpanelen." -#: application/views/user/edit.php:655 +#: application/views/user/edit.php:666 msgid "Show Reference Fields on QSO Tab" msgstr "Visa referensfält på QSO-fliken" -#: application/views/user/edit.php:659 +#: application/views/user/edit.php:670 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" "De aktiverade objekten kommer att visas på QSO-fliken istället för på den " "allmänna fliken." -#: application/views/user/edit.php:697 +#: application/views/user/edit.php:708 msgid "Online QSL request (OQRS) settings" msgstr "Inställningar för online QSL-förfrågan (OQRS)" -#: application/views/user/edit.php:701 +#: application/views/user/edit.php:712 msgid "Global text" msgstr "Global text" -#: application/views/user/edit.php:703 +#: application/views/user/edit.php:714 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "Denna text är en valfri text som kan visas överst på OQRS-sidan." -#: application/views/user/edit.php:706 +#: application/views/user/edit.php:717 msgid "Grouped search" msgstr "Grupperad sökning" -#: application/views/user/edit.php:708 application/views/user/edit.php:717 -#: application/views/user/edit.php:726 application/views/user/edit.php:735 +#: application/views/user/edit.php:719 application/views/user/edit.php:728 +#: application/views/user/edit.php:737 application/views/user/edit.php:746 msgid "Off" msgstr "Av" -#: application/views/user/edit.php:709 application/views/user/edit.php:718 -#: application/views/user/edit.php:727 application/views/user/edit.php:736 +#: application/views/user/edit.php:720 application/views/user/edit.php:729 +#: application/views/user/edit.php:738 application/views/user/edit.php:747 msgid "On" msgstr "På" -#: application/views/user/edit.php:711 +#: application/views/user/edit.php:722 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -15571,11 +15824,11 @@ msgstr "" "När detta är på kommer alla stationsplatser med OQRS aktiv att sökas på en " "gång." -#: application/views/user/edit.php:715 +#: application/views/user/edit.php:726 msgid "Show station location name in grouped search results" msgstr "Visa stationsplatsens namn i grupperade sökresultat" -#: application/views/user/edit.php:720 +#: application/views/user/edit.php:731 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -15583,11 +15836,11 @@ msgstr "" "Om grupperad sökning är PÅ kan du bestämma om namnet på stationens plats ska " "visas i resultatlistan." -#: application/views/user/edit.php:724 +#: application/views/user/edit.php:735 msgid "Automatic OQRS matching" msgstr "Automatisk OQRS-matchning" -#: application/views/user/edit.php:729 +#: application/views/user/edit.php:740 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -15596,68 +15849,68 @@ msgstr "" "kommer att försöka matcha inkommande förfrågningar med befintliga loggar " "automatiskt." -#: application/views/user/edit.php:733 +#: application/views/user/edit.php:744 msgid "Automatic OQRS matching for direct requests" msgstr "Automatisk OQRS-matchning för direkta förfrågningar" -#: application/views/user/edit.php:738 +#: application/views/user/edit.php:749 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" "Om detta är på, kommer automatisk OQRS-matchning för direktförfrågan att ske." -#: application/views/user/edit.php:754 +#: application/views/user/edit.php:765 msgid "Default Values" msgstr "Standardvärden" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:773 msgid "Settings for Default Band and Confirmation" msgstr "Inställningar för standardband och bekräftelse" -#: application/views/user/edit.php:765 +#: application/views/user/edit.php:776 msgid "Default Band" msgstr "Standard Band" -#: application/views/user/edit.php:775 +#: application/views/user/edit.php:786 msgid "Default QSL-Methods" msgstr "Standard-QSL-metoder" -#: application/views/user/edit.php:840 +#: application/views/user/edit.php:851 msgid "Third Party Services" msgstr "Tredjepartstjänster" -#: application/views/user/edit.php:851 +#: application/views/user/edit.php:862 msgid "Logbook of The World (LoTW) Username" msgstr "Logbook of The World (LoTW) Användarnamn" -#: application/views/user/edit.php:857 +#: application/views/user/edit.php:868 msgid "Logbook of The World (LoTW) Password" msgstr "Logbook of The World (LoTW) Lösenord" -#: application/views/user/edit.php:861 +#: application/views/user/edit.php:872 msgid "Test Login" msgstr "Testa inloggning" -#: application/views/user/edit.php:879 +#: application/views/user/edit.php:890 msgid "eQSL.cc Username" msgstr "eQSL.cc Användarnamn" -#: application/views/user/edit.php:885 +#: application/views/user/edit.php:896 msgid "eQSL.cc Password" msgstr "eQSL.cc Lösenord" -#: application/views/user/edit.php:902 +#: application/views/user/edit.php:913 msgid "Club Log" msgstr "Club Log" -#: application/views/user/edit.php:905 +#: application/views/user/edit.php:916 msgid "Club Log Email" msgstr "Club Log E-post" -#: application/views/user/edit.php:911 +#: application/views/user/edit.php:922 msgid "Club Log Password" msgstr "Club Log Lösenord" -#: application/views/user/edit.php:916 +#: application/views/user/edit.php:927 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -15667,15 +15920,15 @@ msgstr "" "att använda Clublog i Wavelog. Besök %sdin Clublog-inställningssida%s för " "att göra det." -#: application/views/user/edit.php:933 +#: application/views/user/edit.php:944 msgid "Widgets" msgstr "Widgets" -#: application/views/user/edit.php:941 +#: application/views/user/edit.php:952 msgid "On-Air widget" msgstr "On-Air widget" -#: application/views/user/edit.php:951 +#: application/views/user/edit.php:962 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." @@ -15683,16 +15936,16 @@ msgstr "" "Observera: För att använda denna widget måste du ha minst en CAT-radio " "konfigurerad och fungerande." -#: application/views/user/edit.php:955 +#: application/views/user/edit.php:966 #, php-format msgid "When enabled, widget will be available at %s." msgstr "När den är aktiverad kommer widgeten att vara tillgänglig på %s." -#: application/views/user/edit.php:960 +#: application/views/user/edit.php:971 msgid "Display \"Last seen\" time" msgstr "Visa \"Senast sedd\" tid" -#: application/views/user/edit.php:966 +#: application/views/user/edit.php:977 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." @@ -15700,15 +15953,15 @@ msgstr "" "Denna inställning styr om tiden för 'Senast sedd' visas i widgeten eller " "inte." -#: application/views/user/edit.php:969 +#: application/views/user/edit.php:980 msgid "Display only most recently updated radio" msgstr "Visa endast den senast uppdaterade radion" -#: application/views/user/edit.php:973 +#: application/views/user/edit.php:984 msgid "No, show all radios" msgstr "Nej, visa alla radioapparater" -#: application/views/user/edit.php:975 +#: application/views/user/edit.php:986 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -15720,55 +15973,55 @@ msgstr "" "uppdaterade. Om du bara har en radio så har den här inställningen ingen " "effekt." -#: application/views/user/edit.php:985 +#: application/views/user/edit.php:996 msgid "QSOs widget" msgstr "QSO-widget" -#: application/views/user/edit.php:988 +#: application/views/user/edit.php:999 msgid "Display exact QSO time" msgstr "Visa exakt QSO-tid" -#: application/views/user/edit.php:994 +#: application/views/user/edit.php:1005 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" "Denna inställning styr om exakt QSO-tid ska visas i QSO-widgeten eller inte." -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1018 msgid "Miscellaneous" msgstr "Diverse" -#: application/views/user/edit.php:1015 +#: application/views/user/edit.php:1026 msgid "AMSAT Status Upload" msgstr "AMSAT Statusuppladdning" -#: application/views/user/edit.php:1018 +#: application/views/user/edit.php:1029 msgid "Upload status of SAT QSOs to" msgstr "Ladda upp status för SAT QSOs till" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1043 msgid "Mastodonserver" msgstr "Mastodonserver" -#: application/views/user/edit.php:1035 +#: application/views/user/edit.php:1046 msgid "URL of Mastodonserver" msgstr "URL till Mastodonserver" -#: application/views/user/edit.php:1037 +#: application/views/user/edit.php:1048 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "Huvud-URL för din Mastodon-server, t.ex. %s" -#: application/views/user/edit.php:1046 +#: application/views/user/edit.php:1057 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1049 +#: application/views/user/edit.php:1060 msgid "Winkeyer Features Enabled" msgstr "Winkeyer-funktioner aktiverade" -#: application/views/user/edit.php:1055 +#: application/views/user/edit.php:1066 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -15777,25 +16030,25 @@ msgstr "" "Winkeyer-stöd i Wavelog är mycket experimentellt. Läs först wikin på %s " "innan du aktiverar." -#: application/views/user/edit.php:1066 +#: application/views/user/edit.php:1077 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1069 +#: application/views/user/edit.php:1080 msgid "Private Feed Key" msgstr "Privat nyckel" -#: application/views/user/edit.php:1071 +#: application/views/user/edit.php:1082 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "Se din profil på %s." -#: application/views/user/edit.php:1074 +#: application/views/user/edit.php:1085 msgid "Show Workable Passes Only" msgstr "Visa endast användbara passeringar" -#: application/views/user/edit.php:1080 +#: application/views/user/edit.php:1091 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -15803,7 +16056,7 @@ msgstr "" "Om aktiverad visar endast användbara pass baserat på rutnätsrutan som anges " "i ditt hams.at-konto. Kräver att privat nyckel är konfigurerad." -#: application/views/user/edit.php:1092 +#: application/views/user/edit.php:1103 msgid "Save Account" msgstr "Spara kontoändringar" @@ -16494,6 +16747,10 @@ msgstr "Skicka förfrågan" msgid "Rcvd" msgstr "Mottagen" +#, php-format +#~ msgid "You're not logged in. Please %slogin%s" +#~ msgstr "Du är inte inloggad. Vänligen %slogga in%s" + #~ msgid "CFD Export" #~ msgstr "CFD-export" diff --git a/application/locale/tr_TR/LC_MESSAGES/messages.mo b/application/locale/tr_TR/LC_MESSAGES/messages.mo index 7b8e155abcca5272a66811942a4882217cf9a948..5064da4048a8fc2e90249e99c92b3ed4a426e5b8 100644 GIT binary patch delta 45680 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 Pr$u31`RXTpr&|9Hs1Bot delta 45776 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