diff --git a/application/config/config.sample.php b/application/config/config.sample.php index 552dad23f..15c3cb3c7 100644 --- a/application/config/config.sample.php +++ b/application/config/config.sample.php @@ -892,6 +892,19 @@ $config['max_login_attempts'] = 3; $config['enable_dxcluster_file_cache_band'] = false; $config['enable_dxcluster_file_cache_worked'] = false; +/* +|-------------------------------------------------------------------------- +| DXCluster Refresh Time +|-------------------------------------------------------------------------- +| This defines the how often the DXCluster spots are refreshed in seconds. Default is 30 seconds. +| Be careful with this and do not set it too low because depending on how many QSOs a user has it +| can cause a lot of load on the server. Also consider enabling a proper caching (file caches are +| not recommended for very large installations) to reduce the load on the server. +|-------------------------------------------------------------------------- + */ +$config['dxcluster_refresh_time'] = 30; + + /* |-------------------------------------------------------------------------- | Internal tools diff --git a/application/controllers/Activated_gridmap.php b/application/controllers/Activated_gridmap.php index f105f149f..4e09f162c 100644 --- a/application/controllers/Activated_gridmap.php +++ b/application/controllers/Activated_gridmap.php @@ -44,8 +44,8 @@ class Activated_gridmap extends CI_Controller { $footerData['scripts'] = [ 'assets/js/leaflet/geocoding.js', 'assets/js/leaflet/L.MaidenheadColouredGridMap.js', - 'assets/js/sections/gridmap.js?', - 'assets/js/bootstrap-multiselect.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/bootstrap-multiselect.js")), + 'assets/js/sections/gridmap.js', + 'assets/js/bootstrap-multiselect.js', ]; $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Activators.php b/application/controllers/Activators.php index 652833dc6..d1d8315bc 100644 --- a/application/controllers/Activators.php +++ b/application/controllers/Activators.php @@ -50,7 +50,7 @@ class Activators extends CI_Controller $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/activators.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/activators.js")), + 'assets/js/sections/activators.js', ]; $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Api.php b/application/controllers/Api.php index 2fa8af2eb..15ac5d883 100644 --- a/application/controllers/Api.php +++ b/application/controllers/Api.php @@ -962,7 +962,7 @@ class API extends CI_Controller { ]; $return['callsign'] = $lookup_callsign; - $dxccobj = new Dxcc(null); + $dxccobj = new Dxcc(); $callsign_dxcc_lookup = $dxccobj->dxcc_lookup($lookup_callsign, $date); $last_slash_pos = strrpos($lookup_callsign, '/'); @@ -1122,7 +1122,7 @@ class API extends CI_Controller { $return['callsign'] = $lookup_callsign; // Use Wavelog\Dxcc\Dxcc for faster in-memory lookup - $dxccobj = new Dxcc($date); + $dxccobj = new Dxcc(); $callsign_dxcc_lookup = $dxccobj->dxcc_lookup($lookup_callsign, $date); $return['dxcc_id'] = $callsign_dxcc_lookup['adif'] ?? ''; @@ -1309,4 +1309,55 @@ class API extends CI_Controller { return $url; } + /* ** + * List members of a clubstation + * API key needs to be of a club officer (permission level 9) + * returns array of club member details + */ + function list_clubmembers() { + header('Content-type: application/json'); + + $this->load->model('api_model'); + + // Decode JSON and store + $obj = json_decode(file_get_contents("php://input"), true); + if ($obj === NULL) { + http_response_code(400); + echo json_encode(['status' => 'failed', 'reason' => "wrong JSON"]); + return; + } + + if ($this->api_model->access($obj['key']) == "No Key Found" || $this->api_model->access($obj['key']) == "Key Disabled") { + http_response_code(401); + echo json_encode(['status' => 'error', 'message' => 'Auth Error, invalid key']); + return; + } + + $this->load->model('club_model'); + $userid = $this->api_model->key_userid($obj['key']); + $created_by = $this->api_model->key_created_by($obj['key']); + $club_perm = $this->club_model->get_permission_noui($userid,$created_by); + if (($userid == $created_by) || (($club_perm ?? 0) != 9)) { // not club officer + http_response_code(401); + echo json_encode(['status' => 'error', 'message' => 'Auth Error, not enough permissions for this operation']); + return; + } + + $memberlist = $this->club_model->get_club_members($userid); + if (!empty($memberlist)) { + foreach($memberlist as $member) { + $members[] = [ + 'callsign' => $member->user_callsign, + 'user_name' => $member->user_name, + 'p_level' => $member->p_level + ]; + } + http_response_code(200); + echo json_encode(['status' => 'successful', 'members' => $members]); + } else { + http_response_code(204); + echo json_encode(['status' => 'failed', 'reason' => "No club members found", 'members' => '']); + return; + } + } } diff --git a/application/controllers/Awards.php b/application/controllers/Awards.php index bdd98ac16..3379dc64a 100644 --- a/application/controllers/Awards.php +++ b/application/controllers/Awards.php @@ -277,7 +277,7 @@ class Awards extends CI_Controller { public function waja () { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/wajamap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/wajamap.js")), + 'assets/js/sections/wajamap.js', 'assets/js/leaflet/L.Maidenhead.js', ]; @@ -357,8 +357,8 @@ class Awards extends CI_Controller { public function jcc () { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/jcc.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/jcc.js")), - 'assets/js/sections/jccmap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/jccmap.js")) + 'assets/js/sections/jcc.js', + 'assets/js/sections/jccmap.js' ]; $this->load->model('jcc_model'); @@ -637,8 +637,8 @@ class Awards extends CI_Controller { public function cq() { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/cqmap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/cqmap_geojson.js")), - 'assets/js/sections/cqmap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/cqmap.js")) + 'assets/js/sections/cqmap_geojson.js', + 'assets/js/sections/cqmap.js' ]; $this->load->model('logbooks_model'); @@ -713,7 +713,7 @@ class Awards extends CI_Controller { public function was() { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/wasmap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/wasmap.js")), + 'assets/js/sections/wasmap.js', 'assets/js/leaflet/L.Maidenhead.js', ]; @@ -775,7 +775,7 @@ class Awards extends CI_Controller { public function rac() { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/racmap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/racmap.js")), + 'assets/js/sections/racmap.js', 'assets/js/leaflet/L.Maidenhead.js', ]; @@ -837,7 +837,7 @@ class Awards extends CI_Controller { public function helvetia() { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/helvetiamap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/helvetiamap.js")), + 'assets/js/sections/helvetiamap.js', 'assets/js/leaflet/L.Maidenhead.js', ]; @@ -1367,7 +1367,7 @@ class Awards extends CI_Controller { public function wap() { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/wapmap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/wapmap.js")), + 'assets/js/sections/wapmap.js', 'assets/js/leaflet/L.Maidenhead.js', ]; @@ -1895,7 +1895,7 @@ class Awards extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/wab.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/wab.js")) + 'assets/js/sections/wab.js' ]; // Render page @@ -1975,8 +1975,8 @@ class Awards extends CI_Controller { public function itu() { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/itumap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/itumap_geojson.js")), - 'assets/js/sections/itumap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/itumap.js")) + 'assets/js/sections/itumap_geojson.js', + 'assets/js/sections/itumap.js' ]; $this->load->model('logbooks_model'); @@ -2271,7 +2271,7 @@ class Awards extends CI_Controller { public function wpx () { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/wpx.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/wpx.js")), + 'assets/js/sections/wpx.js', ]; $this->load->model('wpx'); @@ -2385,7 +2385,7 @@ class Awards extends CI_Controller { public function pl_polska() { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/award_pl_polska.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/award_pl_polska.js")), + 'assets/js/sections/award_pl_polska.js', 'assets/js/leaflet/L.Maidenhead.js', ]; diff --git a/application/controllers/Band.php b/application/controllers/Band.php index 3afe7ef72..181287cef 100644 --- a/application/controllers/Band.php +++ b/application/controllers/Band.php @@ -36,7 +36,7 @@ class Band extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/bandedges.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/bandedges.js")), + 'assets/js/sections/bandedges.js', ]; // Render Page diff --git a/application/controllers/Bandmap.php b/application/controllers/Bandmap.php index 15788d870..8336fab4f 100644 --- a/application/controllers/Bandmap.php +++ b/application/controllers/Bandmap.php @@ -10,27 +10,6 @@ class Bandmap extends CI_Controller { $this->load->model('bands'); } - function index() { - $this->load->model('cat'); - $this->load->model('bands'); - $data['radios'] = $this->cat->radios(true); - $data['bands'] = $this->bands->get_user_bands_for_qso_entry(); - - $footerData = []; - $footerData['scripts'] = [ - 'assets/js/highcharts/highcharts.js', - 'assets/js/highcharts/timeline.js', - 'assets/js/highcharts/exporting.js', - 'assets/js/highcharts/accessibility.js', - 'assets/js/sections/bandmap.js', - ]; - - $data['page_title'] = __("DXCluster"); - $this->load->view('interface_assets/header', $data); - $this->load->view('bandmap/index'); - $this->load->view('interface_assets/footer', $footerData); - } - function list() { $this->load->model('cat'); $this->load->model('bands'); @@ -41,13 +20,13 @@ class Bandmap extends CI_Controller { $footerData = []; $footerData['scripts'] = [ 'assets/js/moment.min.js', - 'assets/js/datetime-moment.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/datetime-moment.js")), - 'assets/js/cat.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/cat.js")), - 'assets/js/leaflet/leaflet.geodesic.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/leaflet/leaflet.geodesic.js")), - 'assets/js/leaflet.polylineDecorator.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/leaflet.polylineDecorator.js")), - 'assets/js/leaflet/L.Terminator.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/leaflet/L.Terminator.js")), - 'assets/js/sections/callstats.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/callstats.js")), - 'assets/js/sections/bandmap_list.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/bandmap_list.js")), + 'assets/js/datetime-moment.js', + 'assets/js/cat.js', + 'assets/js/leaflet/leaflet.geodesic.js', + 'assets/js/leaflet.polylineDecorator.js', + 'assets/js/leaflet/L.Terminator.js', + 'assets/js/sections/callstats.js', + 'assets/js/sections/bandmap_list.js', ]; // Get Date format @@ -60,18 +39,20 @@ class Bandmap extends CI_Controller { } switch ($pageData['custom_date_format']) { - case "d/m/y": $pageData['custom_date_format'] = 'DD/MM/YY'; break; - case "d/m/Y": $pageData['custom_date_format'] = 'DD/MM/YYYY'; break; - case "m/d/y": $pageData['custom_date_format'] = 'MM/DD/YY'; break; - case "m/d/Y": $pageData['custom_date_format'] = 'MM/DD/YYYY'; break; - case "d.m.Y": $pageData['custom_date_format'] = 'DD.MM.YYYY'; break; - case "y/m/d": $pageData['custom_date_format'] = 'YY/MM/DD'; break; - case "Y-m-d": $pageData['custom_date_format'] = 'YYYY-MM-DD'; break; - case "M d, Y": $pageData['custom_date_format'] = 'MMM DD, YYYY'; break; - case "M d, y": $pageData['custom_date_format'] = 'MMM DD, YY'; break; - default: $pageData['custom_date_format'] = 'DD/MM/YYYY'; + case "d/m/y": $pageData['custom_date_format'] = 'DD/MM/YY'; break; + case "d/m/Y": $pageData['custom_date_format'] = 'DD/MM/YYYY'; break; + case "m/d/y": $pageData['custom_date_format'] = 'MM/DD/YY'; break; + case "m/d/Y": $pageData['custom_date_format'] = 'MM/DD/YYYY'; break; + case "d.m.Y": $pageData['custom_date_format'] = 'DD.MM.YYYY'; break; + case "y/m/d": $pageData['custom_date_format'] = 'YY/MM/DD'; break; + case "Y-m-d": $pageData['custom_date_format'] = 'YYYY-MM-DD'; break; + case "M d, Y": $pageData['custom_date_format'] = 'MMM DD, YYYY'; break; + case "M d, y": $pageData['custom_date_format'] = 'MMM DD, YY'; break; + default: $pageData['custom_date_format'] = 'DD/MM/YYYY'; } + $data['dxcluster_refresh_time'] = $this->config->item('dxcluster_refresh_time') ?? 30; + $data['page_title'] = __("DXCluster"); $this->load->view('interface_assets/header', $data); $this->load->view('bandmap/list',$pageData); diff --git a/application/controllers/Callstats.php b/application/controllers/Callstats.php index b813a60d1..e80cb1c68 100644 --- a/application/controllers/Callstats.php +++ b/application/controllers/Callstats.php @@ -74,7 +74,7 @@ class Callstats extends CI_Controller $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/callstats.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/callstats.js")), + 'assets/js/sections/callstats.js', ]; $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Calltester.php b/application/controllers/Calltester.php index f1088151e..897046e95 100644 --- a/application/controllers/Calltester.php +++ b/application/controllers/Calltester.php @@ -26,7 +26,7 @@ class Calltester extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/calltester.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/calltester.js")) + 'assets/js/sections/calltester.js', ]; $data['page_title'] = __("Call Tester"); @@ -61,7 +61,7 @@ class Calltester extends CI_Controller { // Starting clock time in seconds $start_time = microtime(true); - $dxccobj = new Dxcc(null); + $dxccobj = new Dxcc(); foreach ($callarray->result() as $call) { @@ -364,147 +364,147 @@ class Calltester extends CI_Controller { 'Callsign' => 'WJ7R/C6A', 'Country' => 'Bahamas', 'Adif' => 60, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'WJ7R/KH6', 'Country' => 'Hawaii', 'Adif' => 110, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'WJ7R/C6', 'Country' => 'Bahamas', 'Adif' => 60, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'VE3EY/VP9', 'Country' => 'Bermuda', 'Adif' => 64, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'VP2MDG', 'Country' => 'Montserrat', 'Adif' => 96, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'VP2EY', 'Country' => 'Anguilla', 'Adif' => 12, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'VP2VI', 'Country' => 'British Virgin Islands.', 'Adif' => 65, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'VP2V/AA7V', 'Country' => 'British Virgin Islands', 'Adif' => 65, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'W8LR/R', 'Country' => 'United States Of America', 'Adif' => 291, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'SO1FH', 'Country' => 'Poland', 'Adif' => 269, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'KZ1H/PP', 'Country' => 'Brazil', 'Adif' => 108, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'K1KW/AM', 'Country' => 'None', 'Adif' => 0, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'K1KW/MM', 'Country' => 'None', 'Adif' => 0, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'TF/DL2NWK/P', 'Country' => 'Iceland', 'Adif' => 242, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'OZ1ALS/A', 'Country' => 'Denmark', 'Adif' => 221, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'LA1K', 'Country' => 'Norway', 'Adif' => 266, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'K1KW/M', 'Country' => 'United States Of America', 'Adif' => 291, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'TF/DL2NWK/M', 'Country' => 'Iceland', 'Adif' => 242, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'TF/DL2NWK/MM', 'Country' => 'None', 'Adif' => 0, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'TF/DL2NWK/P', 'Country' => 'Iceland', 'Adif' => 242, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => '2M0SQL/P', 'Country' => 'Scotland', 'Adif' => 279, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( @@ -518,42 +518,42 @@ class Calltester extends CI_Controller { 'Callsign' => 'RV0AL/0/P', 'Country' => 'Asiatic Russia', 'Adif' => 15, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'OH/DJ1YFK', 'Country' => 'Finland', 'Adif' => 224, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'N6TR/7', 'Country' => 'United States Of America', 'Adif' => 291, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'KH0CW', 'Country' => 'United States Of America', 'Adif' => 291, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'R2FM/P', 'Country' => 'kaliningrad', 'Adif' => 126, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'R2FM', 'Country' => 'kaliningrad', 'Adif' => 126, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( @@ -581,56 +581,56 @@ class Calltester extends CI_Controller { 'Callsign' => 'CX/PR8KW', 'Country' => 'Uruguay', 'Adif' => 144, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'IQ3MV/LH', 'Country' => 'Italy', 'Adif' => 248, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'LA1K/QRP', 'Country' => 'Norway', 'Adif' => 266, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'LA1K/LGT', 'Country' => 'Norway', 'Adif' => 266, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'SM1K/LH', 'Country' => 'Sweden', 'Adif' => 284, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'KG4W', 'Country' => 'United States Of America', 'Adif' => 291, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'KG4WW', 'Country' => 'Guantanamo Bay', 'Adif' => 105, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'KG4WWW', 'Country' => 'United States Of America', 'Adif' => 291, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( @@ -658,7 +658,7 @@ class Calltester extends CI_Controller { 'Callsign' => 'PT7BZ/PY0F', 'Country' => 'Fernando De Noronha', 'Adif' => 56, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( @@ -686,7 +686,7 @@ class Calltester extends CI_Controller { 'Callsign' => 'G4SGX/6Y', 'Country' => 'Jamaica', 'Adif' => 82, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( @@ -707,7 +707,7 @@ class Calltester extends CI_Controller { 'Callsign' => 'N2JBY/4X', 'Country' => 'Israel', 'Adif' => 336, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( @@ -721,98 +721,98 @@ class Calltester extends CI_Controller { 'Callsign' => 'HB/DK9TA', 'Country' => 'Switzerland', 'Adif' => 287, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'OE5DI/500', 'Country' => 'Austria', 'Adif' => 206, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'YI6SUL', 'Country' => 'Invalid', 'Adif' => 0, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => '3DA8/DF8LY/P', 'Country' => 'Kingdom Of Eswatini', 'Adif' => 468, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => '3X/DL5DAB', 'Country' => 'Invalid', 'Adif' => 0, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => '3X/DL5DA', 'Country' => 'Guinea', 'Adif' => 107, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'KN5H/6YA', 'Country' => 'Jamaica', 'Adif' => 82, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'DL2AAZ/6Y5', 'Country' => 'Jamaica', 'Adif' => 82, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => '6Y5WJ', 'Country' => 'Jamaica', 'Adif' => 82, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'R20RRC/0', 'Country' => 'Asiatic Russia', 'Adif' => 15, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'G4KJV/2K/P', 'Country' => 'England', 'Adif' => 223, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'VP8ADR/40', 'Country' => 'Falkland Islands', 'Adif' => 141, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'VP8ADR/400', 'Country' => 'Falkland Islands', 'Adif' => 141, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'LU7CC/E', 'Country' => 'Argentina', 'Adif' => 100, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( @@ -826,105 +826,105 @@ class Calltester extends CI_Controller { 'Callsign' => 'A6050Y/5', 'Country' => 'United Arab Emirates', 'Adif' => 391, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => '9H5G/C6A', 'Country' => 'Bahamas', 'Adif' => 60, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'A45XR/0', 'Country' => 'Oman', 'Adif' => 370, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'RAEM', 'Country' => 'Asiatic Russia', 'Adif' => 54, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'DJ1YFK/VE1', 'Country' => 'Canada', 'Adif' => 1, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'HD1QRC90', 'Country' => 'Ecuador', 'Adif' => 120, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'PJ6A', 'Country' => 'Saba & St. Eustatius', 'Adif' => 519, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'PJ4D', 'Country' => 'Bonaire', 'Adif' => 520, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => '4X50CZ/SK', 'Country' => 'Israel', 'Adif' => 336, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'RK3BY/0', 'Country' => 'Asiatic Russia', 'Adif' => 15, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'IU0KNS/ERA', 'Country' => 'Italy', 'Adif' => 248, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'IU8BPS/AWD', 'Country' => 'Italy', 'Adif' => 248, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'IK7XNF/GIRO', 'Country' => 'Italy', 'Adif' => 248, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'VJ5A', 'Country' => 'Australia', 'Adif' => 150, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'VL2IG', 'Country' => 'Australia', 'Adif' => 150, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); set_time_limit(3600); @@ -937,7 +937,7 @@ class Calltester extends CI_Controller { $i = 0; - $dxccobj = new Dxcc(null); + $dxccobj = new Dxcc(); foreach ($testarray as $call) { $i++; diff --git a/application/controllers/Club.php b/application/controllers/Club.php index eb8daf0e6..8b7a08de5 100644 --- a/application/controllers/Club.php +++ b/application/controllers/Club.php @@ -61,7 +61,7 @@ class Club extends CI_Controller $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/club_permissions.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/club_permissions.js")), + 'assets/js/sections/club_permissions.js', ]; $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Clublog.php b/application/controllers/Clublog.php index 47dab8ebb..163d32b9c 100644 --- a/application/controllers/Clublog.php +++ b/application/controllers/Clublog.php @@ -96,7 +96,7 @@ class Clublog extends CI_Controller $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/clublog.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/clublog.js")), + 'assets/js/sections/clublog.js', ]; $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Contestcalendar.php b/application/controllers/Contestcalendar.php index 6979a21af..9a9e1ce9a 100644 --- a/application/controllers/Contestcalendar.php +++ b/application/controllers/Contestcalendar.php @@ -36,7 +36,7 @@ class Contestcalendar extends CI_Controller { } $footerData['scripts'] = [ - 'assets/js/sections/dxcalendar.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/dxcalendar.js")) + 'assets/js/sections/dxcalendar.js' ]; } else { $data['contestsToday']=''; diff --git a/application/controllers/Contesting.php b/application/controllers/Contesting.php index 63ebe9c47..94e44ed13 100644 --- a/application/controllers/Contesting.php +++ b/application/controllers/Contesting.php @@ -45,7 +45,7 @@ class Contesting extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/contesting.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/contesting.js")), + 'assets/js/sections/contesting.js', ]; $this->load->library('form_validation'); @@ -121,7 +121,7 @@ class Contesting extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/contesting.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/contesting.js")), + 'assets/js/sections/contesting.js', ]; // Render Page @@ -143,7 +143,7 @@ class Contesting extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/contesting.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/contesting.js")), + 'assets/js/sections/contesting.js', ]; $this->form_validation->set_rules('name', 'Contest Name', 'required'); diff --git a/application/controllers/Cron.php b/application/controllers/Cron.php index 20a489f13..d318048bc 100644 --- a/application/controllers/Cron.php +++ b/application/controllers/Cron.php @@ -31,8 +31,8 @@ class cron extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/cronstrue.min.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/cronstrue.min.js")), - 'assets/js/sections/cron.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/cron.js")) + 'assets/js/cronstrue.min.js', + 'assets/js/sections/cron.js' ]; $data['page_title'] = __("Cron Manager"); diff --git a/application/controllers/Dashboard.php b/application/controllers/Dashboard.php index 02bab2fb5..a7a04fd89 100644 --- a/application/controllers/Dashboard.php +++ b/application/controllers/Dashboard.php @@ -160,7 +160,7 @@ class Dashboard extends CI_Controller { $dxcc = $this->dxcc->list_current(); $footerData['scripts'] = [ - 'assets/js/sections/dashboard.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/dashboard.js")), + 'assets/js/sections/dashboard.js', ]; // First Login Wizard @@ -189,7 +189,7 @@ class Dashboard extends CI_Controller { $this->load->model('dxcc'); $viewdata['dxcc_list'] = $this->dxcc->list(); - $footerData['scripts'][] = 'assets/js/bootstrap-multiselect.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/bootstrap-multiselect.js")); + $footerData['scripts'][] = 'assets/js/bootstrap-multiselect.js'; $this->load->library('form_validation'); diff --git a/application/controllers/Dxcalendar.php b/application/controllers/Dxcalendar.php index ea024e577..cdb51a0d4 100644 --- a/application/controllers/Dxcalendar.php +++ b/application/controllers/Dxcalendar.php @@ -18,7 +18,7 @@ class Dxcalendar extends CI_Controller { 'backup' => $this->config->item('cache_backup') ?? 'file', 'key_prefix' => $this->config->item('cache_key_prefix') ?? '' ]); - $rssUrl = 'http://www.ng3k.com/adxo.xml'; + $rssUrl = 'https://www.ng3k.com/adxo.xml'; if (!$rssRawData = $this->cache->get('RssRawDxCal')) { $rssRawData = file_get_contents($rssUrl, true); $this->cache->save('RssRawDxCal', $rssRawData, (60*60*12)); @@ -39,7 +39,7 @@ class Dxcalendar extends CI_Controller { $custom_date_format = $this->config->item('qso_date_format'); } - $dxccobj = new Dxcc(null); + $dxccobj = new Dxcc(); foreach ($rssdata->channel->item as $item) { $dxped=(object)[]; $title = explode('--', $item->title); @@ -85,7 +85,7 @@ class Dxcalendar extends CI_Controller { $footerData['scripts'] = [ - 'assets/js/sections/dxcalendar.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/dxcalendar.js")) + 'assets/js/sections/dxcalendar.js' ]; $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Dxcluster.php b/application/controllers/Dxcluster.php index 8d42eb6b2..a4dd909f9 100644 --- a/application/controllers/Dxcluster.php +++ b/application/controllers/Dxcluster.php @@ -66,7 +66,7 @@ class Dxcluster extends CI_Controller { // TODO: Is this used anywhere? If not, remove it! public function call($call) { $date = date('Y-m-d', time()); - $dxccobj = new Dxcc($date); + $dxccobj = new Dxcc(); $dxcc = $dxccobj->dxcc_lookup($call, $date); diff --git a/application/controllers/Generic_qsl.php b/application/controllers/Generic_qsl.php index 37198bdd1..ba773ef6f 100644 --- a/application/controllers/Generic_qsl.php +++ b/application/controllers/Generic_qsl.php @@ -21,8 +21,8 @@ class Generic_qsl extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/bootstrap-multiselect.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/bootstrap-multiselect.js")), - 'assets/js/sections/qsl.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/qsl.js")), + 'assets/js/bootstrap-multiselect.js', + 'assets/js/sections/qsl.js', ]; $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Gridmap.php b/application/controllers/Gridmap.php index 9beae0b32..30df7a4e1 100644 --- a/application/controllers/Gridmap.php +++ b/application/controllers/Gridmap.php @@ -44,11 +44,11 @@ class Gridmap extends CI_Controller { $footerData = []; $footerData['scripts'] = [ 'assets/js/leaflet/geocoding.js', - 'assets/js/sections/gridmap.js?', + 'assets/js/sections/gridmap.js', 'assets/js/leaflet/L.MaidenheadColouredGridMap.js', - 'assets/js/sections/itumap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/itumap_geojson.js")), - 'assets/js/sections/cqmap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/cqmap_geojson.js")), - 'assets/js/bootstrap-multiselect.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/bootstrap-multiselect.js")), + 'assets/js/sections/itumap_geojson.js', + 'assets/js/sections/cqmap_geojson.js', + 'assets/js/bootstrap-multiselect.js', ]; $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Hamsat.php b/application/controllers/Hamsat.php index 306ec89e0..9ccfb4e77 100644 --- a/application/controllers/Hamsat.php +++ b/application/controllers/Hamsat.php @@ -15,7 +15,7 @@ class Hamsat extends CI_Controller { public function index() { $data['scripts'] = [ - 'assets/js/sections/hamsat.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/hamsat.js")), + 'assets/js/sections/hamsat.js', 'assets/js/moment.min.js', 'assets/js/datetime-moment.js' ]; diff --git a/application/controllers/Logbook.php b/application/controllers/Logbook.php index 2a7b06b27..6722fc8b5 100644 --- a/application/controllers/Logbook.php +++ b/application/controllers/Logbook.php @@ -1256,7 +1256,7 @@ class Logbook extends CI_Controller { if ($date == ''){ $date = date("Y-m-d"); } - $dxccobj = new Dxcc($date); + $dxccobj = new Dxcc(); $ans = $dxccobj->dxcc_lookup($call, $date); return $ans; diff --git a/application/controllers/Logbookadvanced.php b/application/controllers/Logbookadvanced.php index 0e1e34f1d..62e561667 100644 --- a/application/controllers/Logbookadvanced.php +++ b/application/controllers/Logbookadvanced.php @@ -91,15 +91,15 @@ class Logbookadvanced extends CI_Controller { $footerData['scripts'] = [ 'assets/js/moment.min.js', 'assets/js/datetime-moment.js', - 'assets/js/sections/logbookadvanced.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/logbookadvanced.js")), - 'assets/js/sections/logbookadvanced_edit.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/logbookadvanced_edit.js")), - 'assets/js/sections/logbookadvanced_map.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/logbookadvanced_map.js")), - 'assets/js/sections/cqmap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/cqmap_geojson.js")), - 'assets/js/sections/itumap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/itumap_geojson.js")), - 'assets/js/leaflet/L.Terminator.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/leaflet/L.Terminator.js")), + 'assets/js/sections/logbookadvanced.js', + 'assets/js/sections/logbookadvanced_edit.js', + 'assets/js/sections/logbookadvanced_map.js', + 'assets/js/sections/cqmap_geojson.js', + 'assets/js/sections/itumap_geojson.js', + 'assets/js/leaflet/L.Terminator.js', 'assets/js/leaflet/geocoding.js', - 'assets/js/globe/globe.gl.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/globe/globe.gl.js")), - 'assets/js/bootstrap-multiselect.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/bootstrap-multiselect.js")), + 'assets/js/globe/globe.gl.js', + 'assets/js/bootstrap-multiselect.js', 'assets/js/leaflet/L.MaidenheadColouredGridMap.js', ]; @@ -653,7 +653,7 @@ class Logbookadvanced extends CI_Controller { $data['stateDxcc'] = $this->logbookadvanced_model->getPrimarySubdivisonsDxccs(); - $data['modes'] = $this->modes->active(); + $data['modes'] = $this->modes->all(); $data['bands'] = $this->bands->get_user_bands_for_qso_entry(); $data['contests'] = $this->contesting_model->getActivecontests(); $this->load->view('logbookadvanced/edit', $data); diff --git a/application/controllers/Lotw.php b/application/controllers/Lotw.php index 8529d255c..c419c7fd8 100644 --- a/application/controllers/Lotw.php +++ b/application/controllers/Lotw.php @@ -257,10 +257,6 @@ class Lotw extends CI_Controller { echo $data['lotw_cert_info']->callsign.": QSO start date of LoTW certificate not reached yet!
"; continue; } - if ($current_date > $data['lotw_cert_info']->qso_end_date) { - echo $data['lotw_cert_info']->callsign.": QSO end date of LoTW certificate exceeded!
"; - continue; - } if ($current_date < $data['lotw_cert_info']->date_created) { echo $data['lotw_cert_info']->callsign.": LoTW certificate not valid yet!
"; continue; diff --git a/application/controllers/Map.php b/application/controllers/Map.php index cc3c3838c..41ba2ff2b 100644 --- a/application/controllers/Map.php +++ b/application/controllers/Map.php @@ -51,9 +51,9 @@ class Map extends CI_Controller { $footerData['scripts'] = [ 'assets/js/leaflet/geocoding.js', 'assets/js/leaflet/L.Maidenhead.js', - 'assets/js/sections/qso_map.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/qso_map.js")), - 'assets/js/sections/itumap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/itumap_geojson.js")), - 'assets/js/sections/cqmap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/cqmap_geojson.js")), + 'assets/js/sections/qso_map.js', + 'assets/js/sections/itumap_geojson.js', + 'assets/js/sections/cqmap_geojson.js', ]; $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Qrz.php b/application/controllers/Qrz.php index cb13bb7c2..836576345 100644 --- a/application/controllers/Qrz.php +++ b/application/controllers/Qrz.php @@ -27,7 +27,7 @@ class Qrz extends CI_Controller { public function qrz_apitest() { $apikey = xss_clean($this->input->post('APIKEY')); - $url = 'http://logbook.qrz.com/api'; // TODO: Move this to database + $url = 'https://logbook.qrz.com/api'; // TODO: Move this to database $post_data['KEY'] = $apikey; $post_data['ACTION'] = 'STATUS'; @@ -362,7 +362,7 @@ class Qrz extends CI_Controller { $result = "Temporary download file ".$file." is not writable. Aborting!"; return false; } - $url = 'http://logbook.qrz.com/api'; + $url = 'https://logbook.qrz.com/api'; $post_data['KEY'] = $qrz_api_key; $post_data['ACTION'] = 'FETCH'; diff --git a/application/controllers/Qsl.php b/application/controllers/Qsl.php index c93d3e4e3..91b22e91d 100644 --- a/application/controllers/Qsl.php +++ b/application/controllers/Qsl.php @@ -27,7 +27,7 @@ class Qsl extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/qsl.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/qsl.js")), + 'assets/js/sections/qsl.js', ]; $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Radio.php b/application/controllers/Radio.php index 2af84a353..9bec10799 100644 --- a/application/controllers/Radio.php +++ b/application/controllers/Radio.php @@ -18,7 +18,7 @@ class Radio extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/radio.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/radio.js")), + 'assets/js/sections/radio.js', ]; $this->load->view('interface_assets/header', $data); @@ -36,6 +36,9 @@ class Radio extends CI_Controller { $this->load->model('cat'); $query = $this->cat->status(); + // Get the default radio + $default_user_radio = $this->user_options_model->get_options('cat', array('option_name' => $this->_get_optionname()), $this->_get_correct_uid())->row()->option_value ?? NULL; + if ($query->num_rows() > 0) { echo ""; echo "" . __("Radio") . ""; @@ -50,6 +53,23 @@ class Radio extends CI_Controller { echo "" . __("Settings") . ""; echo ""; echo ""; + + // WebSocket as first row + echo ""; + echo "" . __("WebSocket") . ""; + echo "-"; // Frequency + echo "-"; // Mode + echo "-"; // Timestamp + echo ''; // Last updated + if ($default_user_radio === 'ws') { + echo ''; + } else { + echo ''; + } + echo ''; // Settings (no edit for WebSocket) + echo ''; // Delete (no delete for WebSocket) + echo ""; + foreach ($query->result() as $row) { echo ""; echo "" . $row->radio . ""; @@ -100,17 +120,10 @@ class Radio extends CI_Controller { echo ''; } - if ($this->session->userdata('clubstation') != 1) { - $defaul_user_radio = $this->user_options_model->get_options('cat', array('option_name' => 'default_radio'))->row()->option_value ?? NULL; - if (!$defaul_user_radio) { - echo '"; echo "id . "\" class=\"btn btn-sm btn-danger\"> " . __("Delete") . ""; @@ -118,8 +131,18 @@ class Radio extends CI_Controller { } echo ""; } else { + // No radios found - show WebSocket button + if ($default_user_radio === 'ws') { + $websocket_button = ''; + } else { + $websocket_button = ''; + } echo ""; - echo "
" . __("No CAT interfaced radios found.") . "
"; + echo "
"; + echo __("No CAT interfaced radios found."); + echo "

" . __("You can still set the WebSocket option as your default radio.") . "

"; + echo $websocket_button; + echo "
"; echo ""; } } @@ -302,11 +325,11 @@ class Radio extends CI_Controller { $this->cat->delete($clean_id); - if ($clean_id == $this->user_options_model->get_options('cat', array('option_name' => 'default_radio'))->row()->option_value ?? '') { + if ($clean_id == $this->user_options_model->get_options('cat', array('option_name' => $this->_get_optionname()), $this->_get_correct_uid())->row()->option_value ?? '') { $this->release_default_radio(); } - $this->session->set_flashdata('message', 'Radio Profile Deleted'); + $this->session->set_flashdata('message', __("Radio removed successfully")); session_write_close(); redirect('radio'); @@ -315,8 +338,8 @@ class Radio extends CI_Controller { function set_default_radio() { // get the radio_id from POST - $clean_radio_id = $this->security->xss_clean($this->input->post('radio_id')); - + $clean_radio_id = $this->input->post('radio_id', TRUE); + // Check Auth $this->load->model('user_model'); if (!$this->user_model->authorize(3)) { @@ -328,7 +351,7 @@ class Radio extends CI_Controller { $this->release_default_radio(); // Set the user_option and session data - $this->user_options_model->set_option('cat', 'default_radio', array('radio_id' => $clean_radio_id)); + $this->user_options_model->set_option('cat', $this->_get_optionname(), array('radio_id' => $clean_radio_id), $this->_get_correct_uid()); $this->session->set_userdata('radio', $clean_radio_id); } @@ -341,7 +364,27 @@ class Radio extends CI_Controller { } // Unset the user_option and session data - $this->user_options_model->del_option('cat', 'default_radio'); + $this->user_options_model->del_option('cat', $this->_get_optionname(), NULL, $this->_get_correct_uid()); $this->session->unset_userdata('radio'); } + + private function _get_correct_uid() { + if ($this->_is_clubstation()) { + return $this->session->userdata('source_uid'); + } else { + return $this->session->userdata('user_id'); + } + } + + private function _is_clubstation() { + return $this->session->userdata('clubstation') == 1; + } + + private function _get_optionname() { + if ($this->_is_clubstation() && ($this->session->userdata('source_uid') ?? '') != '') { + return 'default_clubradio_' . $this->session->userdata('user_id'); + } else { + return 'default_radio'; + } + } } diff --git a/application/controllers/Satellite.php b/application/controllers/Satellite.php index f3b887011..658e8560d 100644 --- a/application/controllers/Satellite.php +++ b/application/controllers/Satellite.php @@ -34,7 +34,7 @@ class Satellite extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/satellite.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/satellite.js")), + 'assets/js/sections/satellite.js', ]; // Render Page @@ -184,10 +184,10 @@ class Satellite extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/satellite.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/satellite.js")), - 'assets/js/sections/three-orbit-controls.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/three-orbit-controls.js")), - 'assets/js/sections/satellite_functions.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/satellite_functions.js")), - 'assets/js/sections/flightpath.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/flightpath.js")), + 'assets/js/sections/satellite.js', + 'assets/js/sections/three-orbit-controls.js', + 'assets/js/sections/satellite_functions.js', + 'assets/js/sections/flightpath.js', 'assets/js/leaflet/L.Maidenhead.js', 'assets/js/leaflet/geocoding.js', ]; @@ -245,8 +245,8 @@ class Satellite extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/bootstrap-multiselect.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/bootstrap-multiselect.js")), - 'assets/js/sections/satpasses.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/satpasses.js")), + 'assets/js/bootstrap-multiselect.js', + 'assets/js/sections/satpasses.js', ]; // Render Page diff --git a/application/controllers/Sattimers.php b/application/controllers/Sattimers.php index 4d51b45f1..ea3f3473f 100644 --- a/application/controllers/Sattimers.php +++ b/application/controllers/Sattimers.php @@ -13,7 +13,7 @@ class Sattimers extends CI_Controller { $this->load->model('stations'); $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/sattimers.js?' + 'assets/js/sections/sattimers.js' ]; $url = 'https://www.df2et.de/tevel/api2.php?grid='.strtoupper($this->stations->find_gridsquare()); diff --git a/application/controllers/Simplefle.php b/application/controllers/Simplefle.php index 5cbd7e3f6..51b142677 100644 --- a/application/controllers/Simplefle.php +++ b/application/controllers/Simplefle.php @@ -27,7 +27,7 @@ class SimpleFLE extends CI_Controller { $footerData['scripts'] = [ 'assets/js/moment.min.js', 'assets/js/datetime-moment.js', - 'assets/js/sections/simplefle.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/simplefle.js")) + 'assets/js/sections/simplefle.js' ]; $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Stationsetup.php b/application/controllers/Stationsetup.php index 9b7456365..4fdcd50f6 100644 --- a/application/controllers/Stationsetup.php +++ b/application/controllers/Stationsetup.php @@ -32,7 +32,7 @@ class Stationsetup extends CI_Controller { $footerData['scripts'] = [ 'assets/js/moment.min.js', 'assets/js/datetime-moment.js', - 'assets/js/sections/stationsetup.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/stationsetup.js")), + 'assets/js/sections/stationsetup.js', ]; // Get Date format diff --git a/application/controllers/Statistics.php b/application/controllers/Statistics.php index 074f0383a..328d2c620 100644 --- a/application/controllers/Statistics.php +++ b/application/controllers/Statistics.php @@ -321,9 +321,9 @@ class Statistics extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/chart.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/chart.js")), - 'assets/js/sections/antennastats.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/antennastats.js")), - 'assets/js/bootstrap-multiselect.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/bootstrap-multiselect.js")), + 'assets/js/chart.js', + 'assets/js/sections/antennastats.js', + 'assets/js/bootstrap-multiselect.js', ]; // Load Views @@ -389,7 +389,7 @@ class Statistics extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/initials.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/initials.js")), + 'assets/js/sections/initials.js', ]; // Load Views diff --git a/application/controllers/Timeline.php b/application/controllers/Timeline.php index 34cbc6742..091e39c01 100644 --- a/application/controllers/Timeline.php +++ b/application/controllers/Timeline.php @@ -101,7 +101,7 @@ class Timeline extends CI_Controller { $data['onlynew'] = $onlynew; $data['selectedyear'] = $year; - $footerData['scripts'] = [ 'assets/js/sections/timeline.js?' ]; + $footerData['scripts'] = [ 'assets/js/sections/timeline.js' ]; $this->load->view('interface_assets/header', $data); $this->load->view('timeline/index'); $this->load->view('interface_assets/footer', $footerData); diff --git a/application/controllers/Update.php b/application/controllers/Update.php index 855e713fd..0c2808586 100644 --- a/application/controllers/Update.php +++ b/application/controllers/Update.php @@ -272,6 +272,8 @@ class Update extends CI_Controller { $this->db->query($sql); $this->db->trans_complete(); + $this->_invalidate_dxcc_cache(); + $this->update_status(__("DONE")); echo 'success'; @@ -292,6 +294,26 @@ class Update extends CI_Controller { } + private function _invalidate_dxcc_cache() { + $this->load->is_loaded('cache') ?: $this->load->driver('cache', [ + 'adapter' => $this->config->item('cache_adapter') ?? 'file', + 'backup' => $this->config->item('cache_backup') ?? 'file', + 'key_prefix' => $this->config->item('cache_key_prefix') ?? '' + ]); + + $possible_cachekeys = [ + 'dxcc_exceptions', + 'dxcc_prefixes', + ]; + + foreach ($possible_cachekeys as $cache_key) { + if ($this->cache->get($cache_key) !== false) { + $this->cache->delete($cache_key); + log_message('info', "Deleted cache for key: " . $cache_key); + } + } + } + public function update_status($done=""){ if(!$this->load->is_loaded('Paths')) { diff --git a/application/controllers/User.php b/application/controllers/User.php index 92631c434..34069fe54 100644 --- a/application/controllers/User.php +++ b/application/controllers/User.php @@ -44,7 +44,7 @@ class User extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/user.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/user.js")), + 'assets/js/sections/user.js', ]; $data['page_title'] = __("User Accounts"); @@ -174,7 +174,7 @@ class User extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/user.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/user.js")), + 'assets/js/sections/user.js', ]; // Get timezones @@ -418,7 +418,7 @@ class User extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/user.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/user.js")), + 'assets/js/sections/user.js', ]; // Get timezones diff --git a/application/libraries/DxclusterCache.php b/application/libraries/DxclusterCache.php index c6d9d4816..1a3bd2a73 100644 --- a/application/libraries/DxclusterCache.php +++ b/application/libraries/DxclusterCache.php @@ -80,7 +80,7 @@ class DxclusterCache { $this->_delete_from_cache($this->get_worked_call_key($logbook_key, $callsign)); // Look up DXCC and continent from callsign - $dxccobj = new Dxcc(null); + $dxccobj = new Dxcc(); $dxcc_info = $dxccobj->dxcc_lookup($callsign, date('Y-m-d')); if (!empty($dxcc_info['adif'])) { diff --git a/application/libraries/Paths.php b/application/libraries/Paths.php index 9d4d262aa..24dedda76 100644 --- a/application/libraries/Paths.php +++ b/application/libraries/Paths.php @@ -32,4 +32,29 @@ class Paths } return $datadir . "/" . $path; } + + function cache_buster($filepath) { + // make sure $filepath starts with a slash + if (substr($filepath, 0, 1) !== '/') $filepath = '/' . $filepath; + + // These files are not existent on purpose and should not trigger error logs + $err_exceptions = [ + '/assets/json/datatables_languages/en-US.json', + ]; + + $fullpath = $_SERVER['DOCUMENT_ROOT'] . $filepath; + + // We comment out this line because latest teste at LA8AJA's XAMPP setup showed that it works even without it + // So we will keep it simple and just use the $filepath as is, since it seems to work fine on both Linux and Windows setups + // $fullpath = rtrim($_SERVER['DOCUMENT_ROOT'], '/\\') . str_replace('/', DIRECTORY_SEPARATOR, $filepath); + + if (file_exists($fullpath)) { + return base_url($filepath) . '?v=' . filemtime($fullpath); + } else { + if (!in_array($filepath, $err_exceptions)) { + log_message('error', 'CACHE BUSTER: File does not exist: ' . $fullpath); + } + } + return base_url($filepath); + } } diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index 27b049ea0..ab301c294 100644 --- a/application/locale/bg_BG/LC_MESSAGES/messages.po +++ b/application/locale/bg_BG/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-13 08:13+0000\n" +"POT-Creation-Date: 2026-02-17 17:26+0000\n" "PO-Revision-Date: 2024-11-01 08:53+0000\n" "Last-Translator: Plamen Panteleev \n" "Language-Team: Bulgarian \n" "Language-Team: Bosnian \n" "Language-Team: Montenegrin \n" "Language-Team: Czech \n" "Language-Team: German \n" @@ -89,8 +89,8 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:90 application/controllers/Lotw.php:116 -#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:437 -#: application/controllers/Lotw.php:801 application/controllers/Lotw.php:888 +#: application/controllers/Lotw.php:410 application/controllers/Lotw.php:433 +#: application/controllers/Lotw.php:797 application/controllers/Lotw.php:884 #: application/controllers/Map.php:12 application/controllers/Map.php:27 #: application/controllers/Mode.php:15 application/controllers/Notes.php:10 #: application/controllers/Operator.php:13 @@ -104,8 +104,8 @@ msgstr "" #: application/controllers/Qso.php:22 application/controllers/Qso.php:288 #: application/controllers/Qso.php:419 application/controllers/Qso.php:440 #: application/controllers/Qso.php:463 application/controllers/Qso.php:763 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 -#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:320 +#: application/controllers/Radio.php:346 application/controllers/Radio.php:362 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -368,7 +368,7 @@ msgid "DOK" msgstr "DOK" #: application/controllers/Awards.php:194 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:97 application/views/bands/index.php:50 +#: application/views/bandmap/list.php:98 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:192 @@ -461,7 +461,7 @@ msgstr " und " #: application/controllers/Awards.php:595 #: application/controllers/Logbook.php:1459 -#: application/views/awards/index.php:8 application/views/bandmap/list.php:326 +#: application/views/awards/index.php:8 application/views/bandmap/list.php:327 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 #: application/views/logbookadvanced/edit.php:32 @@ -489,7 +489,7 @@ msgstr "SOTA" #: application/controllers/Awards.php:613 #: application/controllers/Logbook.php:1460 -#: application/views/bandmap/list.php:328 application/views/bands/index.php:64 +#: application/views/bandmap/list.php:329 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 @@ -511,7 +511,7 @@ msgstr "WWFF" #: application/controllers/Awards.php:631 #: application/controllers/Logbook.php:1461 -#: application/views/adif/import.php:60 application/views/bandmap/list.php:327 +#: application/views/adif/import.php:60 application/views/bandmap/list.php:328 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 @@ -667,8 +667,7 @@ msgstr "Erstelle Mode" msgid "Edit Band" msgstr "Bearbeite Band" -#: application/controllers/Bandmap.php:28 -#: application/controllers/Bandmap.php:75 +#: application/controllers/Bandmap.php:56 #: application/controllers/Options.php:144 #: application/controllers/Options.php:155 #: application/views/options/sidebar.php:7 @@ -1477,7 +1476,7 @@ msgstr "" "Ergebnisse." #: application/controllers/Logbook.php:1454 -#: application/controllers/Radio.php:46 +#: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 #: application/views/adif/dcl_success.php:33 @@ -1502,9 +1501,11 @@ msgstr "" #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:167 -#: application/views/bandmap/list.php:301 -#: application/views/bandmap/list.php:568 +#: application/views/bandmap/list.php:100 +#: application/views/bandmap/list.php:168 +#: application/views/bandmap/list.php:302 +#: application/views/bandmap/list.php:551 +#: application/views/bandmap/list.php:591 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 @@ -1656,7 +1657,7 @@ msgstr "Land" #: application/controllers/Logbook.php:1458 #: application/views/awards/iota/index.php:198 -#: application/views/bandmap/list.php:329 application/views/bands/index.php:52 +#: application/views/bandmap/list.php:330 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/checkresult.php:394 @@ -1824,9 +1825,10 @@ msgstr "Distanz" #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:168 -#: application/views/bandmap/list.php:363 -#: application/views/bandmap/list.php:566 application/views/bands/create.php:24 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:169 +#: application/views/bandmap/list.php:364 +#: application/views/bandmap/list.php:549 +#: application/views/bandmap/list.php:589 application/views/bands/create.php:24 #: application/views/bands/edit.php:7 application/views/bands/index.php:47 #: application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 @@ -1890,8 +1892,9 @@ msgid "Band" msgstr "Band" #: application/controllers/Logbook.php:1466 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 -#: application/views/bandmap/list.php:567 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:167 +#: application/views/bandmap/list.php:550 +#: application/views/bandmap/list.php:590 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:918 @@ -1917,7 +1920,7 @@ msgid "Frequency" msgstr "Frequenz" #: application/controllers/Logbook.php:1467 -#: application/controllers/Radio.php:43 +#: application/controllers/Radio.php:46 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 #: application/views/logbookadvanced/index.php:478 @@ -2005,11 +2008,11 @@ msgstr "Zertifikat importiert." msgid "Certificate Updated." msgstr "Zertifikat aktualisiert." -#: application/controllers/Lotw.php:420 +#: application/controllers/Lotw.php:416 msgid "Certificate Deleted." msgstr "Zertifikat gelöscht." -#: application/controllers/Lotw.php:448 +#: application/controllers/Lotw.php:444 #, php-format msgid "" "The certificate found in file %s contains a password and cannot be " @@ -2022,7 +2025,7 @@ msgstr "" "der tqsl-Applikation ohne Passwort exportierst!%s Für weitere Informationen " "besuche bitte die %sLoTW FAQ Seite%s im Wavelog Wiki." -#: application/controllers/Lotw.php:450 +#: application/controllers/Lotw.php:446 #, php-format msgid "" "Generic error extracting the certificate from file %s. If the filename " @@ -2033,53 +2036,53 @@ msgstr "" "der Dateiname 'key-only' enthält, handelt es sich typischerweise um eine " "Zertifikatsanforderung, die noch nicht von LoTW prozessiert wurde." -#: application/controllers/Lotw.php:457 +#: application/controllers/Lotw.php:453 #, php-format msgid "Generic error processing the certificate in file %s." msgstr "" "Generischer Fehler bei der Verarbeitung des Zertifikats aus der Datei %s." -#: application/controllers/Lotw.php:469 +#: application/controllers/Lotw.php:465 #, php-format msgid "Generic error extracting the private key from certificate in file %s." msgstr "" "Generischer Fehler bei der Extraktion des privaten Schlüssels aus dem " "Zertifikat in der Datei %s." -#: application/controllers/Lotw.php:685 +#: application/controllers/Lotw.php:681 msgid "LoTW ADIF Information" msgstr "LoTW ADIF Information" -#: application/controllers/Lotw.php:858 +#: application/controllers/Lotw.php:854 msgid "Connection to LoTW failed." msgstr "Verbindung zu LoTW fehlgeschlagen." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:859 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "LoTW-Login für Benutzer %s fehlgeschlagen: %s." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:859 msgid "Username/password incorrect" msgstr "Benutzername/Passwort falsch" -#: application/controllers/Lotw.php:866 +#: application/controllers/Lotw.php:862 msgid "LoTW currently not available. Try again later." msgstr "LoTW derzeit nicht verfügbar. Versuche es später noch einmal." -#: application/controllers/Lotw.php:870 +#: application/controllers/Lotw.php:866 msgid "LoTW login OK!" msgstr "LoTW-Login OK!" -#: application/controllers/Lotw.php:876 +#: application/controllers/Lotw.php:872 msgid "No LoTW credentials provided." msgstr "Keine LoTW-Logindaten angegeben." -#: application/controllers/Lotw.php:894 +#: application/controllers/Lotw.php:890 msgid "LoTW ADIF Import" msgstr "LoTW ADIF-Import" -#: application/controllers/Lotw.php:920 +#: application/controllers/Lotw.php:916 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Du hast deine ARRL LoTW Zugangsdaten nicht definiert!" @@ -2444,17 +2447,17 @@ msgstr "Kein Rufzeichen angegeben." msgid "Hardware Interfaces" msgstr "Hardware-Schnittstellen" -#: application/controllers/Radio.php:41 application/views/bandmap/list.php:20 +#: application/controllers/Radio.php:44 application/views/bandmap/list.php:21 #: application/views/contesting/index.php:157 #: application/views/qso/index.php:411 application/views/view_log/qso.php:714 msgid "Radio" msgstr "Funkgerät" -#: application/controllers/Radio.php:47 +#: application/controllers/Radio.php:50 msgid "Timestamp" msgstr "Zeitstempel" -#: application/controllers/Radio.php:49 +#: application/controllers/Radio.php:52 #: application/views/logbookadvanced/index.php:867 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 @@ -2463,30 +2466,34 @@ msgstr "Zeitstempel" msgid "Options" msgstr "Optionen" -#: application/controllers/Radio.php:50 application/views/debug/index.php:321 +#: application/controllers/Radio.php:53 application/views/debug/index.php:321 #: application/views/qso/index.php:841 msgid "Settings" msgstr "Einstellungen" -#: application/controllers/Radio.php:63 +#: application/controllers/Radio.php:59 +msgid "WebSocket" +msgstr "WebSocket" + +#: application/controllers/Radio.php:65 application/controllers/Radio.php:124 +msgid "Default (click to release)" +msgstr "Standardgerät (klicken zum freigeben)" + +#: application/controllers/Radio.php:67 application/controllers/Radio.php:126 +msgid "Set as default radio" +msgstr "Setze als Standardgerät" + +#: application/controllers/Radio.php:83 msgid "UNKNOWN" msgstr "UNBEKANNT" -#: application/controllers/Radio.php:98 application/views/bandmap/list.php:242 +#: application/controllers/Radio.php:118 application/views/bandmap/list.php:243 #: application/views/contesting/index.php:162 #: application/views/qso/index.php:416 msgid "last updated" msgstr "zuletzt aktualisiert" -#: application/controllers/Radio.php:106 application/controllers/Radio.php:109 -msgid "Set as default radio" -msgstr "Setze als Standardgerät" - -#: application/controllers/Radio.php:111 -msgid "Default (click to release)" -msgstr "Standardgerät (klicken zum freigeben)" - -#: application/controllers/Radio.php:115 +#: application/controllers/Radio.php:128 #: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 @@ -2505,7 +2512,7 @@ msgstr "Standardgerät (klicken zum freigeben)" msgid "Edit" msgstr "Bearbeiten" -#: application/controllers/Radio.php:116 +#: application/controllers/Radio.php:129 #: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 @@ -2534,14 +2541,32 @@ msgstr "Bearbeiten" msgid "Delete" msgstr "Löschen" -#: application/controllers/Radio.php:122 +#: application/controllers/Radio.php:136 +msgid "WebSocket is currently default (click to release)" +msgstr "WebSocket ist derzeit das Standard-Funkgerät (klicken, um freizugeben)" + +#: application/controllers/Radio.php:138 +msgid "Set WebSocket as default radio" +msgstr "WebSocket als Standard-Funkgerät festlegen" + +#: application/controllers/Radio.php:142 msgid "No CAT interfaced radios found." msgstr "Keine CAT-verbundenen Funkgeräte gefunden." -#: application/controllers/Radio.php:137 application/views/radio/index.php:2 +#: application/controllers/Radio.php:143 +msgid "You can still set the WebSocket option as your default radio." +msgstr "" +"Du kannst trotzdem die WebSocket-Option als dein Standard-Funkgerät " +"festlegen." + +#: application/controllers/Radio.php:160 application/views/radio/index.php:2 msgid "Edit CAT Settings" msgstr "CAT-Einstellungen bearbeiten" +#: application/controllers/Radio.php:332 +msgid "Radio removed successfully" +msgstr "Funkgerät erfolgreich entfernt" + #: application/controllers/Reg1test.php:22 msgid "Export EDI" msgstr "Exportiere EDI" @@ -2620,7 +2645,7 @@ msgstr "hier" msgid "Satellite Timers" msgstr "Satelliten-Timer" -#: application/controllers/Search.php:15 application/views/bandmap/list.php:544 +#: application/controllers/Search.php:15 application/views/bandmap/list.php:567 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 @@ -2946,103 +2971,103 @@ msgstr "Bereite DXCC-Ausnahmen vor: " msgid "Preparing DXCC Prefixes: " msgstr "Bereite DXCC-Präfixe vor: " -#: application/controllers/Update.php:275 +#: application/controllers/Update.php:277 msgid "DONE" msgstr "FERTIG" -#: application/controllers/Update.php:304 +#: application/controllers/Update.php:326 msgid "Updating..." msgstr "Aktualisierung läuft ..." -#: application/controllers/Update.php:307 +#: application/controllers/Update.php:329 msgid "Dxcc Entities:" msgstr "DXCC-Entitäten:" -#: application/controllers/Update.php:308 +#: application/controllers/Update.php:330 msgid "Dxcc Exceptions:" msgstr "DXCC-Ausnahmen:" -#: application/controllers/Update.php:309 +#: application/controllers/Update.php:331 msgid "Dxcc Prefixes:" msgstr "DXCC-Präfixe:" -#: application/controllers/Update.php:340 +#: application/controllers/Update.php:362 msgid "SCP Update complete. Result: " msgstr "SCP-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:342 +#: application/controllers/Update.php:364 msgid "SCP Update failed. Result: " msgstr "SCP-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:379 +#: application/controllers/Update.php:401 msgid "LoTW Users Update complete. Result: " msgstr "LoTW-Benutzer-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:381 +#: application/controllers/Update.php:403 msgid "LoTW Users Update failed. Result: " msgstr "LoTW-Benutzer-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:416 +#: application/controllers/Update.php:438 msgid "DOK Update complete. Result: " msgstr "DOK-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:418 +#: application/controllers/Update.php:440 msgid "DOK Update failed. Result: " msgstr "DOK-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:451 +#: application/controllers/Update.php:473 msgid "SOTA Update complete. Result: " msgstr "SOTA-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:453 +#: application/controllers/Update.php:475 msgid "SOTA Update failed. Result: " msgstr "SOTA-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:486 +#: application/controllers/Update.php:508 msgid "WWFF Update complete. Result: " msgstr "WWFF-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:488 +#: application/controllers/Update.php:510 msgid "WWFF Update failed. Result: " msgstr "WWFF-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:522 +#: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " msgstr "HAMqsl-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:524 +#: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " msgstr "HAMqsl-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:557 +#: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " msgstr "POTA-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:559 +#: application/controllers/Update.php:581 msgid "POTA Update failed. Result: " msgstr "POTA-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:588 +#: application/controllers/Update.php:610 msgid "TLE Update complete. Result: " msgstr "TLE-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:590 +#: application/controllers/Update.php:612 msgid "TLE Update failed. Result: " msgstr "TLE-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:617 +#: application/controllers/Update.php:639 msgid "LoTW SAT Update" msgstr "LoTW SAT-Aktualisierung" -#: application/controllers/Update.php:645 +#: application/controllers/Update.php:667 msgid "Update of Hams of Note" msgstr "Update von 'Hams of Note'" -#: application/controllers/Update.php:685 +#: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " msgstr "Update der VUCC-Planquadat-Datei erfolgt. Ergebnis: " -#: application/controllers/Update.php:687 +#: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " msgstr "Update der VUCC-Planquadrat-Datei fehlgeschlagen. Ergebnis: " @@ -3586,14 +3611,14 @@ msgstr "Kein Rufzeichen angegeben" msgid "DXCC has to be Numeric" msgstr "DXCC muss numerisch sein" -#: application/models/Logbook_model.php:4886 +#: application/models/Logbook_model.php:4806 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Falscher Stationscall %s im QSO mit %s für das Stationsprofil %s: Nicht " "importiert" -#: application/models/Logbook_model.php:4900 +#: application/models/Logbook_model.php:4820 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3601,11 +3626,11 @@ msgstr "" "Du hast versucht, ein QSO mit ungültigem Datum zu importieren. Dieses QSO " "wurde nicht importiert. Es ist ungültig" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4829 msgid "QSO on" msgstr "QSO am" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4829 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3613,7 +3638,7 @@ msgstr "" "Du hast versucht, ein QSO ohne angegebenes Rufzeichen zu importieren. Dieses " "QSO wurde nicht importiert. Es ist ungültig" -#: application/models/Logbook_model.php:4958 +#: application/models/Logbook_model.php:4878 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3622,64 +3647,64 @@ msgstr "" "QSO um %s: Du hast versucht, ein QSO ohne Bandinformationen zu importieren. " "Dieses QSO wurde nicht importiert. Es ist ungültig" -#: application/models/Logbook_model.php:5231 +#: application/models/Logbook_model.php:5151 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "Das (Papier-)QSL-Empfangsdatum hat das falsche Format (JJJJMMDD)" -#: application/models/Logbook_model.php:5242 +#: application/models/Logbook_model.php:5162 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "Das (Papier-)QSL Sendedatum hat das falsche Format (JJJJMMTT)" -#: application/models/Logbook_model.php:5303 +#: application/models/Logbook_model.php:5223 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "Das Format des Clublog-Upload-Datums ist falsch (JJJJMMTT)" -#: application/models/Logbook_model.php:5676 +#: application/models/Logbook_model.php:5596 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Doublette zu" -#: application/models/Logbook_model.php:5741 -#: application/models/Logbook_model.php:5836 +#: application/models/Logbook_model.php:5661 +#: application/models/Logbook_model.php:5756 msgid "QSO could not be matched" msgstr "QSO konnte nicht gefunden werden" -#: application/models/Logbook_model.php:5749 +#: application/models/Logbook_model.php:5669 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "bestätigt durch LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:5755 +#: application/models/Logbook_model.php:5675 msgid "confirmed by award manager" msgstr "bestätigt durch Diplommananger" -#: application/models/Logbook_model.php:5759 +#: application/models/Logbook_model.php:5679 msgid "confirmed by cross-check of DCL data" msgstr "bestätigt durch Cross-Check von DCL-Daten" -#: application/models/Logbook_model.php:5763 +#: application/models/Logbook_model.php:5683 msgid "confirmation pending" msgstr "Bestätigung ausstehend" -#: application/models/Logbook_model.php:5766 +#: application/models/Logbook_model.php:5686 msgid "unconfirmed" msgstr "nicht bestätigt" -#: application/models/Logbook_model.php:5769 +#: application/models/Logbook_model.php:5689 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "unbekannt" -#: application/models/Logbook_model.php:5839 +#: application/models/Logbook_model.php:5759 msgid "POTA reference already in log" msgstr "POTA Referenz bereits im Log" -#: application/models/Logbook_model.php:5842 +#: application/models/Logbook_model.php:5762 msgid "QSO updated" msgstr "QSO aktualisiert" -#: application/models/Logbook_model.php:6236 +#: application/models/Logbook_model.php:6156 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3860,13 +3885,13 @@ msgstr "Differenz" #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:101 -#: application/views/bandmap/list.php:295 -#: application/views/bandmap/list.php:303 -#: application/views/bandmap/list.php:325 -#: application/views/bandmap/list.php:337 -#: application/views/bandmap/list.php:351 -#: application/views/bandmap/list.php:365 application/views/bands/index.php:123 +#: application/views/bandmap/list.php:102 +#: application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:326 +#: application/views/bandmap/list.php:338 +#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:366 application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 #: application/views/callstats/index.php:24 @@ -4455,7 +4480,8 @@ msgstr "Nichts gefunden!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wpx/wpx_details.php:20 #: application/views/awards/wwff/index.php:35 -#: application/views/bandmap/list.php:27 application/views/bandmap/list.php:165 +#: application/views/bandmap/list.php:28 application/views/bandmap/list.php:166 +#: application/views/bandmap/list.php:555 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:147 #: application/views/calltester/comparison_result.php:60 @@ -4626,7 +4652,7 @@ msgstr "Datum" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:137 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 #: application/views/contesting/index.php:262 @@ -5270,7 +5296,7 @@ msgstr "Die API-URL für diese Wavelog-Instanz ist" #: application/views/api/index.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 #: application/views/interface_assets/footer.php:39 -#: application/views/qso/index.php:45 application/views/radio/index.php:26 +#: application/views/qso/index.php:45 application/views/radio/index.php:30 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -5551,7 +5577,8 @@ msgstr "Gesamt" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:193 -#: application/views/bandmap/list.php:572 application/views/csv/index.php:80 +#: application/views/bandmap/list.php:557 +#: application/views/bandmap/list.php:595 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 #: application/views/gridmap/index.php:236 application/views/kml/index.php:65 #: application/views/logbookadvanced/checkresult.php:246 @@ -5737,7 +5764,7 @@ msgstr "Datum bis" #: application/views/awards/wab/list.php:6 #: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 +#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 #: application/views/dashboard/index.php:342 #: application/views/dashboard/index.php:460 #: application/views/interface_assets/footer.php:45 @@ -5749,7 +5776,7 @@ msgstr "Bestätigt" #: application/views/awards/cq/index.php:88 #: application/views/awards/itu/index.php:38 #: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 +#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 #: application/views/dashboard/index.php:338 #: application/views/dashboard/index.php:454 #: application/views/search/result.php:35 @@ -6092,8 +6119,8 @@ msgstr "Inklusive gelöschte" #: application/views/awards/dxcc/index.php:142 #: application/views/awards/iota/index.php:90 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/list.php:339 -#: application/views/bandmap/list.php:353 +#: application/views/bandmap/list.php:340 +#: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 #: application/views/logbookadvanced/index.php:491 #: application/views/lookup/index.php:60 @@ -6106,8 +6133,8 @@ msgstr "Antarktis" #: application/views/awards/dxcc/index.php:146 #: application/views/awards/iota/index.php:94 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/list.php:338 -#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:339 +#: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:218 #: application/views/logbookadvanced/index.php:490 #: application/views/lookup/index.php:59 @@ -6120,8 +6147,8 @@ msgstr "Afrika" #: application/views/awards/dxcc/index.php:150 #: application/views/awards/iota/index.php:98 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/list.php:340 -#: application/views/bandmap/list.php:354 +#: application/views/bandmap/list.php:341 +#: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:221 #: application/views/logbookadvanced/index.php:493 #: application/views/lookup/index.php:62 @@ -6134,8 +6161,8 @@ msgstr "Asien" #: application/views/awards/dxcc/index.php:154 #: application/views/awards/iota/index.php:102 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/list.php:341 -#: application/views/bandmap/list.php:355 +#: application/views/bandmap/list.php:342 +#: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:222 #: application/views/logbookadvanced/index.php:494 #: application/views/lookup/index.php:63 @@ -6148,8 +6175,8 @@ msgstr "Europa" #: application/views/awards/dxcc/index.php:158 #: application/views/awards/iota/index.php:106 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/list.php:342 -#: application/views/bandmap/list.php:356 +#: application/views/bandmap/list.php:343 +#: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:220 #: application/views/logbookadvanced/index.php:492 #: application/views/lookup/index.php:61 @@ -6162,8 +6189,8 @@ msgstr "Nordamerika" #: application/views/awards/dxcc/index.php:162 #: application/views/awards/iota/index.php:110 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/list.php:344 -#: application/views/bandmap/list.php:358 +#: application/views/bandmap/list.php:345 +#: application/views/bandmap/list.php:359 #: application/views/logbookadvanced/edit.php:223 #: application/views/logbookadvanced/index.php:495 #: application/views/lookup/index.php:64 @@ -6176,8 +6203,8 @@ msgstr "Südamerika" #: application/views/awards/dxcc/index.php:166 #: application/views/awards/iota/index.php:114 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/list.php:343 -#: application/views/bandmap/list.php:357 +#: application/views/bandmap/list.php:344 +#: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:224 #: application/views/logbookadvanced/index.php:496 #: application/views/lookup/index.php:65 @@ -6795,7 +6822,7 @@ msgstr "PHONE" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 -#: application/views/bandmap/list.php:305 +#: application/views/bandmap/list.php:306 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" @@ -7140,8 +7167,9 @@ msgid "Awards - Worked All Continents (WAC)" msgstr "Diplome - Worked All Continents (WAC)" #: application/views/awards/wac/index.php:152 -#: application/views/bandmap/list.php:100 -#: application/views/bandmap/list.php:571 +#: application/views/bandmap/list.php:101 +#: application/views/bandmap/list.php:556 +#: application/views/bandmap/list.php:594 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 #: application/views/logbookadvanced/index.php:486 @@ -7508,215 +7536,215 @@ msgstr "" "Die Datensicherung der Notizen wurde erfolgreich abgeschlossen. Die " "Sicherungsdatei findest du hier" -#: application/views/bandmap/list.php:11 +#: application/views/bandmap/list.php:12 msgid "Click to prepare logging." msgstr "Klicken, um das Loggen vorzubereiten." -#: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:12 application/views/bandmap/list.php:132 msgid "to tune frequency" msgstr "um die Frequenz einzustellen" -#: application/views/bandmap/list.php:14 +#: application/views/bandmap/list.php:15 msgid "Pop-up Blocked" msgstr "Pop-up blockiert" -#: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 +#: application/views/bandmap/list.php:16 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "" "Pop-up wurde blockiert! Bitte erlaube Pop-ups für diese Seite dauerhaft." -#: application/views/bandmap/list.php:16 +#: application/views/bandmap/list.php:17 msgid "CAT Connection Required" msgstr "CAT-Verbindung erforderlich" -#: application/views/bandmap/list.php:17 +#: application/views/bandmap/list.php:18 msgid "Enable CAT connection to tune the radio" msgstr "CAT-Verbindung aktivieren, um das Funkgerät abzustimmen" -#: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 +#: application/views/bandmap/list.php:19 application/views/bandmap/list.php:412 msgid "Clear Filters" msgstr "Filter löschen" -#: application/views/bandmap/list.php:19 +#: application/views/bandmap/list.php:20 msgid "Band filter preserved (band lock is active)" msgstr "Bandfilter erhalten (Bandsperre ist aktiv)" -#: application/views/bandmap/list.php:21 +#: application/views/bandmap/list.php:22 msgid "Radio set to None - CAT connection disabled" msgstr "Kein Funkgerät ausgewählt - CAT-Verbindung deaktiviert" -#: application/views/bandmap/list.php:22 +#: application/views/bandmap/list.php:23 msgid "Radio Tuned" msgstr "Radio eingestellt" -#: application/views/bandmap/list.php:23 +#: application/views/bandmap/list.php:24 msgid "Tuned to" msgstr "Eingestellt auf" -#: application/views/bandmap/list.php:24 +#: application/views/bandmap/list.php:25 msgid "Tuning Failed" msgstr "Abstimmung fehlgeschlagen" -#: application/views/bandmap/list.php:25 +#: application/views/bandmap/list.php:26 msgid "Failed to tune radio to frequency" msgstr "Abstimmen des Funkgeräts auf Frequenz fehlgeschlagen" -#: application/views/bandmap/list.php:26 +#: application/views/bandmap/list.php:27 msgid "QSO Prepared" msgstr "QSO vorbereitet" -#: application/views/bandmap/list.php:28 +#: application/views/bandmap/list.php:29 msgid "sent to logging form" msgstr "zum QSO Fenster gesendet" -#: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 +#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:230 msgid "CAT Connection" msgstr "CAT-Verbindung" -#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 +#: application/views/bandmap/list.php:31 application/views/bandmap/list.php:229 msgid "Click to enable CAT connection" msgstr "Klicke, um die CAT-Steuerung zu aktivieren" -#: application/views/bandmap/list.php:31 +#: application/views/bandmap/list.php:32 msgid "CAT following radio - Click to disable" msgstr "CAT folgt Funkgerät - Klicke zum Deaktivieren" -#: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 +#: application/views/bandmap/list.php:33 application/views/bandmap/list.php:232 msgid "Click to enable band lock (requires CAT connection)" msgstr "Klicke, um die Bandsperre zu aktivieren (erfordert CAT-Verbindung)" -#: application/views/bandmap/list.php:33 +#: application/views/bandmap/list.php:34 msgid "Band lock active - Click to disable" msgstr "Bandsperre aktiv - Klicke, um zu deaktivieren" -#: application/views/bandmap/list.php:34 +#: application/views/bandmap/list.php:35 msgid "Band Lock" msgstr "Bandsperre" -#: application/views/bandmap/list.php:35 +#: application/views/bandmap/list.php:36 msgid "Band lock enabled - band filter will track radio band" msgstr "Bandsperre aktiv - Bandfilter folgt Band des Funkgeräts" -#: application/views/bandmap/list.php:36 +#: application/views/bandmap/list.php:37 msgid "Band filter changed to" msgstr "Bandfilter geändert zu" -#: application/views/bandmap/list.php:37 +#: application/views/bandmap/list.php:38 msgid "by transceiver" msgstr "durch Transceiver" -#: application/views/bandmap/list.php:38 +#: application/views/bandmap/list.php:39 msgid "Frequency filter set to" msgstr "Frequenzfilter eingestellt auf" -#: application/views/bandmap/list.php:39 +#: application/views/bandmap/list.php:40 msgid "Frequency outside known bands - showing all bands" msgstr "Frequenz außerhalb bekannter Bänder - alle Bänder anzeigen" -#: application/views/bandmap/list.php:40 +#: application/views/bandmap/list.php:41 msgid "Waiting for radio data..." msgstr "Warte auf Funkgerätedaten..." -#: application/views/bandmap/list.php:41 +#: application/views/bandmap/list.php:42 msgid "My Favorites" msgstr "Meine Favoriten" -#: application/views/bandmap/list.php:42 +#: application/views/bandmap/list.php:43 msgid "Failed to load favorites" msgstr "Konnte Favoriten nicht laden" -#: application/views/bandmap/list.php:43 +#: application/views/bandmap/list.php:44 msgid "Modes applied. Band filter preserved (CAT connection is active)" msgstr "Modi angewendet. Bandfilter erhalten (CAT-Steuerung ist aktiv)" -#: application/views/bandmap/list.php:44 +#: application/views/bandmap/list.php:45 msgid "Applied your favorite bands and modes" msgstr "Bevorzugte Bänder und Modi angewendet" -#: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 -#: application/views/bandmap/list.php:479 +#: application/views/bandmap/list.php:48 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:480 msgid "My Submodes" msgstr "Meine Sub-Modes" -#: application/views/bandmap/list.php:48 +#: application/views/bandmap/list.php:49 msgid "Submode filter enabled" msgstr "Sub-Mode-Filter aktiviert" -#: application/views/bandmap/list.php:49 +#: application/views/bandmap/list.php:50 msgid "Submode filter disabled - showing all" msgstr "Sub-Mode-Filter deaktiviert - Zeige alle" -#: application/views/bandmap/list.php:50 +#: application/views/bandmap/list.php:51 msgid "Required submodes" msgstr "Erforderliche Sub-Modes" -#: application/views/bandmap/list.php:51 +#: application/views/bandmap/list.php:52 msgid "Configure in User Settings - Modes" msgstr "Konfiguriere in Benutzereinstellungen - Modi" -#: application/views/bandmap/list.php:52 +#: application/views/bandmap/list.php:53 msgid "No submodes configured - configure in User Settings - Modes" msgstr "" "Keine Sub-Modes konfiguriert - Konfiguriere in Benutzereinstellungen - Modi" -#: application/views/bandmap/list.php:53 +#: application/views/bandmap/list.php:54 msgid "No submodes enabled in settings - showing all spots" msgstr "Keine Sub-Modes aktiviert in den Einstellungen - Zeige alle Spots" -#: application/views/bandmap/list.php:54 +#: application/views/bandmap/list.php:55 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "" "Deaktiviert - In den Benutzereinstellungen keine Sub-Modes aktiviert für " "diesen Mode" -#: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 +#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 #: application/views/components/dxwaterfall.php:32 msgid "Toggle CW mode filter" msgstr "Schalte CW-Mode Filter an/aus" -#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 +#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 #: application/views/components/dxwaterfall.php:34 msgid "Toggle Digital mode filter" msgstr "Schalte Digi-Mode Filter an/aus" -#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 +#: application/views/bandmap/list.php:58 application/views/bandmap/list.php:471 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" msgstr "Schalte Fonie-Mode filter an/aus" -#: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 +#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:422 msgid "Favorites" msgstr "Favoriten" -#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 +#: application/views/bandmap/list.php:62 application/views/bandmap/list.php:425 msgid "Save Current Filters..." msgstr "Speichere aktuelle Filter..." -#: application/views/bandmap/list.php:62 +#: application/views/bandmap/list.php:63 msgid "Enter a name for this filter preset:" msgstr "Gebe einen Namen für diese Filtervoreinstellung:" -#: application/views/bandmap/list.php:63 +#: application/views/bandmap/list.php:64 msgid "Filter preset saved" msgstr "Filtervoreinstellung gespeichert" -#: application/views/bandmap/list.php:64 +#: application/views/bandmap/list.php:65 msgid "Filter preset loaded" msgstr "Filtervoreinstellung geladen" -#: application/views/bandmap/list.php:65 +#: application/views/bandmap/list.php:66 msgid "Filter preset deleted" msgstr "Filtervoreinstellungen gelöscht" -#: application/views/bandmap/list.php:66 +#: application/views/bandmap/list.php:67 msgid "Are you sure to delete this filter preset?" msgstr "Bist du sicher, dass du diese Filtervoreinstellung löschen willst?" -#: application/views/bandmap/list.php:67 +#: application/views/bandmap/list.php:68 msgid "No saved filter presets" msgstr "Keine gespeicherten Filtervoreinstellungen" -#: application/views/bandmap/list.php:68 +#: application/views/bandmap/list.php:69 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." @@ -7724,64 +7752,64 @@ msgstr "" "Maximum von 20 Filtervoreinstellungen erreicht. Bitte lösche welche, bevor " "du neue hinzufügst." -#: application/views/bandmap/list.php:71 +#: application/views/bandmap/list.php:72 msgid "Loading data from DX Cluster" msgstr "Lade Daten vom DX-Cluster" -#: application/views/bandmap/list.php:72 +#: application/views/bandmap/list.php:73 msgid "Last fetched for" msgstr "Zuletzt geladen für" -#: application/views/bandmap/list.php:73 +#: application/views/bandmap/list.php:74 msgid "Max Age" msgstr "Max. Alter" -#: application/views/bandmap/list.php:74 +#: application/views/bandmap/list.php:75 msgid "Fetched at" msgstr "Geladen um" -#: application/views/bandmap/list.php:75 +#: application/views/bandmap/list.php:76 msgid "Next update in" msgstr "Nächstes Update in" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:77 msgid "minutes" msgstr "Minuten" -#: application/views/bandmap/list.php:77 +#: application/views/bandmap/list.php:78 msgid "seconds" msgstr "Sekunden" -#: application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:79 msgid "spots fetched" msgstr "Spots abgerufen" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 msgid "showing" msgstr "zeigen" -#: application/views/bandmap/list.php:80 +#: application/views/bandmap/list.php:81 msgid "showing all" msgstr "alles anzeigen" -#: application/views/bandmap/list.php:81 +#: application/views/bandmap/list.php:82 msgid "Active filters" msgstr "Aktive Filter" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Fetching..." msgstr "Laden..." -#: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 #: application/views/interface_assets/footer.php:47 msgid "Not worked" msgstr "Nicht gearbeitet" -#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 +#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:300 msgid "Worked, not Confirmed" msgstr "Gearbeitet, nicht bestätigt" -#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:316 #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:70 @@ -7789,46 +7817,46 @@ msgstr "Gearbeitet, nicht bestätigt" msgid "LoTW User" msgstr "LoTW-Benutzer" -#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 +#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:319 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" msgstr "Neues Call" -#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 +#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 #: application/views/components/dxwaterfall.php:16 msgid "New Continent" msgstr "Neuer Kontinent" -#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 +#: application/views/bandmap/list.php:93 application/views/bandmap/list.php:318 msgid "New Country" msgstr "Neues Land" -#: application/views/bandmap/list.php:93 +#: application/views/bandmap/list.php:94 msgid "Worked Before" msgstr "Bereits gearbeitet" -#: application/views/bandmap/list.php:94 +#: application/views/bandmap/list.php:95 #, php-format msgid "Worked on %s with %s" msgstr "Gearbeitet auf %s mit %s" -#: application/views/bandmap/list.php:102 -#: application/views/bandmap/list.php:575 +#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:598 msgid "de" msgstr "von" -#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:104 msgid "spotted" msgstr "gespotted" -#: application/views/bandmap/list.php:106 +#: application/views/bandmap/list.php:107 msgid "Fresh spot (< 5 minutes old)" msgstr "Frischer Spot (<5 Minuten alt)" -#: application/views/bandmap/list.php:107 #: application/views/bandmap/list.php:108 -#: application/views/bandmap/list.php:320 -#: application/views/bandmap/list.php:510 +#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:511 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:482 @@ -7839,102 +7867,104 @@ msgstr "Frischer Spot (<5 Minuten alt)" msgid "Contest" msgstr "Contest" -#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:110 msgid "Click to view" msgstr "Klicke zum Anzeigen" -#: application/views/bandmap/list.php:110 +#: application/views/bandmap/list.php:111 msgid "on QRZ.com" msgstr "auf QRZ.com" -#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:112 #, php-format msgid "Click to view %s on QRZ.com" msgstr "Klicke, um %s auf QRZ.com anzusehen" -#: application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:113 msgid "See details for" msgstr "Zeige Details für" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Worked on" msgstr "Gearbeitet am" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "Not worked on this band" msgstr "Nicht auf diesem Band gearbeitet" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 #, php-format msgid "LoTW User. Last upload was %d days ago" msgstr "LoTW-Nutzer. Letzter Upload war vor %d Tag(en)" -#: application/views/bandmap/list.php:116 +#: application/views/bandmap/list.php:117 msgid "Click to view on POTA.app" msgstr "Klicken um auf POTA.app anzuzeigen" -#: application/views/bandmap/list.php:117 +#: application/views/bandmap/list.php:118 msgid "Click to view on SOTL.as" msgstr "Klicken, um auf SOTL.as anzusehen" -#: application/views/bandmap/list.php:118 +#: application/views/bandmap/list.php:119 msgid "Click to view on cqgma.org" msgstr "Klicken, um auf cqgma.org zu sehen" -#: application/views/bandmap/list.php:119 +#: application/views/bandmap/list.php:120 msgid "Click to view on IOTA-World.org" msgstr "Klicken, um auf IOTA-World.org anzusehen" -#: application/views/bandmap/list.php:120 +#: application/views/bandmap/list.php:121 msgid "See details for continent" msgstr "Siehe Details zu Kontinent" -#: application/views/bandmap/list.php:121 +#: application/views/bandmap/list.php:122 #, php-format msgid "See details for continent %s" msgstr "Siehe Details zu Kontinent %s" -#: application/views/bandmap/list.php:122 +#: application/views/bandmap/list.php:123 msgid "See details for CQ Zone" msgstr "Sieh die Details für die CQ-Zone" -#: application/views/bandmap/list.php:123 +#: application/views/bandmap/list.php:124 #, php-format msgid "See details for CQ Zone %s" msgstr "Sieh die Details für die CQ-Zone %s" -#: application/views/bandmap/list.php:124 +#: application/views/bandmap/list.php:125 msgid "in" msgstr "in" -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 msgid "Exit Fullscreen" msgstr "Schließe Vollbild" -#: application/views/bandmap/list.php:128 -#: application/views/bandmap/list.php:214 +#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:215 msgid "Toggle Fullscreen" msgstr "Schalte Vollbild" -#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:130 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "" "Bandfilter ist durch das Funkgerät gesteuert, solange CAT-Steuerung aktiv ist" -#: application/views/bandmap/list.php:130 +#: application/views/bandmap/list.php:131 msgid "Click to prepare logging" msgstr "Klicke, um Log vorzubereiten" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "(requires CAT connection)" msgstr "(erfordert CAT-Steuerung)" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:561 +#: application/views/bandmap/list.php:562 msgid "Spotter" msgstr "Spotter" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 @@ -7947,110 +7977,111 @@ msgstr "Spotter" msgid "Comment" msgstr "Kommentar" -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:548 #: application/views/contesting/index.php:65 msgid "Age" msgstr "Alter" -#: application/views/bandmap/list.php:137 +#: application/views/bandmap/list.php:138 msgid "Incoming" msgstr "Eingang" -#: application/views/bandmap/list.php:138 +#: application/views/bandmap/list.php:139 msgid "Outgoing" msgstr "Ausgang" -#: application/views/bandmap/list.php:139 +#: application/views/bandmap/list.php:140 #: application/views/components/dxwaterfall.php:15 msgid "spots" msgstr "Spots" -#: application/views/bandmap/list.php:140 +#: application/views/bandmap/list.php:141 msgid "spot" msgstr "Spot" -#: application/views/bandmap/list.php:141 +#: application/views/bandmap/list.php:142 msgid "spotters" msgstr "Spotter" -#: application/views/bandmap/list.php:144 +#: application/views/bandmap/list.php:145 msgid "Please Wait" msgstr "Bitte warte" -#: application/views/bandmap/list.php:145 +#: application/views/bandmap/list.php:146 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "" "Bitte warte %s Sekunden bevor du ein weiteres Rufzeichen an die QSO-" "Eingabemaske schickst" -#: application/views/bandmap/list.php:148 +#: application/views/bandmap/list.php:149 msgid "Loading spots..." msgstr "Lade Spots..." -#: application/views/bandmap/list.php:149 +#: application/views/bandmap/list.php:150 msgid "No spots found" msgstr "Keine Spots gefunden" -#: application/views/bandmap/list.php:150 +#: application/views/bandmap/list.php:151 msgid "No data available" msgstr "Keine Daten verfügbar" -#: application/views/bandmap/list.php:151 +#: application/views/bandmap/list.php:152 msgid "No spots found for selected filters" msgstr "Keine Spots für die ausgewählten Filter gefunden" -#: application/views/bandmap/list.php:152 +#: application/views/bandmap/list.php:153 msgid "Error loading spots. Please try again." msgstr "Fehler beim Laden der Spots. Bitte versuche es erneut." -#: application/views/bandmap/list.php:155 +#: application/views/bandmap/list.php:156 msgid "Show all modes" msgstr "Zeige alle Modi" -#: application/views/bandmap/list.php:156 +#: application/views/bandmap/list.php:157 msgid "Show all spots" msgstr "Zeige alle Spots" -#: application/views/bandmap/list.php:161 +#: application/views/bandmap/list.php:162 msgid "Draw Spotters" msgstr "Zeichne Spotter" -#: application/views/bandmap/list.php:162 +#: application/views/bandmap/list.php:163 msgid "Extend Map" msgstr "Erweitere Karte" -#: application/views/bandmap/list.php:163 +#: application/views/bandmap/list.php:164 msgid "Show Day/Night" msgstr "Zeige Tag/Nacht" -#: application/views/bandmap/list.php:164 +#: application/views/bandmap/list.php:165 msgid "Your QTH" msgstr "Dein QTH" -#: application/views/bandmap/list.php:200 +#: application/views/bandmap/list.php:201 msgid "Return to Home" msgstr "Gehe zum Ausgangspunkt" -#: application/views/bandmap/list.php:203 +#: application/views/bandmap/list.php:204 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" msgstr "DX-Cluster" -#: application/views/bandmap/list.php:207 +#: application/views/bandmap/list.php:208 msgid "DX Cluster Help" msgstr "DX-Cluster Hilfe" -#: application/views/bandmap/list.php:210 +#: application/views/bandmap/list.php:211 msgid "Compact Mode - Hide/Show Menu" msgstr "Kompaktmodus - Verstecke/Zeige Menü" -#: application/views/bandmap/list.php:237 +#: application/views/bandmap/list.php:238 msgid "TRX:" msgstr "TRX:" -#: application/views/bandmap/list.php:239 -#: application/views/bandmap/list.php:313 +#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:314 #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 @@ -8058,315 +8089,282 @@ msgstr "TRX:" msgid "None" msgstr "Nichts" -#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:241 #: application/views/contesting/index.php:160 #: application/views/qso/index.php:414 msgid "Live - WebSocket" msgstr "Live - WebSocket" -#: application/views/bandmap/list.php:242 application/views/qso/index.php:416 +#: application/views/bandmap/list.php:243 application/views/qso/index.php:416 msgid "Polling - " msgstr "Abfragen - " -#: application/views/bandmap/list.php:251 +#: application/views/bandmap/list.php:252 msgid "de:" msgstr "von:" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "Select all continents" msgstr "Wähle alle Kontinente" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "World" msgstr "Welt" -#: application/views/bandmap/list.php:254 +#: application/views/bandmap/list.php:255 msgid "Toggle Africa continent filter" msgstr "Schalte Kontinentfilter für Afrika" -#: application/views/bandmap/list.php:255 +#: application/views/bandmap/list.php:256 msgid "Toggle Antarctica continent filter" msgstr "Schalte Kontinentfilter für Antarktis" -#: application/views/bandmap/list.php:256 +#: application/views/bandmap/list.php:257 msgid "Toggle Asia continent filter" msgstr "Schalte Kontinentfilter für Asien" -#: application/views/bandmap/list.php:257 +#: application/views/bandmap/list.php:258 msgid "Toggle Europe continent filter" msgstr "Schalte Kontinentfilter für Europa" -#: application/views/bandmap/list.php:258 +#: application/views/bandmap/list.php:259 msgid "Toggle North America continent filter" msgstr "Schalte Kontinentfilter für Nordamerika" -#: application/views/bandmap/list.php:259 +#: application/views/bandmap/list.php:260 msgid "Toggle Oceania continent filter" msgstr "Schalte Kontinentfilter für Ozeanien" -#: application/views/bandmap/list.php:260 +#: application/views/bandmap/list.php:261 msgid "Toggle South America continent filter" msgstr "Schalte Kontinentfilter für Südamerika" -#: application/views/bandmap/list.php:273 +#: application/views/bandmap/list.php:274 msgid "Advanced Filters" msgstr "Erweiterte Filter" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "Hold" msgstr "Drücke" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "and click to select multiple options" msgstr "und klicke für die Auswahl mehrerer Optionen" -#: application/views/bandmap/list.php:293 +#: application/views/bandmap/list.php:294 msgid "DXCC-Status" msgstr "DXCC-Status" -#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:305 #: application/views/components/dxwaterfall.php:31 msgid "Phone" msgstr "Phonie" -#: application/views/bandmap/list.php:306 +#: application/views/bandmap/list.php:307 #: application/views/components/dxwaterfall.php:35 msgid "Digi" msgstr "Digi" -#: application/views/bandmap/list.php:311 +#: application/views/bandmap/list.php:312 msgid "Required Flags" msgstr "Erforderliche Marker" -#: application/views/bandmap/list.php:319 +#: application/views/bandmap/list.php:320 msgid "Worked Callsign" msgstr "Gearbeitetes Rufzeichen" -#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:322 msgid "DX Spot" msgstr "DX Spot" -#: application/views/bandmap/list.php:323 +#: application/views/bandmap/list.php:324 msgid "Additional Flags" msgstr "Weitere Marker" -#: application/views/bandmap/list.php:330 +#: application/views/bandmap/list.php:331 msgid "Fresh (< 5 min)" msgstr "Frisch (< 5 min)" -#: application/views/bandmap/list.php:335 +#: application/views/bandmap/list.php:336 msgid "Spots de Continent" msgstr "Spots von Kontinent" -#: application/views/bandmap/list.php:349 +#: application/views/bandmap/list.php:350 msgid "Spotted Station Continent" msgstr "Gespotteter Kontinent der Station" -#: application/views/bandmap/list.php:409 +#: application/views/bandmap/list.php:410 msgid "Apply Filters" msgstr "Wende Filter an" -#: application/views/bandmap/list.php:420 +#: application/views/bandmap/list.php:421 msgid "Filter Favorites" msgstr "Filterfavoriten" -#: application/views/bandmap/list.php:430 +#: application/views/bandmap/list.php:431 msgid "Clear all filters except De Continent" msgstr "Lösche alle Filter außer von Kontinent" -#: application/views/bandmap/list.php:436 +#: application/views/bandmap/list.php:437 msgid "Toggle 160m band filter" msgstr "Aktiviere 160m Bandfilter" -#: application/views/bandmap/list.php:440 +#: application/views/bandmap/list.php:441 msgid "Toggle 80m band filter" msgstr "Aktiviere 80m Bandfilter" -#: application/views/bandmap/list.php:441 +#: application/views/bandmap/list.php:442 msgid "Toggle 60m band filter" msgstr "Aktiviere 60m Bandfilter" -#: application/views/bandmap/list.php:442 +#: application/views/bandmap/list.php:443 msgid "Toggle 40m band filter" msgstr "Aktiviere 40m Bandfilter" -#: application/views/bandmap/list.php:443 +#: application/views/bandmap/list.php:444 msgid "Toggle 30m band filter" msgstr "Aktiviere 30m Bandfilter" -#: application/views/bandmap/list.php:444 +#: application/views/bandmap/list.php:445 msgid "Toggle 20m band filter" msgstr "Aktiviere 20m Bandfilter" -#: application/views/bandmap/list.php:445 +#: application/views/bandmap/list.php:446 msgid "Toggle 17m band filter" msgstr "Aktiviere 17m Bandfilter" -#: application/views/bandmap/list.php:446 +#: application/views/bandmap/list.php:447 msgid "Toggle 15m band filter" msgstr "Aktiviere 15m Bandfilter" -#: application/views/bandmap/list.php:447 +#: application/views/bandmap/list.php:448 msgid "Toggle 12m band filter" msgstr "Aktiviere 12m Bandfilter" -#: application/views/bandmap/list.php:448 +#: application/views/bandmap/list.php:449 msgid "Toggle 10m band filter" msgstr "Aktiviere 10m Bandfilter" -#: application/views/bandmap/list.php:452 +#: application/views/bandmap/list.php:453 msgid "Toggle 6m band filter" msgstr "Schalte 6m Bandfilter um" -#: application/views/bandmap/list.php:456 +#: application/views/bandmap/list.php:457 msgid "Toggle VHF bands filter" msgstr "Aktiviere VHF Bandfilter" -#: application/views/bandmap/list.php:457 +#: application/views/bandmap/list.php:458 msgid "Toggle UHF bands filter" msgstr "Aktiviere UHF Bandfilter" -#: application/views/bandmap/list.php:458 +#: application/views/bandmap/list.php:459 msgid "Toggle SHF bands filter" msgstr "Aktiviere SHF Bandfilter" -#: application/views/bandmap/list.php:478 +#: application/views/bandmap/list.php:479 msgid "Loading submodes..." msgstr "Lade Sub-Modi..." -#: application/views/bandmap/list.php:483 +#: application/views/bandmap/list.php:484 msgid "Toggle LoTW User filter" msgstr "Aktiviere LoTW-Benutzer Bandfilter" -#: application/views/bandmap/list.php:484 +#: application/views/bandmap/list.php:485 msgid "LoTW users" msgstr "LoTW-Benutzer" -#: application/views/bandmap/list.php:490 +#: application/views/bandmap/list.php:491 msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" msgstr "" "Aktiviere DX-Spot Filter (gespotteter Kontinent ≠ Kontinent des Spotters)" -#: application/views/bandmap/list.php:491 -#: application/views/bandmap/list.php:570 +#: application/views/bandmap/list.php:492 +#: application/views/bandmap/list.php:593 msgid "DX" msgstr "DX" -#: application/views/bandmap/list.php:493 +#: application/views/bandmap/list.php:494 msgid "Toggle New Continents filter" msgstr "Umschalten des Filters für neue Kontinente" -#: application/views/bandmap/list.php:494 +#: application/views/bandmap/list.php:495 msgid "New Continents" msgstr "Neue Kontinente" -#: application/views/bandmap/list.php:496 +#: application/views/bandmap/list.php:497 msgid "Toggle New Entities filter" msgstr "Filter für neue Entitäten umschalten" -#: application/views/bandmap/list.php:497 +#: application/views/bandmap/list.php:498 msgid "New Entities" msgstr "Neue Entitäten" -#: application/views/bandmap/list.php:499 +#: application/views/bandmap/list.php:500 msgid "Toggle New Callsigns filter" msgstr "Filter für neue Rufzeichen umschalten" -#: application/views/bandmap/list.php:500 +#: application/views/bandmap/list.php:501 msgid "New Callsigns" msgstr "Neue Rufzeichen" -#: application/views/bandmap/list.php:506 +#: application/views/bandmap/list.php:507 msgid "Toggle Fresh spots filter (< 5 minutes old)" msgstr "Aktiviere Filter für frische Spots (<5 Minuten alt)" -#: application/views/bandmap/list.php:507 +#: application/views/bandmap/list.php:508 msgid "Fresh" msgstr "Frisch" -#: application/views/bandmap/list.php:509 +#: application/views/bandmap/list.php:510 msgid "Toggle Contest filter" msgstr "Aktiviere Kontestfilter" -#: application/views/bandmap/list.php:512 +#: application/views/bandmap/list.php:513 msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" msgstr "Aktiviere Geo-Jäger (POTA/SOTA/IOTA/WWFF)" -#: application/views/bandmap/list.php:513 +#: application/views/bandmap/list.php:514 msgid "Referenced" msgstr "Referenziert" -#: application/views/bandmap/list.php:519 +#: application/views/bandmap/list.php:520 msgid "Open DX Map view" msgstr "Öffne DX-Kartenansicht" -#: application/views/bandmap/list.php:520 +#: application/views/bandmap/list.php:521 msgid "DX Map" msgstr "DX-Karte" -#: application/views/bandmap/list.php:544 -msgid "Search spots..." -msgstr "Suche Spots..." +#: application/views/bandmap/list.php:545 +msgid "Search Column" +msgstr "Suchspalte" -#: application/views/bandmap/list.php:557 -msgid "Note: Map shows DXCC entity locations, not actual spot locations" -msgstr "Notiz: Karte zeigt DXCC Standorte, nicht die Spot-Standorte" +#: application/views/bandmap/list.php:546 +msgid "All Columns" +msgstr "Alle Spalten" -#: application/views/bandmap/list.php:565 -msgid "Age in minutes" -msgstr "Alter in Minuten" +#: application/views/bandmap/list.php:547 +msgid "Spot Info" +msgstr "Spot-Info" -#: application/views/bandmap/list.php:567 -msgid "Freq" -msgstr "Freq." - -#: application/views/bandmap/list.php:569 +#: application/views/bandmap/list.php:552 +#: application/views/bandmap/list.php:592 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" msgstr "Submode" -#: application/views/bandmap/list.php:570 -msgid "Spotted Callsign" -msgstr "Gespottetes Rufzeichen" +#: application/views/bandmap/list.php:554 +msgid "DX Station" +msgstr "DX-Station" -#: application/views/bandmap/list.php:573 -msgid "Flag" -msgstr "Landesflagge" - -#: application/views/bandmap/list.php:574 -msgid "DXCC Entity" -msgstr "DXCC-Entität" - -#: application/views/bandmap/list.php:574 +#: application/views/bandmap/list.php:558 +#: application/views/bandmap/list.php:597 msgid "Entity" msgstr "Entität" -#: application/views/bandmap/list.php:575 -msgid "Spotter Callsign" -msgstr "Spotter-Rufzeichen" - -#: application/views/bandmap/list.php:576 -msgid "Spotter Continent" -msgstr "Spotter-Kontinent" - -#: application/views/bandmap/list.php:577 -msgid "Spotter CQ Zone" -msgstr "CQ-Zone des Spotters" - -#: application/views/bandmap/list.php:578 -msgid "Last QSO Date" -msgstr "Letztes QSO-Datum" - -#: application/views/bandmap/list.php:579 -msgid "Special" -msgstr "Spezial" - -#: application/views/bandmap/list.php:579 -msgid "Special Flags" -msgstr "Spezialmarker" - -#: application/views/bandmap/list.php:580 +#: application/views/bandmap/list.php:559 +#: application/views/bandmap/list.php:603 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -8374,6 +8372,60 @@ msgstr "Spezialmarker" msgid "Message" msgstr "Nachricht" +#: application/views/bandmap/list.php:563 +#: application/views/bandmap/list.php:599 +msgid "Spotter Continent" +msgstr "Spotter-Kontinent" + +#: application/views/bandmap/list.php:564 +#: application/views/bandmap/list.php:600 +msgid "Spotter CQ Zone" +msgstr "CQ-Zone des Spotters" + +#: application/views/bandmap/list.php:567 +msgid "Search spots..." +msgstr "Suche Spots..." + +#: application/views/bandmap/list.php:580 +msgid "Note: Map shows DXCC entity locations, not actual spot locations" +msgstr "Notiz: Karte zeigt DXCC Standorte, nicht die Spot-Standorte" + +#: application/views/bandmap/list.php:588 +msgid "Age in minutes" +msgstr "Alter in Minuten" + +#: application/views/bandmap/list.php:590 +msgid "Freq" +msgstr "Freq." + +#: application/views/bandmap/list.php:593 +msgid "Spotted Callsign" +msgstr "Gespottetes Rufzeichen" + +#: application/views/bandmap/list.php:596 +msgid "Flag" +msgstr "Landesflagge" + +#: application/views/bandmap/list.php:597 +msgid "DXCC Entity" +msgstr "DXCC-Entität" + +#: application/views/bandmap/list.php:598 +msgid "Spotter Callsign" +msgstr "Spotter-Rufzeichen" + +#: application/views/bandmap/list.php:601 +msgid "Last QSO Date" +msgstr "Letztes QSO-Datum" + +#: application/views/bandmap/list.php:602 +msgid "Special" +msgstr "Spezial" + +#: application/views/bandmap/list.php:602 +msgid "Special Flags" +msgstr "Spezialmarker" + #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" msgstr "Bitte gültige Zahlen für die Frequenz eingeben" @@ -13135,7 +13187,7 @@ msgstr "" #: application/views/logbookadvanced/dbtoolsdialog.php:19 msgid "All Station Locations" -msgstr "" +msgstr "Alle Stationsstandorte" #: application/views/logbookadvanced/dbtoolsdialog.php:33 msgid "Check all QSOs in the logbook for incorrect CQ Zones" @@ -16202,7 +16254,7 @@ msgstr "" "Unten findest du eine Liste mit allen aktiven Funkgeräten, welche mit " "Wavelog verbunden sind." -#: application/views/radio/index.php:24 +#: application/views/radio/index.php:23 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." @@ -16210,16 +16262,34 @@ msgstr "" "Falls du bis jetzt keine Funkgeräte verbunden hast, geh zur API Seite und " "generiere API Schlüssel." -#: application/views/radio/index.php:26 application/views/search/filter.php:66 +#: application/views/radio/index.php:25 +msgid "" +"As a clubstation operator, you can set a default radio which applies only to " +"you. This allows you to have a default radio that is automatically selected " +"when you log in, while still being able to use other radios if you want." +msgstr "" +"Als Club-Operator kannst du ein Standard-Funkgerät festlegen, welches nur " +"für dich gilt. Dadurch hast du ein Funkgerät, das automatisch ausgewählt " +"wird, wenn du dich einloggst. Andere Funkgeräte kannst du trotzdem benutzen." + +#: application/views/radio/index.php:27 +msgid "" +"As a normal user, you can set a default radio for yourself. This allows you " +"to have a default radio that is automatically selected when you log in, " +"while still being able to use other radios if you want." +msgstr "" +"Als normaler Benutzer kannst du ein Standard-Funkgerät für dich festlegen. " +"Dadurch hast du ein Standard-Funkgerät, welches automatisch ausgewählt wird, " +"wenn du dich einloggst. Andere Funkgeräte kannst du trotzdem benutzen." + +#: application/views/radio/index.php:30 #, php-format -msgid "You can find out how to use the %s in the wiki." -msgstr "Wie du die %s verwendest, findest du im Wiki." +msgid "You can find out how to use the %sradio functions%s in the wiki." +msgstr "" +"Du kannst im Wiki herausfinden, wie du die %sFunktionen der Funkgeräte-" +"Steuerung%s nutzen kannst." -#: application/views/radio/index.php:26 -msgid "radio functions" -msgstr "Funkgerät-Funktionen" - -#: application/views/radio/index.php:31 +#: application/views/radio/index.php:35 msgid "Please wait..." msgstr "Bitte warten..." @@ -16686,6 +16756,11 @@ msgstr "Suchmuster speichern" msgid "Stored queries" msgstr "Gespeicherte Suchmuster" +#: application/views/search/filter.php:66 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "Wie du die %s verwendest, findest du im Wiki." + #: application/views/search/filter.php:66 msgid "search filter functions" msgstr "Suchfilter-Funktionen" @@ -19472,6 +19547,9 @@ msgstr "CQz" msgid "CQz geojson" msgstr "CQz geojson" +#~ msgid "radio functions" +#~ msgstr "Funkgerät-Funktionen" + #~ msgid "Incorrectly logged CQ zones" #~ msgstr "Nicht korrekt geloggte CQ-Zonen" diff --git a/application/locale/el_GR/LC_MESSAGES/messages.po b/application/locale/el_GR/LC_MESSAGES/messages.po index 607fb499f..bb07ce6e0 100644 --- a/application/locale/el_GR/LC_MESSAGES/messages.po +++ b/application/locale/el_GR/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-13 08:13+0000\n" +"POT-Creation-Date: 2026-02-17 17:26+0000\n" "PO-Revision-Date: 2025-12-30 19:49+0000\n" "Last-Translator: Florian Wolters \n" "Language-Team: Greek \n" "Language-Team: Spanish \n" "Language-Team: Estonian \n" "Language-Team: Finnish \n" "Language-Team: French \n" @@ -80,8 +80,8 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:90 application/controllers/Lotw.php:116 -#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:437 -#: application/controllers/Lotw.php:801 application/controllers/Lotw.php:888 +#: application/controllers/Lotw.php:410 application/controllers/Lotw.php:433 +#: application/controllers/Lotw.php:797 application/controllers/Lotw.php:884 #: application/controllers/Map.php:12 application/controllers/Map.php:27 #: application/controllers/Mode.php:15 application/controllers/Notes.php:10 #: application/controllers/Operator.php:13 @@ -95,8 +95,8 @@ msgstr "" #: application/controllers/Qso.php:22 application/controllers/Qso.php:288 #: application/controllers/Qso.php:419 application/controllers/Qso.php:440 #: application/controllers/Qso.php:463 application/controllers/Qso.php:763 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 -#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:320 +#: application/controllers/Radio.php:346 application/controllers/Radio.php:362 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -359,7 +359,7 @@ msgid "DOK" msgstr "DOK" #: application/controllers/Awards.php:194 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:97 application/views/bands/index.php:50 +#: application/views/bandmap/list.php:98 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:192 @@ -452,7 +452,7 @@ msgstr " et " #: application/controllers/Awards.php:595 #: application/controllers/Logbook.php:1459 -#: application/views/awards/index.php:8 application/views/bandmap/list.php:326 +#: application/views/awards/index.php:8 application/views/bandmap/list.php:327 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 #: application/views/logbookadvanced/edit.php:32 @@ -480,7 +480,7 @@ msgstr "SOTA" #: application/controllers/Awards.php:613 #: application/controllers/Logbook.php:1460 -#: application/views/bandmap/list.php:328 application/views/bands/index.php:64 +#: application/views/bandmap/list.php:329 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 @@ -502,7 +502,7 @@ msgstr "WWFF" #: application/controllers/Awards.php:631 #: application/controllers/Logbook.php:1461 -#: application/views/adif/import.php:60 application/views/bandmap/list.php:327 +#: application/views/adif/import.php:60 application/views/bandmap/list.php:328 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 @@ -658,8 +658,7 @@ msgstr "Créer un mode" msgid "Edit Band" msgstr "Modifier la bande" -#: application/controllers/Bandmap.php:28 -#: application/controllers/Bandmap.php:75 +#: application/controllers/Bandmap.php:56 #: application/controllers/Options.php:144 #: application/controllers/Options.php:155 #: application/views/options/sidebar.php:7 @@ -1470,7 +1469,7 @@ msgstr "" "résultat." #: application/controllers/Logbook.php:1454 -#: application/controllers/Radio.php:46 +#: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 #: application/views/adif/dcl_success.php:33 @@ -1495,9 +1494,11 @@ msgstr "" #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:167 -#: application/views/bandmap/list.php:301 -#: application/views/bandmap/list.php:568 +#: application/views/bandmap/list.php:100 +#: application/views/bandmap/list.php:168 +#: application/views/bandmap/list.php:302 +#: application/views/bandmap/list.php:551 +#: application/views/bandmap/list.php:591 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 @@ -1649,7 +1650,7 @@ msgstr "Pays" #: application/controllers/Logbook.php:1458 #: application/views/awards/iota/index.php:198 -#: application/views/bandmap/list.php:329 application/views/bands/index.php:52 +#: application/views/bandmap/list.php:330 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/checkresult.php:394 @@ -1817,9 +1818,10 @@ msgstr "Distance" #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:168 -#: application/views/bandmap/list.php:363 -#: application/views/bandmap/list.php:566 application/views/bands/create.php:24 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:169 +#: application/views/bandmap/list.php:364 +#: application/views/bandmap/list.php:549 +#: application/views/bandmap/list.php:589 application/views/bands/create.php:24 #: application/views/bands/edit.php:7 application/views/bands/index.php:47 #: application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 @@ -1883,8 +1885,9 @@ msgid "Band" msgstr "Bande" #: application/controllers/Logbook.php:1466 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 -#: application/views/bandmap/list.php:567 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:167 +#: application/views/bandmap/list.php:550 +#: application/views/bandmap/list.php:590 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:918 @@ -1910,7 +1913,7 @@ msgid "Frequency" msgstr "Frequence" #: application/controllers/Logbook.php:1467 -#: application/controllers/Radio.php:43 +#: application/controllers/Radio.php:46 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 #: application/views/logbookadvanced/index.php:478 @@ -1998,11 +2001,11 @@ msgstr "Certificat importé." msgid "Certificate Updated." msgstr "Certificat mis à jour." -#: application/controllers/Lotw.php:420 +#: application/controllers/Lotw.php:416 msgid "Certificate Deleted." msgstr "Certificat supprimé." -#: application/controllers/Lotw.php:448 +#: application/controllers/Lotw.php:444 #, php-format msgid "" "The certificate found in file %s contains a password and cannot be " @@ -2015,7 +2018,7 @@ msgstr "" "depuis l'application tqsl sans mot de passe !%s Pour plus d'informations, " "veuillez consulter %sla page FAQ LoTW%s du wiki Wavelog." -#: application/controllers/Lotw.php:450 +#: application/controllers/Lotw.php:446 #, php-format msgid "" "Generic error extracting the certificate from file %s. If the filename " @@ -2026,52 +2029,52 @@ msgstr "" "du fichier contient « key-only », il s'agit généralement d'une demande de " "certificat qui n'a pas encore été traitée par LoTW." -#: application/controllers/Lotw.php:457 +#: application/controllers/Lotw.php:453 #, php-format msgid "Generic error processing the certificate in file %s." msgstr "Erreur générique lors du traitement du certificat dans le fichier %s." -#: application/controllers/Lotw.php:469 +#: application/controllers/Lotw.php:465 #, php-format msgid "Generic error extracting the private key from certificate in file %s." msgstr "" "Erreur générique lors de l'extraction de la clé privée du certificat dans le " "fichier %s." -#: application/controllers/Lotw.php:685 +#: application/controllers/Lotw.php:681 msgid "LoTW ADIF Information" msgstr "Information ADIF LoTW" -#: application/controllers/Lotw.php:858 +#: application/controllers/Lotw.php:854 msgid "Connection to LoTW failed." msgstr "La connexion à LoTW a échoué." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:859 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "Échec de la connexion LoTW pour l'utilisateur %s : %s." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:859 msgid "Username/password incorrect" msgstr "Nom d'utilisateur/mot de passe incorrect" -#: application/controllers/Lotw.php:866 +#: application/controllers/Lotw.php:862 msgid "LoTW currently not available. Try again later." msgstr "LoTW actuellement indisponible. Réessayez plus tard." -#: application/controllers/Lotw.php:870 +#: application/controllers/Lotw.php:866 msgid "LoTW login OK!" msgstr "Connexion LoTW OK !" -#: application/controllers/Lotw.php:876 +#: application/controllers/Lotw.php:872 msgid "No LoTW credentials provided." msgstr "Aucun identifiant LoTW fourni." -#: application/controllers/Lotw.php:894 +#: application/controllers/Lotw.php:890 msgid "LoTW ADIF Import" msgstr "Importation ADIF LoTW" -#: application/controllers/Lotw.php:920 +#: application/controllers/Lotw.php:916 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Vous n'avez pas défini vos identifiants ARRL LoTW !" @@ -2438,17 +2441,17 @@ msgstr "Aucun indicatif fourni." msgid "Hardware Interfaces" msgstr "Interfaces matérielles" -#: application/controllers/Radio.php:41 application/views/bandmap/list.php:20 +#: application/controllers/Radio.php:44 application/views/bandmap/list.php:21 #: application/views/contesting/index.php:157 #: application/views/qso/index.php:411 application/views/view_log/qso.php:714 msgid "Radio" msgstr "Radio" -#: application/controllers/Radio.php:47 +#: application/controllers/Radio.php:50 msgid "Timestamp" msgstr "Horodatage" -#: application/controllers/Radio.php:49 +#: application/controllers/Radio.php:52 #: application/views/logbookadvanced/index.php:867 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 @@ -2457,30 +2460,34 @@ msgstr "Horodatage" msgid "Options" msgstr "Options" -#: application/controllers/Radio.php:50 application/views/debug/index.php:321 +#: application/controllers/Radio.php:53 application/views/debug/index.php:321 #: application/views/qso/index.php:841 msgid "Settings" msgstr "Paramètres" -#: application/controllers/Radio.php:63 +#: application/controllers/Radio.php:59 +msgid "WebSocket" +msgstr "WebSocket" + +#: application/controllers/Radio.php:65 application/controllers/Radio.php:124 +msgid "Default (click to release)" +msgstr "Par défaut (cliquez pour libérer)" + +#: application/controllers/Radio.php:67 application/controllers/Radio.php:126 +msgid "Set as default radio" +msgstr "Définir comme radio par défaut" + +#: application/controllers/Radio.php:83 msgid "UNKNOWN" msgstr "INCONNU" -#: application/controllers/Radio.php:98 application/views/bandmap/list.php:242 +#: application/controllers/Radio.php:118 application/views/bandmap/list.php:243 #: application/views/contesting/index.php:162 #: application/views/qso/index.php:416 msgid "last updated" msgstr "dernière mise à jour" -#: application/controllers/Radio.php:106 application/controllers/Radio.php:109 -msgid "Set as default radio" -msgstr "Définir comme radio par défaut" - -#: application/controllers/Radio.php:111 -msgid "Default (click to release)" -msgstr "Par défaut (cliquez pour libérer)" - -#: application/controllers/Radio.php:115 +#: application/controllers/Radio.php:128 #: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 @@ -2499,7 +2506,7 @@ msgstr "Par défaut (cliquez pour libérer)" msgid "Edit" msgstr "Editer" -#: application/controllers/Radio.php:116 +#: application/controllers/Radio.php:129 #: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 @@ -2528,14 +2535,33 @@ msgstr "Editer" msgid "Delete" msgstr "Supprimer" -#: application/controllers/Radio.php:122 +#: application/controllers/Radio.php:136 +msgid "WebSocket is currently default (click to release)" +msgstr "" +"WebSocket est actuellement le protocole par défaut (cliquez pour libérer)" + +#: application/controllers/Radio.php:138 +msgid "Set WebSocket as default radio" +msgstr "Définir WebSocket comme option par défaut" + +#: application/controllers/Radio.php:142 msgid "No CAT interfaced radios found." msgstr "Aucune radio avec interface CAT trouvée." -#: application/controllers/Radio.php:137 application/views/radio/index.php:2 +#: application/controllers/Radio.php:143 +msgid "You can still set the WebSocket option as your default radio." +msgstr "" +"Vous pouvez toujours définir l'option WebSocket comme option radio par " +"défaut." + +#: application/controllers/Radio.php:160 application/views/radio/index.php:2 msgid "Edit CAT Settings" msgstr "Modifier les paramètres CAT" +#: application/controllers/Radio.php:332 +msgid "Radio removed successfully" +msgstr "Radio retirée avec succès" + #: application/controllers/Reg1test.php:22 msgid "Export EDI" msgstr "Export EDI" @@ -2614,7 +2640,7 @@ msgstr "ici" msgid "Satellite Timers" msgstr "Minuteries de satellite" -#: application/controllers/Search.php:15 application/views/bandmap/list.php:544 +#: application/controllers/Search.php:15 application/views/bandmap/list.php:567 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 @@ -2938,103 +2964,103 @@ msgstr "Préparation des exceptions DXCC : " msgid "Preparing DXCC Prefixes: " msgstr "Préparation des préfixes DXCC : " -#: application/controllers/Update.php:275 +#: application/controllers/Update.php:277 msgid "DONE" msgstr "FAIT" -#: application/controllers/Update.php:304 +#: application/controllers/Update.php:326 msgid "Updating..." msgstr "Mise à jour..." -#: application/controllers/Update.php:307 +#: application/controllers/Update.php:329 msgid "Dxcc Entities:" msgstr "Entités DXCC :" -#: application/controllers/Update.php:308 +#: application/controllers/Update.php:330 msgid "Dxcc Exceptions:" msgstr "Exceptions DXCC :" -#: application/controllers/Update.php:309 +#: application/controllers/Update.php:331 msgid "Dxcc Prefixes:" msgstr "Préfixes DXCC :" -#: application/controllers/Update.php:340 +#: application/controllers/Update.php:362 msgid "SCP Update complete. Result: " msgstr "Mise à jour SCP terminée. Résultat : " -#: application/controllers/Update.php:342 +#: application/controllers/Update.php:364 msgid "SCP Update failed. Result: " msgstr "Échec de la mise à jour SCP. Résultat : " -#: application/controllers/Update.php:379 +#: application/controllers/Update.php:401 msgid "LoTW Users Update complete. Result: " msgstr "Mise à jour des utilisateurs LoTW terminée. Résultat : " -#: application/controllers/Update.php:381 +#: application/controllers/Update.php:403 msgid "LoTW Users Update failed. Result: " msgstr "Mise à jour des utilisateurs LoTW échouée. Résultat : " -#: application/controllers/Update.php:416 +#: application/controllers/Update.php:438 msgid "DOK Update complete. Result: " msgstr "Mise à jour DOK terminée. Résultat : " -#: application/controllers/Update.php:418 +#: application/controllers/Update.php:440 msgid "DOK Update failed. Result: " msgstr "La mise à jour DOK a échoué. Résultat : " -#: application/controllers/Update.php:451 +#: application/controllers/Update.php:473 msgid "SOTA Update complete. Result: " msgstr "Mise à jour SOTA terminée. Résultat : " -#: application/controllers/Update.php:453 +#: application/controllers/Update.php:475 msgid "SOTA Update failed. Result: " msgstr "La mise à jour SOTA a échoué. Résultat : " -#: application/controllers/Update.php:486 +#: application/controllers/Update.php:508 msgid "WWFF Update complete. Result: " msgstr "Mise à jour WWFF terminée. Résultat : " -#: application/controllers/Update.php:488 +#: application/controllers/Update.php:510 msgid "WWFF Update failed. Result: " msgstr "Mise à jour WWFF échouée. Résultat : " -#: application/controllers/Update.php:522 +#: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " msgstr "Mise à jour HAMqsl terminée. Résultats : " -#: application/controllers/Update.php:524 +#: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " msgstr "Echec de la mise à jour HAMqsl. Résultats : " -#: application/controllers/Update.php:557 +#: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " msgstr "Mise à jour POTA terminée. Résultat : " -#: application/controllers/Update.php:559 +#: application/controllers/Update.php:581 msgid "POTA Update failed. Result: " msgstr "La mise à jour POTA a échoué. Résultat : " -#: application/controllers/Update.php:588 +#: application/controllers/Update.php:610 msgid "TLE Update complete. Result: " msgstr "Mise à jour TLE terminée. Résultat : " -#: application/controllers/Update.php:590 +#: application/controllers/Update.php:612 msgid "TLE Update failed. Result: " msgstr "La mise à jour TLE a échoué. Résultat : " -#: application/controllers/Update.php:617 +#: application/controllers/Update.php:639 msgid "LoTW SAT Update" msgstr "Mise à jour LoTW SAT" -#: application/controllers/Update.php:645 +#: application/controllers/Update.php:667 msgid "Update of Hams of Note" msgstr "Mise à jour des radioamateurs remarquables" -#: application/controllers/Update.php:685 +#: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " msgstr "Mise à jour du fichier Locator VUCC terminée. Résultat : " -#: application/controllers/Update.php:687 +#: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " msgstr "Échec de la mise à jour du fichier Locator de VUCC. Résultat : " @@ -3584,14 +3610,14 @@ msgstr "Aucun indicatif n'a été donné" msgid "DXCC has to be Numeric" msgstr "Le DXCC doit être un nombre" -#: application/models/Logbook_model.php:4886 +#: application/models/Logbook_model.php:4806 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Indicatif d'appel de station incorrect %s lors de l'importation du QSO avec " "%s pour %s : IGNORÉ" -#: application/models/Logbook_model.php:4900 +#: application/models/Logbook_model.php:4820 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3599,11 +3625,11 @@ msgstr "" "Vous avez tenté d'importer un QSO sans date valide. Ce QSO n'a pas pu être " "importé. Il est invalide" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4829 msgid "QSO on" msgstr "QSO en" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4829 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3611,7 +3637,7 @@ msgstr "" "Vous avez essayé d'importer un QSO sans indicatif donné. Ce QSO n'a pas été " "importé. Il est invalide" -#: application/models/Logbook_model.php:4958 +#: application/models/Logbook_model.php:4878 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3620,64 +3646,64 @@ msgstr "" "QSO sur %s : Vous avez essayé d'importer un QSO sans bande spécifiée. Ce QSO " "n'a pas été importé. Il est invalide" -#: application/models/Logbook_model.php:5231 +#: application/models/Logbook_model.php:5151 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "la date de réception de la QSL est invalide (AAAAMMJJ)" -#: application/models/Logbook_model.php:5242 +#: application/models/Logbook_model.php:5162 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "la date de la QSL est invalide (AAAAMMJJ)" -#: application/models/Logbook_model.php:5303 +#: application/models/Logbook_model.php:5223 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "la clublog_qso_upload_date est invalide (AAAAMMJJ)" -#: application/models/Logbook_model.php:5676 +#: application/models/Logbook_model.php:5596 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Dupliquer pour" -#: application/models/Logbook_model.php:5741 -#: application/models/Logbook_model.php:5836 +#: application/models/Logbook_model.php:5661 +#: application/models/Logbook_model.php:5756 msgid "QSO could not be matched" msgstr "pas de correspondance pour le QSO" -#: application/models/Logbook_model.php:5749 +#: application/models/Logbook_model.php:5669 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "confirmé par LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:5755 +#: application/models/Logbook_model.php:5675 msgid "confirmed by award manager" msgstr "confirmé par le manager de l'Award" -#: application/models/Logbook_model.php:5759 +#: application/models/Logbook_model.php:5679 msgid "confirmed by cross-check of DCL data" msgstr "confirmé par recoupement des données DCL" -#: application/models/Logbook_model.php:5763 +#: application/models/Logbook_model.php:5683 msgid "confirmation pending" msgstr "confirmation en attente" -#: application/models/Logbook_model.php:5766 +#: application/models/Logbook_model.php:5686 msgid "unconfirmed" msgstr "non confirmé" -#: application/models/Logbook_model.php:5769 +#: application/models/Logbook_model.php:5689 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "inconnu" -#: application/models/Logbook_model.php:5839 +#: application/models/Logbook_model.php:5759 msgid "POTA reference already in log" msgstr "Les références du POTA sont déjà dans le log" -#: application/models/Logbook_model.php:5842 +#: application/models/Logbook_model.php:5762 msgid "QSO updated" msgstr "QSO mis à jour" -#: application/models/Logbook_model.php:6236 +#: application/models/Logbook_model.php:6156 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3859,13 +3885,13 @@ msgstr "Différence" #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:101 -#: application/views/bandmap/list.php:295 -#: application/views/bandmap/list.php:303 -#: application/views/bandmap/list.php:325 -#: application/views/bandmap/list.php:337 -#: application/views/bandmap/list.php:351 -#: application/views/bandmap/list.php:365 application/views/bands/index.php:123 +#: application/views/bandmap/list.php:102 +#: application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:326 +#: application/views/bandmap/list.php:338 +#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:366 application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 #: application/views/callstats/index.php:24 @@ -4454,7 +4480,8 @@ msgstr "Rien trouvé !" #: application/views/awards/sota/index.php:33 #: application/views/awards/wpx/wpx_details.php:20 #: application/views/awards/wwff/index.php:35 -#: application/views/bandmap/list.php:27 application/views/bandmap/list.php:165 +#: application/views/bandmap/list.php:28 application/views/bandmap/list.php:166 +#: application/views/bandmap/list.php:555 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:147 #: application/views/calltester/comparison_result.php:60 @@ -4625,7 +4652,7 @@ msgstr "Date" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:137 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 #: application/views/contesting/index.php:262 @@ -5275,7 +5302,7 @@ msgstr "L'URL de l'API pour cette instance de Wavelog est" #: application/views/api/index.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 #: application/views/interface_assets/footer.php:39 -#: application/views/qso/index.php:45 application/views/radio/index.php:26 +#: application/views/qso/index.php:45 application/views/radio/index.php:30 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -5556,7 +5583,8 @@ msgstr "Total" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:193 -#: application/views/bandmap/list.php:572 application/views/csv/index.php:80 +#: application/views/bandmap/list.php:557 +#: application/views/bandmap/list.php:595 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 #: application/views/gridmap/index.php:236 application/views/kml/index.php:65 #: application/views/logbookadvanced/checkresult.php:246 @@ -5743,7 +5771,7 @@ msgstr "Date à" #: application/views/awards/wab/list.php:6 #: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 +#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 #: application/views/dashboard/index.php:342 #: application/views/dashboard/index.php:460 #: application/views/interface_assets/footer.php:45 @@ -5755,7 +5783,7 @@ msgstr "Confirmés" #: application/views/awards/cq/index.php:88 #: application/views/awards/itu/index.php:38 #: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 +#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 #: application/views/dashboard/index.php:338 #: application/views/dashboard/index.php:454 #: application/views/search/result.php:35 @@ -6101,8 +6129,8 @@ msgstr "Inclure supprimé" #: application/views/awards/dxcc/index.php:142 #: application/views/awards/iota/index.php:90 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/list.php:339 -#: application/views/bandmap/list.php:353 +#: application/views/bandmap/list.php:340 +#: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 #: application/views/logbookadvanced/index.php:491 #: application/views/lookup/index.php:60 @@ -6115,8 +6143,8 @@ msgstr "Antarctique" #: application/views/awards/dxcc/index.php:146 #: application/views/awards/iota/index.php:94 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/list.php:338 -#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:339 +#: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:218 #: application/views/logbookadvanced/index.php:490 #: application/views/lookup/index.php:59 @@ -6129,8 +6157,8 @@ msgstr "Afrique" #: application/views/awards/dxcc/index.php:150 #: application/views/awards/iota/index.php:98 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/list.php:340 -#: application/views/bandmap/list.php:354 +#: application/views/bandmap/list.php:341 +#: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:221 #: application/views/logbookadvanced/index.php:493 #: application/views/lookup/index.php:62 @@ -6143,8 +6171,8 @@ msgstr "Asie" #: application/views/awards/dxcc/index.php:154 #: application/views/awards/iota/index.php:102 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/list.php:341 -#: application/views/bandmap/list.php:355 +#: application/views/bandmap/list.php:342 +#: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:222 #: application/views/logbookadvanced/index.php:494 #: application/views/lookup/index.php:63 @@ -6157,8 +6185,8 @@ msgstr "Europe" #: application/views/awards/dxcc/index.php:158 #: application/views/awards/iota/index.php:106 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/list.php:342 -#: application/views/bandmap/list.php:356 +#: application/views/bandmap/list.php:343 +#: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:220 #: application/views/logbookadvanced/index.php:492 #: application/views/lookup/index.php:61 @@ -6171,8 +6199,8 @@ msgstr "Amérique du Nord" #: application/views/awards/dxcc/index.php:162 #: application/views/awards/iota/index.php:110 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/list.php:344 -#: application/views/bandmap/list.php:358 +#: application/views/bandmap/list.php:345 +#: application/views/bandmap/list.php:359 #: application/views/logbookadvanced/edit.php:223 #: application/views/logbookadvanced/index.php:495 #: application/views/lookup/index.php:64 @@ -6185,8 +6213,8 @@ msgstr "Amérique du Sud" #: application/views/awards/dxcc/index.php:166 #: application/views/awards/iota/index.php:114 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/list.php:343 -#: application/views/bandmap/list.php:357 +#: application/views/bandmap/list.php:344 +#: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:224 #: application/views/logbookadvanced/index.php:496 #: application/views/lookup/index.php:65 @@ -6804,7 +6832,7 @@ msgstr "TÉLÉPHONE" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 -#: application/views/bandmap/list.php:305 +#: application/views/bandmap/list.php:306 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" @@ -7152,8 +7180,9 @@ msgid "Awards - Worked All Continents (WAC)" msgstr "Diplome - Worked All Continents (WAC)" #: application/views/awards/wac/index.php:152 -#: application/views/bandmap/list.php:100 -#: application/views/bandmap/list.php:571 +#: application/views/bandmap/list.php:101 +#: application/views/bandmap/list.php:556 +#: application/views/bandmap/list.php:594 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 #: application/views/logbookadvanced/index.php:486 @@ -7526,219 +7555,219 @@ msgstr "" "La sauvegarde de vos notes a été effectuée avec succès. Le résultat se " "trouve à" -#: application/views/bandmap/list.php:11 +#: application/views/bandmap/list.php:12 msgid "Click to prepare logging." msgstr "Cliquez sur pour préparer la journalisation." -#: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:12 application/views/bandmap/list.php:132 msgid "to tune frequency" msgstr "pour régler la fréquence" -#: application/views/bandmap/list.php:14 +#: application/views/bandmap/list.php:15 msgid "Pop-up Blocked" msgstr "Fenêtre contextuelle bloquée" -#: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 +#: application/views/bandmap/list.php:16 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "" "La fenêtre contextuelle a été bloquée ! Veuillez autoriser les fenêtres " "contextuelles pour ce site de manière permanente." -#: application/views/bandmap/list.php:16 +#: application/views/bandmap/list.php:17 msgid "CAT Connection Required" msgstr "Connexion CAT requise" -#: application/views/bandmap/list.php:17 +#: application/views/bandmap/list.php:18 msgid "Enable CAT connection to tune the radio" msgstr "Activez la connexion CAT pour régler la radio" -#: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 +#: application/views/bandmap/list.php:19 application/views/bandmap/list.php:412 msgid "Clear Filters" msgstr "Filtres transparents" -#: application/views/bandmap/list.php:19 +#: application/views/bandmap/list.php:20 msgid "Band filter preserved (band lock is active)" msgstr "Filtre de bande préservé (verrouillage de bande actif)" -#: application/views/bandmap/list.php:21 +#: application/views/bandmap/list.php:22 msgid "Radio set to None - CAT connection disabled" msgstr "Radio réglée sur Aucune - Connexion CAT désactivée" -#: application/views/bandmap/list.php:22 +#: application/views/bandmap/list.php:23 msgid "Radio Tuned" msgstr "Radio réglée" -#: application/views/bandmap/list.php:23 +#: application/views/bandmap/list.php:24 msgid "Tuned to" msgstr "Accordé à" -#: application/views/bandmap/list.php:24 +#: application/views/bandmap/list.php:25 msgid "Tuning Failed" msgstr "Échec du réglage" -#: application/views/bandmap/list.php:25 +#: application/views/bandmap/list.php:26 msgid "Failed to tune radio to frequency" msgstr "Impossible de régler la radio sur la fréquence" -#: application/views/bandmap/list.php:26 +#: application/views/bandmap/list.php:27 msgid "QSO Prepared" msgstr "QSO préparé" -#: application/views/bandmap/list.php:28 +#: application/views/bandmap/list.php:29 msgid "sent to logging form" msgstr "envoyé au formulaire de connexion" -#: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 +#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:230 msgid "CAT Connection" msgstr "Connexion CAT" -#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 +#: application/views/bandmap/list.php:31 application/views/bandmap/list.php:229 msgid "Click to enable CAT connection" msgstr "Cliquez pour activer la connexion CAT" -#: application/views/bandmap/list.php:31 +#: application/views/bandmap/list.php:32 msgid "CAT following radio - Click to disable" msgstr "Radio CAT suiveuse - Cliquez pour désactiver" -#: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 +#: application/views/bandmap/list.php:33 application/views/bandmap/list.php:232 msgid "Click to enable band lock (requires CAT connection)" msgstr "Cliquez pour activer le verrouillage de bande (connexion CAT requise)" -#: application/views/bandmap/list.php:33 +#: application/views/bandmap/list.php:34 msgid "Band lock active - Click to disable" msgstr "Verrouillage de band activé - Cliquez pour désactiver" -#: application/views/bandmap/list.php:34 +#: application/views/bandmap/list.php:35 msgid "Band Lock" msgstr "verrouillage de bande" -#: application/views/bandmap/list.php:35 +#: application/views/bandmap/list.php:36 msgid "Band lock enabled - band filter will track radio band" msgstr "" "Verrouillage de bande activé - le filtre de bande suivra la bande radio" -#: application/views/bandmap/list.php:36 +#: application/views/bandmap/list.php:37 msgid "Band filter changed to" msgstr "Filtre de bande modifié en" -#: application/views/bandmap/list.php:37 +#: application/views/bandmap/list.php:38 msgid "by transceiver" msgstr "par émetteur-récepteur" -#: application/views/bandmap/list.php:38 +#: application/views/bandmap/list.php:39 msgid "Frequency filter set to" msgstr "Filtre de fréquence réglé sur" -#: application/views/bandmap/list.php:39 +#: application/views/bandmap/list.php:40 msgid "Frequency outside known bands - showing all bands" msgstr "Fréquences hors bandes connues - affichage de toutes les bandes" -#: application/views/bandmap/list.php:40 +#: application/views/bandmap/list.php:41 msgid "Waiting for radio data..." msgstr "En attente des données radio..." -#: application/views/bandmap/list.php:41 +#: application/views/bandmap/list.php:42 msgid "My Favorites" msgstr "Mes favoris" -#: application/views/bandmap/list.php:42 +#: application/views/bandmap/list.php:43 msgid "Failed to load favorites" msgstr "Impossible de charger les favoris" -#: application/views/bandmap/list.php:43 +#: application/views/bandmap/list.php:44 msgid "Modes applied. Band filter preserved (CAT connection is active)" msgstr "Modes appliqués. Filtre de bande conservé (connexion CAT active)" -#: application/views/bandmap/list.php:44 +#: application/views/bandmap/list.php:45 msgid "Applied your favorite bands and modes" msgstr "Utilisez vos groupes et modes préférés" -#: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 -#: application/views/bandmap/list.php:479 +#: application/views/bandmap/list.php:48 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:480 msgid "My Submodes" msgstr "Mes sous-modes" -#: application/views/bandmap/list.php:48 +#: application/views/bandmap/list.php:49 msgid "Submode filter enabled" msgstr "Filtre de sous-mode activé" -#: application/views/bandmap/list.php:49 +#: application/views/bandmap/list.php:50 msgid "Submode filter disabled - showing all" msgstr "Filtre de sous-mode désactivé - tout affiché" -#: application/views/bandmap/list.php:50 +#: application/views/bandmap/list.php:51 msgid "Required submodes" msgstr "Sous-modes requis" -#: application/views/bandmap/list.php:51 +#: application/views/bandmap/list.php:52 msgid "Configure in User Settings - Modes" msgstr "Configurer dans les paramètres utilisateur - Modes" -#: application/views/bandmap/list.php:52 +#: application/views/bandmap/list.php:53 msgid "No submodes configured - configure in User Settings - Modes" msgstr "" "Aucun sous-mode configuré - configurez-les dans Paramètres utilisateur > " "Modes" -#: application/views/bandmap/list.php:53 +#: application/views/bandmap/list.php:54 msgid "No submodes enabled in settings - showing all spots" msgstr "" "Aucun sous-mode activé dans les paramètres - affichage de tous les spots" -#: application/views/bandmap/list.php:54 +#: application/views/bandmap/list.php:55 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "" "Désactivé - aucun sous-mode n'est activé pour ce mode dans les paramètres " "utilisateur" -#: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 +#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 #: application/views/components/dxwaterfall.php:32 msgid "Toggle CW mode filter" msgstr "Activer/désactiver le filtre CW" -#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 +#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 #: application/views/components/dxwaterfall.php:34 msgid "Toggle Digital mode filter" msgstr "Activer/désactiver le filtre du mode numérique" -#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 +#: application/views/bandmap/list.php:58 application/views/bandmap/list.php:471 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" msgstr "Activer/désactiver le filtre Phonie" -#: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 +#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:422 msgid "Favorites" msgstr "Favoris" -#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 +#: application/views/bandmap/list.php:62 application/views/bandmap/list.php:425 msgid "Save Current Filters..." msgstr "Enregistrer les filtres actuels..." -#: application/views/bandmap/list.php:62 +#: application/views/bandmap/list.php:63 msgid "Enter a name for this filter preset:" msgstr "Saisissez un nom pour ce préréglage de filtre:" -#: application/views/bandmap/list.php:63 +#: application/views/bandmap/list.php:64 msgid "Filter preset saved" msgstr "Préréglage de filtre enregistré" -#: application/views/bandmap/list.php:64 +#: application/views/bandmap/list.php:65 msgid "Filter preset loaded" msgstr "Préréglage de filtre chargé" -#: application/views/bandmap/list.php:65 +#: application/views/bandmap/list.php:66 msgid "Filter preset deleted" msgstr "Préréglage de filtre supprimé" -#: application/views/bandmap/list.php:66 +#: application/views/bandmap/list.php:67 msgid "Are you sure to delete this filter preset?" msgstr "Êtes-vous sûr de vouloir supprimer ce filtre prédéfini ?" -#: application/views/bandmap/list.php:67 +#: application/views/bandmap/list.php:68 msgid "No saved filter presets" msgstr "Aucun préréglage de filtre enregistré" -#: application/views/bandmap/list.php:68 +#: application/views/bandmap/list.php:69 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." @@ -7746,64 +7775,64 @@ msgstr "" "Le nombre maximal de 20 préréglages de filtres a été atteint. Veuillez en " "supprimer certains avant d'en ajouter de nouveaux." -#: application/views/bandmap/list.php:71 +#: application/views/bandmap/list.php:72 msgid "Loading data from DX Cluster" msgstr "Chargement des données depuis le cluster DX" -#: application/views/bandmap/list.php:72 +#: application/views/bandmap/list.php:73 msgid "Last fetched for" msgstr "Dernière récupération pour" -#: application/views/bandmap/list.php:73 +#: application/views/bandmap/list.php:74 msgid "Max Age" msgstr "Âge maximum" -#: application/views/bandmap/list.php:74 +#: application/views/bandmap/list.php:75 msgid "Fetched at" msgstr "Récupéré à" -#: application/views/bandmap/list.php:75 +#: application/views/bandmap/list.php:76 msgid "Next update in" msgstr "Prochaine mise à jour dans" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:77 msgid "minutes" msgstr "minutes" -#: application/views/bandmap/list.php:77 +#: application/views/bandmap/list.php:78 msgid "seconds" msgstr "secondes" -#: application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:79 msgid "spots fetched" msgstr "taches récupérées" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 msgid "showing" msgstr "montrer" -#: application/views/bandmap/list.php:80 +#: application/views/bandmap/list.php:81 msgid "showing all" msgstr "afficher tout" -#: application/views/bandmap/list.php:81 +#: application/views/bandmap/list.php:82 msgid "Active filters" msgstr "Filtres actifs" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Fetching..." msgstr "Récupération..." -#: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 #: application/views/interface_assets/footer.php:47 msgid "Not worked" msgstr "Non réalisés" -#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 +#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:300 msgid "Worked, not Confirmed" msgstr "Contacté, non Confirmé" -#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:316 #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:70 @@ -7811,46 +7840,46 @@ msgstr "Contacté, non Confirmé" msgid "LoTW User" msgstr "Utilisateur LoTW" -#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 +#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:319 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" msgstr "Nouvel Indicatif" -#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 +#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 #: application/views/components/dxwaterfall.php:16 msgid "New Continent" msgstr "Nouveau Continent" -#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 +#: application/views/bandmap/list.php:93 application/views/bandmap/list.php:318 msgid "New Country" msgstr "Nouveau pays" -#: application/views/bandmap/list.php:93 +#: application/views/bandmap/list.php:94 msgid "Worked Before" msgstr "J'ai travaillé avant" -#: application/views/bandmap/list.php:94 +#: application/views/bandmap/list.php:95 #, php-format msgid "Worked on %s with %s" msgstr "J'ai travaillé sur %s avec %s" -#: application/views/bandmap/list.php:102 -#: application/views/bandmap/list.php:575 +#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:598 msgid "de" msgstr "de" -#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:104 msgid "spotted" msgstr "repéré" -#: application/views/bandmap/list.php:106 +#: application/views/bandmap/list.php:107 msgid "Fresh spot (< 5 minutes old)" msgstr "Tache fraîche (moins de 5 minutes)" -#: application/views/bandmap/list.php:107 #: application/views/bandmap/list.php:108 -#: application/views/bandmap/list.php:320 -#: application/views/bandmap/list.php:510 +#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:511 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:482 @@ -7861,103 +7890,105 @@ msgstr "Tache fraîche (moins de 5 minutes)" msgid "Contest" msgstr "Concours" -#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:110 msgid "Click to view" msgstr "Cliquez pour afficher" -#: application/views/bandmap/list.php:110 +#: application/views/bandmap/list.php:111 msgid "on QRZ.com" msgstr "sur QRZ.com" -#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:112 #, php-format msgid "Click to view %s on QRZ.com" msgstr "Cliquez pour afficher %s sur QRZ.com" -#: application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:113 msgid "See details for" msgstr "Voir les détails pour" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Worked on" msgstr "J'ai travaillé sur" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "Not worked on this band" msgstr "Je n'ai pas travaillé sur ce groupe" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 #, php-format msgid "LoTW User. Last upload was %d days ago" msgstr "Utilisateur de LoTW. Dernier téléchargement il y a %d jours" -#: application/views/bandmap/list.php:116 +#: application/views/bandmap/list.php:117 msgid "Click to view on POTA.app" msgstr "Cliquez pour afficher sur POTA.app" -#: application/views/bandmap/list.php:117 +#: application/views/bandmap/list.php:118 msgid "Click to view on SOTL.as" msgstr "Cliquez pour consulter sur SOTL.as" -#: application/views/bandmap/list.php:118 +#: application/views/bandmap/list.php:119 msgid "Click to view on cqgma.org" msgstr "Cliquez pour consulter sur cqgma.org" -#: application/views/bandmap/list.php:119 +#: application/views/bandmap/list.php:120 msgid "Click to view on IOTA-World.org" msgstr "Cliquez ici pour consulter le site IOTA-World.org" -#: application/views/bandmap/list.php:120 +#: application/views/bandmap/list.php:121 msgid "See details for continent" msgstr "Voir les détails pour le continent" -#: application/views/bandmap/list.php:121 +#: application/views/bandmap/list.php:122 #, php-format msgid "See details for continent %s" msgstr "Voir les détails pour le continent %s" -#: application/views/bandmap/list.php:122 +#: application/views/bandmap/list.php:123 msgid "See details for CQ Zone" msgstr "Voir les détails pour la zone CQ" -#: application/views/bandmap/list.php:123 +#: application/views/bandmap/list.php:124 #, php-format msgid "See details for CQ Zone %s" msgstr "Voir les détails pour la zone CQ %s" -#: application/views/bandmap/list.php:124 +#: application/views/bandmap/list.php:125 msgid "in" msgstr "dans" -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 msgid "Exit Fullscreen" msgstr "Quitter le mode plein écran" -#: application/views/bandmap/list.php:128 -#: application/views/bandmap/list.php:214 +#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:215 msgid "Toggle Fullscreen" msgstr "Basculer vers le plein écran" -#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:130 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "" "Le filtrage de bande est contrôlé par votre radio lorsque la connexion CAT " "est activée" -#: application/views/bandmap/list.php:130 +#: application/views/bandmap/list.php:131 msgid "Click to prepare logging" msgstr "Cliquez pour préparer la journalisation" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "(requires CAT connection)" msgstr "(nécessite une connexion CAT)" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:561 +#: application/views/bandmap/list.php:562 msgid "Spotter" msgstr "Spotter" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 @@ -7970,110 +8001,111 @@ msgstr "Spotter" msgid "Comment" msgstr "Commentaire" -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:548 #: application/views/contesting/index.php:65 msgid "Age" msgstr "Âge" -#: application/views/bandmap/list.php:137 +#: application/views/bandmap/list.php:138 msgid "Incoming" msgstr "Entrant" -#: application/views/bandmap/list.php:138 +#: application/views/bandmap/list.php:139 msgid "Outgoing" msgstr "Sortant" -#: application/views/bandmap/list.php:139 +#: application/views/bandmap/list.php:140 #: application/views/components/dxwaterfall.php:15 msgid "spots" msgstr "Spots" -#: application/views/bandmap/list.php:140 +#: application/views/bandmap/list.php:141 msgid "spot" msgstr "place" -#: application/views/bandmap/list.php:141 +#: application/views/bandmap/list.php:142 msgid "spotters" msgstr "observateurs" -#: application/views/bandmap/list.php:144 +#: application/views/bandmap/list.php:145 msgid "Please Wait" msgstr "S'il vous plaît, attendez" -#: application/views/bandmap/list.php:145 +#: application/views/bandmap/list.php:146 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "" "Veuillez patienter %s secondes avant d'envoyer un autre indicatif d'appel au " "formulaire QSO" -#: application/views/bandmap/list.php:148 +#: application/views/bandmap/list.php:149 msgid "Loading spots..." msgstr "Zones de chargement..." -#: application/views/bandmap/list.php:149 +#: application/views/bandmap/list.php:150 msgid "No spots found" msgstr "Aucun spot trouvé" -#: application/views/bandmap/list.php:150 +#: application/views/bandmap/list.php:151 msgid "No data available" msgstr "Aucune donnée disponible" -#: application/views/bandmap/list.php:151 +#: application/views/bandmap/list.php:152 msgid "No spots found for selected filters" msgstr "Aucun spot trouvé pour les filtres sélectionnés" -#: application/views/bandmap/list.php:152 +#: application/views/bandmap/list.php:153 msgid "Error loading spots. Please try again." msgstr "Erreur lors du chargement des spots. Veuillez réessayer." -#: application/views/bandmap/list.php:155 +#: application/views/bandmap/list.php:156 msgid "Show all modes" msgstr "Afficher tous les modes" -#: application/views/bandmap/list.php:156 +#: application/views/bandmap/list.php:157 msgid "Show all spots" msgstr "Afficher tous les emplacements" -#: application/views/bandmap/list.php:161 +#: application/views/bandmap/list.php:162 msgid "Draw Spotters" msgstr "Observateurs de tirage" -#: application/views/bandmap/list.php:162 +#: application/views/bandmap/list.php:163 msgid "Extend Map" msgstr "Étendre la carte" -#: application/views/bandmap/list.php:163 +#: application/views/bandmap/list.php:164 msgid "Show Day/Night" msgstr "Spectacle jour/nuit" -#: application/views/bandmap/list.php:164 +#: application/views/bandmap/list.php:165 msgid "Your QTH" msgstr "Votre QTH" -#: application/views/bandmap/list.php:200 +#: application/views/bandmap/list.php:201 msgid "Return to Home" msgstr "Retour à l'accueil" -#: application/views/bandmap/list.php:203 +#: application/views/bandmap/list.php:204 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" msgstr "DX Cluster" -#: application/views/bandmap/list.php:207 +#: application/views/bandmap/list.php:208 msgid "DX Cluster Help" msgstr "Aide du cluster DX" -#: application/views/bandmap/list.php:210 +#: application/views/bandmap/list.php:211 msgid "Compact Mode - Hide/Show Menu" msgstr "Mode compact - Afficher/Masquer le menu" -#: application/views/bandmap/list.php:237 +#: application/views/bandmap/list.php:238 msgid "TRX:" msgstr "TRX :" -#: application/views/bandmap/list.php:239 -#: application/views/bandmap/list.php:313 +#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:314 #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 @@ -8081,318 +8113,283 @@ msgstr "TRX :" msgid "None" msgstr "Aucun" -#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:241 #: application/views/contesting/index.php:160 #: application/views/qso/index.php:414 msgid "Live - WebSocket" msgstr "En direct - WebSocket" -#: application/views/bandmap/list.php:242 application/views/qso/index.php:416 +#: application/views/bandmap/list.php:243 application/views/qso/index.php:416 msgid "Polling - " msgstr "Vérification - " -#: application/views/bandmap/list.php:251 +#: application/views/bandmap/list.php:252 msgid "de:" msgstr "de :" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "Select all continents" msgstr "Sélectionnez tous les continents" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "World" msgstr "Monde" -#: application/views/bandmap/list.php:254 +#: application/views/bandmap/list.php:255 msgid "Toggle Africa continent filter" msgstr "Activer/désactiver le filtre pour le continent Afrique" -#: application/views/bandmap/list.php:255 +#: application/views/bandmap/list.php:256 msgid "Toggle Antarctica continent filter" msgstr "Activer/désactiver le filtre du continent antarctique" -#: application/views/bandmap/list.php:256 +#: application/views/bandmap/list.php:257 msgid "Toggle Asia continent filter" msgstr "Activer/désactiver le filtre pour le continent Asie" -#: application/views/bandmap/list.php:257 +#: application/views/bandmap/list.php:258 msgid "Toggle Europe continent filter" msgstr "Activer/désactiver le filtre pour le continent Europe" -#: application/views/bandmap/list.php:258 +#: application/views/bandmap/list.php:259 msgid "Toggle North America continent filter" msgstr "Activer/désactiver le filtre pour le continent Amérique du Nord" -#: application/views/bandmap/list.php:259 +#: application/views/bandmap/list.php:260 msgid "Toggle Oceania continent filter" msgstr "Activer/désactiver le filtre du continent Océanie" -#: application/views/bandmap/list.php:260 +#: application/views/bandmap/list.php:261 msgid "Toggle South America continent filter" msgstr "Activer/désactiver le filtre pour le continent Amérique du Sud" -#: application/views/bandmap/list.php:273 +#: application/views/bandmap/list.php:274 msgid "Advanced Filters" msgstr "Filtres avancés" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "Hold" msgstr "Prise" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "and click to select multiple options" msgstr "et cliquez pour sélectionner plusieurs options" -#: application/views/bandmap/list.php:293 +#: application/views/bandmap/list.php:294 msgid "DXCC-Status" msgstr "Statut DXCC" -#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:305 #: application/views/components/dxwaterfall.php:31 msgid "Phone" msgstr "Phonie" -#: application/views/bandmap/list.php:306 +#: application/views/bandmap/list.php:307 #: application/views/components/dxwaterfall.php:35 msgid "Digi" msgstr "Digi" -#: application/views/bandmap/list.php:311 +#: application/views/bandmap/list.php:312 msgid "Required Flags" msgstr "Drapeaux obligatoires" -#: application/views/bandmap/list.php:319 +#: application/views/bandmap/list.php:320 msgid "Worked Callsign" msgstr "Indicatif d'appel utilisé" -#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:322 msgid "DX Spot" msgstr "Dx Spot" -#: application/views/bandmap/list.php:323 +#: application/views/bandmap/list.php:324 msgid "Additional Flags" msgstr "Drapeaux supplémentaires" -#: application/views/bandmap/list.php:330 +#: application/views/bandmap/list.php:331 msgid "Fresh (< 5 min)" msgstr "Frais (< 5 min)" -#: application/views/bandmap/list.php:335 +#: application/views/bandmap/list.php:336 msgid "Spots de Continent" msgstr "Spots de Continent" -#: application/views/bandmap/list.php:349 +#: application/views/bandmap/list.php:350 msgid "Spotted Station Continent" msgstr "Station continentale repérée" -#: application/views/bandmap/list.php:409 +#: application/views/bandmap/list.php:410 msgid "Apply Filters" msgstr "Appliquer les filtres" -#: application/views/bandmap/list.php:420 +#: application/views/bandmap/list.php:421 msgid "Filter Favorites" msgstr "Filtrer les favoris" -#: application/views/bandmap/list.php:430 +#: application/views/bandmap/list.php:431 msgid "Clear all filters except De Continent" msgstr "Effacer tous les filtres sauf De Continent" -#: application/views/bandmap/list.php:436 +#: application/views/bandmap/list.php:437 msgid "Toggle 160m band filter" msgstr "Activer/désactiver le filtre de bande 160 m" -#: application/views/bandmap/list.php:440 +#: application/views/bandmap/list.php:441 msgid "Toggle 80m band filter" msgstr "Activer/désactiver le filtre de bande 80m" -#: application/views/bandmap/list.php:441 +#: application/views/bandmap/list.php:442 msgid "Toggle 60m band filter" msgstr "Activer/désactiver le filtre de bande 60m" -#: application/views/bandmap/list.php:442 +#: application/views/bandmap/list.php:443 msgid "Toggle 40m band filter" msgstr "Activer/désactiver le filtre de bande 40m" -#: application/views/bandmap/list.php:443 +#: application/views/bandmap/list.php:444 msgid "Toggle 30m band filter" msgstr "Activer/désactiver le filtre de bande 30m" -#: application/views/bandmap/list.php:444 +#: application/views/bandmap/list.php:445 msgid "Toggle 20m band filter" msgstr "Activer/désactiver le filtre de bande 20m" -#: application/views/bandmap/list.php:445 +#: application/views/bandmap/list.php:446 msgid "Toggle 17m band filter" msgstr "Activer/désactiver le filtre de bande 17m" -#: application/views/bandmap/list.php:446 +#: application/views/bandmap/list.php:447 msgid "Toggle 15m band filter" msgstr "Activer/désactiver le filtre de bande 15m" -#: application/views/bandmap/list.php:447 +#: application/views/bandmap/list.php:448 msgid "Toggle 12m band filter" msgstr "Activer/désactiver le filtre de bande 12m" -#: application/views/bandmap/list.php:448 +#: application/views/bandmap/list.php:449 msgid "Toggle 10m band filter" msgstr "Activer/désactiver le filtre de bande 10m" -#: application/views/bandmap/list.php:452 +#: application/views/bandmap/list.php:453 msgid "Toggle 6m band filter" msgstr "Activer/désactiver le filtre de bande 6 m" -#: application/views/bandmap/list.php:456 +#: application/views/bandmap/list.php:457 msgid "Toggle VHF bands filter" msgstr "Activer/désactiver le filtre des bandes VHF" -#: application/views/bandmap/list.php:457 +#: application/views/bandmap/list.php:458 msgid "Toggle UHF bands filter" msgstr "Activer/désactiver le filtre des bandes UHF" -#: application/views/bandmap/list.php:458 +#: application/views/bandmap/list.php:459 msgid "Toggle SHF bands filter" msgstr "Activer/désactiver le filtre des bandes SHF" -#: application/views/bandmap/list.php:478 +#: application/views/bandmap/list.php:479 msgid "Loading submodes..." msgstr "Chargement des sous-modes..." -#: application/views/bandmap/list.php:483 +#: application/views/bandmap/list.php:484 msgid "Toggle LoTW User filter" msgstr "Activer/désactiver le filtre utilisateur LoTW" -#: application/views/bandmap/list.php:484 +#: application/views/bandmap/list.php:485 msgid "LoTW users" msgstr "utilisateurs de LoTW" -#: application/views/bandmap/list.php:490 +#: application/views/bandmap/list.php:491 msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" msgstr "" "Activer/désactiver le filtre DX Spot (continent observé ≠ continent de " "l'observateur)" -#: application/views/bandmap/list.php:491 -#: application/views/bandmap/list.php:570 +#: application/views/bandmap/list.php:492 +#: application/views/bandmap/list.php:593 msgid "DX" msgstr "DX" -#: application/views/bandmap/list.php:493 +#: application/views/bandmap/list.php:494 msgid "Toggle New Continents filter" msgstr "Activer/désactiver le filtre Nouveaux continents" -#: application/views/bandmap/list.php:494 +#: application/views/bandmap/list.php:495 msgid "New Continents" msgstr "Nouveaux continents" -#: application/views/bandmap/list.php:496 +#: application/views/bandmap/list.php:497 msgid "Toggle New Entities filter" msgstr "Activer/désactiver le filtre Nouvelles entités" -#: application/views/bandmap/list.php:497 +#: application/views/bandmap/list.php:498 msgid "New Entities" msgstr "Nouvelles entités" -#: application/views/bandmap/list.php:499 +#: application/views/bandmap/list.php:500 msgid "Toggle New Callsigns filter" msgstr "Activer/désactiver le filtre des nouveaux indicatifs d'appel" -#: application/views/bandmap/list.php:500 +#: application/views/bandmap/list.php:501 msgid "New Callsigns" msgstr "Nouveaux indicatifs d'appel" -#: application/views/bandmap/list.php:506 +#: application/views/bandmap/list.php:507 msgid "Toggle Fresh spots filter (< 5 minutes old)" msgstr "Activer/désactiver le filtre des taches récentes (moins de 5 minutes)" -#: application/views/bandmap/list.php:507 +#: application/views/bandmap/list.php:508 msgid "Fresh" msgstr "Frais" -#: application/views/bandmap/list.php:509 +#: application/views/bandmap/list.php:510 msgid "Toggle Contest filter" msgstr "Activer/désactiver le filtre de concours" -#: application/views/bandmap/list.php:512 +#: application/views/bandmap/list.php:513 msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" msgstr "Activer/désactiver Geo Hunter (POTA/SOTA/IOTA/WWFF)" -#: application/views/bandmap/list.php:513 +#: application/views/bandmap/list.php:514 msgid "Referenced" msgstr "Référence" -#: application/views/bandmap/list.php:519 +#: application/views/bandmap/list.php:520 msgid "Open DX Map view" msgstr "Ouvrir la vue de la carte DX" -#: application/views/bandmap/list.php:520 +#: application/views/bandmap/list.php:521 msgid "DX Map" msgstr "Carte DX" -#: application/views/bandmap/list.php:544 -msgid "Search spots..." -msgstr "Recherchez des endroits..." +#: application/views/bandmap/list.php:545 +msgid "Search Column" +msgstr "Colonne de recherche" -#: application/views/bandmap/list.php:557 -msgid "Note: Map shows DXCC entity locations, not actual spot locations" -msgstr "" -"Remarque : La carte indique l'emplacement des entités DXCC, et non " -"l'emplacement précis des points d'intérêt" +#: application/views/bandmap/list.php:546 +msgid "All Columns" +msgstr "Toutes les colonnes" -#: application/views/bandmap/list.php:565 -msgid "Age in minutes" -msgstr "Age in minutes" +#: application/views/bandmap/list.php:547 +msgid "Spot Info" +msgstr "Informations sur le spot" -#: application/views/bandmap/list.php:567 -msgid "Freq" -msgstr "Freq" - -#: application/views/bandmap/list.php:569 +#: application/views/bandmap/list.php:552 +#: application/views/bandmap/list.php:592 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" msgstr "Sous-mode" -#: application/views/bandmap/list.php:570 -msgid "Spotted Callsign" -msgstr "Spotted Callsign" +#: application/views/bandmap/list.php:554 +msgid "DX Station" +msgstr "Station DX" -#: application/views/bandmap/list.php:573 -msgid "Flag" -msgstr "Flag" - -#: application/views/bandmap/list.php:574 -msgid "DXCC Entity" -msgstr "DXCC Entity" - -#: application/views/bandmap/list.php:574 +#: application/views/bandmap/list.php:558 +#: application/views/bandmap/list.php:597 msgid "Entity" msgstr "Entity" -#: application/views/bandmap/list.php:575 -msgid "Spotter Callsign" -msgstr "Spotter Callsign" - -#: application/views/bandmap/list.php:576 -msgid "Spotter Continent" -msgstr "Spotter Continent" - -#: application/views/bandmap/list.php:577 -msgid "Spotter CQ Zone" -msgstr "Spotter CQ Zone" - -#: application/views/bandmap/list.php:578 -msgid "Last QSO Date" -msgstr "Date du dernier QSO" - -#: application/views/bandmap/list.php:579 -msgid "Special" -msgstr "Special" - -#: application/views/bandmap/list.php:579 -msgid "Special Flags" -msgstr "Special Flags" - -#: application/views/bandmap/list.php:580 +#: application/views/bandmap/list.php:559 +#: application/views/bandmap/list.php:603 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -8400,6 +8397,62 @@ msgstr "Special Flags" msgid "Message" msgstr "Message" +#: application/views/bandmap/list.php:563 +#: application/views/bandmap/list.php:599 +msgid "Spotter Continent" +msgstr "Spotter Continent" + +#: application/views/bandmap/list.php:564 +#: application/views/bandmap/list.php:600 +msgid "Spotter CQ Zone" +msgstr "Spotter CQ Zone" + +#: application/views/bandmap/list.php:567 +msgid "Search spots..." +msgstr "Recherchez des endroits..." + +#: application/views/bandmap/list.php:580 +msgid "Note: Map shows DXCC entity locations, not actual spot locations" +msgstr "" +"Remarque : La carte indique l'emplacement des entités DXCC, et non " +"l'emplacement précis des points d'intérêt" + +#: application/views/bandmap/list.php:588 +msgid "Age in minutes" +msgstr "Age in minutes" + +#: application/views/bandmap/list.php:590 +msgid "Freq" +msgstr "Freq" + +#: application/views/bandmap/list.php:593 +msgid "Spotted Callsign" +msgstr "Spotted Callsign" + +#: application/views/bandmap/list.php:596 +msgid "Flag" +msgstr "Flag" + +#: application/views/bandmap/list.php:597 +msgid "DXCC Entity" +msgstr "DXCC Entity" + +#: application/views/bandmap/list.php:598 +msgid "Spotter Callsign" +msgstr "Spotter Callsign" + +#: application/views/bandmap/list.php:601 +msgid "Last QSO Date" +msgstr "Date du dernier QSO" + +#: application/views/bandmap/list.php:602 +msgid "Special" +msgstr "Special" + +#: application/views/bandmap/list.php:602 +msgid "Special Flags" +msgstr "Special Flags" + #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" msgstr "Veuillez saisir des chiffres valides pour la fréquence" @@ -13184,7 +13237,7 @@ msgstr "" #: application/views/logbookadvanced/dbtoolsdialog.php:19 msgid "All Station Locations" -msgstr "" +msgstr "Emplacements de toutes les stations" #: application/views/logbookadvanced/dbtoolsdialog.php:33 msgid "Check all QSOs in the logbook for incorrect CQ Zones" @@ -16269,7 +16322,7 @@ msgid "Below is a list of active radios that are connected to Wavelog." msgstr "" "Vous trouverez ci-dessous une liste des radios actives connectées à Wavelog." -#: application/views/radio/index.php:24 +#: application/views/radio/index.php:23 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." @@ -16277,16 +16330,35 @@ msgstr "" "Si vous n'avez pas encore connecté de radios, consultez la page API pour " "générer des clés API." -#: application/views/radio/index.php:26 application/views/search/filter.php:66 +#: application/views/radio/index.php:25 +msgid "" +"As a clubstation operator, you can set a default radio which applies only to " +"you. This allows you to have a default radio that is automatically selected " +"when you log in, while still being able to use other radios if you want." +msgstr "" +"En tant qu'opérateur de station de radio amateur, vous pouvez définir une " +"radio par défaut qui vous est propre. Ainsi, une radio sera automatiquement " +"sélectionnée lors de votre connexion, tout en vous permettant d'utiliser " +"d'autres radios si vous le souhaitez." + +#: application/views/radio/index.php:27 +msgid "" +"As a normal user, you can set a default radio for yourself. This allows you " +"to have a default radio that is automatically selected when you log in, " +"while still being able to use other radios if you want." +msgstr "" +"En tant qu'utilisateur normal, vous pouvez définir une radio par défaut. " +"Ainsi, une radio sera automatiquement sélectionnée à votre connexion, tout " +"en vous permettant d'utiliser d'autres radios si vous le souhaitez." + +#: application/views/radio/index.php:30 #, php-format -msgid "You can find out how to use the %s in the wiki." -msgstr "Vous pouvez découvrir comment utiliser le %s dans le wiki." +msgid "You can find out how to use the %sradio functions%s in the wiki." +msgstr "" +"Vous pouvez trouver des informations sur l'utilisation des fonctions " +"%sradio%s dans le wiki." -#: application/views/radio/index.php:26 -msgid "radio functions" -msgstr "Fonctions radio" - -#: application/views/radio/index.php:31 +#: application/views/radio/index.php:35 msgid "Please wait..." msgstr "Attendez s'il vous plait..." @@ -16753,6 +16825,11 @@ msgstr "Enregistrer la requête" msgid "Stored queries" msgstr "Requêtes stockées" +#: application/views/search/filter.php:66 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "Vous pouvez découvrir comment utiliser le %s dans le wiki." + #: application/views/search/filter.php:66 msgid "search filter functions" msgstr "Fonctions filtres de recherche" @@ -19554,6 +19631,9 @@ msgstr "CQz" msgid "CQz geojson" msgstr "CQz geojson" +#~ msgid "radio functions" +#~ msgstr "Fonctions radio" + #~ msgid "Incorrectly logged CQ zones" #~ msgstr "Zones CQ mal enregistrées" diff --git a/application/locale/hr/LC_MESSAGES/messages.po b/application/locale/hr/LC_MESSAGES/messages.po index 19e96f9d5..792f73654 100644 --- a/application/locale/hr/LC_MESSAGES/messages.po +++ b/application/locale/hr/LC_MESSAGES/messages.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-13 08:13+0000\n" +"POT-Creation-Date: 2026-02-17 17:26+0000\n" "PO-Revision-Date: 2026-01-11 07:07+0000\n" "Last-Translator: marin \n" "Language-Team: Croatian \n" "Language-Team: Hungarian \n" "Language-Team: Armenian \n" "Language-Team: Italian \n" "Language-Team: Japanese \n" @@ -71,8 +71,8 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:90 application/controllers/Lotw.php:116 -#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:437 -#: application/controllers/Lotw.php:801 application/controllers/Lotw.php:888 +#: application/controllers/Lotw.php:410 application/controllers/Lotw.php:433 +#: application/controllers/Lotw.php:797 application/controllers/Lotw.php:884 #: application/controllers/Map.php:12 application/controllers/Map.php:27 #: application/controllers/Mode.php:15 application/controllers/Notes.php:10 #: application/controllers/Operator.php:13 @@ -86,8 +86,8 @@ msgstr "" #: application/controllers/Qso.php:22 application/controllers/Qso.php:288 #: application/controllers/Qso.php:419 application/controllers/Qso.php:440 #: application/controllers/Qso.php:463 application/controllers/Qso.php:763 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 -#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:320 +#: application/controllers/Radio.php:346 application/controllers/Radio.php:362 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -350,7 +350,7 @@ msgid "DOK" msgstr "DOK" #: application/controllers/Awards.php:194 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:97 application/views/bands/index.php:50 +#: application/views/bandmap/list.php:98 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:192 @@ -443,7 +443,7 @@ msgstr " そして " #: application/controllers/Awards.php:595 #: application/controllers/Logbook.php:1459 -#: application/views/awards/index.php:8 application/views/bandmap/list.php:326 +#: application/views/awards/index.php:8 application/views/bandmap/list.php:327 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 #: application/views/logbookadvanced/edit.php:32 @@ -471,7 +471,7 @@ msgstr "SOTA" #: application/controllers/Awards.php:613 #: application/controllers/Logbook.php:1460 -#: application/views/bandmap/list.php:328 application/views/bands/index.php:64 +#: application/views/bandmap/list.php:329 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 @@ -493,7 +493,7 @@ msgstr "WWFF" #: application/controllers/Awards.php:631 #: application/controllers/Logbook.php:1461 -#: application/views/adif/import.php:60 application/views/bandmap/list.php:327 +#: application/views/adif/import.php:60 application/views/bandmap/list.php:328 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 @@ -649,8 +649,7 @@ msgstr "作成モード" msgid "Edit Band" msgstr "バンドを編集" -#: application/controllers/Bandmap.php:28 -#: application/controllers/Bandmap.php:75 +#: application/controllers/Bandmap.php:56 #: application/controllers/Options.php:144 #: application/controllers/Options.php:155 #: application/views/options/sidebar.php:7 @@ -1456,7 +1455,7 @@ msgid "All callbook lookups failed or provided no results." msgstr "すべてのコールブック検索が失敗したか、結果が提供されませんでした。" #: application/controllers/Logbook.php:1454 -#: application/controllers/Radio.php:46 +#: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 #: application/views/adif/dcl_success.php:33 @@ -1481,9 +1480,11 @@ msgstr "すべてのコールブック検索が失敗したか、結果が提供 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:167 -#: application/views/bandmap/list.php:301 -#: application/views/bandmap/list.php:568 +#: application/views/bandmap/list.php:100 +#: application/views/bandmap/list.php:168 +#: application/views/bandmap/list.php:302 +#: application/views/bandmap/list.php:551 +#: application/views/bandmap/list.php:591 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 @@ -1635,7 +1636,7 @@ msgstr "国" #: application/controllers/Logbook.php:1458 #: application/views/awards/iota/index.php:198 -#: application/views/bandmap/list.php:329 application/views/bands/index.php:52 +#: application/views/bandmap/list.php:330 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/checkresult.php:394 @@ -1803,9 +1804,10 @@ msgstr "距離" #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:168 -#: application/views/bandmap/list.php:363 -#: application/views/bandmap/list.php:566 application/views/bands/create.php:24 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:169 +#: application/views/bandmap/list.php:364 +#: application/views/bandmap/list.php:549 +#: application/views/bandmap/list.php:589 application/views/bands/create.php:24 #: application/views/bands/edit.php:7 application/views/bands/index.php:47 #: application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 @@ -1869,8 +1871,9 @@ msgid "Band" msgstr "バンド" #: application/controllers/Logbook.php:1466 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 -#: application/views/bandmap/list.php:567 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:167 +#: application/views/bandmap/list.php:550 +#: application/views/bandmap/list.php:590 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:918 @@ -1896,7 +1899,7 @@ msgid "Frequency" msgstr "周波数" #: application/controllers/Logbook.php:1467 -#: application/controllers/Radio.php:43 +#: application/controllers/Radio.php:46 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 #: application/views/logbookadvanced/index.php:478 @@ -1984,11 +1987,11 @@ msgstr "証明書がインポートされました。" msgid "Certificate Updated." msgstr "証明書が更新されました。" -#: application/controllers/Lotw.php:420 +#: application/controllers/Lotw.php:416 msgid "Certificate Deleted." msgstr "証明書が削除されました。" -#: application/controllers/Lotw.php:448 +#: application/controllers/Lotw.php:444 #, php-format msgid "" "The certificate found in file %s contains a password and cannot be " @@ -2000,7 +2003,7 @@ msgstr "" "ワードなしで tqsl アプリケーションから LoTW 証明書をエクスポートしてくださ" "い!%s詳細については、Wavelog Wiki の %sLoTW FAQ ページ%s をご覧ください。" -#: application/controllers/Lotw.php:450 +#: application/controllers/Lotw.php:446 #, php-format msgid "" "Generic error extracting the certificate from file %s. If the filename " @@ -2011,52 +2014,52 @@ msgstr "" "が含まれている場合、これは通常、LoTW によってまだ処理されていない証明書要求で" "す。" -#: application/controllers/Lotw.php:457 +#: application/controllers/Lotw.php:453 #, php-format msgid "Generic error processing the certificate in file %s." msgstr "ファイル内の証明書の処理中に一般的なエラーが発生しました %s 。" -#: application/controllers/Lotw.php:469 +#: application/controllers/Lotw.php:465 #, php-format msgid "Generic error extracting the private key from certificate in file %s." msgstr "" "ファイル内の証明書から秘密鍵を抽出する際に一般的なエラーが発生しました %s 。" -#: application/controllers/Lotw.php:685 +#: application/controllers/Lotw.php:681 msgid "LoTW ADIF Information" msgstr "LoTW ADIF情報" -#: application/controllers/Lotw.php:858 +#: application/controllers/Lotw.php:854 msgid "Connection to LoTW failed." msgstr "LoTWへの接続に失敗しました。" -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:859 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "LoTWへのログインがユーザー %s で失敗しました: %s." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:859 msgid "Username/password incorrect" msgstr "ユーザー名/パスワードが間違っています" -#: application/controllers/Lotw.php:866 +#: application/controllers/Lotw.php:862 msgid "LoTW currently not available. Try again later." msgstr "" "LoTWは現在ご利用いただけません。しばらくしてからもう一度お試しください。" -#: application/controllers/Lotw.php:870 +#: application/controllers/Lotw.php:866 msgid "LoTW login OK!" msgstr "LoTWログインOK!" -#: application/controllers/Lotw.php:876 +#: application/controllers/Lotw.php:872 msgid "No LoTW credentials provided." msgstr "LoTWの認証情報が提供されていません。" -#: application/controllers/Lotw.php:894 +#: application/controllers/Lotw.php:890 msgid "LoTW ADIF Import" msgstr "LoTW ADIF インポート" -#: application/controllers/Lotw.php:920 +#: application/controllers/Lotw.php:916 msgid "You have not defined your ARRL LoTW credentials!" msgstr "ARRL LoTWの認証情報を設定していません!" @@ -2416,17 +2419,17 @@ msgstr "コールサインが提供されていません。" msgid "Hardware Interfaces" msgstr "ハードウェアインターフェース" -#: application/controllers/Radio.php:41 application/views/bandmap/list.php:20 +#: application/controllers/Radio.php:44 application/views/bandmap/list.php:21 #: application/views/contesting/index.php:157 #: application/views/qso/index.php:411 application/views/view_log/qso.php:714 msgid "Radio" msgstr "無線" -#: application/controllers/Radio.php:47 +#: application/controllers/Radio.php:50 msgid "Timestamp" msgstr "タイムスタンプ" -#: application/controllers/Radio.php:49 +#: application/controllers/Radio.php:52 #: application/views/logbookadvanced/index.php:867 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 @@ -2435,30 +2438,34 @@ msgstr "タイムスタンプ" msgid "Options" msgstr "オプション" -#: application/controllers/Radio.php:50 application/views/debug/index.php:321 +#: application/controllers/Radio.php:53 application/views/debug/index.php:321 #: application/views/qso/index.php:841 msgid "Settings" msgstr "設定" -#: application/controllers/Radio.php:63 +#: application/controllers/Radio.php:59 +msgid "WebSocket" +msgstr "WebSocket" + +#: application/controllers/Radio.php:65 application/controllers/Radio.php:124 +msgid "Default (click to release)" +msgstr "デフォルト(クリックして解除)" + +#: application/controllers/Radio.php:67 application/controllers/Radio.php:126 +msgid "Set as default radio" +msgstr "デフォルトの無線機として設定" + +#: application/controllers/Radio.php:83 msgid "UNKNOWN" msgstr "不明" -#: application/controllers/Radio.php:98 application/views/bandmap/list.php:242 +#: application/controllers/Radio.php:118 application/views/bandmap/list.php:243 #: application/views/contesting/index.php:162 #: application/views/qso/index.php:416 msgid "last updated" msgstr "最終更新日" -#: application/controllers/Radio.php:106 application/controllers/Radio.php:109 -msgid "Set as default radio" -msgstr "デフォルトの無線機として設定" - -#: application/controllers/Radio.php:111 -msgid "Default (click to release)" -msgstr "デフォルト(クリックして解除)" - -#: application/controllers/Radio.php:115 +#: application/controllers/Radio.php:128 #: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 @@ -2477,7 +2484,7 @@ msgstr "デフォルト(クリックして解除)" msgid "Edit" msgstr "編集" -#: application/controllers/Radio.php:116 +#: application/controllers/Radio.php:129 #: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 @@ -2506,14 +2513,30 @@ msgstr "編集" msgid "Delete" msgstr "削除" -#: application/controllers/Radio.php:122 +#: application/controllers/Radio.php:136 +msgid "WebSocket is currently default (click to release)" +msgstr "WebSocketは現在デフォルトです(クリックして解除)" + +#: application/controllers/Radio.php:138 +msgid "Set WebSocket as default radio" +msgstr "WebSocketをデフォルトのラジオとして設定する" + +#: application/controllers/Radio.php:142 msgid "No CAT interfaced radios found." msgstr "CAT インターフェースの無線機が見つかりません。" -#: application/controllers/Radio.php:137 application/views/radio/index.php:2 +#: application/controllers/Radio.php:143 +msgid "You can still set the WebSocket option as your default radio." +msgstr "WebSocket オプションをデフォルトのラジオとして設定することもできます。" + +#: application/controllers/Radio.php:160 application/views/radio/index.php:2 msgid "Edit CAT Settings" msgstr "CAT設定の編集" +#: application/controllers/Radio.php:332 +msgid "Radio removed successfully" +msgstr "ラジオが正常に削除されました" + #: application/controllers/Reg1test.php:22 msgid "Export EDI" msgstr "EDIエクスポート" @@ -2592,7 +2615,7 @@ msgstr "ここ" msgid "Satellite Timers" msgstr "衛星タイマー" -#: application/controllers/Search.php:15 application/views/bandmap/list.php:544 +#: application/controllers/Search.php:15 application/views/bandmap/list.php:567 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 @@ -2915,103 +2938,103 @@ msgstr "DXCC例外の準備: " msgid "Preparing DXCC Prefixes: " msgstr "DXCC プレフィックスの準備: " -#: application/controllers/Update.php:275 +#: application/controllers/Update.php:277 msgid "DONE" msgstr "終了" -#: application/controllers/Update.php:304 +#: application/controllers/Update.php:326 msgid "Updating..." msgstr "更新中..." -#: application/controllers/Update.php:307 +#: application/controllers/Update.php:329 msgid "Dxcc Entities:" msgstr "Dxcc エンティティ:" -#: application/controllers/Update.php:308 +#: application/controllers/Update.php:330 msgid "Dxcc Exceptions:" msgstr "Dxcc 例外:" -#: application/controllers/Update.php:309 +#: application/controllers/Update.php:331 msgid "Dxcc Prefixes:" msgstr "Dxcc プレフィックス:" -#: application/controllers/Update.php:340 +#: application/controllers/Update.php:362 msgid "SCP Update complete. Result: " msgstr "SCP 更新が完了しました。結果: " -#: application/controllers/Update.php:342 +#: application/controllers/Update.php:364 msgid "SCP Update failed. Result: " msgstr "SCP 更新に失敗しました。結果: " -#: application/controllers/Update.php:379 +#: application/controllers/Update.php:401 msgid "LoTW Users Update complete. Result: " msgstr "LoTWユーザーのアップデートが完了しました。結果: " -#: application/controllers/Update.php:381 +#: application/controllers/Update.php:403 msgid "LoTW Users Update failed. Result: " msgstr "LoTWユーザーの更新に失敗しました。結果: " -#: application/controllers/Update.php:416 +#: application/controllers/Update.php:438 msgid "DOK Update complete. Result: " msgstr "DOK 更新が完了しました。結果: " -#: application/controllers/Update.php:418 +#: application/controllers/Update.php:440 msgid "DOK Update failed. Result: " msgstr "DOK 更新が完了しました。結果: " -#: application/controllers/Update.php:451 +#: application/controllers/Update.php:473 msgid "SOTA Update complete. Result: " msgstr "SOTAアップデートが完了しました。結果: " -#: application/controllers/Update.php:453 +#: application/controllers/Update.php:475 msgid "SOTA Update failed. Result: " msgstr "SOTA アップデートに失敗しました。結果: " -#: application/controllers/Update.php:486 +#: application/controllers/Update.php:508 msgid "WWFF Update complete. Result: " msgstr "WWFFアップデートが完了しました。結果: " -#: application/controllers/Update.php:488 +#: application/controllers/Update.php:510 msgid "WWFF Update failed. Result: " msgstr "WWFF アップデートに失敗しました。結果: " -#: application/controllers/Update.php:522 +#: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " msgstr "HAMqsl 更新完了。結果: " -#: application/controllers/Update.php:524 +#: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " msgstr "HAMqsl 更新に失敗しました。結果: " -#: application/controllers/Update.php:557 +#: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " msgstr "POTA 更新が完了しました。結果: " -#: application/controllers/Update.php:559 +#: application/controllers/Update.php:581 msgid "POTA Update failed. Result: " msgstr "POTA 更新に失敗しました。結果: " -#: application/controllers/Update.php:588 +#: application/controllers/Update.php:610 msgid "TLE Update complete. Result: " msgstr "TLEアップデートが完了しました。結果: " -#: application/controllers/Update.php:590 +#: application/controllers/Update.php:612 msgid "TLE Update failed. Result: " msgstr "TLE 更新に失敗しました。結果: " -#: application/controllers/Update.php:617 +#: application/controllers/Update.php:639 msgid "LoTW SAT Update" msgstr "LoTW SATアップデート" -#: application/controllers/Update.php:645 +#: application/controllers/Update.php:667 msgid "Update of Hams of Note" msgstr "注目のハムの最新情報" -#: application/controllers/Update.php:685 +#: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " msgstr "VUCCグリッドファイルの更新が完了しました。結果: " -#: application/controllers/Update.php:687 +#: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " msgstr "VUCC グリッドファイルの更新に失敗しました。結果: " @@ -3361,8 +3384,8 @@ msgid "" "No CAT interfaced radios found. You need to have at least one radio " "interface configured." msgstr "" -"CATインターフェースの無線が見つかりません。少なくとも1つの無線インターフェー" -"スを設定する必要があります。" +"CATインターフェースの無線機が見つかりません。少なくとも1つの無線インター" +"フェースを設定する必要があります。" #: application/controllers/Widgets.php:423 msgid "User not found by slug" @@ -3551,14 +3574,14 @@ msgstr "コールなし" msgid "DXCC has to be Numeric" msgstr "DXCCは数値でなければなりません" -#: application/models/Logbook_model.php:4886 +#: application/models/Logbook_model.php:4806 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "%s との QSO を %s でインポート中に、誤ったステーションコールサイン %s が検出" "されました: スキップされました" -#: application/models/Logbook_model.php:4900 +#: application/models/Logbook_model.php:4820 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3566,11 +3589,11 @@ msgstr "" "有効な日付のないQSOをインポートしようとしました。このQSOはインポートされませ" "んでした。無効です" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4829 msgid "QSO on" msgstr "QSOオン" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4829 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3578,7 +3601,7 @@ msgstr "" "コールが指定されていないQSOをインポートしようとしました。このQSOはインポート" "されませんでした。無効です" -#: application/models/Logbook_model.php:4958 +#: application/models/Logbook_model.php:4878 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3587,64 +3610,64 @@ msgstr "" "%s でのQSO: バンドが指定されていないQSOをインポートしようとしました。このQSO" "はインポートされませんでした。無効です" -#: application/models/Logbook_model.php:5231 +#: application/models/Logbook_model.php:5151 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "qslrdate が無効です (YYYYMMDD)" -#: application/models/Logbook_model.php:5242 +#: application/models/Logbook_model.php:5162 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "qslsdate が無効です (YYYYMMDD)" -#: application/models/Logbook_model.php:5303 +#: application/models/Logbook_model.php:5223 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "clublog_qso_upload_date が無効です (YYYYMMDD)" -#: application/models/Logbook_model.php:5676 +#: application/models/Logbook_model.php:5596 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "複製用" -#: application/models/Logbook_model.php:5741 -#: application/models/Logbook_model.php:5836 +#: application/models/Logbook_model.php:5661 +#: application/models/Logbook_model.php:5756 msgid "QSO could not be matched" msgstr "QSOが一致しませんでした" -#: application/models/Logbook_model.php:5749 +#: application/models/Logbook_model.php:5669 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "LoTW/Clublog/eQSL/コンテストで確認済み" -#: application/models/Logbook_model.php:5755 +#: application/models/Logbook_model.php:5675 msgid "confirmed by award manager" msgstr "賞の管理者によって確認された" -#: application/models/Logbook_model.php:5759 +#: application/models/Logbook_model.php:5679 msgid "confirmed by cross-check of DCL data" msgstr "DCLデータのクロスチェックによって確認された" -#: application/models/Logbook_model.php:5763 +#: application/models/Logbook_model.php:5683 msgid "confirmation pending" msgstr "確認中" -#: application/models/Logbook_model.php:5766 +#: application/models/Logbook_model.php:5686 msgid "unconfirmed" msgstr "未確認" -#: application/models/Logbook_model.php:5769 +#: application/models/Logbook_model.php:5689 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "不明" -#: application/models/Logbook_model.php:5839 +#: application/models/Logbook_model.php:5759 msgid "POTA reference already in log" msgstr "POTA 参照。既にログに存在します" -#: application/models/Logbook_model.php:5842 +#: application/models/Logbook_model.php:5762 msgid "QSO updated" msgstr "QSOが更新されました" -#: application/models/Logbook_model.php:6236 +#: application/models/Logbook_model.php:6156 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3824,13 +3847,13 @@ msgstr "違い" #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:101 -#: application/views/bandmap/list.php:295 -#: application/views/bandmap/list.php:303 -#: application/views/bandmap/list.php:325 -#: application/views/bandmap/list.php:337 -#: application/views/bandmap/list.php:351 -#: application/views/bandmap/list.php:365 application/views/bands/index.php:123 +#: application/views/bandmap/list.php:102 +#: application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:326 +#: application/views/bandmap/list.php:338 +#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:366 application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 #: application/views/callstats/index.php:24 @@ -4419,7 +4442,8 @@ msgstr "何も見つかりません!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wpx/wpx_details.php:20 #: application/views/awards/wwff/index.php:35 -#: application/views/bandmap/list.php:27 application/views/bandmap/list.php:165 +#: application/views/bandmap/list.php:28 application/views/bandmap/list.php:166 +#: application/views/bandmap/list.php:555 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:147 #: application/views/calltester/comparison_result.php:60 @@ -4589,7 +4613,7 @@ msgstr "日付" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:137 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 #: application/views/contesting/index.php:262 @@ -5219,7 +5243,7 @@ msgstr "このWavelogインスタンスのAPI URLは" #: application/views/api/index.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 #: application/views/interface_assets/footer.php:39 -#: application/views/qso/index.php:45 application/views/radio/index.php:26 +#: application/views/qso/index.php:45 application/views/radio/index.php:30 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -5497,7 +5521,8 @@ msgstr "合計" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:193 -#: application/views/bandmap/list.php:572 application/views/csv/index.php:80 +#: application/views/bandmap/list.php:557 +#: application/views/bandmap/list.php:595 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 #: application/views/gridmap/index.php:236 application/views/kml/index.php:65 #: application/views/logbookadvanced/checkresult.php:246 @@ -5681,7 +5706,7 @@ msgstr "日付" #: application/views/awards/wab/list.php:6 #: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 +#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 #: application/views/dashboard/index.php:342 #: application/views/dashboard/index.php:460 #: application/views/interface_assets/footer.php:45 @@ -5693,7 +5718,7 @@ msgstr "確認済み" #: application/views/awards/cq/index.php:88 #: application/views/awards/itu/index.php:38 #: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 +#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 #: application/views/dashboard/index.php:338 #: application/views/dashboard/index.php:454 #: application/views/search/result.php:35 @@ -6035,8 +6060,8 @@ msgstr "削除済みを含める" #: application/views/awards/dxcc/index.php:142 #: application/views/awards/iota/index.php:90 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/list.php:339 -#: application/views/bandmap/list.php:353 +#: application/views/bandmap/list.php:340 +#: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 #: application/views/logbookadvanced/index.php:491 #: application/views/lookup/index.php:60 @@ -6049,8 +6074,8 @@ msgstr "南極大陸" #: application/views/awards/dxcc/index.php:146 #: application/views/awards/iota/index.php:94 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/list.php:338 -#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:339 +#: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:218 #: application/views/logbookadvanced/index.php:490 #: application/views/lookup/index.php:59 @@ -6063,8 +6088,8 @@ msgstr "アフリカ" #: application/views/awards/dxcc/index.php:150 #: application/views/awards/iota/index.php:98 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/list.php:340 -#: application/views/bandmap/list.php:354 +#: application/views/bandmap/list.php:341 +#: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:221 #: application/views/logbookadvanced/index.php:493 #: application/views/lookup/index.php:62 @@ -6077,8 +6102,8 @@ msgstr "アジア" #: application/views/awards/dxcc/index.php:154 #: application/views/awards/iota/index.php:102 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/list.php:341 -#: application/views/bandmap/list.php:355 +#: application/views/bandmap/list.php:342 +#: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:222 #: application/views/logbookadvanced/index.php:494 #: application/views/lookup/index.php:63 @@ -6091,8 +6116,8 @@ msgstr "ヨーロッパ" #: application/views/awards/dxcc/index.php:158 #: application/views/awards/iota/index.php:106 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/list.php:342 -#: application/views/bandmap/list.php:356 +#: application/views/bandmap/list.php:343 +#: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:220 #: application/views/logbookadvanced/index.php:492 #: application/views/lookup/index.php:61 @@ -6105,8 +6130,8 @@ msgstr "北米" #: application/views/awards/dxcc/index.php:162 #: application/views/awards/iota/index.php:110 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/list.php:344 -#: application/views/bandmap/list.php:358 +#: application/views/bandmap/list.php:345 +#: application/views/bandmap/list.php:359 #: application/views/logbookadvanced/edit.php:223 #: application/views/logbookadvanced/index.php:495 #: application/views/lookup/index.php:64 @@ -6119,8 +6144,8 @@ msgstr "南アメリカ" #: application/views/awards/dxcc/index.php:166 #: application/views/awards/iota/index.php:114 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/list.php:343 -#: application/views/bandmap/list.php:357 +#: application/views/bandmap/list.php:344 +#: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:224 #: application/views/logbookadvanced/index.php:496 #: application/views/lookup/index.php:65 @@ -6721,7 +6746,7 @@ msgstr "PHONE" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 -#: application/views/bandmap/list.php:305 +#: application/views/bandmap/list.php:306 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" @@ -7058,8 +7083,9 @@ msgid "Awards - Worked All Continents (WAC)" msgstr "アワード - すべての大陸で活動(WAC)" #: application/views/awards/wac/index.php:152 -#: application/views/bandmap/list.php:100 -#: application/views/bandmap/list.php:571 +#: application/views/bandmap/list.php:101 +#: application/views/bandmap/list.php:556 +#: application/views/bandmap/list.php:594 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 #: application/views/logbookadvanced/index.php:486 @@ -7406,216 +7432,216 @@ msgid "" "The backup of your notes completed successfully. The output can be found at" msgstr "ノートのバックアップが正常に完了しました。出力は次の場所にあります" -#: application/views/bandmap/list.php:11 +#: application/views/bandmap/list.php:12 msgid "Click to prepare logging." msgstr "クリックしてログ記録を準備します。" -#: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:12 application/views/bandmap/list.php:132 msgid "to tune frequency" msgstr "周波数を調整する" -#: application/views/bandmap/list.php:14 +#: application/views/bandmap/list.php:15 msgid "Pop-up Blocked" msgstr "ポップアップがブロックされました" -#: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 +#: application/views/bandmap/list.php:16 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "" "ポップアップがブロックされました。このサイトのポップアップを永続的に許可して" "ください。" -#: application/views/bandmap/list.php:16 +#: application/views/bandmap/list.php:17 msgid "CAT Connection Required" msgstr "CAT接続が必要です" -#: application/views/bandmap/list.php:17 +#: application/views/bandmap/list.php:18 msgid "Enable CAT connection to tune the radio" msgstr "CAT接続を有効にして無線機をチューニングする" -#: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 +#: application/views/bandmap/list.php:19 application/views/bandmap/list.php:412 msgid "Clear Filters" msgstr "フィルターをクリア" -#: application/views/bandmap/list.php:19 +#: application/views/bandmap/list.php:20 msgid "Band filter preserved (band lock is active)" msgstr "バンド フィルタは保持されます (バンド ロックがアクティブです)" -#: application/views/bandmap/list.php:21 +#: application/views/bandmap/list.php:22 msgid "Radio set to None - CAT connection disabled" msgstr "ラジオ設定:なし - CAT接続無効" -#: application/views/bandmap/list.php:22 +#: application/views/bandmap/list.php:23 msgid "Radio Tuned" msgstr "無線機のチューニング" -#: application/views/bandmap/list.php:23 +#: application/views/bandmap/list.php:24 msgid "Tuned to" msgstr "調整済み" -#: application/views/bandmap/list.php:24 +#: application/views/bandmap/list.php:25 msgid "Tuning Failed" msgstr "チューニングに失敗しました" -#: application/views/bandmap/list.php:25 +#: application/views/bandmap/list.php:26 msgid "Failed to tune radio to frequency" msgstr "無線機の周波数を合わせられませんでした" -#: application/views/bandmap/list.php:26 +#: application/views/bandmap/list.php:27 msgid "QSO Prepared" msgstr "QSO準備完了" -#: application/views/bandmap/list.php:28 +#: application/views/bandmap/list.php:29 msgid "sent to logging form" msgstr "ログフォームに送信されました" -#: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 +#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:230 msgid "CAT Connection" msgstr "CAT接続" -#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 +#: application/views/bandmap/list.php:31 application/views/bandmap/list.php:229 msgid "Click to enable CAT connection" msgstr "クリックしてCAT接続を有効にします" -#: application/views/bandmap/list.php:31 +#: application/views/bandmap/list.php:32 msgid "CAT following radio - Click to disable" msgstr "CAT追従無線 - クリックすると無効になります" -#: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 +#: application/views/bandmap/list.php:33 application/views/bandmap/list.php:232 msgid "Click to enable band lock (requires CAT connection)" msgstr "クリックするとバンドロックが有効になります(CAT接続が必要です)" -#: application/views/bandmap/list.php:33 +#: application/views/bandmap/list.php:34 msgid "Band lock active - Click to disable" msgstr "バンドロックが有効 - クリックすると無効になります" -#: application/views/bandmap/list.php:34 +#: application/views/bandmap/list.php:35 msgid "Band Lock" msgstr "バンドロック" -#: application/views/bandmap/list.php:35 +#: application/views/bandmap/list.php:36 msgid "Band lock enabled - band filter will track radio band" msgstr "バンドロックが有効 - バンドフィルターは無線バンドを追跡します" -#: application/views/bandmap/list.php:36 +#: application/views/bandmap/list.php:37 msgid "Band filter changed to" msgstr "バンドフィルターが変更されました" -#: application/views/bandmap/list.php:37 +#: application/views/bandmap/list.php:38 msgid "by transceiver" msgstr "無線機による" -#: application/views/bandmap/list.php:38 +#: application/views/bandmap/list.php:39 msgid "Frequency filter set to" msgstr "周波数フィルターを設定" -#: application/views/bandmap/list.php:39 +#: application/views/bandmap/list.php:40 msgid "Frequency outside known bands - showing all bands" msgstr "既知のバンド外の周波数 - すべてのバンドを表示" -#: application/views/bandmap/list.php:40 +#: application/views/bandmap/list.php:41 msgid "Waiting for radio data..." msgstr "無線機からデータを受信中..." -#: application/views/bandmap/list.php:41 +#: application/views/bandmap/list.php:42 msgid "My Favorites" msgstr "お気に入り" -#: application/views/bandmap/list.php:42 +#: application/views/bandmap/list.php:43 msgid "Failed to load favorites" msgstr "お気に入りを読み込めませんでした" -#: application/views/bandmap/list.php:43 +#: application/views/bandmap/list.php:44 msgid "Modes applied. Band filter preserved (CAT connection is active)" msgstr "" "モードが適用されます。バンドフィルターは保持されます(CAT接続はアクティブで" "す)" -#: application/views/bandmap/list.php:44 +#: application/views/bandmap/list.php:45 msgid "Applied your favorite bands and modes" msgstr "お気に入りのバンドとモードを適用" -#: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 -#: application/views/bandmap/list.php:479 +#: application/views/bandmap/list.php:48 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:480 msgid "My Submodes" msgstr "私のサブモード" -#: application/views/bandmap/list.php:48 +#: application/views/bandmap/list.php:49 msgid "Submode filter enabled" msgstr "サブモードフィルタが有効" -#: application/views/bandmap/list.php:49 +#: application/views/bandmap/list.php:50 msgid "Submode filter disabled - showing all" msgstr "サブモードフィルタが有効" -#: application/views/bandmap/list.php:50 +#: application/views/bandmap/list.php:51 msgid "Required submodes" msgstr "必要なサブモード" -#: application/views/bandmap/list.php:51 +#: application/views/bandmap/list.php:52 msgid "Configure in User Settings - Modes" msgstr "ユーザー設定 - モードの設定" -#: application/views/bandmap/list.php:52 +#: application/views/bandmap/list.php:53 msgid "No submodes configured - configure in User Settings - Modes" msgstr "" "サブモードが設定されていません - ユーザー設定 - モードで設定してください" -#: application/views/bandmap/list.php:53 +#: application/views/bandmap/list.php:54 msgid "No submodes enabled in settings - showing all spots" msgstr "設定でサブモードが有効になっていません - すべてのスポットを表示" -#: application/views/bandmap/list.php:54 +#: application/views/bandmap/list.php:55 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "無効 - ユーザー設定でこのモードのサブモードが有効になっていません" -#: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 +#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 #: application/views/components/dxwaterfall.php:32 msgid "Toggle CW mode filter" msgstr "CWモードフィルターの切り替え" -#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 +#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 #: application/views/components/dxwaterfall.php:34 msgid "Toggle Digital mode filter" msgstr "デジタルモードフィルターを切り替える" -#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 +#: application/views/bandmap/list.php:58 application/views/bandmap/list.php:471 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" msgstr "電話モードフィルターを切り替える" -#: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 +#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:422 msgid "Favorites" msgstr "お気に入り" -#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 +#: application/views/bandmap/list.php:62 application/views/bandmap/list.php:425 msgid "Save Current Filters..." msgstr "現在のフィルターを保存..." -#: application/views/bandmap/list.php:62 +#: application/views/bandmap/list.php:63 msgid "Enter a name for this filter preset:" msgstr "このフィルタープリセットの名前を入力してください:" -#: application/views/bandmap/list.php:63 +#: application/views/bandmap/list.php:64 msgid "Filter preset saved" msgstr "フィルタープリセットを保存しました" -#: application/views/bandmap/list.php:64 +#: application/views/bandmap/list.php:65 msgid "Filter preset loaded" msgstr "フィルタープリセットが読み込まれました" -#: application/views/bandmap/list.php:65 +#: application/views/bandmap/list.php:66 msgid "Filter preset deleted" msgstr "フィルタープリセットを削除しました" -#: application/views/bandmap/list.php:66 +#: application/views/bandmap/list.php:67 msgid "Are you sure to delete this filter preset?" msgstr "このフィルタープリセットを削除してもよろしいですか?" -#: application/views/bandmap/list.php:67 +#: application/views/bandmap/list.php:68 msgid "No saved filter presets" msgstr "保存されたフィルタープリセットはありません" -#: application/views/bandmap/list.php:68 +#: application/views/bandmap/list.php:69 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." @@ -7623,64 +7649,64 @@ msgstr "" "フィルタープリセットの上限が20個に達しました。新しいプリセットを追加する前" "に、いくつか削除してください。" -#: application/views/bandmap/list.php:71 +#: application/views/bandmap/list.php:72 msgid "Loading data from DX Cluster" msgstr "DXクラスターからデータをロードしています" -#: application/views/bandmap/list.php:72 +#: application/views/bandmap/list.php:73 msgid "Last fetched for" msgstr "最後に取得されたのは" -#: application/views/bandmap/list.php:73 +#: application/views/bandmap/list.php:74 msgid "Max Age" msgstr "最大年齢" -#: application/views/bandmap/list.php:74 +#: application/views/bandmap/list.php:75 msgid "Fetched at" msgstr "取得場所" -#: application/views/bandmap/list.php:75 +#: application/views/bandmap/list.php:76 msgid "Next update in" msgstr "次回の更新は" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:77 msgid "minutes" msgstr "分" -#: application/views/bandmap/list.php:77 +#: application/views/bandmap/list.php:78 msgid "seconds" msgstr "秒" -#: application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:79 msgid "spots fetched" msgstr "取得したスポット" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 msgid "showing" msgstr "表示中" -#: application/views/bandmap/list.php:80 +#: application/views/bandmap/list.php:81 msgid "showing all" msgstr "すべて表示" -#: application/views/bandmap/list.php:81 +#: application/views/bandmap/list.php:82 msgid "Active filters" msgstr "アクティブフィルター" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Fetching..." msgstr "取得中..." -#: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 #: application/views/interface_assets/footer.php:47 msgid "Not worked" msgstr "機能していません" -#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 +#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:300 msgid "Worked, not Confirmed" msgstr "動作したが、確認されていない" -#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:316 #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:70 @@ -7688,46 +7714,46 @@ msgstr "動作したが、確認されていない" msgid "LoTW User" msgstr "LoTWユーザー" -#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 +#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:319 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" msgstr "新しいコールサイン" -#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 +#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 #: application/views/components/dxwaterfall.php:16 msgid "New Continent" msgstr "新大陸" -#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 +#: application/views/bandmap/list.php:93 application/views/bandmap/list.php:318 msgid "New Country" msgstr "ニューカントリー" -#: application/views/bandmap/list.php:93 +#: application/views/bandmap/list.php:94 msgid "Worked Before" msgstr "以前に働いた" -#: application/views/bandmap/list.php:94 +#: application/views/bandmap/list.php:95 #, php-format msgid "Worked on %s with %s" msgstr "%s を %s と共同で作業しました" -#: application/views/bandmap/list.php:102 -#: application/views/bandmap/list.php:575 +#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:598 msgid "de" msgstr "の" -#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:104 msgid "spotted" msgstr "発見された" -#: application/views/bandmap/list.php:106 +#: application/views/bandmap/list.php:107 msgid "Fresh spot (< 5 minutes old)" msgstr "新しいスポット(5分未満)" -#: application/views/bandmap/list.php:107 #: application/views/bandmap/list.php:108 -#: application/views/bandmap/list.php:320 -#: application/views/bandmap/list.php:510 +#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:511 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:482 @@ -7738,102 +7764,104 @@ msgstr "新しいスポット(5分未満)" msgid "Contest" msgstr "コンテスト" -#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:110 msgid "Click to view" msgstr "クリックして表示" -#: application/views/bandmap/list.php:110 +#: application/views/bandmap/list.php:111 msgid "on QRZ.com" msgstr "QRZ.comで" -#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:112 #, php-format msgid "Click to view %s on QRZ.com" msgstr "QRZ.comで%sを表示するにはクリックしてください" -#: application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:113 msgid "See details for" msgstr "詳細はこちら" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Worked on" msgstr "作業した" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "Not worked on this band" msgstr "このバンドでは働いていない" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 #, php-format msgid "LoTW User. Last upload was %d days ago" msgstr "LoTWユーザー。最終アップロードは %d 日前" -#: application/views/bandmap/list.php:116 +#: application/views/bandmap/list.php:117 msgid "Click to view on POTA.app" msgstr "POTA.appで表示するにはクリックしてください" -#: application/views/bandmap/list.php:117 +#: application/views/bandmap/list.php:118 msgid "Click to view on SOTL.as" msgstr "SOTL.asで見るにはクリックしてください" -#: application/views/bandmap/list.php:118 +#: application/views/bandmap/list.php:119 msgid "Click to view on cqgma.org" msgstr "cqgma.org で表示するにはクリックしてください" -#: application/views/bandmap/list.php:119 +#: application/views/bandmap/list.php:120 msgid "Click to view on IOTA-World.org" msgstr "IOTA-World.orgで表示するにはクリックしてください" -#: application/views/bandmap/list.php:120 +#: application/views/bandmap/list.php:121 msgid "See details for continent" msgstr "大陸の詳細を見る" -#: application/views/bandmap/list.php:121 +#: application/views/bandmap/list.php:122 #, php-format msgid "See details for continent %s" msgstr "大陸 %s の詳細を見る" -#: application/views/bandmap/list.php:122 +#: application/views/bandmap/list.php:123 msgid "See details for CQ Zone" msgstr "CQゾーンの詳細を見る" -#: application/views/bandmap/list.php:123 +#: application/views/bandmap/list.php:124 #, php-format msgid "See details for CQ Zone %s" msgstr "CQゾーン %s の詳細を見る" -#: application/views/bandmap/list.php:124 +#: application/views/bandmap/list.php:125 msgid "in" msgstr "で" -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 msgid "Exit Fullscreen" msgstr "全画面表示を終了" -#: application/views/bandmap/list.php:128 -#: application/views/bandmap/list.php:214 +#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:215 msgid "Toggle Fullscreen" msgstr "全画面表示を切り替える" -#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:130 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "" "CAT接続が有効になっている場合、バンドフィルタリングは無線によって制御されます" -#: application/views/bandmap/list.php:130 +#: application/views/bandmap/list.php:131 msgid "Click to prepare logging" msgstr "クリックしてログ記録を準備する" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "(requires CAT connection)" msgstr "(CAT接続が必要です)" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:561 +#: application/views/bandmap/list.php:562 msgid "Spotter" msgstr "スポッター" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 @@ -7846,108 +7874,109 @@ msgstr "スポッター" msgid "Comment" msgstr "コメント" -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:548 #: application/views/contesting/index.php:65 msgid "Age" msgstr "年" -#: application/views/bandmap/list.php:137 +#: application/views/bandmap/list.php:138 msgid "Incoming" msgstr "受信中" -#: application/views/bandmap/list.php:138 +#: application/views/bandmap/list.php:139 msgid "Outgoing" msgstr "発信" -#: application/views/bandmap/list.php:139 +#: application/views/bandmap/list.php:140 #: application/views/components/dxwaterfall.php:15 msgid "spots" msgstr "スポット" -#: application/views/bandmap/list.php:140 +#: application/views/bandmap/list.php:141 msgid "spot" msgstr "スポット" -#: application/views/bandmap/list.php:141 +#: application/views/bandmap/list.php:142 msgid "spotters" msgstr "スポッター" -#: application/views/bandmap/list.php:144 +#: application/views/bandmap/list.php:145 msgid "Please Wait" msgstr "お待ちください" -#: application/views/bandmap/list.php:145 +#: application/views/bandmap/list.php:146 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "次のコールサインをQSOフォームに送信する前に、%s秒お待ちください" -#: application/views/bandmap/list.php:148 +#: application/views/bandmap/list.php:149 msgid "Loading spots..." msgstr "スポットを読み込んでいます..." -#: application/views/bandmap/list.php:149 +#: application/views/bandmap/list.php:150 msgid "No spots found" msgstr "スポットは見つかりませんでした" -#: application/views/bandmap/list.php:150 +#: application/views/bandmap/list.php:151 msgid "No data available" msgstr "データなし" -#: application/views/bandmap/list.php:151 +#: application/views/bandmap/list.php:152 msgid "No spots found for selected filters" msgstr "選択したフィルターに該当するスポットが見つかりません" -#: application/views/bandmap/list.php:152 +#: application/views/bandmap/list.php:153 msgid "Error loading spots. Please try again." msgstr "スポットの読み込み中にエラーが発生しました。もう一度お試しください。" -#: application/views/bandmap/list.php:155 +#: application/views/bandmap/list.php:156 msgid "Show all modes" msgstr "すべてのモードを表示" -#: application/views/bandmap/list.php:156 +#: application/views/bandmap/list.php:157 msgid "Show all spots" msgstr "すべてのスポットを表示" -#: application/views/bandmap/list.php:161 +#: application/views/bandmap/list.php:162 msgid "Draw Spotters" msgstr "ドロースポッター" -#: application/views/bandmap/list.php:162 +#: application/views/bandmap/list.php:163 msgid "Extend Map" msgstr "マップを拡張" -#: application/views/bandmap/list.php:163 +#: application/views/bandmap/list.php:164 msgid "Show Day/Night" msgstr "昼/夜を表示" -#: application/views/bandmap/list.php:164 +#: application/views/bandmap/list.php:165 msgid "Your QTH" msgstr "あなたのQTH" -#: application/views/bandmap/list.php:200 +#: application/views/bandmap/list.php:201 msgid "Return to Home" msgstr "ホームに戻る" -#: application/views/bandmap/list.php:203 +#: application/views/bandmap/list.php:204 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" msgstr "DXクラスター" -#: application/views/bandmap/list.php:207 +#: application/views/bandmap/list.php:208 msgid "DX Cluster Help" msgstr "DXクラスターヘルプ" -#: application/views/bandmap/list.php:210 +#: application/views/bandmap/list.php:211 msgid "Compact Mode - Hide/Show Menu" msgstr "コンパクトモード - メニューの表示/非表示" -#: application/views/bandmap/list.php:237 +#: application/views/bandmap/list.php:238 msgid "TRX:" msgstr "TRX:" -#: application/views/bandmap/list.php:239 -#: application/views/bandmap/list.php:313 +#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:314 #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 @@ -7955,316 +7984,281 @@ msgstr "TRX:" msgid "None" msgstr "なし" -#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:241 #: application/views/contesting/index.php:160 #: application/views/qso/index.php:414 msgid "Live - WebSocket" msgstr "ライブ - WebSocket" -#: application/views/bandmap/list.php:242 application/views/qso/index.php:416 +#: application/views/bandmap/list.php:243 application/views/qso/index.php:416 msgid "Polling - " msgstr "ポーリング - " -#: application/views/bandmap/list.php:251 +#: application/views/bandmap/list.php:252 msgid "de:" msgstr "の:" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "Select all continents" msgstr "すべての大陸を選択" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "World" msgstr "世界" -#: application/views/bandmap/list.php:254 +#: application/views/bandmap/list.php:255 msgid "Toggle Africa continent filter" msgstr "アフリカ大陸フィルターを切り替える" -#: application/views/bandmap/list.php:255 +#: application/views/bandmap/list.php:256 msgid "Toggle Antarctica continent filter" msgstr "南極大陸フィルターを切り替える" -#: application/views/bandmap/list.php:256 +#: application/views/bandmap/list.php:257 msgid "Toggle Asia continent filter" msgstr "アジア大陸フィルターを切り替える" -#: application/views/bandmap/list.php:257 +#: application/views/bandmap/list.php:258 msgid "Toggle Europe continent filter" msgstr "ヨーロッパ大陸フィルターを切り替える" -#: application/views/bandmap/list.php:258 +#: application/views/bandmap/list.php:259 msgid "Toggle North America continent filter" msgstr "北米大陸フィルターを切り替える" -#: application/views/bandmap/list.php:259 +#: application/views/bandmap/list.php:260 msgid "Toggle Oceania continent filter" msgstr "オセアニア大陸フィルターを切り替える" -#: application/views/bandmap/list.php:260 +#: application/views/bandmap/list.php:261 msgid "Toggle South America continent filter" msgstr "南アメリカ大陸フィルターを切り替える" -#: application/views/bandmap/list.php:273 +#: application/views/bandmap/list.php:274 msgid "Advanced Filters" msgstr "高度なフィルター" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "Hold" msgstr "保持" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "and click to select multiple options" msgstr "複数のオプションを選択するにはクリックします" -#: application/views/bandmap/list.php:293 +#: application/views/bandmap/list.php:294 msgid "DXCC-Status" msgstr "DXCCステータス" -#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:305 #: application/views/components/dxwaterfall.php:31 msgid "Phone" msgstr "電話" -#: application/views/bandmap/list.php:306 +#: application/views/bandmap/list.php:307 #: application/views/components/dxwaterfall.php:35 msgid "Digi" msgstr "デジ" -#: application/views/bandmap/list.php:311 +#: application/views/bandmap/list.php:312 msgid "Required Flags" msgstr "必須フラグ" -#: application/views/bandmap/list.php:319 +#: application/views/bandmap/list.php:320 msgid "Worked Callsign" msgstr "運用コールサイン" -#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:322 msgid "DX Spot" msgstr "DXスポット" -#: application/views/bandmap/list.php:323 +#: application/views/bandmap/list.php:324 msgid "Additional Flags" msgstr "追加フラグ" -#: application/views/bandmap/list.php:330 +#: application/views/bandmap/list.php:331 msgid "Fresh (< 5 min)" msgstr "新鮮(5分未満)" -#: application/views/bandmap/list.php:335 +#: application/views/bandmap/list.php:336 msgid "Spots de Continent" msgstr "大陸スポット" -#: application/views/bandmap/list.php:349 +#: application/views/bandmap/list.php:350 msgid "Spotted Station Continent" msgstr "Spotted Station Continent" -#: application/views/bandmap/list.php:409 +#: application/views/bandmap/list.php:410 msgid "Apply Filters" msgstr "フィルターを適用する" -#: application/views/bandmap/list.php:420 +#: application/views/bandmap/list.php:421 msgid "Filter Favorites" msgstr "お気に入りをフィルター" -#: application/views/bandmap/list.php:430 +#: application/views/bandmap/list.php:431 msgid "Clear all filters except De Continent" msgstr "大陸以外のフィルターをすべて消去する" -#: application/views/bandmap/list.php:436 +#: application/views/bandmap/list.php:437 msgid "Toggle 160m band filter" msgstr "160mバンドフィルターの切り替え" -#: application/views/bandmap/list.php:440 +#: application/views/bandmap/list.php:441 msgid "Toggle 80m band filter" msgstr "80mバンドフィルターの切り替え" -#: application/views/bandmap/list.php:441 +#: application/views/bandmap/list.php:442 msgid "Toggle 60m band filter" msgstr "60mバンドフィルターの切り替え" -#: application/views/bandmap/list.php:442 +#: application/views/bandmap/list.php:443 msgid "Toggle 40m band filter" msgstr "40mバンドフィルターの切り替え" -#: application/views/bandmap/list.php:443 +#: application/views/bandmap/list.php:444 msgid "Toggle 30m band filter" msgstr "30mバンドフィルターの切り替え" -#: application/views/bandmap/list.php:444 +#: application/views/bandmap/list.php:445 msgid "Toggle 20m band filter" msgstr "20mバンドフィルターの切り替え" -#: application/views/bandmap/list.php:445 +#: application/views/bandmap/list.php:446 msgid "Toggle 17m band filter" msgstr "17mバンドフィルターの切り替え" -#: application/views/bandmap/list.php:446 +#: application/views/bandmap/list.php:447 msgid "Toggle 15m band filter" msgstr "15mバンドフィルターの切り替え" -#: application/views/bandmap/list.php:447 +#: application/views/bandmap/list.php:448 msgid "Toggle 12m band filter" msgstr "12mバンドフィルターの切り替え" -#: application/views/bandmap/list.php:448 +#: application/views/bandmap/list.php:449 msgid "Toggle 10m band filter" msgstr "10mバンドフィルターの切り替え" -#: application/views/bandmap/list.php:452 +#: application/views/bandmap/list.php:453 msgid "Toggle 6m band filter" msgstr "6mバンドフィルターの切り替え" -#: application/views/bandmap/list.php:456 +#: application/views/bandmap/list.php:457 msgid "Toggle VHF bands filter" msgstr "VHFバンドフィルターを切り替える" -#: application/views/bandmap/list.php:457 +#: application/views/bandmap/list.php:458 msgid "Toggle UHF bands filter" msgstr "UHFバンドフィルターを切り替える" -#: application/views/bandmap/list.php:458 +#: application/views/bandmap/list.php:459 msgid "Toggle SHF bands filter" msgstr "SHFバンドフィルターを切り替える" -#: application/views/bandmap/list.php:478 +#: application/views/bandmap/list.php:479 msgid "Loading submodes..." msgstr "サブモードを読み込んでいます..." -#: application/views/bandmap/list.php:483 +#: application/views/bandmap/list.php:484 msgid "Toggle LoTW User filter" msgstr "LoTWユーザーフィルターを切り替える" -#: application/views/bandmap/list.php:484 +#: application/views/bandmap/list.php:485 msgid "LoTW users" msgstr "LoTWユーザー" -#: application/views/bandmap/list.php:490 +#: application/views/bandmap/list.php:491 msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" msgstr "DXスポットフィルターの切り替え(観測大陸≠観測大陸)" -#: application/views/bandmap/list.php:491 -#: application/views/bandmap/list.php:570 +#: application/views/bandmap/list.php:492 +#: application/views/bandmap/list.php:593 msgid "DX" msgstr "DX" -#: application/views/bandmap/list.php:493 +#: application/views/bandmap/list.php:494 msgid "Toggle New Continents filter" msgstr "新大陸フィルターを切り替える" -#: application/views/bandmap/list.php:494 +#: application/views/bandmap/list.php:495 msgid "New Continents" msgstr "新大陸" -#: application/views/bandmap/list.php:496 +#: application/views/bandmap/list.php:497 msgid "Toggle New Entities filter" msgstr "新しいエンティティフィルターを切り替える" -#: application/views/bandmap/list.php:497 +#: application/views/bandmap/list.php:498 msgid "New Entities" msgstr "新しいエンティティ" -#: application/views/bandmap/list.php:499 +#: application/views/bandmap/list.php:500 msgid "Toggle New Callsigns filter" msgstr "新しいコールサインフィルターを切り替える" -#: application/views/bandmap/list.php:500 +#: application/views/bandmap/list.php:501 msgid "New Callsigns" msgstr "新しいコールサイン" -#: application/views/bandmap/list.php:506 +#: application/views/bandmap/list.php:507 msgid "Toggle Fresh spots filter (< 5 minutes old)" msgstr "新鮮なスポットフィルターを切り替える(5分未満)" -#: application/views/bandmap/list.php:507 +#: application/views/bandmap/list.php:508 msgid "Fresh" msgstr "新鮮な" -#: application/views/bandmap/list.php:509 +#: application/views/bandmap/list.php:510 msgid "Toggle Contest filter" msgstr "コンテストフィルターを切り替える" -#: application/views/bandmap/list.php:512 +#: application/views/bandmap/list.php:513 msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" msgstr "Geo Hunterの切り替え(POTA/SOTA/IOTA/WWFF)" -#: application/views/bandmap/list.php:513 +#: application/views/bandmap/list.php:514 msgid "Referenced" msgstr "参照" -#: application/views/bandmap/list.php:519 +#: application/views/bandmap/list.php:520 msgid "Open DX Map view" msgstr "DXマップビューを開く" -#: application/views/bandmap/list.php:520 +#: application/views/bandmap/list.php:521 msgid "DX Map" msgstr "DXマップ" -#: application/views/bandmap/list.php:544 -msgid "Search spots..." -msgstr "スポットを検索..." +#: application/views/bandmap/list.php:545 +msgid "Search Column" +msgstr "検索列" -#: application/views/bandmap/list.php:557 -msgid "Note: Map shows DXCC entity locations, not actual spot locations" -msgstr "" -"注: 地図はDXCCエンティティの位置を示しており、実際のスポットの位置ではありま" -"せん" +#: application/views/bandmap/list.php:546 +msgid "All Columns" +msgstr "すべての列" -#: application/views/bandmap/list.php:565 -msgid "Age in minutes" -msgstr "年齢(分)" +#: application/views/bandmap/list.php:547 +msgid "Spot Info" +msgstr "スポット情報" -#: application/views/bandmap/list.php:567 -msgid "Freq" -msgstr "頻度" - -#: application/views/bandmap/list.php:569 +#: application/views/bandmap/list.php:552 +#: application/views/bandmap/list.php:592 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" msgstr "サブモード" -#: application/views/bandmap/list.php:570 -msgid "Spotted Callsign" -msgstr "スポッテッドコールサイン" +#: application/views/bandmap/list.php:554 +msgid "DX Station" +msgstr "DXステーション" -#: application/views/bandmap/list.php:573 -msgid "Flag" -msgstr "フラグ" - -#: application/views/bandmap/list.php:574 -msgid "DXCC Entity" -msgstr "DXCCエンティティ" - -#: application/views/bandmap/list.php:574 +#: application/views/bandmap/list.php:558 +#: application/views/bandmap/list.php:597 msgid "Entity" msgstr "実体" -#: application/views/bandmap/list.php:575 -msgid "Spotter Callsign" -msgstr "スポッターコールサイン" - -#: application/views/bandmap/list.php:576 -msgid "Spotter Continent" -msgstr "スポッター大陸" - -#: application/views/bandmap/list.php:577 -msgid "Spotter CQ Zone" -msgstr "スポッターCQゾーン" - -#: application/views/bandmap/list.php:578 -msgid "Last QSO Date" -msgstr "最終交信日" - -#: application/views/bandmap/list.php:579 -msgid "Special" -msgstr "スペシャル" - -#: application/views/bandmap/list.php:579 -msgid "Special Flags" -msgstr "スペシャルフラグ" - -#: application/views/bandmap/list.php:580 +#: application/views/bandmap/list.php:559 +#: application/views/bandmap/list.php:603 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -8272,6 +8266,62 @@ msgstr "スペシャルフラグ" msgid "Message" msgstr "メッセージ" +#: application/views/bandmap/list.php:563 +#: application/views/bandmap/list.php:599 +msgid "Spotter Continent" +msgstr "スポッター大陸" + +#: application/views/bandmap/list.php:564 +#: application/views/bandmap/list.php:600 +msgid "Spotter CQ Zone" +msgstr "スポッターCQゾーン" + +#: application/views/bandmap/list.php:567 +msgid "Search spots..." +msgstr "スポットを検索..." + +#: application/views/bandmap/list.php:580 +msgid "Note: Map shows DXCC entity locations, not actual spot locations" +msgstr "" +"注: 地図はDXCCエンティティの位置を示しており、実際のスポットの位置ではありま" +"せん" + +#: application/views/bandmap/list.php:588 +msgid "Age in minutes" +msgstr "年齢(分)" + +#: application/views/bandmap/list.php:590 +msgid "Freq" +msgstr "頻度" + +#: application/views/bandmap/list.php:593 +msgid "Spotted Callsign" +msgstr "スポッテッドコールサイン" + +#: application/views/bandmap/list.php:596 +msgid "Flag" +msgstr "フラグ" + +#: application/views/bandmap/list.php:597 +msgid "DXCC Entity" +msgstr "DXCCエンティティ" + +#: application/views/bandmap/list.php:598 +msgid "Spotter Callsign" +msgstr "スポッターコールサイン" + +#: application/views/bandmap/list.php:601 +msgid "Last QSO Date" +msgstr "最終交信日" + +#: application/views/bandmap/list.php:602 +msgid "Special" +msgstr "スペシャル" + +#: application/views/bandmap/list.php:602 +msgid "Special Flags" +msgstr "スペシャルフラグ" + #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" msgstr "周波数に有効な数値を入力してください" @@ -10771,7 +10821,7 @@ msgstr "" #: application/views/debug/index.php:454 msgid "Cache is working properly. Everything okay!" -msgstr "キャッシュは正常に動作しています。すべて正常です!" +msgstr "キャッシュは正常に動作し、すべて正常です!" #: application/views/debug/index.php:459 msgid "Cache Details" @@ -12985,7 +13035,7 @@ msgstr "" #: application/views/logbookadvanced/dbtoolsdialog.php:19 msgid "All Station Locations" -msgstr "" +msgstr "すべてのステーションの場所" #: application/views/logbookadvanced/dbtoolsdialog.php:33 msgid "Check all QSOs in the logbook for incorrect CQ Zones" @@ -16004,7 +16054,7 @@ msgstr "アクティブな無線機" msgid "Below is a list of active radios that are connected to Wavelog." msgstr "以下は、Wavelog に接続されているアクティブな無線機のリストです。" -#: application/views/radio/index.php:24 +#: application/views/radio/index.php:23 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." @@ -16012,16 +16062,32 @@ msgstr "" "まだ無線を接続していない場合は、API ページを参照して API キーを生成してくださ" "い。" -#: application/views/radio/index.php:26 application/views/search/filter.php:66 +#: application/views/radio/index.php:25 +msgid "" +"As a clubstation operator, you can set a default radio which applies only to " +"you. This allows you to have a default radio that is automatically selected " +"when you log in, while still being able to use other radios if you want." +msgstr "" +"クラブステーションのオペレーターは、自分だけに適用されるデフォルトのラジオを" +"設定できます。これにより、ログイン時に自動的に選択されるデフォルトのラジオを" +"設定できますが、必要に応じて他のラジオも使用できます。" + +#: application/views/radio/index.php:27 +msgid "" +"As a normal user, you can set a default radio for yourself. This allows you " +"to have a default radio that is automatically selected when you log in, " +"while still being able to use other radios if you want." +msgstr "" +"通常ユーザーは、デフォルトのラジオを設定できます。これにより、ログイン時に自" +"動的に選択されるデフォルトのラジオを設定できますが、必要に応じて他のラジオも" +"使用できます。" + +#: application/views/radio/index.php:30 #, php-format -msgid "You can find out how to use the %s in the wiki." -msgstr "%s の使用方法については、ウィキでご確認いただけます。" +msgid "You can find out how to use the %sradio functions%s in the wiki." +msgstr "%sradio関数の%s使用方法についてはWikiでご確認ください。" -#: application/views/radio/index.php:26 -msgid "radio functions" -msgstr "無線機の機能" - -#: application/views/radio/index.php:31 +#: application/views/radio/index.php:35 msgid "Please wait..." msgstr "お待ちください..." @@ -16483,6 +16549,11 @@ msgstr "クエリを保存" msgid "Stored queries" msgstr "保存されたクエリ" +#: application/views/search/filter.php:66 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "%s の使用方法については、ウィキでご確認いただけます。" + #: application/views/search/filter.php:66 msgid "search filter functions" msgstr "検索フィルター機能" @@ -17866,11 +17937,11 @@ msgstr "個人的" #: application/views/user/edit.php:116 msgid "First Name" -msgstr "ファーストネーム" +msgstr "名(ファーストネーム)" #: application/views/user/edit.php:123 msgid "Last Name" -msgstr "苗字" +msgstr "苗字(ラストネーム)" #: application/views/user/edit.php:134 msgid "Ham Radio" @@ -17890,11 +17961,11 @@ msgstr "スタイルシート" #: application/views/user/edit.php:183 msgid "Wavelog Language" -msgstr "Wavelog言語" +msgstr "表示言語" #: application/views/user/edit.php:190 msgid "Choose Wavelog language." -msgstr "Wavelog 言語を選択してください。" +msgstr "表示言語を選択してください。" #: application/views/user/edit.php:193 msgid "Timezone" @@ -17910,7 +17981,7 @@ msgstr "アカウントにログインしたときに日付をどのように表 #: application/views/user/edit.php:219 msgid "Measurement preference" -msgstr "測定方法の選択" +msgstr "距離単位" #: application/views/user/edit.php:223 msgid "Kilometers" @@ -18049,7 +18120,7 @@ msgstr "メニューオプション" #: application/views/user/edit.php:468 msgid "Show notes in the main menu." -msgstr "メインメニューにメモを表示します。" +msgstr "メインメニューにメモを表示する。" #: application/views/user/edit.php:479 msgid "Quicklog Field" @@ -18344,8 +18415,8 @@ msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -"注意: このウィジェットを使用するには、少なくとも 1 つの CAT 無線が構成され動" -"作している必要があります。" +"注意: このウィジェットを使用するには、少なくとも 1 つの CAT 無線機が構成され" +"動作している必要があります。" #: application/views/user/edit.php:993 #, php-format @@ -19216,6 +19287,9 @@ msgstr "CQz" msgid "CQz geojson" msgstr "CQz geojson" +#~ msgid "radio functions" +#~ msgstr "無線機の機能" + #~ msgid "Incorrectly logged CQ zones" #~ msgstr "誤って記録されたCQゾーン" diff --git a/application/locale/lt/LC_MESSAGES/messages.po b/application/locale/lt/LC_MESSAGES/messages.po index 259059516..23948f4e2 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: 2026-02-13 08:13+0000\n" +"POT-Creation-Date: 2026-02-17 17:26+0000\n" "PO-Revision-Date: 2024-11-19 01:22+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Lithuanian \n" "Language-Team: Latvian \n" +"POT-Creation-Date: 2026-02-17 17:26+0000\n" +"PO-Revision-Date: 2026-02-16 13:29+0000\n" +"Last-Translator: PE1PQX \n" "Language-Team: Dutch \n" "Language: nl_NL\n" @@ -73,8 +73,8 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:90 application/controllers/Lotw.php:116 -#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:437 -#: application/controllers/Lotw.php:801 application/controllers/Lotw.php:888 +#: application/controllers/Lotw.php:410 application/controllers/Lotw.php:433 +#: application/controllers/Lotw.php:797 application/controllers/Lotw.php:884 #: application/controllers/Map.php:12 application/controllers/Map.php:27 #: application/controllers/Mode.php:15 application/controllers/Notes.php:10 #: application/controllers/Operator.php:13 @@ -88,8 +88,8 @@ msgstr "" #: application/controllers/Qso.php:22 application/controllers/Qso.php:288 #: application/controllers/Qso.php:419 application/controllers/Qso.php:440 #: application/controllers/Qso.php:463 application/controllers/Qso.php:763 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 -#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:320 +#: application/controllers/Radio.php:346 application/controllers/Radio.php:362 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -352,7 +352,7 @@ msgid "DOK" msgstr "DOK" #: application/controllers/Awards.php:194 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:97 application/views/bands/index.php:50 +#: application/views/bandmap/list.php:98 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:192 @@ -445,7 +445,7 @@ msgstr " en " #: application/controllers/Awards.php:595 #: application/controllers/Logbook.php:1459 -#: application/views/awards/index.php:8 application/views/bandmap/list.php:326 +#: application/views/awards/index.php:8 application/views/bandmap/list.php:327 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 #: application/views/logbookadvanced/edit.php:32 @@ -473,7 +473,7 @@ msgstr "SOTA" #: application/controllers/Awards.php:613 #: application/controllers/Logbook.php:1460 -#: application/views/bandmap/list.php:328 application/views/bands/index.php:64 +#: application/views/bandmap/list.php:329 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 @@ -495,7 +495,7 @@ msgstr "WWFF" #: application/controllers/Awards.php:631 #: application/controllers/Logbook.php:1461 -#: application/views/adif/import.php:60 application/views/bandmap/list.php:327 +#: application/views/adif/import.php:60 application/views/bandmap/list.php:328 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 @@ -651,8 +651,7 @@ msgstr "Maak mode" msgid "Edit Band" msgstr "Band bewerken" -#: application/controllers/Bandmap.php:28 -#: application/controllers/Bandmap.php:75 +#: application/controllers/Bandmap.php:56 #: application/controllers/Options.php:144 #: application/controllers/Options.php:155 #: application/views/options/sidebar.php:7 @@ -1456,7 +1455,7 @@ msgid "All callbook lookups failed or provided no results." msgstr "Alle callbook opzoekingen zijn mislukt of leverden geen resultaten op." #: application/controllers/Logbook.php:1454 -#: application/controllers/Radio.php:46 +#: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 #: application/views/adif/dcl_success.php:33 @@ -1481,9 +1480,11 @@ msgstr "Alle callbook opzoekingen zijn mislukt of leverden geen resultaten op." #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:167 -#: application/views/bandmap/list.php:301 -#: application/views/bandmap/list.php:568 +#: application/views/bandmap/list.php:100 +#: application/views/bandmap/list.php:168 +#: application/views/bandmap/list.php:302 +#: application/views/bandmap/list.php:551 +#: application/views/bandmap/list.php:591 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 @@ -1635,7 +1636,7 @@ msgstr "Land" #: application/controllers/Logbook.php:1458 #: application/views/awards/iota/index.php:198 -#: application/views/bandmap/list.php:329 application/views/bands/index.php:52 +#: application/views/bandmap/list.php:330 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/checkresult.php:394 @@ -1803,9 +1804,10 @@ msgstr "Afstand" #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:168 -#: application/views/bandmap/list.php:363 -#: application/views/bandmap/list.php:566 application/views/bands/create.php:24 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:169 +#: application/views/bandmap/list.php:364 +#: application/views/bandmap/list.php:549 +#: application/views/bandmap/list.php:589 application/views/bands/create.php:24 #: application/views/bands/edit.php:7 application/views/bands/index.php:47 #: application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 @@ -1869,8 +1871,9 @@ msgid "Band" msgstr "Band" #: application/controllers/Logbook.php:1466 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 -#: application/views/bandmap/list.php:567 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:167 +#: application/views/bandmap/list.php:550 +#: application/views/bandmap/list.php:590 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:918 @@ -1896,7 +1899,7 @@ msgid "Frequency" msgstr "Frequentie" #: application/controllers/Logbook.php:1467 -#: application/controllers/Radio.php:43 +#: application/controllers/Radio.php:46 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 #: application/views/logbookadvanced/index.php:478 @@ -1984,11 +1987,11 @@ msgstr "Certificaat geïmporteerd." msgid "Certificate Updated." msgstr "Certificaat bijgewerkt." -#: application/controllers/Lotw.php:420 +#: application/controllers/Lotw.php:416 msgid "Certificate Deleted." msgstr "Certificaat verwijderd." -#: application/controllers/Lotw.php:448 +#: application/controllers/Lotw.php:444 #, php-format msgid "" "The certificate found in file %s contains a password and cannot be " @@ -2001,7 +2004,7 @@ msgstr "" "zonder wachtwoord exporteert!%s Voor meer informatie bezoek de %sLoTW FAQ-" "pagina%s in de Wavelog Wiki." -#: application/controllers/Lotw.php:450 +#: application/controllers/Lotw.php:446 #, php-format msgid "" "Generic error extracting the certificate from file %s. If the filename " @@ -2012,52 +2015,52 @@ msgstr "" "bestandsnaam 'key-only' bevat, is dit meestal een certificaataanvraag die " "nog niet door LoTW is verwerkt." -#: application/controllers/Lotw.php:457 +#: application/controllers/Lotw.php:453 #, php-format msgid "Generic error processing the certificate in file %s." msgstr "Generieke fout bij het verwerken van het certificaat in bestand %s." -#: application/controllers/Lotw.php:469 +#: application/controllers/Lotw.php:465 #, php-format msgid "Generic error extracting the private key from certificate in file %s." msgstr "" "Algemene fout bij het extraheren van de privésleutel uit certificaat in " "bestand %s." -#: application/controllers/Lotw.php:685 +#: application/controllers/Lotw.php:681 msgid "LoTW ADIF Information" msgstr "LoTW ADIF Informatie" -#: application/controllers/Lotw.php:858 +#: application/controllers/Lotw.php:854 msgid "Connection to LoTW failed." msgstr "Verbinding met LoTW mislukt." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:859 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "LoTW-login mislukt voor gebruiker %s: %s." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:859 msgid "Username/password incorrect" msgstr "Gebruikersnaam/wachtwoord onjuist" -#: application/controllers/Lotw.php:866 +#: application/controllers/Lotw.php:862 msgid "LoTW currently not available. Try again later." msgstr "LoTW momenteel niet beschikbaar. Probeer het later opnieuw." -#: application/controllers/Lotw.php:870 +#: application/controllers/Lotw.php:866 msgid "LoTW login OK!" msgstr "LoTW login oké!" -#: application/controllers/Lotw.php:876 +#: application/controllers/Lotw.php:872 msgid "No LoTW credentials provided." msgstr "Geen LoTW-gegevens verstrekt." -#: application/controllers/Lotw.php:894 +#: application/controllers/Lotw.php:890 msgid "LoTW ADIF Import" msgstr "LoTW ADIF importeren" -#: application/controllers/Lotw.php:920 +#: application/controllers/Lotw.php:916 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Je hebt je ARRL LoTW-gegevens niet gedefinieerd!" @@ -2424,17 +2427,17 @@ msgstr "Geen roepnaam opgegeven." msgid "Hardware Interfaces" msgstr "Hardware-interfaces" -#: application/controllers/Radio.php:41 application/views/bandmap/list.php:20 +#: application/controllers/Radio.php:44 application/views/bandmap/list.php:21 #: application/views/contesting/index.php:157 #: application/views/qso/index.php:411 application/views/view_log/qso.php:714 msgid "Radio" msgstr "Radio" -#: application/controllers/Radio.php:47 +#: application/controllers/Radio.php:50 msgid "Timestamp" msgstr "Tijdstempel" -#: application/controllers/Radio.php:49 +#: application/controllers/Radio.php:52 #: application/views/logbookadvanced/index.php:867 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 @@ -2443,30 +2446,34 @@ msgstr "Tijdstempel" msgid "Options" msgstr "Opties" -#: application/controllers/Radio.php:50 application/views/debug/index.php:321 +#: application/controllers/Radio.php:53 application/views/debug/index.php:321 #: application/views/qso/index.php:841 msgid "Settings" msgstr "Instellingen" -#: application/controllers/Radio.php:63 +#: application/controllers/Radio.php:59 +msgid "WebSocket" +msgstr "WebSocket" + +#: application/controllers/Radio.php:65 application/controllers/Radio.php:124 +msgid "Default (click to release)" +msgstr "Standaard (klik om vrij te geven)" + +#: application/controllers/Radio.php:67 application/controllers/Radio.php:126 +msgid "Set as default radio" +msgstr "Instellen als standaardradio" + +#: application/controllers/Radio.php:83 msgid "UNKNOWN" msgstr "ONBEKEND" -#: application/controllers/Radio.php:98 application/views/bandmap/list.php:242 +#: application/controllers/Radio.php:118 application/views/bandmap/list.php:243 #: application/views/contesting/index.php:162 #: application/views/qso/index.php:416 msgid "last updated" msgstr "laatst bijgewerkt" -#: application/controllers/Radio.php:106 application/controllers/Radio.php:109 -msgid "Set as default radio" -msgstr "Instellen als standaardradio" - -#: application/controllers/Radio.php:111 -msgid "Default (click to release)" -msgstr "Standaard (klik om vrij te geven)" - -#: application/controllers/Radio.php:115 +#: application/controllers/Radio.php:128 #: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 @@ -2485,7 +2492,7 @@ msgstr "Standaard (klik om vrij te geven)" msgid "Edit" msgstr "Bewerken" -#: application/controllers/Radio.php:116 +#: application/controllers/Radio.php:129 #: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 @@ -2514,14 +2521,30 @@ msgstr "Bewerken" msgid "Delete" msgstr "Verwijderen" -#: application/controllers/Radio.php:122 +#: application/controllers/Radio.php:136 +msgid "WebSocket is currently default (click to release)" +msgstr "WebSocket is nu standaard (klik om vrij te geven)" + +#: application/controllers/Radio.php:138 +msgid "Set WebSocket as default radio" +msgstr "Zet WebSocket als standaard radio" + +#: application/controllers/Radio.php:142 msgid "No CAT interfaced radios found." msgstr "Geen CAT-gekoppelde radio's gevonden." -#: application/controllers/Radio.php:137 application/views/radio/index.php:2 +#: application/controllers/Radio.php:143 +msgid "You can still set the WebSocket option as your default radio." +msgstr "Je kun nog steeds de WebSocket als jouw standaard radio instellen." + +#: application/controllers/Radio.php:160 application/views/radio/index.php:2 msgid "Edit CAT Settings" msgstr "CAT-instellingen bewerken" +#: application/controllers/Radio.php:332 +msgid "Radio removed successfully" +msgstr "Radio succesvol verwijderd" + #: application/controllers/Reg1test.php:22 msgid "Export EDI" msgstr "EDI exporteren" @@ -2600,7 +2623,7 @@ msgstr "hier" msgid "Satellite Timers" msgstr "Satelliet timers" -#: application/controllers/Search.php:15 application/views/bandmap/list.php:544 +#: application/controllers/Search.php:15 application/views/bandmap/list.php:567 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 @@ -2924,103 +2947,103 @@ msgstr "DXCC uitzonderingen voorbereiden: " msgid "Preparing DXCC Prefixes: " msgstr "DXCC-prefixen voorbereiden: " -#: application/controllers/Update.php:275 +#: application/controllers/Update.php:277 msgid "DONE" msgstr "KLAAR" -#: application/controllers/Update.php:304 +#: application/controllers/Update.php:326 msgid "Updating..." msgstr "Bijwerken..." -#: application/controllers/Update.php:307 +#: application/controllers/Update.php:329 msgid "Dxcc Entities:" msgstr "Dxcc-entiteiten:" -#: application/controllers/Update.php:308 +#: application/controllers/Update.php:330 msgid "Dxcc Exceptions:" msgstr "Dxcc uitzonderingen:" -#: application/controllers/Update.php:309 +#: application/controllers/Update.php:331 msgid "Dxcc Prefixes:" msgstr "Dxcc-prefixen:" -#: application/controllers/Update.php:340 +#: application/controllers/Update.php:362 msgid "SCP Update complete. Result: " msgstr "SCP-update voltooid. Resultaat: " -#: application/controllers/Update.php:342 +#: application/controllers/Update.php:364 msgid "SCP Update failed. Result: " msgstr "SCP-update mislukt. Resultaat: " -#: application/controllers/Update.php:379 +#: application/controllers/Update.php:401 msgid "LoTW Users Update complete. Result: " msgstr "LoTW-gebruikersupdate voltooid. Resultaat: " -#: application/controllers/Update.php:381 +#: application/controllers/Update.php:403 msgid "LoTW Users Update failed. Result: " msgstr "LoTW-gebruikersupdate mislukt. Resultaat: " -#: application/controllers/Update.php:416 +#: application/controllers/Update.php:438 msgid "DOK Update complete. Result: " msgstr "DOK-update voltooid. Resultaat: " -#: application/controllers/Update.php:418 +#: application/controllers/Update.php:440 msgid "DOK Update failed. Result: " msgstr "DOK-update mislukt. Resultaat: " -#: application/controllers/Update.php:451 +#: application/controllers/Update.php:473 msgid "SOTA Update complete. Result: " msgstr "SOTA-update voltooid. Resultaat: " -#: application/controllers/Update.php:453 +#: application/controllers/Update.php:475 msgid "SOTA Update failed. Result: " msgstr "SOTA-update mislukt. Resultaat: " -#: application/controllers/Update.php:486 +#: application/controllers/Update.php:508 msgid "WWFF Update complete. Result: " msgstr "WWFF-update voltooid. Resultaat: " -#: application/controllers/Update.php:488 +#: application/controllers/Update.php:510 msgid "WWFF Update failed. Result: " msgstr "WWFF-update mislukt. Resultaat: " -#: application/controllers/Update.php:522 +#: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " msgstr "HAMqsl-update voltooid. Resultaat: " -#: application/controllers/Update.php:524 +#: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " msgstr "HAMqsl-update mislukt. Resultaat: " -#: application/controllers/Update.php:557 +#: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " msgstr "POTA-update voltooid. Resultaat: " -#: application/controllers/Update.php:559 +#: application/controllers/Update.php:581 msgid "POTA Update failed. Result: " msgstr "POTA-update mislukt. Resultaat: " -#: application/controllers/Update.php:588 +#: application/controllers/Update.php:610 msgid "TLE Update complete. Result: " msgstr "TLE-update voltooid. Resultaat: " -#: application/controllers/Update.php:590 +#: application/controllers/Update.php:612 msgid "TLE Update failed. Result: " msgstr "TLE-update mislukt. Resultaat: " -#: application/controllers/Update.php:617 +#: application/controllers/Update.php:639 msgid "LoTW SAT Update" msgstr "LoTW SAT update" -#: application/controllers/Update.php:645 +#: application/controllers/Update.php:667 msgid "Update of Hams of Note" msgstr "Update van Vermeldenswaardige Radiozendamateurs" -#: application/controllers/Update.php:685 +#: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " msgstr "VUCC-vakken bestand update voltooid. Resultaat: " -#: application/controllers/Update.php:687 +#: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " msgstr "VUCC-vakken bestandsupdate mislukt. Resultaat: " @@ -3557,14 +3580,14 @@ msgstr "Geen roepnaam gegeven" msgid "DXCC has to be Numeric" msgstr "DXCC moet numeriek zijn" -#: application/models/Logbook_model.php:4886 +#: application/models/Logbook_model.php:4806 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Verkeerde stationsroepnaam %s bij het importeren van QSO met %s voor %s: " "OVERGESLAGEN" -#: application/models/Logbook_model.php:4900 +#: application/models/Logbook_model.php:4820 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3572,11 +3595,11 @@ msgstr "" "Je hebt geprobeerd een QSO te importeren zonder geldige datum. Deze QSO is " "niet geïmporteerd. Het is ongeldig" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4829 msgid "QSO on" msgstr "QSO vanaf" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4829 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3584,7 +3607,7 @@ msgstr "" "Je hebt geprobeerd een QSO te importeren zonder een opgegeven CALL. Dit QSO " "is niet geïmporteerd. Het is ongeldig" -#: application/models/Logbook_model.php:4958 +#: application/models/Logbook_model.php:4878 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3593,64 +3616,64 @@ msgstr "" "QSO op %s: Je hebt geprobeerd een QSO te importeren zonder een opgegeven " "band. Dit QSO is niet geïmporteerd. Het is ongeldig" -#: application/models/Logbook_model.php:5231 +#: application/models/Logbook_model.php:5151 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "de qslrdate is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:5242 +#: application/models/Logbook_model.php:5162 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "de qslsdatum is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:5303 +#: application/models/Logbook_model.php:5223 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "de clublog_qso_upload_date is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:5676 +#: application/models/Logbook_model.php:5596 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Duplicaat voor" -#: application/models/Logbook_model.php:5741 -#: application/models/Logbook_model.php:5836 +#: application/models/Logbook_model.php:5661 +#: application/models/Logbook_model.php:5756 msgid "QSO could not be matched" msgstr "QSO kon niet worden gekoppeld" -#: application/models/Logbook_model.php:5749 +#: application/models/Logbook_model.php:5669 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "bevestigd door LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:5755 +#: application/models/Logbook_model.php:5675 msgid "confirmed by award manager" msgstr "Bevestigd door award manager" -#: application/models/Logbook_model.php:5759 +#: application/models/Logbook_model.php:5679 msgid "confirmed by cross-check of DCL data" msgstr "bevestigd door kruiscontrole van DCL-gegevens" -#: application/models/Logbook_model.php:5763 +#: application/models/Logbook_model.php:5683 msgid "confirmation pending" msgstr "bevestiging in afwachting" -#: application/models/Logbook_model.php:5766 +#: application/models/Logbook_model.php:5686 msgid "unconfirmed" msgstr "onbevestigd" -#: application/models/Logbook_model.php:5769 +#: application/models/Logbook_model.php:5689 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "onbekend" -#: application/models/Logbook_model.php:5839 +#: application/models/Logbook_model.php:5759 msgid "POTA reference already in log" msgstr "POTA-referentie al in logboek" -#: application/models/Logbook_model.php:5842 +#: application/models/Logbook_model.php:5762 msgid "QSO updated" msgstr "QSO bijgewerkt" -#: application/models/Logbook_model.php:6236 +#: application/models/Logbook_model.php:6156 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3830,13 +3853,13 @@ msgstr "Verschil" #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:101 -#: application/views/bandmap/list.php:295 -#: application/views/bandmap/list.php:303 -#: application/views/bandmap/list.php:325 -#: application/views/bandmap/list.php:337 -#: application/views/bandmap/list.php:351 -#: application/views/bandmap/list.php:365 application/views/bands/index.php:123 +#: application/views/bandmap/list.php:102 +#: application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:326 +#: application/views/bandmap/list.php:338 +#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:366 application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 #: application/views/callstats/index.php:24 @@ -4425,7 +4448,8 @@ msgstr "Niets gevonden!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wpx/wpx_details.php:20 #: application/views/awards/wwff/index.php:35 -#: application/views/bandmap/list.php:27 application/views/bandmap/list.php:165 +#: application/views/bandmap/list.php:28 application/views/bandmap/list.php:166 +#: application/views/bandmap/list.php:555 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:147 #: application/views/calltester/comparison_result.php:60 @@ -4595,7 +4619,7 @@ msgstr "Datum" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:137 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 #: application/views/contesting/index.php:262 @@ -5234,7 +5258,7 @@ msgstr "De API-URL voor dit Wavelog-exemplaar is" #: application/views/api/index.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 #: application/views/interface_assets/footer.php:39 -#: application/views/qso/index.php:45 application/views/radio/index.php:26 +#: application/views/qso/index.php:45 application/views/radio/index.php:30 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -5513,7 +5537,8 @@ msgstr "Totaal" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:193 -#: application/views/bandmap/list.php:572 application/views/csv/index.php:80 +#: application/views/bandmap/list.php:557 +#: application/views/bandmap/list.php:595 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 #: application/views/gridmap/index.php:236 application/views/kml/index.php:65 #: application/views/logbookadvanced/checkresult.php:246 @@ -5699,7 +5724,7 @@ msgstr "Datum tot" #: application/views/awards/wab/list.php:6 #: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 +#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 #: application/views/dashboard/index.php:342 #: application/views/dashboard/index.php:460 #: application/views/interface_assets/footer.php:45 @@ -5711,7 +5736,7 @@ msgstr "Bevestigd" #: application/views/awards/cq/index.php:88 #: application/views/awards/itu/index.php:38 #: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 +#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 #: application/views/dashboard/index.php:338 #: application/views/dashboard/index.php:454 #: application/views/search/result.php:35 @@ -6057,8 +6082,8 @@ msgstr "Inclusief verwijderd" #: application/views/awards/dxcc/index.php:142 #: application/views/awards/iota/index.php:90 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/list.php:339 -#: application/views/bandmap/list.php:353 +#: application/views/bandmap/list.php:340 +#: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 #: application/views/logbookadvanced/index.php:491 #: application/views/lookup/index.php:60 @@ -6071,8 +6096,8 @@ msgstr "Antarctica" #: application/views/awards/dxcc/index.php:146 #: application/views/awards/iota/index.php:94 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/list.php:338 -#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:339 +#: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:218 #: application/views/logbookadvanced/index.php:490 #: application/views/lookup/index.php:59 @@ -6085,8 +6110,8 @@ msgstr "Afrika" #: application/views/awards/dxcc/index.php:150 #: application/views/awards/iota/index.php:98 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/list.php:340 -#: application/views/bandmap/list.php:354 +#: application/views/bandmap/list.php:341 +#: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:221 #: application/views/logbookadvanced/index.php:493 #: application/views/lookup/index.php:62 @@ -6099,8 +6124,8 @@ msgstr "Azië" #: application/views/awards/dxcc/index.php:154 #: application/views/awards/iota/index.php:102 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/list.php:341 -#: application/views/bandmap/list.php:355 +#: application/views/bandmap/list.php:342 +#: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:222 #: application/views/logbookadvanced/index.php:494 #: application/views/lookup/index.php:63 @@ -6113,8 +6138,8 @@ msgstr "Europa" #: application/views/awards/dxcc/index.php:158 #: application/views/awards/iota/index.php:106 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/list.php:342 -#: application/views/bandmap/list.php:356 +#: application/views/bandmap/list.php:343 +#: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:220 #: application/views/logbookadvanced/index.php:492 #: application/views/lookup/index.php:61 @@ -6127,8 +6152,8 @@ msgstr "Noord-Amerika" #: application/views/awards/dxcc/index.php:162 #: application/views/awards/iota/index.php:110 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/list.php:344 -#: application/views/bandmap/list.php:358 +#: application/views/bandmap/list.php:345 +#: application/views/bandmap/list.php:359 #: application/views/logbookadvanced/edit.php:223 #: application/views/logbookadvanced/index.php:495 #: application/views/lookup/index.php:64 @@ -6141,8 +6166,8 @@ msgstr "Zuid-Amerika" #: application/views/awards/dxcc/index.php:166 #: application/views/awards/iota/index.php:114 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/list.php:343 -#: application/views/bandmap/list.php:357 +#: application/views/bandmap/list.php:344 +#: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:224 #: application/views/logbookadvanced/index.php:496 #: application/views/lookup/index.php:65 @@ -6757,7 +6782,7 @@ msgstr "PHONE" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 -#: application/views/bandmap/list.php:305 +#: application/views/bandmap/list.php:306 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" @@ -7101,8 +7126,9 @@ msgid "Awards - Worked All Continents (WAC)" msgstr "Awards - Worked All Continents (WAC)" #: application/views/awards/wac/index.php:152 -#: application/views/bandmap/list.php:100 -#: application/views/bandmap/list.php:571 +#: application/views/bandmap/list.php:101 +#: application/views/bandmap/list.php:556 +#: application/views/bandmap/list.php:594 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 #: application/views/logbookadvanced/index.php:486 @@ -7465,215 +7491,215 @@ msgid "" msgstr "" "De back-up van je notities is succesvol voltooid. De uitvoer is te vinden op" -#: application/views/bandmap/list.php:11 +#: application/views/bandmap/list.php:12 msgid "Click to prepare logging." msgstr "Klik om de logging voor te bereiden." -#: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:12 application/views/bandmap/list.php:132 msgid "to tune frequency" msgstr "om op de frequentie af te stemmen" -#: application/views/bandmap/list.php:14 +#: application/views/bandmap/list.php:15 msgid "Pop-up Blocked" msgstr "Pop-up geblokkeerd" -#: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 +#: application/views/bandmap/list.php:16 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "Pop-up werd geblokkeerd! Sta pop-ups voor deze site permanent toe." -#: application/views/bandmap/list.php:16 +#: application/views/bandmap/list.php:17 msgid "CAT Connection Required" msgstr "CAT-verbinding vereist" -#: application/views/bandmap/list.php:17 +#: application/views/bandmap/list.php:18 msgid "Enable CAT connection to tune the radio" msgstr "CAT-verbinding inschakelen om de radio af te stemmen" -#: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 +#: application/views/bandmap/list.php:19 application/views/bandmap/list.php:412 msgid "Clear Filters" msgstr "Filters wissen" -#: application/views/bandmap/list.php:19 +#: application/views/bandmap/list.php:20 msgid "Band filter preserved (band lock is active)" msgstr "Bandfilter behouden (bandvergrendeling is actief)" -#: application/views/bandmap/list.php:21 +#: application/views/bandmap/list.php:22 msgid "Radio set to None - CAT connection disabled" msgstr "Radio ingesteld op Geen - CAT-verbinding uitgeschakeld" -#: application/views/bandmap/list.php:22 +#: application/views/bandmap/list.php:23 msgid "Radio Tuned" msgstr "Radio afgestemd" -#: application/views/bandmap/list.php:23 +#: application/views/bandmap/list.php:24 msgid "Tuned to" msgstr "Afgestemd op" -#: application/views/bandmap/list.php:24 +#: application/views/bandmap/list.php:25 msgid "Tuning Failed" msgstr "Afstemmen mislukt" -#: application/views/bandmap/list.php:25 +#: application/views/bandmap/list.php:26 msgid "Failed to tune radio to frequency" msgstr "Kon niet afstemmen op frequentie" -#: application/views/bandmap/list.php:26 +#: application/views/bandmap/list.php:27 msgid "QSO Prepared" msgstr "QSO voorbereid" -#: application/views/bandmap/list.php:28 +#: application/views/bandmap/list.php:29 msgid "sent to logging form" msgstr "verzonden naar het logboekformulier" -#: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 +#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:230 msgid "CAT Connection" msgstr "CAT-verbinding" -#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 +#: application/views/bandmap/list.php:31 application/views/bandmap/list.php:229 msgid "Click to enable CAT connection" msgstr "Klik om CAT-verbinding in te schakelen" -#: application/views/bandmap/list.php:31 +#: application/views/bandmap/list.php:32 msgid "CAT following radio - Click to disable" msgstr "CAT volgt radio - Klik om uit te schakelen" -#: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 +#: application/views/bandmap/list.php:33 application/views/bandmap/list.php:232 msgid "Click to enable band lock (requires CAT connection)" msgstr "Klik om bandvergrendeling in te schakelen (vereist CAT-verbinding)" -#: application/views/bandmap/list.php:33 +#: application/views/bandmap/list.php:34 msgid "Band lock active - Click to disable" msgstr "Bandvergrendeling actief - Klik om uit te schakelen" -#: application/views/bandmap/list.php:34 +#: application/views/bandmap/list.php:35 msgid "Band Lock" msgstr "Bandvergrendeling" -#: application/views/bandmap/list.php:35 +#: application/views/bandmap/list.php:36 msgid "Band lock enabled - band filter will track radio band" msgstr "Bandvergrendeling ingeschakeld - bandfilter volgt radioband" -#: application/views/bandmap/list.php:36 +#: application/views/bandmap/list.php:37 msgid "Band filter changed to" msgstr "Bandfilter gewijzigd naar" -#: application/views/bandmap/list.php:37 +#: application/views/bandmap/list.php:38 msgid "by transceiver" msgstr "door transceiver" -#: application/views/bandmap/list.php:38 +#: application/views/bandmap/list.php:39 msgid "Frequency filter set to" msgstr "Frequentiefilter ingesteld op" -#: application/views/bandmap/list.php:39 +#: application/views/bandmap/list.php:40 msgid "Frequency outside known bands - showing all bands" msgstr "Frequentie buiten bekende banden - alle banden weergeven" -#: application/views/bandmap/list.php:40 +#: application/views/bandmap/list.php:41 msgid "Waiting for radio data..." msgstr "Wachten op radiogegevens..." -#: application/views/bandmap/list.php:41 +#: application/views/bandmap/list.php:42 msgid "My Favorites" msgstr "Mijn favorieten" -#: application/views/bandmap/list.php:42 +#: application/views/bandmap/list.php:43 msgid "Failed to load favorites" msgstr "Kan favorieten niet laden" -#: application/views/bandmap/list.php:43 +#: application/views/bandmap/list.php:44 msgid "Modes applied. Band filter preserved (CAT connection is active)" msgstr "Modi toegepast. Bandfilter behouden (CAT-verbinding is actief)" -#: application/views/bandmap/list.php:44 +#: application/views/bandmap/list.php:45 msgid "Applied your favorite bands and modes" msgstr "Je favoriete banden en modi toegepast" -#: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 -#: application/views/bandmap/list.php:479 +#: application/views/bandmap/list.php:48 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:480 msgid "My Submodes" msgstr "Mijn submodi" -#: application/views/bandmap/list.php:48 +#: application/views/bandmap/list.php:49 msgid "Submode filter enabled" msgstr "Submodusfilter ingeschakeld" -#: application/views/bandmap/list.php:49 +#: application/views/bandmap/list.php:50 msgid "Submode filter disabled - showing all" msgstr "Submodusfilter uitgeschakeld - alles weergeven" -#: application/views/bandmap/list.php:50 +#: application/views/bandmap/list.php:51 msgid "Required submodes" msgstr "Vereiste submodi" -#: application/views/bandmap/list.php:51 +#: application/views/bandmap/list.php:52 msgid "Configure in User Settings - Modes" msgstr "Configureren in Gebruikersinstellingen - Modi" -#: application/views/bandmap/list.php:52 +#: application/views/bandmap/list.php:53 msgid "No submodes configured - configure in User Settings - Modes" msgstr "" "Geen submodi geconfigureerd - configureer in Gebruikersinstellingen - Modi" -#: application/views/bandmap/list.php:53 +#: application/views/bandmap/list.php:54 msgid "No submodes enabled in settings - showing all spots" msgstr "" "Geen submodi ingeschakeld in instellingen - alle spots worden weergegeven" -#: application/views/bandmap/list.php:54 +#: application/views/bandmap/list.php:55 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "" "Uitgeschakeld - geen submodi ingeschakeld voor deze modus in " "Gebruikersinstellingen" -#: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 +#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 #: application/views/components/dxwaterfall.php:32 msgid "Toggle CW mode filter" msgstr "Schakel CW-modusfilter in" -#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 +#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 #: application/views/components/dxwaterfall.php:34 msgid "Toggle Digital mode filter" msgstr "Schakel Digitaal-modusfilter in" -#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 +#: application/views/bandmap/list.php:58 application/views/bandmap/list.php:471 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" msgstr "Schakel spraakmodusfilter in" -#: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 +#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:422 msgid "Favorites" msgstr "Favorieten" -#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 +#: application/views/bandmap/list.php:62 application/views/bandmap/list.php:425 msgid "Save Current Filters..." msgstr "Huidige filters opslaan..." -#: application/views/bandmap/list.php:62 +#: application/views/bandmap/list.php:63 msgid "Enter a name for this filter preset:" msgstr "Voer een naam in voor dit filtervoorinstelling:" -#: application/views/bandmap/list.php:63 +#: application/views/bandmap/list.php:64 msgid "Filter preset saved" msgstr "Filtervoorinstelling opgeslagen" -#: application/views/bandmap/list.php:64 +#: application/views/bandmap/list.php:65 msgid "Filter preset loaded" msgstr "Filtervoorinstelling geladen" -#: application/views/bandmap/list.php:65 +#: application/views/bandmap/list.php:66 msgid "Filter preset deleted" msgstr "Filtervoorinstelling verwijderd" -#: application/views/bandmap/list.php:66 +#: application/views/bandmap/list.php:67 msgid "Are you sure to delete this filter preset?" msgstr "Weet je zeker dat je dit filtervoorinstelling wilt verwijderen?" -#: application/views/bandmap/list.php:67 +#: application/views/bandmap/list.php:68 msgid "No saved filter presets" msgstr "Geen opgeslagen filtervoorinstellingen" -#: application/views/bandmap/list.php:68 +#: application/views/bandmap/list.php:69 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." @@ -7681,64 +7707,64 @@ msgstr "" "Maximaal 20 filtervoorinstellingen bereikt. Verwijder er enkele voordat je " "nieuwe toevoegt." -#: application/views/bandmap/list.php:71 +#: application/views/bandmap/list.php:72 msgid "Loading data from DX Cluster" msgstr "Gegevens laden van DX Cluster" -#: application/views/bandmap/list.php:72 +#: application/views/bandmap/list.php:73 msgid "Last fetched for" msgstr "Laatst opgehaald voor" -#: application/views/bandmap/list.php:73 +#: application/views/bandmap/list.php:74 msgid "Max Age" msgstr "Maximale ouderdom" -#: application/views/bandmap/list.php:74 +#: application/views/bandmap/list.php:75 msgid "Fetched at" msgstr "Opgehaald om" -#: application/views/bandmap/list.php:75 +#: application/views/bandmap/list.php:76 msgid "Next update in" msgstr "Volgende update in" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:77 msgid "minutes" msgstr "minuten" -#: application/views/bandmap/list.php:77 +#: application/views/bandmap/list.php:78 msgid "seconds" msgstr "seconden" -#: application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:79 msgid "spots fetched" msgstr "spots opgehaald" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 msgid "showing" msgstr "tonen" -#: application/views/bandmap/list.php:80 +#: application/views/bandmap/list.php:81 msgid "showing all" msgstr "alles laten zien" -#: application/views/bandmap/list.php:81 +#: application/views/bandmap/list.php:82 msgid "Active filters" msgstr "Actieve filters" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Fetching..." msgstr "Ophalen..." -#: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 #: application/views/interface_assets/footer.php:47 msgid "Not worked" msgstr "Niet gewerkt" -#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 +#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:300 msgid "Worked, not Confirmed" msgstr "Gewerkt maar niet bevestigd" -#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:316 #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:70 @@ -7746,46 +7772,46 @@ msgstr "Gewerkt maar niet bevestigd" msgid "LoTW User" msgstr "LoTW-gebruiker" -#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 +#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:319 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" msgstr "Nieuw roepnaam" -#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 +#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 #: application/views/components/dxwaterfall.php:16 msgid "New Continent" msgstr "Nieuw continent" -#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 +#: application/views/bandmap/list.php:93 application/views/bandmap/list.php:318 msgid "New Country" msgstr "Nieuw land" -#: application/views/bandmap/list.php:93 +#: application/views/bandmap/list.php:94 msgid "Worked Before" msgstr "Eerder gewerkt" -#: application/views/bandmap/list.php:94 +#: application/views/bandmap/list.php:95 #, php-format msgid "Worked on %s with %s" msgstr "Gewerkt op %s met %s" -#: application/views/bandmap/list.php:102 -#: application/views/bandmap/list.php:575 +#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:598 msgid "de" msgstr "van" -#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:104 msgid "spotted" msgstr "gespot" -#: application/views/bandmap/list.php:106 +#: application/views/bandmap/list.php:107 msgid "Fresh spot (< 5 minutes old)" msgstr "Verse spot (< 5 minuten oud)" -#: application/views/bandmap/list.php:107 #: application/views/bandmap/list.php:108 -#: application/views/bandmap/list.php:320 -#: application/views/bandmap/list.php:510 +#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:511 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:482 @@ -7796,103 +7822,105 @@ msgstr "Verse spot (< 5 minuten oud)" msgid "Contest" msgstr "Contest" -#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:110 msgid "Click to view" msgstr "Klik om te bekijken" -#: application/views/bandmap/list.php:110 +#: application/views/bandmap/list.php:111 msgid "on QRZ.com" msgstr "op QRZ.com" -#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:112 #, php-format msgid "Click to view %s on QRZ.com" msgstr "Klik om %s te bekijken op QRZ.com" -#: application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:113 msgid "See details for" msgstr "Zie details voor" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Worked on" msgstr "Gewerkt op" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "Not worked on this band" msgstr "Niet op deze band gewerkt" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 #, php-format msgid "LoTW User. Last upload was %d days ago" msgstr "LoTW-gebruiker. Laatste upload was %d dagen geleden" -#: application/views/bandmap/list.php:116 +#: application/views/bandmap/list.php:117 msgid "Click to view on POTA.app" msgstr "Klik om te bekijken op POTA.app" -#: application/views/bandmap/list.php:117 +#: application/views/bandmap/list.php:118 msgid "Click to view on SOTL.as" msgstr "Klik om te bekijken op SOTL.as" -#: application/views/bandmap/list.php:118 +#: application/views/bandmap/list.php:119 msgid "Click to view on cqgma.org" msgstr "Klik om te bekijken op cqgma.org" -#: application/views/bandmap/list.php:119 +#: application/views/bandmap/list.php:120 msgid "Click to view on IOTA-World.org" msgstr "Klik om te bekijken op IOTA-World.org" -#: application/views/bandmap/list.php:120 +#: application/views/bandmap/list.php:121 msgid "See details for continent" msgstr "Zie details voor continent" -#: application/views/bandmap/list.php:121 +#: application/views/bandmap/list.php:122 #, php-format msgid "See details for continent %s" msgstr "Zie details voor continent %s" -#: application/views/bandmap/list.php:122 +#: application/views/bandmap/list.php:123 msgid "See details for CQ Zone" msgstr "Bekijk details voor CQ-zone" -#: application/views/bandmap/list.php:123 +#: application/views/bandmap/list.php:124 #, php-format msgid "See details for CQ Zone %s" msgstr "Zie details voor CQ Zone %s" -#: application/views/bandmap/list.php:124 +#: application/views/bandmap/list.php:125 msgid "in" msgstr "in" -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 msgid "Exit Fullscreen" msgstr "Volledig scherm afsluiten" -#: application/views/bandmap/list.php:128 -#: application/views/bandmap/list.php:214 +#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:215 msgid "Toggle Fullscreen" msgstr "Volledig scherm wisselen" -#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:130 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "" "Bandfiltering wordt door je radio geregeld wanneer CAT-verbinding is " "ingeschakeld" -#: application/views/bandmap/list.php:130 +#: application/views/bandmap/list.php:131 msgid "Click to prepare logging" msgstr "Klik om loggen voor te bereiden" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "(requires CAT connection)" msgstr "(vereist CAT-verbinding)" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:561 +#: application/views/bandmap/list.php:562 msgid "Spotter" msgstr "Spotter" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 @@ -7905,110 +7933,111 @@ msgstr "Spotter" msgid "Comment" msgstr "Opmerking" -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:548 #: application/views/contesting/index.php:65 msgid "Age" msgstr "Leeftijd" -#: application/views/bandmap/list.php:137 +#: application/views/bandmap/list.php:138 msgid "Incoming" msgstr "Binnenkomend" -#: application/views/bandmap/list.php:138 +#: application/views/bandmap/list.php:139 msgid "Outgoing" msgstr "Uitgaand" -#: application/views/bandmap/list.php:139 +#: application/views/bandmap/list.php:140 #: application/views/components/dxwaterfall.php:15 msgid "spots" msgstr "spots" -#: application/views/bandmap/list.php:140 +#: application/views/bandmap/list.php:141 msgid "spot" msgstr "spot" -#: application/views/bandmap/list.php:141 +#: application/views/bandmap/list.php:142 msgid "spotters" msgstr "spotters" -#: application/views/bandmap/list.php:144 +#: application/views/bandmap/list.php:145 msgid "Please Wait" msgstr "Even geduld" -#: application/views/bandmap/list.php:145 +#: application/views/bandmap/list.php:146 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "" "Wacht %s seconden voordat je een ander roepletter naar het QSO-formulier " "verzendt" -#: application/views/bandmap/list.php:148 +#: application/views/bandmap/list.php:149 msgid "Loading spots..." msgstr "Spots laden..." -#: application/views/bandmap/list.php:149 +#: application/views/bandmap/list.php:150 msgid "No spots found" msgstr "Geen spots gevonden" -#: application/views/bandmap/list.php:150 +#: application/views/bandmap/list.php:151 msgid "No data available" msgstr "Geen gegevens beschikbaar" -#: application/views/bandmap/list.php:151 +#: application/views/bandmap/list.php:152 msgid "No spots found for selected filters" msgstr "Geen spots gevonden voor geselecteerde filters" -#: application/views/bandmap/list.php:152 +#: application/views/bandmap/list.php:153 msgid "Error loading spots. Please try again." msgstr "Fout bij het laden van spots. Probeer het opnieuw." -#: application/views/bandmap/list.php:155 +#: application/views/bandmap/list.php:156 msgid "Show all modes" msgstr "Toon alle modi" -#: application/views/bandmap/list.php:156 +#: application/views/bandmap/list.php:157 msgid "Show all spots" msgstr "Toon alle spots" -#: application/views/bandmap/list.php:161 +#: application/views/bandmap/list.php:162 msgid "Draw Spotters" msgstr "Spotters weergeven" -#: application/views/bandmap/list.php:162 +#: application/views/bandmap/list.php:163 msgid "Extend Map" msgstr "Kaart uitbreiden" -#: application/views/bandmap/list.php:163 +#: application/views/bandmap/list.php:164 msgid "Show Day/Night" msgstr "Toon dag/nacht" -#: application/views/bandmap/list.php:164 +#: application/views/bandmap/list.php:165 msgid "Your QTH" msgstr "Je QTH" -#: application/views/bandmap/list.php:200 +#: application/views/bandmap/list.php:201 msgid "Return to Home" msgstr "Terug naar huis" -#: application/views/bandmap/list.php:203 +#: application/views/bandmap/list.php:204 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" msgstr "DX-cluster" -#: application/views/bandmap/list.php:207 +#: application/views/bandmap/list.php:208 msgid "DX Cluster Help" msgstr "DX Cluster Hulp" -#: application/views/bandmap/list.php:210 +#: application/views/bandmap/list.php:211 msgid "Compact Mode - Hide/Show Menu" msgstr "Compacte modus - Menu verbergen/weergeven" -#: application/views/bandmap/list.php:237 +#: application/views/bandmap/list.php:238 msgid "TRX:" msgstr "TRX:" -#: application/views/bandmap/list.php:239 -#: application/views/bandmap/list.php:313 +#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:314 #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 @@ -8016,314 +8045,281 @@ msgstr "TRX:" msgid "None" msgstr "Geen" -#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:241 #: application/views/contesting/index.php:160 #: application/views/qso/index.php:414 msgid "Live - WebSocket" msgstr "Live - WebSocket" -#: application/views/bandmap/list.php:242 application/views/qso/index.php:416 +#: application/views/bandmap/list.php:243 application/views/qso/index.php:416 msgid "Polling - " msgstr "Polling - " -#: application/views/bandmap/list.php:251 +#: application/views/bandmap/list.php:252 msgid "de:" msgstr "van:" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "Select all continents" msgstr "Selecteer alle continenten" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "World" msgstr "Wereld" -#: application/views/bandmap/list.php:254 +#: application/views/bandmap/list.php:255 msgid "Toggle Africa continent filter" msgstr "Afrika continent filter in- of uitschakelen" -#: application/views/bandmap/list.php:255 +#: application/views/bandmap/list.php:256 msgid "Toggle Antarctica continent filter" msgstr "Antarctica continent filter in- of uitschakelen" -#: application/views/bandmap/list.php:256 +#: application/views/bandmap/list.php:257 msgid "Toggle Asia continent filter" msgstr "Azië continent filter in- of uitschakelen" -#: application/views/bandmap/list.php:257 +#: application/views/bandmap/list.php:258 msgid "Toggle Europe continent filter" msgstr "Europa continent filter in- of uitschakelen" -#: application/views/bandmap/list.php:258 +#: application/views/bandmap/list.php:259 msgid "Toggle North America continent filter" msgstr "Noord-Amerika continent filter in- of uitschakelen" -#: application/views/bandmap/list.php:259 +#: application/views/bandmap/list.php:260 msgid "Toggle Oceania continent filter" msgstr "Oceanië continent filter in- of uitschakelen" -#: application/views/bandmap/list.php:260 +#: application/views/bandmap/list.php:261 msgid "Toggle South America continent filter" msgstr "Zuid-Amerika continent filter in- of uitschakelen" -#: application/views/bandmap/list.php:273 +#: application/views/bandmap/list.php:274 msgid "Advanced Filters" msgstr "Geavanceerde filters" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "Hold" msgstr "Vasthouden" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "and click to select multiple options" msgstr "en klik om meerdere opties te selecteren" -#: application/views/bandmap/list.php:293 +#: application/views/bandmap/list.php:294 msgid "DXCC-Status" msgstr "DXCC-status" -#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:305 #: application/views/components/dxwaterfall.php:31 msgid "Phone" msgstr "Spraak" -#: application/views/bandmap/list.php:306 +#: application/views/bandmap/list.php:307 #: application/views/components/dxwaterfall.php:35 msgid "Digi" msgstr "Digitaal" -#: application/views/bandmap/list.php:311 +#: application/views/bandmap/list.php:312 msgid "Required Flags" msgstr "Vereiste vlaggen" -#: application/views/bandmap/list.php:319 +#: application/views/bandmap/list.php:320 msgid "Worked Callsign" msgstr "Gewerkte roepnaam" -#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:322 msgid "DX Spot" msgstr "DX Spot" -#: application/views/bandmap/list.php:323 +#: application/views/bandmap/list.php:324 msgid "Additional Flags" msgstr "Extra vlaggen" -#: application/views/bandmap/list.php:330 +#: application/views/bandmap/list.php:331 msgid "Fresh (< 5 min)" msgstr "Vers (< 5 min)" -#: application/views/bandmap/list.php:335 +#: application/views/bandmap/list.php:336 msgid "Spots de Continent" msgstr "Spots van continent" -#: application/views/bandmap/list.php:349 +#: application/views/bandmap/list.php:350 msgid "Spotted Station Continent" msgstr "Gespotte station continent" -#: application/views/bandmap/list.php:409 +#: application/views/bandmap/list.php:410 msgid "Apply Filters" msgstr "Filters toepassen" -#: application/views/bandmap/list.php:420 +#: application/views/bandmap/list.php:421 msgid "Filter Favorites" msgstr "Favorieten filteren" -#: application/views/bandmap/list.php:430 +#: application/views/bandmap/list.php:431 msgid "Clear all filters except De Continent" msgstr "Alle filters wissen behalve Van Continent" -#: application/views/bandmap/list.php:436 +#: application/views/bandmap/list.php:437 msgid "Toggle 160m band filter" msgstr "Schakel 160m bandfilter in/uit" -#: application/views/bandmap/list.php:440 +#: application/views/bandmap/list.php:441 msgid "Toggle 80m band filter" msgstr "Schakel 80m bandfilter in/uit" -#: application/views/bandmap/list.php:441 +#: application/views/bandmap/list.php:442 msgid "Toggle 60m band filter" msgstr "Schakel 60m bandfilter in/uit" -#: application/views/bandmap/list.php:442 +#: application/views/bandmap/list.php:443 msgid "Toggle 40m band filter" msgstr "Schakel 40m bandfilter in/uit" -#: application/views/bandmap/list.php:443 +#: application/views/bandmap/list.php:444 msgid "Toggle 30m band filter" msgstr "Schakel 30m bandfilter in/uit" -#: application/views/bandmap/list.php:444 +#: application/views/bandmap/list.php:445 msgid "Toggle 20m band filter" msgstr "Schakel 20m bandfilter in/uit" -#: application/views/bandmap/list.php:445 +#: application/views/bandmap/list.php:446 msgid "Toggle 17m band filter" msgstr "Schakel 17m bandfilter in/uit" -#: application/views/bandmap/list.php:446 +#: application/views/bandmap/list.php:447 msgid "Toggle 15m band filter" msgstr "Schakel 15m bandfilter in/uit" -#: application/views/bandmap/list.php:447 +#: application/views/bandmap/list.php:448 msgid "Toggle 12m band filter" msgstr "Schakel 12m bandfilter in/uit" -#: application/views/bandmap/list.php:448 +#: application/views/bandmap/list.php:449 msgid "Toggle 10m band filter" msgstr "Schakel 10m bandfilter in/uit" -#: application/views/bandmap/list.php:452 +#: application/views/bandmap/list.php:453 msgid "Toggle 6m band filter" msgstr "Schakel 6m bandfilter om" -#: application/views/bandmap/list.php:456 +#: application/views/bandmap/list.php:457 msgid "Toggle VHF bands filter" msgstr "Schakel VHF bandfilter in/uit" -#: application/views/bandmap/list.php:457 +#: application/views/bandmap/list.php:458 msgid "Toggle UHF bands filter" msgstr "Schakel UHF bandfilter in/uit" -#: application/views/bandmap/list.php:458 +#: application/views/bandmap/list.php:459 msgid "Toggle SHF bands filter" msgstr "Schakel SHF bandfilter in/uit" -#: application/views/bandmap/list.php:478 +#: application/views/bandmap/list.php:479 msgid "Loading submodes..." msgstr "Submodi laden..." -#: application/views/bandmap/list.php:483 +#: application/views/bandmap/list.php:484 msgid "Toggle LoTW User filter" msgstr "Schakel LoTW-gebruikerfilter in/uit" -#: application/views/bandmap/list.php:484 +#: application/views/bandmap/list.php:485 msgid "LoTW users" msgstr "LoTW-gebruikers" -#: application/views/bandmap/list.php:490 +#: application/views/bandmap/list.php:491 msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" msgstr "Schakel DX Spot-filter in/uit (gespotte continent ≠ spotter-continent)" -#: application/views/bandmap/list.php:491 -#: application/views/bandmap/list.php:570 +#: application/views/bandmap/list.php:492 +#: application/views/bandmap/list.php:593 msgid "DX" msgstr "DX" -#: application/views/bandmap/list.php:493 +#: application/views/bandmap/list.php:494 msgid "Toggle New Continents filter" msgstr "Schakel de filter Nieuwe Continenten in/uit" -#: application/views/bandmap/list.php:494 +#: application/views/bandmap/list.php:495 msgid "New Continents" msgstr "Nieuwe continenten" -#: application/views/bandmap/list.php:496 +#: application/views/bandmap/list.php:497 msgid "Toggle New Entities filter" msgstr "Nieuwe entiteitenfilter aan- of uitzetten" -#: application/views/bandmap/list.php:497 +#: application/views/bandmap/list.php:498 msgid "New Entities" msgstr "Nieuwe entiteiten" -#: application/views/bandmap/list.php:499 +#: application/views/bandmap/list.php:500 msgid "Toggle New Callsigns filter" msgstr "Nieuw oproeptekens filter in/uitschakelen" -#: application/views/bandmap/list.php:500 +#: application/views/bandmap/list.php:501 msgid "New Callsigns" msgstr "Nieuwe roepnamen" -#: application/views/bandmap/list.php:506 +#: application/views/bandmap/list.php:507 msgid "Toggle Fresh spots filter (< 5 minutes old)" msgstr "Schakel verse spots filter in/uit (< 5 minuten oud)" -#: application/views/bandmap/list.php:507 +#: application/views/bandmap/list.php:508 msgid "Fresh" msgstr "Vers" -#: application/views/bandmap/list.php:509 +#: application/views/bandmap/list.php:510 msgid "Toggle Contest filter" msgstr "Schakel wedstrijdfilter in/uit" -#: application/views/bandmap/list.php:512 +#: application/views/bandmap/list.php:513 msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" msgstr "Schakel Geo Hunter in/uit (POTA/SOTA/IOTA/WWFF)" -#: application/views/bandmap/list.php:513 +#: application/views/bandmap/list.php:514 msgid "Referenced" msgstr "Verwezen" -#: application/views/bandmap/list.php:519 +#: application/views/bandmap/list.php:520 msgid "Open DX Map view" msgstr "Open DX Kaart weergave" -#: application/views/bandmap/list.php:520 +#: application/views/bandmap/list.php:521 msgid "DX Map" msgstr "DX Kaart" -#: application/views/bandmap/list.php:544 -msgid "Search spots..." -msgstr "Zoek spots..." +#: application/views/bandmap/list.php:545 +msgid "Search Column" +msgstr "Zoekkolom" -#: application/views/bandmap/list.php:557 -msgid "Note: Map shows DXCC entity locations, not actual spot locations" -msgstr "Opmerking: Kaart toont DXCC-locaties, niet de werkelijke spot-locaties" +#: application/views/bandmap/list.php:546 +msgid "All Columns" +msgstr "Alle kolommen" -#: application/views/bandmap/list.php:565 -msgid "Age in minutes" -msgstr "Ouderdom in minuten" +#: application/views/bandmap/list.php:547 +msgid "Spot Info" +msgstr "Spot Info" -#: application/views/bandmap/list.php:567 -msgid "Freq" -msgstr "Freq" - -#: application/views/bandmap/list.php:569 +#: application/views/bandmap/list.php:552 +#: application/views/bandmap/list.php:592 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" msgstr "Submodus" -#: application/views/bandmap/list.php:570 -msgid "Spotted Callsign" -msgstr "Gespotte roepnaam" +#: application/views/bandmap/list.php:554 +msgid "DX Station" +msgstr "DX-station" -#: application/views/bandmap/list.php:573 -msgid "Flag" -msgstr "Vlag" - -#: application/views/bandmap/list.php:574 -msgid "DXCC Entity" -msgstr "DXCC-entiteit" - -#: application/views/bandmap/list.php:574 +#: application/views/bandmap/list.php:558 +#: application/views/bandmap/list.php:597 msgid "Entity" msgstr "Entiteit" -#: application/views/bandmap/list.php:575 -msgid "Spotter Callsign" -msgstr "Roepnaam van spotter" - -#: application/views/bandmap/list.php:576 -msgid "Spotter Continent" -msgstr "Spotter Continent" - -#: application/views/bandmap/list.php:577 -msgid "Spotter CQ Zone" -msgstr "Spotter CQ-zone" - -#: application/views/bandmap/list.php:578 -msgid "Last QSO Date" -msgstr "Laatste QSO-datum" - -#: application/views/bandmap/list.php:579 -msgid "Special" -msgstr "Speciaal" - -#: application/views/bandmap/list.php:579 -msgid "Special Flags" -msgstr "Speciale vlaggen" - -#: application/views/bandmap/list.php:580 +#: application/views/bandmap/list.php:559 +#: application/views/bandmap/list.php:603 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -8331,6 +8327,60 @@ msgstr "Speciale vlaggen" msgid "Message" msgstr "Bericht" +#: application/views/bandmap/list.php:563 +#: application/views/bandmap/list.php:599 +msgid "Spotter Continent" +msgstr "Spotter Continent" + +#: application/views/bandmap/list.php:564 +#: application/views/bandmap/list.php:600 +msgid "Spotter CQ Zone" +msgstr "Spotter CQ-zone" + +#: application/views/bandmap/list.php:567 +msgid "Search spots..." +msgstr "Zoek spots..." + +#: application/views/bandmap/list.php:580 +msgid "Note: Map shows DXCC entity locations, not actual spot locations" +msgstr "Opmerking: Kaart toont DXCC-locaties, niet de werkelijke spot-locaties" + +#: application/views/bandmap/list.php:588 +msgid "Age in minutes" +msgstr "Ouderdom in minuten" + +#: application/views/bandmap/list.php:590 +msgid "Freq" +msgstr "Freq" + +#: application/views/bandmap/list.php:593 +msgid "Spotted Callsign" +msgstr "Gespotte roepnaam" + +#: application/views/bandmap/list.php:596 +msgid "Flag" +msgstr "Vlag" + +#: application/views/bandmap/list.php:597 +msgid "DXCC Entity" +msgstr "DXCC-entiteit" + +#: application/views/bandmap/list.php:598 +msgid "Spotter Callsign" +msgstr "Roepnaam van spotter" + +#: application/views/bandmap/list.php:601 +msgid "Last QSO Date" +msgstr "Laatste QSO-datum" + +#: application/views/bandmap/list.php:602 +msgid "Special" +msgstr "Speciaal" + +#: application/views/bandmap/list.php:602 +msgid "Special Flags" +msgstr "Speciale vlaggen" + #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" msgstr "Voer geldige nummers in voor frequentie" @@ -13064,7 +13114,7 @@ msgstr "" #: application/views/logbookadvanced/dbtoolsdialog.php:19 msgid "All Station Locations" -msgstr "" +msgstr "Alle stationslocaties" #: application/views/logbookadvanced/dbtoolsdialog.php:33 msgid "Check all QSOs in the logbook for incorrect CQ Zones" @@ -16124,7 +16174,7 @@ msgid "Below is a list of active radios that are connected to Wavelog." msgstr "" "Hieronder staat een lijst van actieve radio's die zijn verbonden met Wavelog." -#: application/views/radio/index.php:24 +#: application/views/radio/index.php:23 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." @@ -16132,16 +16182,32 @@ msgstr "" "Als je nog geen radio's hebt aangesloten, ga dan naar de API-pagina om API-" "sleutels te genereren." -#: application/views/radio/index.php:26 application/views/search/filter.php:66 +#: application/views/radio/index.php:25 +msgid "" +"As a clubstation operator, you can set a default radio which applies only to " +"you. This allows you to have a default radio that is automatically selected " +"when you log in, while still being able to use other radios if you want." +msgstr "" +"Als club station operator kun je de standaard radio instellen die van " +"toepassing is. Dit stelt je in staat een standaard radio te selecteren bij " +"het inloggen, terwijl je naar wens ook de andere radio's kunt gebruiken." + +#: application/views/radio/index.php:27 +msgid "" +"As a normal user, you can set a default radio for yourself. This allows you " +"to have a default radio that is automatically selected when you log in, " +"while still being able to use other radios if you want." +msgstr "" +"Als een normale gebruiker kun je een standaard radio instellen. Hierdoor heb " +"je vaste radio ingeschakeld bij het inloggen, terwijl je nog steeds andere " +"radio's kunt kiezen als je dat wilt." + +#: application/views/radio/index.php:30 #, php-format -msgid "You can find out how to use the %s in the wiki." -msgstr "Je kunt in de wiki ontdekken hoe je de %s kunt gebruiken." +msgid "You can find out how to use the %sradio functions%s in the wiki." +msgstr "Je kunt in de wiki lezen hoe je de %sradio functions%s kunt gebruiken." -#: application/views/radio/index.php:26 -msgid "radio functions" -msgstr "radiofuncties" - -#: application/views/radio/index.php:31 +#: application/views/radio/index.php:35 msgid "Please wait..." msgstr "Even wachten..." @@ -16606,6 +16672,11 @@ msgstr "Zoekopdracht opslaan" msgid "Stored queries" msgstr "Opgeslagen zoekopdrachten" +#: application/views/search/filter.php:66 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "Je kunt in de wiki ontdekken hoe je de %s kunt gebruiken." + #: application/views/search/filter.php:66 msgid "search filter functions" msgstr "zoekfilterfuncties" @@ -19381,6 +19452,9 @@ msgstr "CQz" msgid "CQz geojson" msgstr "CQz geojson" +#~ msgid "radio functions" +#~ msgstr "radiofuncties" + #~ msgid "Incorrectly logged CQ zones" #~ msgstr "Onjuist gelogde CQ-zones" diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.mo b/application/locale/pl_PL/LC_MESSAGES/messages.mo index 96f19d57a..711f53785 100644 Binary files a/application/locale/pl_PL/LC_MESSAGES/messages.mo and b/application/locale/pl_PL/LC_MESSAGES/messages.mo differ diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.po b/application/locale/pl_PL/LC_MESSAGES/messages.po index a749bf397..cd5bed369 100644 --- a/application/locale/pl_PL/LC_MESSAGES/messages.po +++ b/application/locale/pl_PL/LC_MESSAGES/messages.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-13 08:13+0000\n" -"PO-Revision-Date: 2026-01-28 11:57+0000\n" -"Last-Translator: Dariusz Koryto \n" +"POT-Creation-Date: 2026-02-17 17:26+0000\n" +"PO-Revision-Date: 2026-02-14 18:19+0000\n" +"Last-Translator: Szymon \n" "Language-Team: Polish \n" "Language: pl_PL\n" @@ -80,8 +80,8 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:90 application/controllers/Lotw.php:116 -#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:437 -#: application/controllers/Lotw.php:801 application/controllers/Lotw.php:888 +#: application/controllers/Lotw.php:410 application/controllers/Lotw.php:433 +#: application/controllers/Lotw.php:797 application/controllers/Lotw.php:884 #: application/controllers/Map.php:12 application/controllers/Map.php:27 #: application/controllers/Mode.php:15 application/controllers/Notes.php:10 #: application/controllers/Operator.php:13 @@ -95,8 +95,8 @@ msgstr "" #: application/controllers/Qso.php:22 application/controllers/Qso.php:288 #: application/controllers/Qso.php:419 application/controllers/Qso.php:440 #: application/controllers/Qso.php:463 application/controllers/Qso.php:763 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 -#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:320 +#: application/controllers/Radio.php:346 application/controllers/Radio.php:362 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -359,7 +359,7 @@ msgid "DOK" msgstr "DOK" #: application/controllers/Awards.php:194 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:97 application/views/bands/index.php:50 +#: application/views/bandmap/list.php:98 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:192 @@ -452,7 +452,7 @@ msgstr " i " #: application/controllers/Awards.php:595 #: application/controllers/Logbook.php:1459 -#: application/views/awards/index.php:8 application/views/bandmap/list.php:326 +#: application/views/awards/index.php:8 application/views/bandmap/list.php:327 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 #: application/views/logbookadvanced/edit.php:32 @@ -480,7 +480,7 @@ msgstr "SOTA" #: application/controllers/Awards.php:613 #: application/controllers/Logbook.php:1460 -#: application/views/bandmap/list.php:328 application/views/bands/index.php:64 +#: application/views/bandmap/list.php:329 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 @@ -502,7 +502,7 @@ msgstr "WWFF" #: application/controllers/Awards.php:631 #: application/controllers/Logbook.php:1461 -#: application/views/adif/import.php:60 application/views/bandmap/list.php:327 +#: application/views/adif/import.php:60 application/views/bandmap/list.php:328 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 @@ -658,8 +658,7 @@ msgstr "Utwórz emisję" msgid "Edit Band" msgstr "Edytuj pasmo" -#: application/controllers/Bandmap.php:28 -#: application/controllers/Bandmap.php:75 +#: application/controllers/Bandmap.php:56 #: application/controllers/Options.php:144 #: application/controllers/Options.php:155 #: application/views/options/sidebar.php:7 @@ -972,7 +971,7 @@ msgstr "Klucz(e) usunięto." #: application/controllers/Debug.php:114 msgid "(empty)" -msgstr "" +msgstr "(pusty)" #: application/controllers/Debug.php:132 msgid "Debug" @@ -1466,7 +1465,7 @@ msgstr "" "lub nie przyniosły żadnych wyników." #: application/controllers/Logbook.php:1454 -#: application/controllers/Radio.php:46 +#: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 #: application/views/adif/dcl_success.php:33 @@ -1491,9 +1490,11 @@ msgstr "" #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:167 -#: application/views/bandmap/list.php:301 -#: application/views/bandmap/list.php:568 +#: application/views/bandmap/list.php:100 +#: application/views/bandmap/list.php:168 +#: application/views/bandmap/list.php:302 +#: application/views/bandmap/list.php:551 +#: application/views/bandmap/list.php:591 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 @@ -1645,7 +1646,7 @@ msgstr "Kraj" #: application/controllers/Logbook.php:1458 #: application/views/awards/iota/index.php:198 -#: application/views/bandmap/list.php:329 application/views/bands/index.php:52 +#: application/views/bandmap/list.php:330 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/checkresult.php:394 @@ -1813,9 +1814,10 @@ msgstr "Odległość" #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:168 -#: application/views/bandmap/list.php:363 -#: application/views/bandmap/list.php:566 application/views/bands/create.php:24 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:169 +#: application/views/bandmap/list.php:364 +#: application/views/bandmap/list.php:549 +#: application/views/bandmap/list.php:589 application/views/bands/create.php:24 #: application/views/bands/edit.php:7 application/views/bands/index.php:47 #: application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 @@ -1879,8 +1881,9 @@ msgid "Band" msgstr "Pasmo" #: application/controllers/Logbook.php:1466 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 -#: application/views/bandmap/list.php:567 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:167 +#: application/views/bandmap/list.php:550 +#: application/views/bandmap/list.php:590 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:918 @@ -1906,7 +1909,7 @@ msgid "Frequency" msgstr "Częstotliwość" #: application/controllers/Logbook.php:1467 -#: application/controllers/Radio.php:43 +#: application/controllers/Radio.php:46 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 #: application/views/logbookadvanced/index.php:478 @@ -1994,11 +1997,11 @@ msgstr "Zaimportowano certyfikat." msgid "Certificate Updated." msgstr "Zaktualizowano certyfikat." -#: application/controllers/Lotw.php:420 +#: application/controllers/Lotw.php:416 msgid "Certificate Deleted." msgstr "Usunięto certyfikat." -#: application/controllers/Lotw.php:448 +#: application/controllers/Lotw.php:444 #, php-format msgid "" "The certificate found in file %s contains a password and cannot be " @@ -2010,7 +2013,7 @@ msgstr "" "%s Upewnij się, że eksportujesz certyfikat LoTW z aplikacji tqsl bez hasła!" "%s Aby uzyskać więcej informacji, odwiedź stronę %sLoTW FAQ%s w Wiki Wavelog." -#: application/controllers/Lotw.php:450 +#: application/controllers/Lotw.php:446 #, php-format msgid "" "Generic error extracting the certificate from file %s. If the filename " @@ -2021,51 +2024,51 @@ msgstr "" "zawiera „tylko klucz\", zazwyczaj oznacza to, że jest to żądanie " "certyfikatu, które nie zostało jeszcze przetworzone przez LoTW." -#: application/controllers/Lotw.php:457 +#: application/controllers/Lotw.php:453 #, php-format msgid "Generic error processing the certificate in file %s." msgstr "Ogólny błąd podczas przetwarzania certyfikatu w pliku %s." -#: application/controllers/Lotw.php:469 +#: application/controllers/Lotw.php:465 #, php-format msgid "Generic error extracting the private key from certificate in file %s." msgstr "" "Błąd ogólny podczas wyodrębniania klucza prywatnego z certyfikatu w pliku %s." -#: application/controllers/Lotw.php:685 +#: application/controllers/Lotw.php:681 msgid "LoTW ADIF Information" msgstr "Informacje ADIF LoTW" -#: application/controllers/Lotw.php:858 +#: application/controllers/Lotw.php:854 msgid "Connection to LoTW failed." msgstr "Połączenie z LoTW nieudane." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:859 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "Dla użytkownika %s: %s logowanie do LoTW nie powiodło się." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:859 msgid "Username/password incorrect" msgstr "Nieprawidłowa nazwa użytkownika/hasło" -#: application/controllers/Lotw.php:866 +#: application/controllers/Lotw.php:862 msgid "LoTW currently not available. Try again later." msgstr "LoTW jest obecnie niedostępne. Spróbuj ponownie później." -#: application/controllers/Lotw.php:870 +#: application/controllers/Lotw.php:866 msgid "LoTW login OK!" msgstr "Logowanie do LoTW OK!" -#: application/controllers/Lotw.php:876 +#: application/controllers/Lotw.php:872 msgid "No LoTW credentials provided." msgstr "Nie podano danych uwierzytelniających LoTW." -#: application/controllers/Lotw.php:894 +#: application/controllers/Lotw.php:890 msgid "LoTW ADIF Import" msgstr "Import ADIF LoTW" -#: application/controllers/Lotw.php:920 +#: application/controllers/Lotw.php:916 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Nie zdefiniowano danych logowania ARRL LoTW!" @@ -2436,17 +2439,17 @@ msgstr "Nie podano znaku wywoławczego." msgid "Hardware Interfaces" msgstr "Interfejsy sprzętowe" -#: application/controllers/Radio.php:41 application/views/bandmap/list.php:20 +#: application/controllers/Radio.php:44 application/views/bandmap/list.php:21 #: application/views/contesting/index.php:157 #: application/views/qso/index.php:411 application/views/view_log/qso.php:714 msgid "Radio" msgstr "Radiostacja" -#: application/controllers/Radio.php:47 +#: application/controllers/Radio.php:50 msgid "Timestamp" msgstr "Znacznik czasu" -#: application/controllers/Radio.php:49 +#: application/controllers/Radio.php:52 #: application/views/logbookadvanced/index.php:867 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 @@ -2455,30 +2458,34 @@ msgstr "Znacznik czasu" msgid "Options" msgstr "Opcje" -#: application/controllers/Radio.php:50 application/views/debug/index.php:321 +#: application/controllers/Radio.php:53 application/views/debug/index.php:321 #: application/views/qso/index.php:841 msgid "Settings" msgstr "Ustawienia" -#: application/controllers/Radio.php:63 +#: application/controllers/Radio.php:59 +msgid "WebSocket" +msgstr "" + +#: application/controllers/Radio.php:65 application/controllers/Radio.php:124 +msgid "Default (click to release)" +msgstr "Domyślnie (kliknij, aby zwolnić)" + +#: application/controllers/Radio.php:67 application/controllers/Radio.php:126 +msgid "Set as default radio" +msgstr "Ustaw jako domyślne radio" + +#: application/controllers/Radio.php:83 msgid "UNKNOWN" msgstr "NIEZNANE" -#: application/controllers/Radio.php:98 application/views/bandmap/list.php:242 +#: application/controllers/Radio.php:118 application/views/bandmap/list.php:243 #: application/views/contesting/index.php:162 #: application/views/qso/index.php:416 msgid "last updated" msgstr "ostatnia aktualizacja" -#: application/controllers/Radio.php:106 application/controllers/Radio.php:109 -msgid "Set as default radio" -msgstr "Ustaw jako domyślne radio" - -#: application/controllers/Radio.php:111 -msgid "Default (click to release)" -msgstr "Domyślnie (kliknij, aby zwolnić)" - -#: application/controllers/Radio.php:115 +#: application/controllers/Radio.php:128 #: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 @@ -2497,7 +2504,7 @@ msgstr "Domyślnie (kliknij, aby zwolnić)" msgid "Edit" msgstr "Edytuj" -#: application/controllers/Radio.php:116 +#: application/controllers/Radio.php:129 #: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 @@ -2526,14 +2533,30 @@ msgstr "Edytuj" msgid "Delete" msgstr "Usuń" -#: application/controllers/Radio.php:122 +#: application/controllers/Radio.php:136 +msgid "WebSocket is currently default (click to release)" +msgstr "" + +#: application/controllers/Radio.php:138 +msgid "Set WebSocket as default radio" +msgstr "" + +#: application/controllers/Radio.php:142 msgid "No CAT interfaced radios found." msgstr "Nie znaleziono radiostacji z interfejsem CAT." -#: application/controllers/Radio.php:137 application/views/radio/index.php:2 +#: application/controllers/Radio.php:143 +msgid "You can still set the WebSocket option as your default radio." +msgstr "" + +#: application/controllers/Radio.php:160 application/views/radio/index.php:2 msgid "Edit CAT Settings" msgstr "Edytuj ustawienia CAT" +#: application/controllers/Radio.php:332 +msgid "Radio removed successfully" +msgstr "" + #: application/controllers/Reg1test.php:22 msgid "Export EDI" msgstr "Eksport EDI" @@ -2612,7 +2635,7 @@ msgstr "tutaj" msgid "Satellite Timers" msgstr "Timery satelitarne" -#: application/controllers/Search.php:15 application/views/bandmap/list.php:544 +#: application/controllers/Search.php:15 application/views/bandmap/list.php:567 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 @@ -2934,103 +2957,103 @@ msgstr "Przygotowanie wyjątków DXCC: " msgid "Preparing DXCC Prefixes: " msgstr "Przygotowanie prefiksów DXCC: " -#: application/controllers/Update.php:275 +#: application/controllers/Update.php:277 msgid "DONE" msgstr "GOTOWE" -#: application/controllers/Update.php:304 +#: application/controllers/Update.php:326 msgid "Updating..." msgstr "Aktualizowanie..." -#: application/controllers/Update.php:307 +#: application/controllers/Update.php:329 msgid "Dxcc Entities:" msgstr "Podmioty DXCC:" -#: application/controllers/Update.php:308 +#: application/controllers/Update.php:330 msgid "Dxcc Exceptions:" msgstr "Wyjątki DXCC:" -#: application/controllers/Update.php:309 +#: application/controllers/Update.php:331 msgid "Dxcc Prefixes:" msgstr "Prefiksy DXCC:" -#: application/controllers/Update.php:340 +#: application/controllers/Update.php:362 msgid "SCP Update complete. Result: " msgstr "SCP Ładowanie zakończone sukcesem. Rezultaty: " -#: application/controllers/Update.php:342 +#: application/controllers/Update.php:364 msgid "SCP Update failed. Result: " msgstr "SCP Ładowanie zakończone błędem. Rezulat: " -#: application/controllers/Update.php:379 +#: application/controllers/Update.php:401 msgid "LoTW Users Update complete. Result: " msgstr "Użytkownicy LoTW aktualizacja zakończona sukcesem. Rezultaty: " -#: application/controllers/Update.php:381 +#: application/controllers/Update.php:403 msgid "LoTW Users Update failed. Result: " msgstr "Użytkownicy LoTW aktualizacja zakończona błedem. Rezulataty: " -#: application/controllers/Update.php:416 +#: application/controllers/Update.php:438 msgid "DOK Update complete. Result: " msgstr "DOK aktualizacja zakończona sukcesem. Rezultat: " -#: application/controllers/Update.php:418 +#: application/controllers/Update.php:440 msgid "DOK Update failed. Result: " msgstr "DOK aktualizacja zakończona niepowodzeniem. Rezultat: " -#: application/controllers/Update.php:451 +#: application/controllers/Update.php:473 msgid "SOTA Update complete. Result: " msgstr "SOTA aktualizacja zakończona sukcesemm. Rezultat: " -#: application/controllers/Update.php:453 +#: application/controllers/Update.php:475 msgid "SOTA Update failed. Result: " msgstr "SOTA aktualizacja zakończona niepowodzeniem. Rezultat: " -#: application/controllers/Update.php:486 +#: application/controllers/Update.php:508 msgid "WWFF Update complete. Result: " msgstr "WWFF aktualizacja zakończona sukcesem. Rezultat: " -#: application/controllers/Update.php:488 +#: application/controllers/Update.php:510 msgid "WWFF Update failed. Result: " msgstr "WWFF aktualizacja zakończona niepowodzeniem. Rezultat: " -#: application/controllers/Update.php:522 +#: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " msgstr "Aktualizacja HAMqsl zakończona sukcesem. Rezultat: " -#: application/controllers/Update.php:524 +#: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " msgstr "Aktualizacja HAMqsl zakończona niepowodzeniem. Rezultat: " -#: application/controllers/Update.php:557 +#: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " msgstr "POTA aktualizacja zakończona sukcesem. Rezultat: " -#: application/controllers/Update.php:559 +#: application/controllers/Update.php:581 msgid "POTA Update failed. Result: " msgstr "POTA aktualizacja zakończona niepowodzeniem. Rezultat: " -#: application/controllers/Update.php:588 +#: application/controllers/Update.php:610 msgid "TLE Update complete. Result: " msgstr "Aktualizacja TLE została zakończona sukcesem. Rezultat: " -#: application/controllers/Update.php:590 +#: application/controllers/Update.php:612 msgid "TLE Update failed. Result: " msgstr "TLE aktualizacja zakończona niepowodzeniem. Rezultat: " -#: application/controllers/Update.php:617 +#: application/controllers/Update.php:639 msgid "LoTW SAT Update" msgstr "Aktualizacja LoTW SAT" -#: application/controllers/Update.php:645 +#: application/controllers/Update.php:667 msgid "Update of Hams of Note" msgstr "Aktualizacja Hams of Note" -#: application/controllers/Update.php:685 +#: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " msgstr "Przesyłanie pliku VUCC Grid zostało zakończone. Wynik: " -#: application/controllers/Update.php:687 +#: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " msgstr "Przesyłanie pliku VUCC Grid nie powiodło się. Wynik: " @@ -3569,14 +3592,14 @@ msgstr "Nie przyznano znaku" msgid "DXCC has to be Numeric" msgstr "DXCC musi być numeryczne" -#: application/models/Logbook_model.php:4886 +#: application/models/Logbook_model.php:4806 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Nieprawidłowy znak wywoławczy stacji %s podczas importowania QSO z %s dla " "%s: POMINIĘTO" -#: application/models/Logbook_model.php:4900 +#: application/models/Logbook_model.php:4820 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3584,11 +3607,11 @@ msgstr "" "Próbowano zaimportować QSO bez prawidłowej daty. To QSO nie zostało " "zaimportowane, ponieważ jest nieprawidłowe" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4829 msgid "QSO on" msgstr "QSO w dniu" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4829 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3596,7 +3619,7 @@ msgstr "" "Spróbowałeś zaimportować QSO bez podanego znaku wywoławczego. To QSO nie " "zostało zaimportowane, jest nieprawidłowe" -#: application/models/Logbook_model.php:4958 +#: application/models/Logbook_model.php:4878 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3605,64 +3628,64 @@ msgstr "" "QSO z %s: próbowano zaimportować QSO bez podanego pasma. QSO nie zostało " "zaimportowane, ponieważ jest ono nieprawidłowe" -#: application/models/Logbook_model.php:5231 +#: application/models/Logbook_model.php:5151 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "qslrdate jest nieprawidłowa (RRRRMMDD)" -#: application/models/Logbook_model.php:5242 +#: application/models/Logbook_model.php:5162 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "qslsdate jest nieprawidłowa (RRRRMMDD)" -#: application/models/Logbook_model.php:5303 +#: application/models/Logbook_model.php:5223 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "clublog_qso_upload_date jest nieprawidłowy (RRRRMMDD)" -#: application/models/Logbook_model.php:5676 +#: application/models/Logbook_model.php:5596 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Duplikat dla" -#: application/models/Logbook_model.php:5741 -#: application/models/Logbook_model.php:5836 +#: application/models/Logbook_model.php:5661 +#: application/models/Logbook_model.php:5756 msgid "QSO could not be matched" msgstr "QSO nie mogło zostać dopasowane" -#: application/models/Logbook_model.php:5749 +#: application/models/Logbook_model.php:5669 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "potwierdzone przez LoTW/ClubLog/eQSL/zawody" -#: application/models/Logbook_model.php:5755 +#: application/models/Logbook_model.php:5675 msgid "confirmed by award manager" msgstr "potwierdzone przez award managera" -#: application/models/Logbook_model.php:5759 +#: application/models/Logbook_model.php:5679 msgid "confirmed by cross-check of DCL data" msgstr "potwierdzone przez weryfikację danych DCL" -#: application/models/Logbook_model.php:5763 +#: application/models/Logbook_model.php:5683 msgid "confirmation pending" msgstr "oczekiwanie na potwierdzenie" -#: application/models/Logbook_model.php:5766 +#: application/models/Logbook_model.php:5686 msgid "unconfirmed" msgstr "niepotwierdzone" -#: application/models/Logbook_model.php:5769 +#: application/models/Logbook_model.php:5689 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "nieznany" -#: application/models/Logbook_model.php:5839 +#: application/models/Logbook_model.php:5759 msgid "POTA reference already in log" msgstr "Referencja POTA już znajduje się w dzienniku" -#: application/models/Logbook_model.php:5842 +#: application/models/Logbook_model.php:5762 msgid "QSO updated" msgstr "QSO zaktualizowane" -#: application/models/Logbook_model.php:6236 +#: application/models/Logbook_model.php:6156 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3843,13 +3866,13 @@ msgstr "Różnica" #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:101 -#: application/views/bandmap/list.php:295 -#: application/views/bandmap/list.php:303 -#: application/views/bandmap/list.php:325 -#: application/views/bandmap/list.php:337 -#: application/views/bandmap/list.php:351 -#: application/views/bandmap/list.php:365 application/views/bands/index.php:123 +#: application/views/bandmap/list.php:102 +#: application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:326 +#: application/views/bandmap/list.php:338 +#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:366 application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 #: application/views/callstats/index.php:24 @@ -4438,7 +4461,8 @@ msgstr "Nie znaleziono!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wpx/wpx_details.php:20 #: application/views/awards/wwff/index.php:35 -#: application/views/bandmap/list.php:27 application/views/bandmap/list.php:165 +#: application/views/bandmap/list.php:28 application/views/bandmap/list.php:166 +#: application/views/bandmap/list.php:555 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:147 #: application/views/calltester/comparison_result.php:60 @@ -4609,7 +4633,7 @@ msgstr "Data" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:137 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 #: application/views/contesting/index.php:262 @@ -5246,7 +5270,7 @@ msgstr "URL API tej instancji Wavelog to" #: application/views/api/index.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 #: application/views/interface_assets/footer.php:39 -#: application/views/qso/index.php:45 application/views/radio/index.php:26 +#: application/views/qso/index.php:45 application/views/radio/index.php:30 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -5526,7 +5550,8 @@ msgstr "Razem" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:193 -#: application/views/bandmap/list.php:572 application/views/csv/index.php:80 +#: application/views/bandmap/list.php:557 +#: application/views/bandmap/list.php:595 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 #: application/views/gridmap/index.php:236 application/views/kml/index.php:65 #: application/views/logbookadvanced/checkresult.php:246 @@ -5714,7 +5739,7 @@ msgstr "Data do" #: application/views/awards/wab/list.php:6 #: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 +#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 #: application/views/dashboard/index.php:342 #: application/views/dashboard/index.php:460 #: application/views/interface_assets/footer.php:45 @@ -5726,7 +5751,7 @@ msgstr "Potwierdzone" #: application/views/awards/cq/index.php:88 #: application/views/awards/itu/index.php:38 #: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 +#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 #: application/views/dashboard/index.php:338 #: application/views/dashboard/index.php:454 #: application/views/search/result.php:35 @@ -6071,8 +6096,8 @@ msgstr "Licz usunięte" #: application/views/awards/dxcc/index.php:142 #: application/views/awards/iota/index.php:90 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/list.php:339 -#: application/views/bandmap/list.php:353 +#: application/views/bandmap/list.php:340 +#: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 #: application/views/logbookadvanced/index.php:491 #: application/views/lookup/index.php:60 @@ -6085,8 +6110,8 @@ msgstr "Antarktyda" #: application/views/awards/dxcc/index.php:146 #: application/views/awards/iota/index.php:94 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/list.php:338 -#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:339 +#: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:218 #: application/views/logbookadvanced/index.php:490 #: application/views/lookup/index.php:59 @@ -6099,8 +6124,8 @@ msgstr "Afryka" #: application/views/awards/dxcc/index.php:150 #: application/views/awards/iota/index.php:98 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/list.php:340 -#: application/views/bandmap/list.php:354 +#: application/views/bandmap/list.php:341 +#: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:221 #: application/views/logbookadvanced/index.php:493 #: application/views/lookup/index.php:62 @@ -6113,8 +6138,8 @@ msgstr "Azja" #: application/views/awards/dxcc/index.php:154 #: application/views/awards/iota/index.php:102 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/list.php:341 -#: application/views/bandmap/list.php:355 +#: application/views/bandmap/list.php:342 +#: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:222 #: application/views/logbookadvanced/index.php:494 #: application/views/lookup/index.php:63 @@ -6127,8 +6152,8 @@ msgstr "Europa" #: application/views/awards/dxcc/index.php:158 #: application/views/awards/iota/index.php:106 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/list.php:342 -#: application/views/bandmap/list.php:356 +#: application/views/bandmap/list.php:343 +#: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:220 #: application/views/logbookadvanced/index.php:492 #: application/views/lookup/index.php:61 @@ -6141,8 +6166,8 @@ msgstr "Ameryka Północna" #: application/views/awards/dxcc/index.php:162 #: application/views/awards/iota/index.php:110 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/list.php:344 -#: application/views/bandmap/list.php:358 +#: application/views/bandmap/list.php:345 +#: application/views/bandmap/list.php:359 #: application/views/logbookadvanced/edit.php:223 #: application/views/logbookadvanced/index.php:495 #: application/views/lookup/index.php:64 @@ -6155,8 +6180,8 @@ msgstr "Ameryka Południowa" #: application/views/awards/dxcc/index.php:166 #: application/views/awards/iota/index.php:114 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/list.php:343 -#: application/views/bandmap/list.php:357 +#: application/views/bandmap/list.php:344 +#: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:224 #: application/views/logbookadvanced/index.php:496 #: application/views/lookup/index.php:65 @@ -6770,7 +6795,7 @@ msgstr "PHONE" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 -#: application/views/bandmap/list.php:305 +#: application/views/bandmap/list.php:306 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" @@ -7115,8 +7140,9 @@ msgid "Awards - Worked All Continents (WAC)" msgstr "Nagrody – Worked All Continents (WAC)" #: application/views/awards/wac/index.php:152 -#: application/views/bandmap/list.php:100 -#: application/views/bandmap/list.php:571 +#: application/views/bandmap/list.php:101 +#: application/views/bandmap/list.php:556 +#: application/views/bandmap/list.php:594 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 #: application/views/logbookadvanced/index.php:486 @@ -7483,283 +7509,283 @@ msgstr "" "Kopia zapasowa notatek została pomyślnie zakończona. Wynik można znaleźć pod " "adresem" -#: application/views/bandmap/list.php:11 +#: application/views/bandmap/list.php:12 msgid "Click to prepare logging." msgstr "Kliknij, aby przygotować logowanie." -#: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:12 application/views/bandmap/list.php:132 msgid "to tune frequency" msgstr "aby dostroić częstotliwość" -#: application/views/bandmap/list.php:14 +#: application/views/bandmap/list.php:15 msgid "Pop-up Blocked" msgstr "Wyskakujące okienka zablokowane" -#: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 +#: application/views/bandmap/list.php:16 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "" "Wyskakujące okienko zostało zablokowane! Należy zezwolić na wyskakujące " "okienka z tej witryny." -#: application/views/bandmap/list.php:16 +#: application/views/bandmap/list.php:17 msgid "CAT Connection Required" msgstr "Wymaga połączenia CAT" -#: application/views/bandmap/list.php:17 +#: application/views/bandmap/list.php:18 msgid "Enable CAT connection to tune the radio" msgstr "Włącz połączenie CAT, aby zmieniać częstotliwość radiostacji" -#: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 +#: application/views/bandmap/list.php:19 application/views/bandmap/list.php:412 msgid "Clear Filters" msgstr "Wyczyść filtry" -#: application/views/bandmap/list.php:19 +#: application/views/bandmap/list.php:20 msgid "Band filter preserved (band lock is active)" msgstr "Filtr pasma zachowany (blokada pasma jest aktywna)" -#: application/views/bandmap/list.php:21 +#: application/views/bandmap/list.php:22 msgid "Radio set to None - CAT connection disabled" msgstr "Radio ustawione na Brak – połączenie CAT wyłączone" -#: application/views/bandmap/list.php:22 +#: application/views/bandmap/list.php:23 msgid "Radio Tuned" msgstr "Radiostacja dostrojona" -#: application/views/bandmap/list.php:23 +#: application/views/bandmap/list.php:24 msgid "Tuned to" msgstr "Dostrojona do" -#: application/views/bandmap/list.php:24 +#: application/views/bandmap/list.php:25 msgid "Tuning Failed" msgstr "Nieudane dostrajanie" -#: application/views/bandmap/list.php:25 +#: application/views/bandmap/list.php:26 msgid "Failed to tune radio to frequency" msgstr "Nie udało się dostroić radia do częstotliwości" -#: application/views/bandmap/list.php:26 +#: application/views/bandmap/list.php:27 msgid "QSO Prepared" msgstr "Przygotowano QSO" -#: application/views/bandmap/list.php:28 +#: application/views/bandmap/list.php:29 msgid "sent to logging form" msgstr "wysłano do formularza logowania" -#: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 +#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:230 msgid "CAT Connection" msgstr "Połączenie CAT" -#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 +#: application/views/bandmap/list.php:31 application/views/bandmap/list.php:229 msgid "Click to enable CAT connection" msgstr "Kliknij, aby włączyć połączenie CAT" -#: application/views/bandmap/list.php:31 +#: application/views/bandmap/list.php:32 msgid "CAT following radio - Click to disable" msgstr "CAT podążający za radiem - Kliknij aby wyłączyć" -#: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 +#: application/views/bandmap/list.php:33 application/views/bandmap/list.php:232 msgid "Click to enable band lock (requires CAT connection)" msgstr "Kliknij aby włączyć blokadę pasma (wymaga połączenia CAT)" -#: application/views/bandmap/list.php:33 +#: application/views/bandmap/list.php:34 msgid "Band lock active - Click to disable" msgstr "Blokada paska aktywna — kliknij, aby wyłączyć" -#: application/views/bandmap/list.php:34 +#: application/views/bandmap/list.php:35 msgid "Band Lock" msgstr "Blokada Pasma" -#: application/views/bandmap/list.php:35 +#: application/views/bandmap/list.php:36 msgid "Band lock enabled - band filter will track radio band" msgstr "Blokada pasma włączona - filtr pasma będzie śledzowy pasmo radia" -#: application/views/bandmap/list.php:36 +#: application/views/bandmap/list.php:37 msgid "Band filter changed to" msgstr "Filtr pasma zmieniony na" -#: application/views/bandmap/list.php:37 +#: application/views/bandmap/list.php:38 msgid "by transceiver" msgstr "przez radiostację" -#: application/views/bandmap/list.php:38 +#: application/views/bandmap/list.php:39 msgid "Frequency filter set to" msgstr "Filtr częstotliwości ustawiono na" -#: application/views/bandmap/list.php:39 +#: application/views/bandmap/list.php:40 msgid "Frequency outside known bands - showing all bands" msgstr "Częstotliwość poza znanymi pasmami – wyświetlanie wszystkich pasm" -#: application/views/bandmap/list.php:40 +#: application/views/bandmap/list.php:41 msgid "Waiting for radio data..." msgstr "Oczekiwanie na dane z radiostacji..." -#: application/views/bandmap/list.php:41 +#: application/views/bandmap/list.php:42 msgid "My Favorites" msgstr "Moje ulubione" -#: application/views/bandmap/list.php:42 +#: application/views/bandmap/list.php:43 msgid "Failed to load favorites" msgstr "Nieudane ładowanie ulubionych" -#: application/views/bandmap/list.php:43 +#: application/views/bandmap/list.php:44 msgid "Modes applied. Band filter preserved (CAT connection is active)" msgstr "Tryby zastosowane. Filtr pasma zachowany (połączenie CAT jest aktywne)" -#: application/views/bandmap/list.php:44 +#: application/views/bandmap/list.php:45 msgid "Applied your favorite bands and modes" msgstr "Zastosowano twoje ulubione pasma i tryby" -#: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 -#: application/views/bandmap/list.php:479 +#: application/views/bandmap/list.php:48 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:480 msgid "My Submodes" msgstr "Moje Tryby Częstotliwości" -#: application/views/bandmap/list.php:48 +#: application/views/bandmap/list.php:49 msgid "Submode filter enabled" msgstr "Filtr Trybu Częstotliwości włączony" -#: application/views/bandmap/list.php:49 +#: application/views/bandmap/list.php:50 msgid "Submode filter disabled - showing all" msgstr "Filtr Trybu Częstotliwości wyłączony - wyświetlanie wszystkich" -#: application/views/bandmap/list.php:50 +#: application/views/bandmap/list.php:51 msgid "Required submodes" msgstr "Wymagane tryby częstotliwości" -#: application/views/bandmap/list.php:51 +#: application/views/bandmap/list.php:52 msgid "Configure in User Settings - Modes" msgstr "Skonfiguruj w Ustawieniach Użytkownika - Tryby" -#: application/views/bandmap/list.php:52 +#: application/views/bandmap/list.php:53 msgid "No submodes configured - configure in User Settings - Modes" msgstr "" "Brak skonfigurowanych trybów częstotliwości - skonfiguruj w Ustawieniach " "Użytkownika - Tryby" -#: application/views/bandmap/list.php:53 +#: application/views/bandmap/list.php:54 msgid "No submodes enabled in settings - showing all spots" msgstr "" "Brak włączonych trybów częstotliwości w ustawieniach - wyświetlanie " "wszystkich spotów" -#: application/views/bandmap/list.php:54 +#: application/views/bandmap/list.php:55 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "" "Wyłączony - brak włączonych trybów częstotliwości dla tego trybu w " "Ustawieniach Użytkownika" -#: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 +#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 #: application/views/components/dxwaterfall.php:32 msgid "Toggle CW mode filter" msgstr "Przełącz filtr transmisji CW" -#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 +#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 #: application/views/components/dxwaterfall.php:34 msgid "Toggle Digital mode filter" msgstr "Przełącz filtr transmisji cyfrowych" -#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 +#: application/views/bandmap/list.php:58 application/views/bandmap/list.php:471 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" msgstr "Przełącz filtr transmisji fonicznych" -#: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 +#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:422 msgid "Favorites" msgstr "Ulubione" -#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 +#: application/views/bandmap/list.php:62 application/views/bandmap/list.php:425 msgid "Save Current Filters..." msgstr "Zapisz Bieżące Filtry..." -#: application/views/bandmap/list.php:62 +#: application/views/bandmap/list.php:63 msgid "Enter a name for this filter preset:" msgstr "Wpisz nazwę dla tego ustawienia filtru:" -#: application/views/bandmap/list.php:63 +#: application/views/bandmap/list.php:64 msgid "Filter preset saved" msgstr "Ustawienie filtru zapisane" -#: application/views/bandmap/list.php:64 +#: application/views/bandmap/list.php:65 msgid "Filter preset loaded" msgstr "Ustawienie filtru załadowane" -#: application/views/bandmap/list.php:65 +#: application/views/bandmap/list.php:66 msgid "Filter preset deleted" msgstr "Ustawienie filtru usunięte" -#: application/views/bandmap/list.php:66 +#: application/views/bandmap/list.php:67 msgid "Are you sure to delete this filter preset?" msgstr "Czy na pewno usunąć to ustawienie filtru?" -#: application/views/bandmap/list.php:67 +#: application/views/bandmap/list.php:68 msgid "No saved filter presets" msgstr "Brak zapisanych ustawień filtru" -#: application/views/bandmap/list.php:68 +#: application/views/bandmap/list.php:69 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." msgstr "" "Osiągnięto maksymalnie 20 ustawień filtru. Usuń kilka zanim dodasz nowe." -#: application/views/bandmap/list.php:71 +#: application/views/bandmap/list.php:72 msgid "Loading data from DX Cluster" msgstr "Wczytywanie danych z DX Cluster" -#: application/views/bandmap/list.php:72 +#: application/views/bandmap/list.php:73 msgid "Last fetched for" msgstr "Ostatnio pobrano dla" -#: application/views/bandmap/list.php:73 +#: application/views/bandmap/list.php:74 msgid "Max Age" msgstr "Maksymalny wiek" -#: application/views/bandmap/list.php:74 +#: application/views/bandmap/list.php:75 msgid "Fetched at" msgstr "Pobrano o" -#: application/views/bandmap/list.php:75 +#: application/views/bandmap/list.php:76 msgid "Next update in" msgstr "Następna aktualizacja za" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:77 msgid "minutes" msgstr "minut" -#: application/views/bandmap/list.php:77 +#: application/views/bandmap/list.php:78 msgid "seconds" msgstr "sekund" -#: application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:79 msgid "spots fetched" msgstr "pobranych spotów" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 msgid "showing" msgstr "pokazuje" -#: application/views/bandmap/list.php:80 +#: application/views/bandmap/list.php:81 msgid "showing all" msgstr "pokazuje wszystkie" -#: application/views/bandmap/list.php:81 +#: application/views/bandmap/list.php:82 msgid "Active filters" msgstr "Aktywne filtry" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Fetching..." msgstr "Pobieranie..." -#: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 #: application/views/interface_assets/footer.php:47 msgid "Not worked" msgstr "Niezaliczone" -#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 +#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:300 msgid "Worked, not Confirmed" msgstr "Zaliczono, niepotwierdzone" -#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:316 #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:70 @@ -7767,46 +7793,46 @@ msgstr "Zaliczono, niepotwierdzone" msgid "LoTW User" msgstr "Użytkownik LoTW" -#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 +#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:319 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" msgstr "Nowy znak wywoławczy" -#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 +#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 #: application/views/components/dxwaterfall.php:16 msgid "New Continent" msgstr "Nowy kontynent" -#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 +#: application/views/bandmap/list.php:93 application/views/bandmap/list.php:318 msgid "New Country" msgstr "Nowy kraj" -#: application/views/bandmap/list.php:93 +#: application/views/bandmap/list.php:94 msgid "Worked Before" msgstr "Zaliczono wcześniej" -#: application/views/bandmap/list.php:94 +#: application/views/bandmap/list.php:95 #, php-format msgid "Worked on %s with %s" msgstr "Zaliczono dnia %s emisją %s" -#: application/views/bandmap/list.php:102 -#: application/views/bandmap/list.php:575 +#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:598 msgid "de" msgstr "de" -#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:104 msgid "spotted" msgstr "zauważony" -#: application/views/bandmap/list.php:106 +#: application/views/bandmap/list.php:107 msgid "Fresh spot (< 5 minutes old)" msgstr "Świeży spot (<5 minut temu)" -#: application/views/bandmap/list.php:107 #: application/views/bandmap/list.php:108 -#: application/views/bandmap/list.php:320 -#: application/views/bandmap/list.php:510 +#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:511 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:482 @@ -7817,103 +7843,105 @@ msgstr "Świeży spot (<5 minut temu)" msgid "Contest" msgstr "Zawody" -#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:110 msgid "Click to view" msgstr "Kliknij, aby zobaczyć" -#: application/views/bandmap/list.php:110 +#: application/views/bandmap/list.php:111 msgid "on QRZ.com" msgstr "na QRZ.com" -#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:112 #, php-format msgid "Click to view %s on QRZ.com" msgstr "Kliknij, aby zobaczyć %s na QRZ.com" -#: application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:113 msgid "See details for" msgstr "Zobacz szczegóły dla" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Worked on" msgstr "Zaliczono dnia" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "Not worked on this band" msgstr "Nie zaliczono na tym paśmie" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 #, php-format msgid "LoTW User. Last upload was %d days ago" msgstr "Użytkownik LoTW. Ostatnie przesłanie %d dni temu" -#: application/views/bandmap/list.php:116 +#: application/views/bandmap/list.php:117 msgid "Click to view on POTA.app" msgstr "Kliknij, aby zobaczyć na POTA.app" -#: application/views/bandmap/list.php:117 +#: application/views/bandmap/list.php:118 msgid "Click to view on SOTL.as" msgstr "Kliknij, aby zobaczyć na SOTL.as" -#: application/views/bandmap/list.php:118 +#: application/views/bandmap/list.php:119 msgid "Click to view on cqgma.org" msgstr "Kliknij, aby zobaczyć na cqgma.org" -#: application/views/bandmap/list.php:119 +#: application/views/bandmap/list.php:120 msgid "Click to view on IOTA-World.org" msgstr "Kliknij, aby zobaczyć na IOTA-World.org" -#: application/views/bandmap/list.php:120 +#: application/views/bandmap/list.php:121 msgid "See details for continent" msgstr "Zobacz szczegóły dla kontynentu" -#: application/views/bandmap/list.php:121 +#: application/views/bandmap/list.php:122 #, php-format msgid "See details for continent %s" msgstr "Zobacz szczegóły dla kontynentu %s" -#: application/views/bandmap/list.php:122 +#: application/views/bandmap/list.php:123 msgid "See details for CQ Zone" msgstr "Zobacz szczegóły dla strefy CQ" -#: application/views/bandmap/list.php:123 +#: application/views/bandmap/list.php:124 #, php-format msgid "See details for CQ Zone %s" msgstr "See details for CQ Zone %s" -#: application/views/bandmap/list.php:124 +#: application/views/bandmap/list.php:125 msgid "in" msgstr "w" -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 msgid "Exit Fullscreen" msgstr "Zakończ tryb pełnoekranowy" -#: application/views/bandmap/list.php:128 -#: application/views/bandmap/list.php:214 +#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:215 msgid "Toggle Fullscreen" msgstr "Przełącz tryb pełnoekranowy" -#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:130 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "" "Filtrowanie pasma jest kontrolowane przez twoje radio, gdy połączenie CAT " "jest włączone" -#: application/views/bandmap/list.php:130 +#: application/views/bandmap/list.php:131 msgid "Click to prepare logging" msgstr "Kliknij, aby przygotować logowanie" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "(requires CAT connection)" msgstr "(wymaga połączenia CAT)" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:561 +#: application/views/bandmap/list.php:562 msgid "Spotter" msgstr "Spoter" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 @@ -7926,109 +7954,110 @@ msgstr "Spoter" msgid "Comment" msgstr "Komentarz" -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:548 #: application/views/contesting/index.php:65 msgid "Age" msgstr "Wiek" -#: application/views/bandmap/list.php:137 +#: application/views/bandmap/list.php:138 msgid "Incoming" msgstr "Przychodzące" -#: application/views/bandmap/list.php:138 +#: application/views/bandmap/list.php:139 msgid "Outgoing" msgstr "Wychodzące" -#: application/views/bandmap/list.php:139 +#: application/views/bandmap/list.php:140 #: application/views/components/dxwaterfall.php:15 msgid "spots" msgstr "spoty" -#: application/views/bandmap/list.php:140 +#: application/views/bandmap/list.php:141 msgid "spot" msgstr "spot" -#: application/views/bandmap/list.php:141 +#: application/views/bandmap/list.php:142 msgid "spotters" msgstr "obserwatorzy" -#: application/views/bandmap/list.php:144 +#: application/views/bandmap/list.php:145 msgid "Please Wait" msgstr "Proszę czekać" -#: application/views/bandmap/list.php:145 +#: application/views/bandmap/list.php:146 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "" "Należy poczekać %s sekund przed wysłaniem kolejnego znaku do formularza QSO" -#: application/views/bandmap/list.php:148 +#: application/views/bandmap/list.php:149 msgid "Loading spots..." msgstr "Ładowanie spotów..." -#: application/views/bandmap/list.php:149 +#: application/views/bandmap/list.php:150 msgid "No spots found" msgstr "Nie znaleziono spotów" -#: application/views/bandmap/list.php:150 +#: application/views/bandmap/list.php:151 msgid "No data available" msgstr "Brak danych" -#: application/views/bandmap/list.php:151 +#: application/views/bandmap/list.php:152 msgid "No spots found for selected filters" msgstr "Nie znaleziono spotów dla wybranych filtrów" -#: application/views/bandmap/list.php:152 +#: application/views/bandmap/list.php:153 msgid "Error loading spots. Please try again." msgstr "Błąd ładowania spotów. Należy spróbować ponownie." -#: application/views/bandmap/list.php:155 +#: application/views/bandmap/list.php:156 msgid "Show all modes" msgstr "Pokazuj wszystkie tryby" -#: application/views/bandmap/list.php:156 +#: application/views/bandmap/list.php:157 msgid "Show all spots" msgstr "Pokazuj wszystkie spoty" -#: application/views/bandmap/list.php:161 +#: application/views/bandmap/list.php:162 msgid "Draw Spotters" msgstr "Nanoś obserwatorów" -#: application/views/bandmap/list.php:162 +#: application/views/bandmap/list.php:163 msgid "Extend Map" msgstr "Rozszerzaj mapę" -#: application/views/bandmap/list.php:163 +#: application/views/bandmap/list.php:164 msgid "Show Day/Night" msgstr "Pokazuj Dzień/Noc" -#: application/views/bandmap/list.php:164 +#: application/views/bandmap/list.php:165 msgid "Your QTH" msgstr "Twoje QTH" -#: application/views/bandmap/list.php:200 +#: application/views/bandmap/list.php:201 msgid "Return to Home" msgstr "Powrót do strony głównej" -#: application/views/bandmap/list.php:203 +#: application/views/bandmap/list.php:204 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" msgstr "DX Cluster" -#: application/views/bandmap/list.php:207 +#: application/views/bandmap/list.php:208 msgid "DX Cluster Help" msgstr "Pomoc DX Cluster" -#: application/views/bandmap/list.php:210 +#: application/views/bandmap/list.php:211 msgid "Compact Mode - Hide/Show Menu" msgstr "Tryb Kompaktowy - Ukryj/Pokaż Menu" -#: application/views/bandmap/list.php:237 +#: application/views/bandmap/list.php:238 msgid "TRX:" msgstr "TRX:" -#: application/views/bandmap/list.php:239 -#: application/views/bandmap/list.php:313 +#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:314 #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 @@ -8036,317 +8065,282 @@ msgstr "TRX:" msgid "None" msgstr "Brak" -#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:241 #: application/views/contesting/index.php:160 #: application/views/qso/index.php:414 msgid "Live - WebSocket" -msgstr "" +msgstr "Na żywo - WebSocket" -#: application/views/bandmap/list.php:242 application/views/qso/index.php:416 +#: application/views/bandmap/list.php:243 application/views/qso/index.php:416 msgid "Polling - " msgstr "Odpytywanie - " -#: application/views/bandmap/list.php:251 +#: application/views/bandmap/list.php:252 msgid "de:" msgstr "de:" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "Select all continents" msgstr "Wybierz wszystkie kontynenty" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "World" msgstr "Świat" -#: application/views/bandmap/list.php:254 +#: application/views/bandmap/list.php:255 msgid "Toggle Africa continent filter" msgstr "Przełącz kontynent: Afryka" -#: application/views/bandmap/list.php:255 +#: application/views/bandmap/list.php:256 msgid "Toggle Antarctica continent filter" msgstr "Przełącz kontynent: Antarktyka" -#: application/views/bandmap/list.php:256 +#: application/views/bandmap/list.php:257 msgid "Toggle Asia continent filter" msgstr "Przełącz kontynent: Azja" -#: application/views/bandmap/list.php:257 +#: application/views/bandmap/list.php:258 msgid "Toggle Europe continent filter" msgstr "Przełącz kontynent: Europa" -#: application/views/bandmap/list.php:258 +#: application/views/bandmap/list.php:259 msgid "Toggle North America continent filter" msgstr "Przełącz kontynent: Ameryka Północna" -#: application/views/bandmap/list.php:259 +#: application/views/bandmap/list.php:260 msgid "Toggle Oceania continent filter" msgstr "Przełącz kontynent: Ocenia" -#: application/views/bandmap/list.php:260 +#: application/views/bandmap/list.php:261 msgid "Toggle South America continent filter" msgstr "Przełącz kontynent: Ameryka Południowa" -#: application/views/bandmap/list.php:273 +#: application/views/bandmap/list.php:274 msgid "Advanced Filters" msgstr "Filtry zaawansowane" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "Hold" msgstr "Przytrzymaj" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "and click to select multiple options" msgstr "i kliknij, aby wybrać wiele opcji" -#: application/views/bandmap/list.php:293 +#: application/views/bandmap/list.php:294 msgid "DXCC-Status" msgstr "Status DXCC" -#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:305 #: application/views/components/dxwaterfall.php:31 msgid "Phone" msgstr "Fonia" -#: application/views/bandmap/list.php:306 +#: application/views/bandmap/list.php:307 #: application/views/components/dxwaterfall.php:35 msgid "Digi" msgstr "Digi" -#: application/views/bandmap/list.php:311 +#: application/views/bandmap/list.php:312 msgid "Required Flags" msgstr "Potrzebne flagi" -#: application/views/bandmap/list.php:319 +#: application/views/bandmap/list.php:320 msgid "Worked Callsign" msgstr "Zaliczony znak" -#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:322 msgid "DX Spot" msgstr "Spot DX" -#: application/views/bandmap/list.php:323 +#: application/views/bandmap/list.php:324 msgid "Additional Flags" msgstr "Dodatkowe flagi" -#: application/views/bandmap/list.php:330 +#: application/views/bandmap/list.php:331 msgid "Fresh (< 5 min)" msgstr "Świeże (<5 min)" -#: application/views/bandmap/list.php:335 +#: application/views/bandmap/list.php:336 msgid "Spots de Continent" msgstr "Spoty z kontynentu" -#: application/views/bandmap/list.php:349 +#: application/views/bandmap/list.php:350 msgid "Spotted Station Continent" msgstr "Spoty na kontynencie" -#: application/views/bandmap/list.php:409 +#: application/views/bandmap/list.php:410 msgid "Apply Filters" msgstr "Zastosuj filtry" -#: application/views/bandmap/list.php:420 +#: application/views/bandmap/list.php:421 msgid "Filter Favorites" msgstr "Ulubione Filtry" -#: application/views/bandmap/list.php:430 +#: application/views/bandmap/list.php:431 msgid "Clear all filters except De Continent" msgstr "Wyczyść wszystkie filtry za wyjątkiem kontynentu de" -#: application/views/bandmap/list.php:436 +#: application/views/bandmap/list.php:437 msgid "Toggle 160m band filter" msgstr "Przełącz filtr pasma: 160m" -#: application/views/bandmap/list.php:440 +#: application/views/bandmap/list.php:441 msgid "Toggle 80m band filter" msgstr "Przełącz filtr pasma: 80m" -#: application/views/bandmap/list.php:441 +#: application/views/bandmap/list.php:442 msgid "Toggle 60m band filter" msgstr "Przełącz filtr pasma: 60m" -#: application/views/bandmap/list.php:442 +#: application/views/bandmap/list.php:443 msgid "Toggle 40m band filter" msgstr "Przełącz filtr pasma: 40m" -#: application/views/bandmap/list.php:443 +#: application/views/bandmap/list.php:444 msgid "Toggle 30m band filter" msgstr "Przełącz filtr pasma: 30m" -#: application/views/bandmap/list.php:444 +#: application/views/bandmap/list.php:445 msgid "Toggle 20m band filter" msgstr "Przełącz filtr pasma: 20m" -#: application/views/bandmap/list.php:445 +#: application/views/bandmap/list.php:446 msgid "Toggle 17m band filter" msgstr "Przełącz filtr pasma: 17m" -#: application/views/bandmap/list.php:446 +#: application/views/bandmap/list.php:447 msgid "Toggle 15m band filter" msgstr "Przełącz filtr pasma: 15m" -#: application/views/bandmap/list.php:447 +#: application/views/bandmap/list.php:448 msgid "Toggle 12m band filter" msgstr "Przełącz filtr pasma: 12m" -#: application/views/bandmap/list.php:448 +#: application/views/bandmap/list.php:449 msgid "Toggle 10m band filter" msgstr "Przełącz filtr pasma: 10m" -#: application/views/bandmap/list.php:452 +#: application/views/bandmap/list.php:453 msgid "Toggle 6m band filter" msgstr "Przełącz filtr pasma: 6m" -#: application/views/bandmap/list.php:456 +#: application/views/bandmap/list.php:457 msgid "Toggle VHF bands filter" msgstr "Przełącz filtr pasm VHF" -#: application/views/bandmap/list.php:457 +#: application/views/bandmap/list.php:458 msgid "Toggle UHF bands filter" msgstr "Przełącz filtr pasm UHF" -#: application/views/bandmap/list.php:458 +#: application/views/bandmap/list.php:459 msgid "Toggle SHF bands filter" msgstr "Przełącz filtr pasm SHF" -#: application/views/bandmap/list.php:478 +#: application/views/bandmap/list.php:479 msgid "Loading submodes..." msgstr "Ładowanie trybów częstotliwości..." -#: application/views/bandmap/list.php:483 +#: application/views/bandmap/list.php:484 msgid "Toggle LoTW User filter" msgstr "Przełącz filtr użytkowników LoTW" -#: application/views/bandmap/list.php:484 +#: application/views/bandmap/list.php:485 msgid "LoTW users" msgstr "Użytkownicy LoTW" -#: application/views/bandmap/list.php:490 +#: application/views/bandmap/list.php:491 msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" msgstr "" "Przełącz filtr DX Spot (kontynent stacji spotowanej ≠ kontynent spotującego)" -#: application/views/bandmap/list.php:491 -#: application/views/bandmap/list.php:570 +#: application/views/bandmap/list.php:492 +#: application/views/bandmap/list.php:593 msgid "DX" msgstr "DX" -#: application/views/bandmap/list.php:493 +#: application/views/bandmap/list.php:494 msgid "Toggle New Continents filter" msgstr "Przełącz filtr nowych kontynentów" -#: application/views/bandmap/list.php:494 +#: application/views/bandmap/list.php:495 msgid "New Continents" msgstr "Nowe kontynenty" -#: application/views/bandmap/list.php:496 +#: application/views/bandmap/list.php:497 msgid "Toggle New Entities filter" msgstr "Przełącz filtr nowych podmiotów" -#: application/views/bandmap/list.php:497 +#: application/views/bandmap/list.php:498 msgid "New Entities" msgstr "Nowe Podmioty" -#: application/views/bandmap/list.php:499 +#: application/views/bandmap/list.php:500 msgid "Toggle New Callsigns filter" msgstr "Przełącz filtr nowych znaków wywoławczych" -#: application/views/bandmap/list.php:500 +#: application/views/bandmap/list.php:501 msgid "New Callsigns" msgstr "Nowe znaki" -#: application/views/bandmap/list.php:506 +#: application/views/bandmap/list.php:507 msgid "Toggle Fresh spots filter (< 5 minutes old)" msgstr "Przełącz filtr nowych spotów (< 5 minut)" -#: application/views/bandmap/list.php:507 +#: application/views/bandmap/list.php:508 msgid "Fresh" msgstr "Świeże" -#: application/views/bandmap/list.php:509 +#: application/views/bandmap/list.php:510 msgid "Toggle Contest filter" msgstr "Przełącz filtr zawodów" -#: application/views/bandmap/list.php:512 +#: application/views/bandmap/list.php:513 msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" msgstr "Przełącz filtr Geo Hunter (POTA/SOTA/IOTA/WWFF)" -#: application/views/bandmap/list.php:513 +#: application/views/bandmap/list.php:514 msgid "Referenced" msgstr "Referencje" -#: application/views/bandmap/list.php:519 +#: application/views/bandmap/list.php:520 msgid "Open DX Map view" msgstr "Otwórz widok mapy DX" -#: application/views/bandmap/list.php:520 +#: application/views/bandmap/list.php:521 msgid "DX Map" msgstr "Mapa DX" -#: application/views/bandmap/list.php:544 -msgid "Search spots..." -msgstr "Szukaj spotów..." - -#: application/views/bandmap/list.php:557 -msgid "Note: Map shows DXCC entity locations, not actual spot locations" +#: application/views/bandmap/list.php:545 +msgid "Search Column" msgstr "" -"Uwaga: mapa pokazuje lokalizacje jednostek DXCC, a nie rzeczywiste " -"lokalizacje spotów" -#: application/views/bandmap/list.php:565 -msgid "Age in minutes" -msgstr "Wiek w minutach" +#: application/views/bandmap/list.php:546 +msgid "All Columns" +msgstr "" -#: application/views/bandmap/list.php:567 -msgid "Freq" -msgstr "Częs" +#: application/views/bandmap/list.php:547 +msgid "Spot Info" +msgstr "" -#: application/views/bandmap/list.php:569 +#: application/views/bandmap/list.php:552 +#: application/views/bandmap/list.php:592 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" msgstr "Podemisja" -#: application/views/bandmap/list.php:570 -msgid "Spotted Callsign" -msgstr "Spotowany znak" +#: application/views/bandmap/list.php:554 +msgid "DX Station" +msgstr "" -#: application/views/bandmap/list.php:573 -msgid "Flag" -msgstr "Flaga" - -#: application/views/bandmap/list.php:574 -msgid "DXCC Entity" -msgstr "Podmiot" - -#: application/views/bandmap/list.php:574 +#: application/views/bandmap/list.php:558 +#: application/views/bandmap/list.php:597 msgid "Entity" msgstr "Podmiot" -#: application/views/bandmap/list.php:575 -msgid "Spotter Callsign" -msgstr "Znak spotera" - -#: application/views/bandmap/list.php:576 -msgid "Spotter Continent" -msgstr "Kontynent spotera" - -#: application/views/bandmap/list.php:577 -msgid "Spotter CQ Zone" -msgstr "Strefa CQ Spotera" - -#: application/views/bandmap/list.php:578 -msgid "Last QSO Date" -msgstr "Ostatnie QSO" - -#: application/views/bandmap/list.php:579 -msgid "Special" -msgstr "Specjalne" - -#: application/views/bandmap/list.php:579 -msgid "Special Flags" -msgstr "Flagi specjalne" - -#: application/views/bandmap/list.php:580 +#: application/views/bandmap/list.php:559 +#: application/views/bandmap/list.php:603 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -8354,6 +8348,62 @@ msgstr "Flagi specjalne" msgid "Message" msgstr "Wiadomość" +#: application/views/bandmap/list.php:563 +#: application/views/bandmap/list.php:599 +msgid "Spotter Continent" +msgstr "Kontynent spotera" + +#: application/views/bandmap/list.php:564 +#: application/views/bandmap/list.php:600 +msgid "Spotter CQ Zone" +msgstr "Strefa CQ Spotera" + +#: application/views/bandmap/list.php:567 +msgid "Search spots..." +msgstr "Szukaj spotów..." + +#: application/views/bandmap/list.php:580 +msgid "Note: Map shows DXCC entity locations, not actual spot locations" +msgstr "" +"Uwaga: mapa pokazuje lokalizacje jednostek DXCC, a nie rzeczywiste " +"lokalizacje spotów" + +#: application/views/bandmap/list.php:588 +msgid "Age in minutes" +msgstr "Wiek w minutach" + +#: application/views/bandmap/list.php:590 +msgid "Freq" +msgstr "Częs" + +#: application/views/bandmap/list.php:593 +msgid "Spotted Callsign" +msgstr "Spotowany znak" + +#: application/views/bandmap/list.php:596 +msgid "Flag" +msgstr "Flaga" + +#: application/views/bandmap/list.php:597 +msgid "DXCC Entity" +msgstr "Podmiot" + +#: application/views/bandmap/list.php:598 +msgid "Spotter Callsign" +msgstr "Znak spotera" + +#: application/views/bandmap/list.php:601 +msgid "Last QSO Date" +msgstr "Ostatnie QSO" + +#: application/views/bandmap/list.php:602 +msgid "Special" +msgstr "Specjalne" + +#: application/views/bandmap/list.php:602 +msgid "Special Flags" +msgstr "Flagi specjalne" + #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" msgstr "Należy wprowadzić prawidłową wartości częstotliwości" @@ -10581,29 +10631,29 @@ msgstr "Wyślij plik" #: application/views/debug/index.php:2 msgid "Are you sure you want to clear the cache?" -msgstr "" +msgstr "Czy na pewno chcesz wyczyścić pamięć podręczną?" #: application/views/debug/index.php:3 msgid "Failed to clear cache!" -msgstr "" +msgstr "Nie udało się wyczyścić pamięci podręcznej!" #: application/views/debug/index.php:4 #, php-format msgid "Last version check: %s" -msgstr "" +msgstr "Ostatnia kontrola wersji: %s" #: application/views/debug/index.php:5 msgid "Wavelog is up to date!" -msgstr "" +msgstr "Wavelog jest aktualny!" #: application/views/debug/index.php:6 #, php-format msgid "There is a newer version available: %s" -msgstr "" +msgstr "Jest dostępna nowsza wersja: %s" #: application/views/debug/index.php:7 msgid "The Remote Repository doesn't know your branch." -msgstr "" +msgstr "Zdalne repozytorium nie zna twojej gałęzi." #: application/views/debug/index.php:32 msgid "Wavelog Information" @@ -10827,64 +10877,66 @@ msgstr "Nie zainstalowano" #: application/views/debug/index.php:413 msgid "Cache Information" -msgstr "" +msgstr "Informacje o pamięci podręcznej" #: application/views/debug/index.php:417 msgid "Current Configuration" -msgstr "" +msgstr "Obecna konfiguracja" #: application/views/debug/index.php:420 msgctxt "Cache Adapter" msgid "Primary adapter" -msgstr "" +msgstr "Główny adapter" #: application/views/debug/index.php:431 msgctxt "Cache Backup Adapter (Fallback)" msgid "Backup adapter" -msgstr "" +msgstr "Zapasowy adapter" #: application/views/debug/index.php:440 #, php-format msgctxt "Cache Path" msgid "Path for %s adapter" -msgstr "" +msgstr "Ścieżka dla adaptera %s" #: application/views/debug/index.php:444 msgctxt "Cache Key Prefix" msgid "Key Prefix" -msgstr "" +msgstr "Prefiks klucza" #: application/views/debug/index.php:450 msgid "" "Cache is currently using the backup adapter because the primary is " "unavailable." msgstr "" +"Pamięć podręczna używa obecnie adaptera zapasowego, ponieważ główny jest " +"niedostępny." #: application/views/debug/index.php:454 msgid "Cache is working properly. Everything okay!" -msgstr "" +msgstr "Pamięć podręczna działa prawidłowo. Wszystko w porządku!" #: application/views/debug/index.php:459 msgid "Cache Details" -msgstr "" +msgstr "Szczegóły pamięci podręcznej" #: application/views/debug/index.php:462 msgctxt "Cache Details" msgid "Total Size" -msgstr "" +msgstr "Całkowity rozmiar" #: application/views/debug/index.php:468 msgctxt "Cache Key" msgid "Number of Keys" -msgstr "" +msgstr "Liczba kluczy" #: application/views/debug/index.php:479 msgid "Available Adapters" -msgstr "" +msgstr "Dostępne adaptery" #: application/views/debug/index.php:496 msgid "Clear Cache" -msgstr "" +msgstr "Wyczyść pamięć podręczną" #: application/views/debug/index.php:543 msgid "Git Information" @@ -13086,7 +13138,7 @@ msgstr "" #: application/views/logbookadvanced/dbtoolsdialog.php:19 msgid "All Station Locations" -msgstr "" +msgstr "Wszystkie lokalizacje stacji" #: application/views/logbookadvanced/dbtoolsdialog.php:33 msgid "Check all QSOs in the logbook for incorrect CQ Zones" @@ -15935,10 +15987,12 @@ msgid "" "You have already filled in a callsign. First finish this QSO before filling " "the last spot from DXcluster." msgstr "" +"Podano już znak wywoływaczy. Zakończ to QSO, zanim wypełnisz nowy znak z " +"DXCluster." #: application/views/qso/index.php:47 msgid "No spots found in this frequency." -msgstr "" +msgstr "Nie znaleziono spotów na tej częstotliwości." #: application/views/qso/index.php:93 msgid "LIVE" @@ -16132,7 +16186,7 @@ msgid "Below is a list of active radios that are connected to Wavelog." msgstr "" "Poniżej znajduje się lista aktywnych radiostacji podłączonych do Wavelog." -#: application/views/radio/index.php:24 +#: application/views/radio/index.php:23 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." @@ -16140,16 +16194,26 @@ msgstr "" "Jeśli nie podłączono jeszcze żadnych radiostacji, należy przejść do strony " "API, aby wygenerować klucze API." -#: application/views/radio/index.php:26 application/views/search/filter.php:66 +#: application/views/radio/index.php:25 +msgid "" +"As a clubstation operator, you can set a default radio which applies only to " +"you. This allows you to have a default radio that is automatically selected " +"when you log in, while still being able to use other radios if you want." +msgstr "" + +#: application/views/radio/index.php:27 +msgid "" +"As a normal user, you can set a default radio for yourself. This allows you " +"to have a default radio that is automatically selected when you log in, " +"while still being able to use other radios if you want." +msgstr "" + +#: application/views/radio/index.php:30 #, php-format -msgid "You can find out how to use the %s in the wiki." -msgstr "Można dowiedzieć się, jak używać %s w wiki." +msgid "You can find out how to use the %sradio functions%s in the wiki." +msgstr "" -#: application/views/radio/index.php:26 -msgid "radio functions" -msgstr "funkcje radiostacji" - -#: application/views/radio/index.php:31 +#: application/views/radio/index.php:35 msgid "Please wait..." msgstr "Proszę czekać..." @@ -16615,6 +16679,11 @@ msgstr "Zapisz zapytanie" msgid "Stored queries" msgstr "Zapisane zapytania" +#: application/views/search/filter.php:66 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "Można dowiedzieć się, jak używać %s w wiki." + #: application/views/search/filter.php:66 msgid "search filter functions" msgstr "funkcje filtrów wyszukiwania" @@ -19394,6 +19463,9 @@ msgstr "CQz" msgid "CQz geojson" msgstr "CQz geojson" +#~ msgid "radio functions" +#~ msgstr "funkcje radiostacji" + #~ msgid "Incorrectly logged CQ zones" #~ msgstr "Niepoprawnie zapisane strefy CQ" diff --git a/application/locale/pt_PT/LC_MESSAGES/messages.mo b/application/locale/pt_PT/LC_MESSAGES/messages.mo index eceea10fc..1821099c5 100644 Binary files a/application/locale/pt_PT/LC_MESSAGES/messages.mo and b/application/locale/pt_PT/LC_MESSAGES/messages.mo differ diff --git a/application/locale/pt_PT/LC_MESSAGES/messages.po b/application/locale/pt_PT/LC_MESSAGES/messages.po index 501b3676d..08e0d9a5a 100644 --- a/application/locale/pt_PT/LC_MESSAGES/messages.po +++ b/application/locale/pt_PT/LC_MESSAGES/messages.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-13 08:13+0000\n" +"POT-Creation-Date: 2026-02-17 17:26+0000\n" "PO-Revision-Date: 2026-01-07 05:25+0000\n" "Last-Translator: CS7AFM \n" "Language-Team: Portuguese (Portugal) \n" "Language-Team: Russian \n" @@ -23,7 +23,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 5.15.2\n" +"X-Generator: Weblate 5.16\n" #: application/controllers/Accumulated.php:12 #: application/controllers/Activators.php:13 @@ -76,8 +76,8 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:90 application/controllers/Lotw.php:116 -#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:437 -#: application/controllers/Lotw.php:801 application/controllers/Lotw.php:888 +#: application/controllers/Lotw.php:410 application/controllers/Lotw.php:433 +#: application/controllers/Lotw.php:797 application/controllers/Lotw.php:884 #: application/controllers/Map.php:12 application/controllers/Map.php:27 #: application/controllers/Mode.php:15 application/controllers/Notes.php:10 #: application/controllers/Operator.php:13 @@ -91,8 +91,8 @@ msgstr "" #: application/controllers/Qso.php:22 application/controllers/Qso.php:288 #: application/controllers/Qso.php:419 application/controllers/Qso.php:440 #: application/controllers/Qso.php:463 application/controllers/Qso.php:763 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 -#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:320 +#: application/controllers/Radio.php:346 application/controllers/Radio.php:362 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -355,7 +355,7 @@ msgid "DOK" msgstr "DOK" #: application/controllers/Awards.php:194 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:97 application/views/bands/index.php:50 +#: application/views/bandmap/list.php:98 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:192 @@ -448,7 +448,7 @@ msgstr " и " #: application/controllers/Awards.php:595 #: application/controllers/Logbook.php:1459 -#: application/views/awards/index.php:8 application/views/bandmap/list.php:326 +#: application/views/awards/index.php:8 application/views/bandmap/list.php:327 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 #: application/views/logbookadvanced/edit.php:32 @@ -476,7 +476,7 @@ msgstr "SOTA" #: application/controllers/Awards.php:613 #: application/controllers/Logbook.php:1460 -#: application/views/bandmap/list.php:328 application/views/bands/index.php:64 +#: application/views/bandmap/list.php:329 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 @@ -498,7 +498,7 @@ msgstr "WWFF" #: application/controllers/Awards.php:631 #: application/controllers/Logbook.php:1461 -#: application/views/adif/import.php:60 application/views/bandmap/list.php:327 +#: application/views/adif/import.php:60 application/views/bandmap/list.php:328 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 @@ -654,8 +654,7 @@ msgstr "Новый вид модуляции" msgid "Edit Band" msgstr "Редактировать диапазон" -#: application/controllers/Bandmap.php:28 -#: application/controllers/Bandmap.php:75 +#: application/controllers/Bandmap.php:56 #: application/controllers/Options.php:144 #: application/controllers/Options.php:155 #: application/views/options/sidebar.php:7 @@ -1464,7 +1463,7 @@ msgid "All callbook lookups failed or provided no results." msgstr "Все запросы к коллбукам не удались или не принесли результатов." #: application/controllers/Logbook.php:1454 -#: application/controllers/Radio.php:46 +#: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 #: application/views/adif/dcl_success.php:33 @@ -1489,9 +1488,11 @@ msgstr "Все запросы к коллбукам не удались или #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:167 -#: application/views/bandmap/list.php:301 -#: application/views/bandmap/list.php:568 +#: application/views/bandmap/list.php:100 +#: application/views/bandmap/list.php:168 +#: application/views/bandmap/list.php:302 +#: application/views/bandmap/list.php:551 +#: application/views/bandmap/list.php:591 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 @@ -1643,7 +1644,7 @@ msgstr "Страна" #: application/controllers/Logbook.php:1458 #: application/views/awards/iota/index.php:198 -#: application/views/bandmap/list.php:329 application/views/bands/index.php:52 +#: application/views/bandmap/list.php:330 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/checkresult.php:394 @@ -1811,9 +1812,10 @@ msgstr "Дистанция" #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:168 -#: application/views/bandmap/list.php:363 -#: application/views/bandmap/list.php:566 application/views/bands/create.php:24 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:169 +#: application/views/bandmap/list.php:364 +#: application/views/bandmap/list.php:549 +#: application/views/bandmap/list.php:589 application/views/bands/create.php:24 #: application/views/bands/edit.php:7 application/views/bands/index.php:47 #: application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 @@ -1877,8 +1879,9 @@ msgid "Band" msgstr "Диапазон" #: application/controllers/Logbook.php:1466 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 -#: application/views/bandmap/list.php:567 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:167 +#: application/views/bandmap/list.php:550 +#: application/views/bandmap/list.php:590 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:918 @@ -1904,7 +1907,7 @@ msgid "Frequency" msgstr "Частота" #: application/controllers/Logbook.php:1467 -#: application/controllers/Radio.php:43 +#: application/controllers/Radio.php:46 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 #: application/views/logbookadvanced/index.php:478 @@ -1992,11 +1995,11 @@ msgstr "Сертификат импортирован." msgid "Certificate Updated." msgstr "Сертификат обновлен." -#: application/controllers/Lotw.php:420 +#: application/controllers/Lotw.php:416 msgid "Certificate Deleted." msgstr "Сертификат удален." -#: application/controllers/Lotw.php:448 +#: application/controllers/Lotw.php:444 #, php-format msgid "" "The certificate found in file %s contains a password and cannot be " @@ -2009,7 +2012,7 @@ msgstr "" "%s Для получения дополнительной информации, пожалуйста, посетите %sстраницу " "FAQ LoTW%s в Wavelog Wiki." -#: application/controllers/Lotw.php:450 +#: application/controllers/Lotw.php:446 #, php-format msgid "" "Generic error extracting the certificate from file %s. If the filename " @@ -2019,50 +2022,50 @@ msgstr "" "Ошибка при извлечении сертификата из файла %s. Если имя файла содержит 'key-" "only', это обычно запрос сертификата, который еще не обработан LoTW." -#: application/controllers/Lotw.php:457 +#: application/controllers/Lotw.php:453 #, php-format msgid "Generic error processing the certificate in file %s." msgstr "При обработке сертификата в файле %s произошла ошибка." -#: application/controllers/Lotw.php:469 +#: application/controllers/Lotw.php:465 #, php-format msgid "Generic error extracting the private key from certificate in file %s." msgstr "Ошибка извлечения закрытого ключа из сертификата в файле %s." -#: application/controllers/Lotw.php:685 +#: application/controllers/Lotw.php:681 msgid "LoTW ADIF Information" msgstr "LoTW. Информация ADIF" -#: application/controllers/Lotw.php:858 +#: application/controllers/Lotw.php:854 msgid "Connection to LoTW failed." msgstr "Не удалось подключиться к LoTW." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:859 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "Пользователю %s (%s) не удалось войти в LoTW." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:859 msgid "Username/password incorrect" msgstr "Имя пользователя/пароль неверны" -#: application/controllers/Lotw.php:866 +#: application/controllers/Lotw.php:862 msgid "LoTW currently not available. Try again later." msgstr "LoTW в настоящее время недоступен. Попробуйте позже." -#: application/controllers/Lotw.php:870 +#: application/controllers/Lotw.php:866 msgid "LoTW login OK!" msgstr "Вход в LoTW выполнен успешно!" -#: application/controllers/Lotw.php:876 +#: application/controllers/Lotw.php:872 msgid "No LoTW credentials provided." msgstr "Отсутствуют учетные данные LoTW." -#: application/controllers/Lotw.php:894 +#: application/controllers/Lotw.php:890 msgid "LoTW ADIF Import" msgstr "LoTW. Импорт ADIF" -#: application/controllers/Lotw.php:920 +#: application/controllers/Lotw.php:916 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Вы не указали свои учетные данные ARRL LoTW!" @@ -2233,7 +2236,7 @@ msgstr "Значение таймаута радиоинтерфейса изм #: application/controllers/Options.php:247 #: application/views/options/sidebar.php:6 msgid "Email" -msgstr "Емэйл" +msgstr "Электронная почта" #: application/controllers/Options.php:304 msgid "The settings were saved successfully." @@ -2250,7 +2253,9 @@ msgstr "Отправка тестового сообщения не удалас #: application/controllers/Options.php:350 msgid "Testmail sent. Email settings seem to be correct." -msgstr "Тестовое сообщение отправлено. Настройки емэйл похожи на правильные." +msgstr "" +"Тестовое сообщение отправлено. Похоже, что настройки электронной почты " +"правильны." #: application/controllers/Options.php:362 #: application/controllers/Options.php:381 @@ -2430,17 +2435,17 @@ msgstr "Позывной не указан." msgid "Hardware Interfaces" msgstr "Интерфейсы радиостанций" -#: application/controllers/Radio.php:41 application/views/bandmap/list.php:20 +#: application/controllers/Radio.php:44 application/views/bandmap/list.php:21 #: application/views/contesting/index.php:157 #: application/views/qso/index.php:411 application/views/view_log/qso.php:714 msgid "Radio" msgstr "Радио" -#: application/controllers/Radio.php:47 +#: application/controllers/Radio.php:50 msgid "Timestamp" msgstr "Метка времени" -#: application/controllers/Radio.php:49 +#: application/controllers/Radio.php:52 #: application/views/logbookadvanced/index.php:867 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 @@ -2449,30 +2454,34 @@ msgstr "Метка времени" msgid "Options" msgstr "Опции" -#: application/controllers/Radio.php:50 application/views/debug/index.php:321 +#: application/controllers/Radio.php:53 application/views/debug/index.php:321 #: application/views/qso/index.php:841 msgid "Settings" msgstr "Настройки" -#: application/controllers/Radio.php:63 +#: application/controllers/Radio.php:59 +msgid "WebSocket" +msgstr "WebSocket" + +#: application/controllers/Radio.php:65 application/controllers/Radio.php:124 +msgid "Default (click to release)" +msgstr "По умолчанию (кликните, чтобы освободить)" + +#: application/controllers/Radio.php:67 application/controllers/Radio.php:126 +msgid "Set as default radio" +msgstr "Установить как радиостанцию по умолчанию" + +#: application/controllers/Radio.php:83 msgid "UNKNOWN" msgstr "НЕИЗВЕСТНО" -#: application/controllers/Radio.php:98 application/views/bandmap/list.php:242 +#: application/controllers/Radio.php:118 application/views/bandmap/list.php:243 #: application/views/contesting/index.php:162 #: application/views/qso/index.php:416 msgid "last updated" msgstr "последнее обновление" -#: application/controllers/Radio.php:106 application/controllers/Radio.php:109 -msgid "Set as default radio" -msgstr "Установить как радиостанцию по умолчанию" - -#: application/controllers/Radio.php:111 -msgid "Default (click to release)" -msgstr "По умолчанию (кликните, чтобы освободить)" - -#: application/controllers/Radio.php:115 +#: application/controllers/Radio.php:128 #: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 @@ -2491,7 +2500,7 @@ msgstr "По умолчанию (кликните, чтобы освободит msgid "Edit" msgstr "Редактировать" -#: application/controllers/Radio.php:116 +#: application/controllers/Radio.php:129 #: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 @@ -2520,14 +2529,34 @@ msgstr "Редактировать" msgid "Delete" msgstr "Удалить" -#: application/controllers/Radio.php:122 +#: application/controllers/Radio.php:136 +msgid "WebSocket is currently default (click to release)" +msgstr "" +"WebSocket в настоящее время установлен в качестве интерфейса радиостанции по " +"умолчанию (нажмите, чтобы отключить)" + +#: application/controllers/Radio.php:138 +msgid "Set WebSocket as default radio" +msgstr "Установить WebSocket в качестве интерфейса радиостанции по умолчанию" + +#: application/controllers/Radio.php:142 msgid "No CAT interfaced radios found." msgstr "CAT-интерфейсные радиостанции не найдены." -#: application/controllers/Radio.php:137 application/views/radio/index.php:2 +#: application/controllers/Radio.php:143 +msgid "You can still set the WebSocket option as your default radio." +msgstr "" +"Вы всё ещё можете установить WebSocket в качестве интерфейса радиостанции по " +"умолчанию." + +#: application/controllers/Radio.php:160 application/views/radio/index.php:2 msgid "Edit CAT Settings" msgstr "Изменить настройки CAT" +#: application/controllers/Radio.php:332 +msgid "Radio removed successfully" +msgstr "Интерфейс радиостанции успешно удалён" + #: application/controllers/Reg1test.php:22 msgid "Export EDI" msgstr "Экспорт EDI" @@ -2606,7 +2635,7 @@ msgstr "здесь" msgid "Satellite Timers" msgstr "Спутниковые таймеры" -#: application/controllers/Search.php:15 application/views/bandmap/list.php:544 +#: application/controllers/Search.php:15 application/views/bandmap/list.php:567 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 @@ -2928,103 +2957,103 @@ msgstr "Подготовка исключений DXCC: " msgid "Preparing DXCC Prefixes: " msgstr "Подготовка префиксов DXCC: " -#: application/controllers/Update.php:275 +#: application/controllers/Update.php:277 msgid "DONE" msgstr "Готово" -#: application/controllers/Update.php:304 +#: application/controllers/Update.php:326 msgid "Updating..." msgstr "Обновляется..." -#: application/controllers/Update.php:307 +#: application/controllers/Update.php:329 msgid "Dxcc Entities:" msgstr "DXCC:" -#: application/controllers/Update.php:308 +#: application/controllers/Update.php:330 msgid "Dxcc Exceptions:" msgstr "Исключения DXCC:" -#: application/controllers/Update.php:309 +#: application/controllers/Update.php:331 msgid "Dxcc Prefixes:" msgstr "Префиксы DXCC:" -#: application/controllers/Update.php:340 +#: application/controllers/Update.php:362 msgid "SCP Update complete. Result: " msgstr "Обновление SCP завершено. Результат: " -#: application/controllers/Update.php:342 +#: application/controllers/Update.php:364 msgid "SCP Update failed. Result: " msgstr "Обновление SCP не удалось. Результат: " -#: application/controllers/Update.php:379 +#: application/controllers/Update.php:401 msgid "LoTW Users Update complete. Result: " msgstr "Обновление пользователей LoTW завершено. Результат: " -#: application/controllers/Update.php:381 +#: application/controllers/Update.php:403 msgid "LoTW Users Update failed. Result: " msgstr "Обновление пользователей LoTW не удалось. Результат: " -#: application/controllers/Update.php:416 +#: application/controllers/Update.php:438 msgid "DOK Update complete. Result: " msgstr "Обновление DOK завершено. Результат: " -#: application/controllers/Update.php:418 +#: application/controllers/Update.php:440 msgid "DOK Update failed. Result: " msgstr "Обновление DOK не удалось. Результат: " -#: application/controllers/Update.php:451 +#: application/controllers/Update.php:473 msgid "SOTA Update complete. Result: " msgstr "Обновление SOTA завершено. Результат: " -#: application/controllers/Update.php:453 +#: application/controllers/Update.php:475 msgid "SOTA Update failed. Result: " msgstr "Обновление SOTA не удалось. Результат: " -#: application/controllers/Update.php:486 +#: application/controllers/Update.php:508 msgid "WWFF Update complete. Result: " msgstr "Обновление WWFF завершено. Результат: " -#: application/controllers/Update.php:488 +#: application/controllers/Update.php:510 msgid "WWFF Update failed. Result: " msgstr "Обновление WWFF не удалось. Результат: " -#: application/controllers/Update.php:522 +#: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " msgstr "Обновление HAMqsl завершено. Результат: " -#: application/controllers/Update.php:524 +#: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " msgstr "Обновление HAMqsl не удалось. Результат: " -#: application/controllers/Update.php:557 +#: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " msgstr "Обновление POTA завершено. Результат: " -#: application/controllers/Update.php:559 +#: application/controllers/Update.php:581 msgid "POTA Update failed. Result: " msgstr "Обновление POTA не удалось. Результат: " -#: application/controllers/Update.php:588 +#: application/controllers/Update.php:610 msgid "TLE Update complete. Result: " msgstr "Обновление TLE завершено. Результат: " -#: application/controllers/Update.php:590 +#: application/controllers/Update.php:612 msgid "TLE Update failed. Result: " msgstr "Обновление TLE не удалось. Результат: " -#: application/controllers/Update.php:617 +#: application/controllers/Update.php:639 msgid "LoTW SAT Update" msgstr "Обновление спутников для LoTW" -#: application/controllers/Update.php:645 +#: application/controllers/Update.php:667 msgid "Update of Hams of Note" msgstr "Обновить \"Заметки о корреспондентах\"" -#: application/controllers/Update.php:685 +#: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " msgstr "Обновление файла квадратов VUCC завершено. Результат: " -#: application/controllers/Update.php:687 +#: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " msgstr "Обновление файла квадратов VUCC не удалось. Результат: " @@ -3231,7 +3260,7 @@ msgstr "Восстановить пароль" #: application/controllers/User.php:1412 #: application/views/user/modals/more_actions_modal.php:88 msgid "Email settings are incorrect." -msgstr "Настройки емэйл некорректны." +msgstr "Настройки электронной почты некорректны." #: application/controllers/User.php:1416 application/controllers/User.php:1421 msgid "Password Reset Processed." @@ -3565,12 +3594,12 @@ msgstr "Не указан позывной" msgid "DXCC has to be Numeric" msgstr "DXCC должен быть цифровым" -#: application/models/Logbook_model.php:4886 +#: application/models/Logbook_model.php:4806 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "Неправильный позывной %s при импорте QSO с %s для %s: ПРОПУЩЕНО" -#: application/models/Logbook_model.php:4900 +#: application/models/Logbook_model.php:4820 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3578,11 +3607,11 @@ msgstr "" "Вы пытались импортировать QSO без действительной даты. Это QSO не " "действительно и не было импортировано" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4829 msgid "QSO on" msgstr "начало QSO" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4829 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3590,7 +3619,7 @@ msgstr "" "Вы пытались импортировать QSO без указанного позывного. Это QSO не было " "импортировано. Оно недействительно" -#: application/models/Logbook_model.php:4958 +#: application/models/Logbook_model.php:4878 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3599,64 +3628,64 @@ msgstr "" "QSO в %s: Вы пыталсь импортировать QSO без информации о диапазоне. Это QSO " "некорректно, импорт отклонён.imported. It's invalid" -#: application/models/Logbook_model.php:5231 +#: application/models/Logbook_model.php:5151 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "дата получения QSL недействительна (ГГГГММДД)" -#: application/models/Logbook_model.php:5242 +#: application/models/Logbook_model.php:5162 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "дата отправки QSL недействительна (ГГГГММДД)" -#: application/models/Logbook_model.php:5303 +#: application/models/Logbook_model.php:5223 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "дата загрузки QSO в Clublog недействительна (ГГГГММДД)" -#: application/models/Logbook_model.php:5676 +#: application/models/Logbook_model.php:5596 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Дубликат для" -#: application/models/Logbook_model.php:5741 -#: application/models/Logbook_model.php:5836 +#: application/models/Logbook_model.php:5661 +#: application/models/Logbook_model.php:5756 msgid "QSO could not be matched" msgstr "QSO не может быть сопоставлено" -#: application/models/Logbook_model.php:5749 +#: application/models/Logbook_model.php:5669 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "подтверждено LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:5755 +#: application/models/Logbook_model.php:5675 msgid "confirmed by award manager" msgstr "подтверждено менеджером диплома" -#: application/models/Logbook_model.php:5759 +#: application/models/Logbook_model.php:5679 msgid "confirmed by cross-check of DCL data" msgstr "подтверждено кросс-проверкой с данными DCL" -#: application/models/Logbook_model.php:5763 +#: application/models/Logbook_model.php:5683 msgid "confirmation pending" msgstr "подтверждение ожидается" -#: application/models/Logbook_model.php:5766 +#: application/models/Logbook_model.php:5686 msgid "unconfirmed" msgstr "не подтверждено" -#: application/models/Logbook_model.php:5769 +#: application/models/Logbook_model.php:5689 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "неизвестно" -#: application/models/Logbook_model.php:5839 +#: application/models/Logbook_model.php:5759 msgid "POTA reference already in log" msgstr "Ренференция POTA уже в журнале" -#: application/models/Logbook_model.php:5842 +#: application/models/Logbook_model.php:5762 msgid "QSO updated" msgstr "QSO обновлено" -#: application/models/Logbook_model.php:6236 +#: application/models/Logbook_model.php:6156 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3837,13 +3866,13 @@ msgstr "Разница" #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:101 -#: application/views/bandmap/list.php:295 -#: application/views/bandmap/list.php:303 -#: application/views/bandmap/list.php:325 -#: application/views/bandmap/list.php:337 -#: application/views/bandmap/list.php:351 -#: application/views/bandmap/list.php:365 application/views/bands/index.php:123 +#: application/views/bandmap/list.php:102 +#: application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:326 +#: application/views/bandmap/list.php:338 +#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:366 application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 #: application/views/callstats/index.php:24 @@ -4432,7 +4461,8 @@ msgstr "Не найдено!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wpx/wpx_details.php:20 #: application/views/awards/wwff/index.php:35 -#: application/views/bandmap/list.php:27 application/views/bandmap/list.php:165 +#: application/views/bandmap/list.php:28 application/views/bandmap/list.php:166 +#: application/views/bandmap/list.php:555 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:147 #: application/views/calltester/comparison_result.php:60 @@ -4602,7 +4632,7 @@ msgstr "Дата" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:137 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 #: application/views/contesting/index.php:262 @@ -5243,7 +5273,7 @@ msgstr "URL API этого сервера Wavelog" #: application/views/api/index.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 #: application/views/interface_assets/footer.php:39 -#: application/views/qso/index.php:45 application/views/radio/index.php:26 +#: application/views/qso/index.php:45 application/views/radio/index.php:30 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -5521,7 +5551,8 @@ msgstr "Всего" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:193 -#: application/views/bandmap/list.php:572 application/views/csv/index.php:80 +#: application/views/bandmap/list.php:557 +#: application/views/bandmap/list.php:595 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 #: application/views/gridmap/index.php:236 application/views/kml/index.php:65 #: application/views/logbookadvanced/checkresult.php:246 @@ -5706,7 +5737,7 @@ msgstr "Дата до" #: application/views/awards/wab/list.php:6 #: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 +#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 #: application/views/dashboard/index.php:342 #: application/views/dashboard/index.php:460 #: application/views/interface_assets/footer.php:45 @@ -5718,7 +5749,7 @@ msgstr "Подтверждено" #: application/views/awards/cq/index.php:88 #: application/views/awards/itu/index.php:38 #: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 +#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 #: application/views/dashboard/index.php:338 #: application/views/dashboard/index.php:454 #: application/views/search/result.php:35 @@ -6062,8 +6093,8 @@ msgstr "Включая удалённые" #: application/views/awards/dxcc/index.php:142 #: application/views/awards/iota/index.php:90 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/list.php:339 -#: application/views/bandmap/list.php:353 +#: application/views/bandmap/list.php:340 +#: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 #: application/views/logbookadvanced/index.php:491 #: application/views/lookup/index.php:60 @@ -6076,8 +6107,8 @@ msgstr "Антарктика" #: application/views/awards/dxcc/index.php:146 #: application/views/awards/iota/index.php:94 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/list.php:338 -#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:339 +#: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:218 #: application/views/logbookadvanced/index.php:490 #: application/views/lookup/index.php:59 @@ -6090,8 +6121,8 @@ msgstr "Африка" #: application/views/awards/dxcc/index.php:150 #: application/views/awards/iota/index.php:98 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/list.php:340 -#: application/views/bandmap/list.php:354 +#: application/views/bandmap/list.php:341 +#: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:221 #: application/views/logbookadvanced/index.php:493 #: application/views/lookup/index.php:62 @@ -6104,8 +6135,8 @@ msgstr "Азия" #: application/views/awards/dxcc/index.php:154 #: application/views/awards/iota/index.php:102 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/list.php:341 -#: application/views/bandmap/list.php:355 +#: application/views/bandmap/list.php:342 +#: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:222 #: application/views/logbookadvanced/index.php:494 #: application/views/lookup/index.php:63 @@ -6118,8 +6149,8 @@ msgstr "Европа" #: application/views/awards/dxcc/index.php:158 #: application/views/awards/iota/index.php:106 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/list.php:342 -#: application/views/bandmap/list.php:356 +#: application/views/bandmap/list.php:343 +#: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:220 #: application/views/logbookadvanced/index.php:492 #: application/views/lookup/index.php:61 @@ -6132,8 +6163,8 @@ msgstr "Северная Америка" #: application/views/awards/dxcc/index.php:162 #: application/views/awards/iota/index.php:110 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/list.php:344 -#: application/views/bandmap/list.php:358 +#: application/views/bandmap/list.php:345 +#: application/views/bandmap/list.php:359 #: application/views/logbookadvanced/edit.php:223 #: application/views/logbookadvanced/index.php:495 #: application/views/lookup/index.php:64 @@ -6146,8 +6177,8 @@ msgstr "Южная Америка" #: application/views/awards/dxcc/index.php:166 #: application/views/awards/iota/index.php:114 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/list.php:343 -#: application/views/bandmap/list.php:357 +#: application/views/bandmap/list.php:344 +#: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:224 #: application/views/logbookadvanced/index.php:496 #: application/views/lookup/index.php:65 @@ -6765,7 +6796,7 @@ msgstr "PHONE" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 -#: application/views/bandmap/list.php:305 +#: application/views/bandmap/list.php:306 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" @@ -7105,8 +7136,9 @@ msgid "Awards - Worked All Continents (WAC)" msgstr "Дипломы - Worked All Continents (WAC)" #: application/views/awards/wac/index.php:152 -#: application/views/bandmap/list.php:100 -#: application/views/bandmap/list.php:571 +#: application/views/bandmap/list.php:101 +#: application/views/bandmap/list.php:556 +#: application/views/bandmap/list.php:594 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 #: application/views/logbookadvanced/index.php:486 @@ -7469,223 +7501,223 @@ msgstr "" "Резервное копирование заметок успешно завершено. Выходные данные можно найти " "здесь" -#: application/views/bandmap/list.php:11 +#: application/views/bandmap/list.php:12 msgid "Click to prepare logging." msgstr "Кликните, чтобы подготовить запись в журнале." -#: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:12 application/views/bandmap/list.php:132 msgid "to tune frequency" msgstr "перестроить частоту" -#: application/views/bandmap/list.php:14 +#: application/views/bandmap/list.php:15 msgid "Pop-up Blocked" msgstr "Всплывающее окно заблокировано" -#: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 +#: application/views/bandmap/list.php:16 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "" "Всплывающее окно было заблокировано! Пожалуйста, разрешите всплывающие окна " "для этого сайта." -#: application/views/bandmap/list.php:16 +#: application/views/bandmap/list.php:17 msgid "CAT Connection Required" msgstr "Требуется соединение по CAT" -#: application/views/bandmap/list.php:17 +#: application/views/bandmap/list.php:18 msgid "Enable CAT connection to tune the radio" msgstr "Подключите радиостанцию по CAT для настройки" -#: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 +#: application/views/bandmap/list.php:19 application/views/bandmap/list.php:412 msgid "Clear Filters" msgstr "Очистить фильтры" -#: application/views/bandmap/list.php:19 +#: application/views/bandmap/list.php:20 msgid "Band filter preserved (band lock is active)" msgstr "Сохранён фильтр по диапазону (активна блокировка диапазона)" -#: application/views/bandmap/list.php:21 +#: application/views/bandmap/list.php:22 msgid "Radio set to None - CAT connection disabled" msgstr "Выбрана радиостанция: Отсутствует - соединение по CAT отключено" -#: application/views/bandmap/list.php:22 +#: application/views/bandmap/list.php:23 msgid "Radio Tuned" msgstr "Радиостанция настроена" -#: application/views/bandmap/list.php:23 +#: application/views/bandmap/list.php:24 msgid "Tuned to" msgstr "Настроена на" -#: application/views/bandmap/list.php:24 +#: application/views/bandmap/list.php:25 msgid "Tuning Failed" msgstr "Настройка не удалась" -#: application/views/bandmap/list.php:25 +#: application/views/bandmap/list.php:26 msgid "Failed to tune radio to frequency" msgstr "Не удалось настроить радиостанцию на частоту" -#: application/views/bandmap/list.php:26 +#: application/views/bandmap/list.php:27 msgid "QSO Prepared" msgstr "Запись о QSO подготовлена" -#: application/views/bandmap/list.php:28 +#: application/views/bandmap/list.php:29 msgid "sent to logging form" msgstr "отправлено в форму ввода QSO" -#: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 +#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:230 msgid "CAT Connection" msgstr "Соединение по CAT" -#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 +#: application/views/bandmap/list.php:31 application/views/bandmap/list.php:229 msgid "Click to enable CAT connection" msgstr "Кликните, чтобы включить соединение по CATК" -#: application/views/bandmap/list.php:31 +#: application/views/bandmap/list.php:32 msgid "CAT following radio - Click to disable" msgstr "Нстройки радиостанции приоритетнее CAT - Кликните, чтобы отключить" -#: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 +#: application/views/bandmap/list.php:33 application/views/bandmap/list.php:232 msgid "Click to enable band lock (requires CAT connection)" msgstr "" "Кликните, чтобы включить блокировку диапазона (требуется соединение по CAT)" -#: application/views/bandmap/list.php:33 +#: application/views/bandmap/list.php:34 msgid "Band lock active - Click to disable" msgstr "Блокировка диапазона активна - Кликните, чтобы отключить" -#: application/views/bandmap/list.php:34 +#: application/views/bandmap/list.php:35 msgid "Band Lock" msgstr "Блокировка диапазона" -#: application/views/bandmap/list.php:35 +#: application/views/bandmap/list.php:36 msgid "Band lock enabled - band filter will track radio band" msgstr "" "Блокировка диапазона включена - фильтр по диапазону будет отслеживать " "диапазон радиостанции" -#: application/views/bandmap/list.php:36 +#: application/views/bandmap/list.php:37 msgid "Band filter changed to" msgstr "Фильтр по диапазону изменён на" -#: application/views/bandmap/list.php:37 +#: application/views/bandmap/list.php:38 msgid "by transceiver" msgstr "трансивером" -#: application/views/bandmap/list.php:38 +#: application/views/bandmap/list.php:39 msgid "Frequency filter set to" msgstr "Фильтр по частоте установлен на" -#: application/views/bandmap/list.php:39 +#: application/views/bandmap/list.php:40 msgid "Frequency outside known bands - showing all bands" msgstr "Частота вне известных диапазонов - отображаются все диапазоны" -#: application/views/bandmap/list.php:40 +#: application/views/bandmap/list.php:41 msgid "Waiting for radio data..." msgstr "Ожидание данных от радиостанции..." -#: application/views/bandmap/list.php:41 +#: application/views/bandmap/list.php:42 msgid "My Favorites" msgstr "Избранное" -#: application/views/bandmap/list.php:42 +#: application/views/bandmap/list.php:43 msgid "Failed to load favorites" msgstr "Не удалось загрузить избранное" -#: application/views/bandmap/list.php:43 +#: application/views/bandmap/list.php:44 msgid "Modes applied. Band filter preserved (CAT connection is active)" msgstr "" "Фильтр по видам модуляции применён. Фильтр по диапазону сохранён (соединение " "по CAT активно)" -#: application/views/bandmap/list.php:44 +#: application/views/bandmap/list.php:45 msgid "Applied your favorite bands and modes" msgstr "Установлены избранные вид модуляции и диапазон" -#: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 -#: application/views/bandmap/list.php:479 +#: application/views/bandmap/list.php:48 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:480 msgid "My Submodes" msgstr "Мои подвиды модуляции" -#: application/views/bandmap/list.php:48 +#: application/views/bandmap/list.php:49 msgid "Submode filter enabled" msgstr "Фильтр по подвидам модуляции включен" -#: application/views/bandmap/list.php:49 +#: application/views/bandmap/list.php:50 msgid "Submode filter disabled - showing all" msgstr "Фильтр по подвидам модуляции отключен - отображается всё" -#: application/views/bandmap/list.php:50 +#: application/views/bandmap/list.php:51 msgid "Required submodes" msgstr "Требуемые подвиды модуляции" -#: application/views/bandmap/list.php:51 +#: application/views/bandmap/list.php:52 msgid "Configure in User Settings - Modes" msgstr "Настраивается в Пользовательских настройках - Виды модуляции" -#: application/views/bandmap/list.php:52 +#: application/views/bandmap/list.php:53 msgid "No submodes configured - configure in User Settings - Modes" msgstr "" "Подвиды модуляции не настроены - настройте в Пользовательских настройках - " "Виды модуляции" -#: application/views/bandmap/list.php:53 +#: application/views/bandmap/list.php:54 msgid "No submodes enabled in settings - showing all spots" msgstr "" "В настройках не включены подвиды модуляции режимы - показываются все споты" -#: application/views/bandmap/list.php:54 +#: application/views/bandmap/list.php:55 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "" "Отключено - нет подвидов модуляции, включенных для этого вида модуляции в " "Пользовательских настройках" -#: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 +#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 #: application/views/components/dxwaterfall.php:32 msgid "Toggle CW mode filter" msgstr "Переключить фильтр по CW" -#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 +#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 #: application/views/components/dxwaterfall.php:34 msgid "Toggle Digital mode filter" msgstr "Переключить фильтр по цифровым видам" -#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 +#: application/views/bandmap/list.php:58 application/views/bandmap/list.php:471 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" msgstr "Переключить фильтр по голосовым видам" -#: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 +#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:422 msgid "Favorites" msgstr "Избранное" -#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 +#: application/views/bandmap/list.php:62 application/views/bandmap/list.php:425 msgid "Save Current Filters..." msgstr "Сохранить текущие фильтры..." -#: application/views/bandmap/list.php:62 +#: application/views/bandmap/list.php:63 msgid "Enter a name for this filter preset:" msgstr "Введите название для этой конфигурации фильтров:" -#: application/views/bandmap/list.php:63 +#: application/views/bandmap/list.php:64 msgid "Filter preset saved" msgstr "Конфигурация фильтров сохранена" -#: application/views/bandmap/list.php:64 +#: application/views/bandmap/list.php:65 msgid "Filter preset loaded" msgstr "Конфигурация фильтров загружена" -#: application/views/bandmap/list.php:65 +#: application/views/bandmap/list.php:66 msgid "Filter preset deleted" msgstr "Конфигурация фильтров удалена" -#: application/views/bandmap/list.php:66 +#: application/views/bandmap/list.php:67 msgid "Are you sure to delete this filter preset?" msgstr "Вы уверены, что хотите удалить эту конфигурацию фильтров?" -#: application/views/bandmap/list.php:67 +#: application/views/bandmap/list.php:68 msgid "No saved filter presets" msgstr "Нет сохранённых конфигураций фильтров" -#: application/views/bandmap/list.php:68 +#: application/views/bandmap/list.php:69 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." @@ -7693,64 +7725,64 @@ msgstr "" "Достигнуто максимальное количество в 20 конфигураций фильтров. Удалите " "некоторые перед добавлением новых." -#: application/views/bandmap/list.php:71 +#: application/views/bandmap/list.php:72 msgid "Loading data from DX Cluster" msgstr "Загрузка данных из DX-кластера" -#: application/views/bandmap/list.php:72 +#: application/views/bandmap/list.php:73 msgid "Last fetched for" msgstr "Последний запрос" -#: application/views/bandmap/list.php:73 +#: application/views/bandmap/list.php:74 msgid "Max Age" msgstr "Максимальный возраст" -#: application/views/bandmap/list.php:74 +#: application/views/bandmap/list.php:75 msgid "Fetched at" msgstr "Получено в" -#: application/views/bandmap/list.php:75 +#: application/views/bandmap/list.php:76 msgid "Next update in" msgstr "Следующее обновление через" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:77 msgid "minutes" msgstr "минут(ы)" -#: application/views/bandmap/list.php:77 +#: application/views/bandmap/list.php:78 msgid "seconds" msgstr "секунд(ы)" -#: application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:79 msgid "spots fetched" msgstr "споты получены" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 msgid "showing" msgstr "отображаются" -#: application/views/bandmap/list.php:80 +#: application/views/bandmap/list.php:81 msgid "showing all" msgstr "отображаются все" -#: application/views/bandmap/list.php:81 +#: application/views/bandmap/list.php:82 msgid "Active filters" msgstr "Активные фильтры" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Fetching..." msgstr "Запрос..." -#: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 #: application/views/interface_assets/footer.php:47 msgid "Not worked" msgstr "Не сработано" -#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 +#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:300 msgid "Worked, not Confirmed" msgstr "Сработано, не подтверждено" -#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:316 #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:70 @@ -7758,46 +7790,46 @@ msgstr "Сработано, не подтверждено" msgid "LoTW User" msgstr "Пользователь LoTW" -#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 +#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:319 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" msgstr "Новый позывной" -#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 +#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 #: application/views/components/dxwaterfall.php:16 msgid "New Continent" msgstr "Новый континент" -#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 +#: application/views/bandmap/list.php:93 application/views/bandmap/list.php:318 msgid "New Country" msgstr "Новая страна" -#: application/views/bandmap/list.php:93 +#: application/views/bandmap/list.php:94 msgid "Worked Before" msgstr "Сработано" -#: application/views/bandmap/list.php:94 +#: application/views/bandmap/list.php:95 #, php-format msgid "Worked on %s with %s" msgstr "Работал на %s с %s" -#: application/views/bandmap/list.php:102 -#: application/views/bandmap/list.php:575 +#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:598 msgid "de" msgstr "от" -#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:104 msgid "spotted" msgstr "спот отправлен" -#: application/views/bandmap/list.php:106 +#: application/views/bandmap/list.php:107 msgid "Fresh spot (< 5 minutes old)" msgstr "Свежий спот (< 5 минут назад)" -#: application/views/bandmap/list.php:107 #: application/views/bandmap/list.php:108 -#: application/views/bandmap/list.php:320 -#: application/views/bandmap/list.php:510 +#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:511 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:482 @@ -7808,103 +7840,105 @@ msgstr "Свежий спот (< 5 минут назад)" msgid "Contest" msgstr "Контест" -#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:110 msgid "Click to view" msgstr "Кликните, чтобы посмотреть" -#: application/views/bandmap/list.php:110 +#: application/views/bandmap/list.php:111 msgid "on QRZ.com" msgstr "на QRZ.com" -#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:112 #, php-format msgid "Click to view %s on QRZ.com" msgstr "Кликните, чтобы просмотреть %s на QRZ.com" -#: application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:113 msgid "See details for" msgstr "Подробнее" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Worked on" msgstr "Сработан на" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "Not worked on this band" msgstr "Не сработан на этом диапазоне" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 #, php-format msgid "LoTW User. Last upload was %d days ago" msgstr "Пользователь LoTW. Последняя загрузка была %d дней назад" -#: application/views/bandmap/list.php:116 +#: application/views/bandmap/list.php:117 msgid "Click to view on POTA.app" msgstr "Кликните, чтобы посмотреть на POTA.app" -#: application/views/bandmap/list.php:117 +#: application/views/bandmap/list.php:118 msgid "Click to view on SOTL.as" msgstr "Кликните, чтобы посмотреть на SOTL.as" -#: application/views/bandmap/list.php:118 +#: application/views/bandmap/list.php:119 msgid "Click to view on cqgma.org" msgstr "Кликните, чтобы посмотреть на cqgma.org" -#: application/views/bandmap/list.php:119 +#: application/views/bandmap/list.php:120 msgid "Click to view on IOTA-World.org" msgstr "Кликните, чтобы посмотреть на IOTA-World.org" -#: application/views/bandmap/list.php:120 +#: application/views/bandmap/list.php:121 msgid "See details for continent" msgstr "Подробнее о континенте" -#: application/views/bandmap/list.php:121 +#: application/views/bandmap/list.php:122 #, php-format msgid "See details for continent %s" msgstr "Подробнее о континенте %s" -#: application/views/bandmap/list.php:122 +#: application/views/bandmap/list.php:123 msgid "See details for CQ Zone" msgstr "Подробнее о зоне CQ" -#: application/views/bandmap/list.php:123 +#: application/views/bandmap/list.php:124 #, php-format msgid "See details for CQ Zone %s" msgstr "Подробнее о зоне CQ %s" -#: application/views/bandmap/list.php:124 +#: application/views/bandmap/list.php:125 msgid "in" msgstr "в" -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 msgid "Exit Fullscreen" msgstr "Выйти из полноэкранного режима" -#: application/views/bandmap/list.php:128 -#: application/views/bandmap/list.php:214 +#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:215 msgid "Toggle Fullscreen" msgstr "Переключить полноэкранный режим" -#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:130 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "" "Фильтрация по диапазону контролируется вашей радиостанцией, когда включено " "соединение по CAT" -#: application/views/bandmap/list.php:130 +#: application/views/bandmap/list.php:131 msgid "Click to prepare logging" msgstr "Кликните, чтобы подготовить к записи в лог" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "(requires CAT connection)" msgstr "(требуется соединение по CAT)" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:561 +#: application/views/bandmap/list.php:562 msgid "Spotter" msgstr "Споттер" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 @@ -7917,110 +7951,111 @@ msgstr "Споттер" msgid "Comment" msgstr "Комментарий" -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:548 #: application/views/contesting/index.php:65 msgid "Age" msgstr "Возраст" -#: application/views/bandmap/list.php:137 +#: application/views/bandmap/list.php:138 msgid "Incoming" msgstr "Входящий" -#: application/views/bandmap/list.php:138 +#: application/views/bandmap/list.php:139 msgid "Outgoing" msgstr "Исходяший" -#: application/views/bandmap/list.php:139 +#: application/views/bandmap/list.php:140 #: application/views/components/dxwaterfall.php:15 msgid "spots" msgstr "споты" -#: application/views/bandmap/list.php:140 +#: application/views/bandmap/list.php:141 msgid "spot" msgstr "спот" -#: application/views/bandmap/list.php:141 +#: application/views/bandmap/list.php:142 msgid "spotters" msgstr "споттеры" -#: application/views/bandmap/list.php:144 +#: application/views/bandmap/list.php:145 msgid "Please Wait" msgstr "Пожалуйста, подождите" -#: application/views/bandmap/list.php:145 +#: application/views/bandmap/list.php:146 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "" "Пожалуйста, подождите %s секунд, прежде чем отправить другой позывной в " "форму QSO" -#: application/views/bandmap/list.php:148 +#: application/views/bandmap/list.php:149 msgid "Loading spots..." msgstr "Загрузка спотов..." -#: application/views/bandmap/list.php:149 +#: application/views/bandmap/list.php:150 msgid "No spots found" msgstr "Споты не найдены" -#: application/views/bandmap/list.php:150 +#: application/views/bandmap/list.php:151 msgid "No data available" msgstr "Нет данных" -#: application/views/bandmap/list.php:151 +#: application/views/bandmap/list.php:152 msgid "No spots found for selected filters" msgstr "По выбранным фильтрам ничего не найдено" -#: application/views/bandmap/list.php:152 +#: application/views/bandmap/list.php:153 msgid "Error loading spots. Please try again." msgstr "Ошибка загрузки спотов. Пожалуйста, попробуйте еще раз." -#: application/views/bandmap/list.php:155 +#: application/views/bandmap/list.php:156 msgid "Show all modes" msgstr "Показать все виды модуляции" -#: application/views/bandmap/list.php:156 +#: application/views/bandmap/list.php:157 msgid "Show all spots" msgstr "Показать все споты" -#: application/views/bandmap/list.php:161 +#: application/views/bandmap/list.php:162 msgid "Draw Spotters" msgstr "Отобразить споттеров" -#: application/views/bandmap/list.php:162 +#: application/views/bandmap/list.php:163 msgid "Extend Map" msgstr "Расширенная карта" -#: application/views/bandmap/list.php:163 +#: application/views/bandmap/list.php:164 msgid "Show Day/Night" msgstr "Показать День/Ночь" -#: application/views/bandmap/list.php:164 +#: application/views/bandmap/list.php:165 msgid "Your QTH" msgstr "Ваш QTH" -#: application/views/bandmap/list.php:200 +#: application/views/bandmap/list.php:201 msgid "Return to Home" msgstr "Вернуться домой" -#: application/views/bandmap/list.php:203 +#: application/views/bandmap/list.php:204 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" msgstr "DX кластер" -#: application/views/bandmap/list.php:207 +#: application/views/bandmap/list.php:208 msgid "DX Cluster Help" msgstr "Помощь с DX-кластером" -#: application/views/bandmap/list.php:210 +#: application/views/bandmap/list.php:211 msgid "Compact Mode - Hide/Show Menu" msgstr "Компактный режим - Скрыть/Показать меню" -#: application/views/bandmap/list.php:237 +#: application/views/bandmap/list.php:238 msgid "TRX:" msgstr "TRX:" -#: application/views/bandmap/list.php:239 -#: application/views/bandmap/list.php:313 +#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:314 #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 @@ -8028,316 +8063,281 @@ msgstr "TRX:" msgid "None" msgstr "Нет" -#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:241 #: application/views/contesting/index.php:160 #: application/views/qso/index.php:414 msgid "Live - WebSocket" -msgstr "" +msgstr "Вживую - WebSocket" -#: application/views/bandmap/list.php:242 application/views/qso/index.php:416 +#: application/views/bandmap/list.php:243 application/views/qso/index.php:416 msgid "Polling - " msgstr "Опрос - " -#: application/views/bandmap/list.php:251 +#: application/views/bandmap/list.php:252 msgid "de:" msgstr "от:" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "Select all continents" msgstr "Выберать все континенты" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "World" msgstr "Мир" -#: application/views/bandmap/list.php:254 +#: application/views/bandmap/list.php:255 msgid "Toggle Africa continent filter" msgstr "Переключить фильтр континента Африка" -#: application/views/bandmap/list.php:255 +#: application/views/bandmap/list.php:256 msgid "Toggle Antarctica continent filter" msgstr "Переключить фильтр континента Антарктида" -#: application/views/bandmap/list.php:256 +#: application/views/bandmap/list.php:257 msgid "Toggle Asia continent filter" msgstr "Переключить фильтр континента Азия" -#: application/views/bandmap/list.php:257 +#: application/views/bandmap/list.php:258 msgid "Toggle Europe continent filter" msgstr "Переключить фильтр континента Европа" -#: application/views/bandmap/list.php:258 +#: application/views/bandmap/list.php:259 msgid "Toggle North America continent filter" msgstr "Переключить фильтр континента Северная Америка" -#: application/views/bandmap/list.php:259 +#: application/views/bandmap/list.php:260 msgid "Toggle Oceania continent filter" msgstr "Переключить фильтр континента Океания" -#: application/views/bandmap/list.php:260 +#: application/views/bandmap/list.php:261 msgid "Toggle South America continent filter" msgstr "Переключить фильтр континента Южная Америка" -#: application/views/bandmap/list.php:273 +#: application/views/bandmap/list.php:274 msgid "Advanced Filters" msgstr "Расширенные фильтры" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "Hold" msgstr "Удерживать" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "and click to select multiple options" msgstr "и кликнуть, чтобы выбрать несколько вариантов" -#: application/views/bandmap/list.php:293 +#: application/views/bandmap/list.php:294 msgid "DXCC-Status" msgstr "Статус DXCC" -#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:305 #: application/views/components/dxwaterfall.php:31 msgid "Phone" msgstr "Phone" -#: application/views/bandmap/list.php:306 +#: application/views/bandmap/list.php:307 #: application/views/components/dxwaterfall.php:35 msgid "Digi" msgstr "Digi" -#: application/views/bandmap/list.php:311 +#: application/views/bandmap/list.php:312 msgid "Required Flags" msgstr "Требуемые флаги" -#: application/views/bandmap/list.php:319 +#: application/views/bandmap/list.php:320 msgid "Worked Callsign" msgstr "Стработанный позывной" -#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:322 msgid "DX Spot" msgstr "DX спот" -#: application/views/bandmap/list.php:323 +#: application/views/bandmap/list.php:324 msgid "Additional Flags" msgstr "Дополнительные флаги" -#: application/views/bandmap/list.php:330 +#: application/views/bandmap/list.php:331 msgid "Fresh (< 5 min)" msgstr "Свежий (< 5 мин)" -#: application/views/bandmap/list.php:335 +#: application/views/bandmap/list.php:336 msgid "Spots de Continent" msgstr "Споты с континента" -#: application/views/bandmap/list.php:349 +#: application/views/bandmap/list.php:350 msgid "Spotted Station Continent" msgstr "Континент спота" -#: application/views/bandmap/list.php:409 +#: application/views/bandmap/list.php:410 msgid "Apply Filters" msgstr "Применить фильтры" -#: application/views/bandmap/list.php:420 +#: application/views/bandmap/list.php:421 msgid "Filter Favorites" msgstr "Фильтровать избранное" -#: application/views/bandmap/list.php:430 +#: application/views/bandmap/list.php:431 msgid "Clear all filters except De Continent" msgstr "Очистить все фильтры, кроме Континента споттера" -#: application/views/bandmap/list.php:436 +#: application/views/bandmap/list.php:437 msgid "Toggle 160m band filter" msgstr "Переключить фильтр диапазона 160м" -#: application/views/bandmap/list.php:440 +#: application/views/bandmap/list.php:441 msgid "Toggle 80m band filter" msgstr "Переключить фильтр диапазона 80м" -#: application/views/bandmap/list.php:441 +#: application/views/bandmap/list.php:442 msgid "Toggle 60m band filter" msgstr "Переключить фильтр диапазона 60м" -#: application/views/bandmap/list.php:442 +#: application/views/bandmap/list.php:443 msgid "Toggle 40m band filter" msgstr "Переключить фильтр диапазона 40м" -#: application/views/bandmap/list.php:443 +#: application/views/bandmap/list.php:444 msgid "Toggle 30m band filter" msgstr "Переключить фильтр диапазона 30м" -#: application/views/bandmap/list.php:444 +#: application/views/bandmap/list.php:445 msgid "Toggle 20m band filter" msgstr "Переключить фильтр диапазона 20м" -#: application/views/bandmap/list.php:445 +#: application/views/bandmap/list.php:446 msgid "Toggle 17m band filter" msgstr "Переключить фильтр диапазона 17м" -#: application/views/bandmap/list.php:446 +#: application/views/bandmap/list.php:447 msgid "Toggle 15m band filter" msgstr "Переключить фильтр диапазона 15м" -#: application/views/bandmap/list.php:447 +#: application/views/bandmap/list.php:448 msgid "Toggle 12m band filter" msgstr "Переключить фильтр диапазона 12м" -#: application/views/bandmap/list.php:448 +#: application/views/bandmap/list.php:449 msgid "Toggle 10m band filter" msgstr "Переключить фильтр диапазона 10м" -#: application/views/bandmap/list.php:452 +#: application/views/bandmap/list.php:453 msgid "Toggle 6m band filter" msgstr "Переключить фильтр диапазона 6 м" -#: application/views/bandmap/list.php:456 +#: application/views/bandmap/list.php:457 msgid "Toggle VHF bands filter" msgstr "Переключить фильтр УКВ диапазонов (6м .. 2м)" -#: application/views/bandmap/list.php:457 +#: application/views/bandmap/list.php:458 msgid "Toggle UHF bands filter" msgstr "Переключить фильтр УКВ диапазонов (70см .. 12см)" -#: application/views/bandmap/list.php:458 +#: application/views/bandmap/list.php:459 msgid "Toggle SHF bands filter" msgstr "Переключить фильтр диапазонов СВЧ" -#: application/views/bandmap/list.php:478 +#: application/views/bandmap/list.php:479 msgid "Loading submodes..." msgstr "Загрузка подвидов модуляции..." -#: application/views/bandmap/list.php:483 +#: application/views/bandmap/list.php:484 msgid "Toggle LoTW User filter" msgstr "Переключить фильтр по пользователям LoTW" -#: application/views/bandmap/list.php:484 +#: application/views/bandmap/list.php:485 msgid "LoTW users" msgstr "Пользователи LoTW" -#: application/views/bandmap/list.php:490 +#: application/views/bandmap/list.php:491 msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" msgstr "Переключить фильтр DX (континент споттера ≠ континент спота)" -#: application/views/bandmap/list.php:491 -#: application/views/bandmap/list.php:570 +#: application/views/bandmap/list.php:492 +#: application/views/bandmap/list.php:593 msgid "DX" msgstr "DX" -#: application/views/bandmap/list.php:493 +#: application/views/bandmap/list.php:494 msgid "Toggle New Continents filter" msgstr "Переключить фильтр новых континентов" -#: application/views/bandmap/list.php:494 +#: application/views/bandmap/list.php:495 msgid "New Continents" msgstr "Новые континенты" -#: application/views/bandmap/list.php:496 +#: application/views/bandmap/list.php:497 msgid "Toggle New Entities filter" msgstr "Переключить фильтр новых DXCC" -#: application/views/bandmap/list.php:497 +#: application/views/bandmap/list.php:498 msgid "New Entities" msgstr "Новые DXCC" -#: application/views/bandmap/list.php:499 +#: application/views/bandmap/list.php:500 msgid "Toggle New Callsigns filter" msgstr "Переключить фильтр новых позывных" -#: application/views/bandmap/list.php:500 +#: application/views/bandmap/list.php:501 msgid "New Callsigns" msgstr "Новые позывные" -#: application/views/bandmap/list.php:506 +#: application/views/bandmap/list.php:507 msgid "Toggle Fresh spots filter (< 5 minutes old)" msgstr "Переключить фильтр свежих спотов (< 5 минут)" -#: application/views/bandmap/list.php:507 +#: application/views/bandmap/list.php:508 msgid "Fresh" msgstr "Свежие" -#: application/views/bandmap/list.php:509 +#: application/views/bandmap/list.php:510 msgid "Toggle Contest filter" msgstr "Переключить фильтр контестов" -#: application/views/bandmap/list.php:512 +#: application/views/bandmap/list.php:513 msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" msgstr "Переключить фильтр охотника за территориями (POTA/SOTA/IOTA/WWFF)" -#: application/views/bandmap/list.php:513 +#: application/views/bandmap/list.php:514 msgid "Referenced" msgstr "Референции" -#: application/views/bandmap/list.php:519 +#: application/views/bandmap/list.php:520 msgid "Open DX Map view" msgstr "Открыть карту DX" -#: application/views/bandmap/list.php:520 +#: application/views/bandmap/list.php:521 msgid "DX Map" msgstr "Карта DX" -#: application/views/bandmap/list.php:544 -msgid "Search spots..." -msgstr "Поиск спотов..." +#: application/views/bandmap/list.php:545 +msgid "Search Column" +msgstr "Поиск в столбце" -#: application/views/bandmap/list.php:557 -msgid "Note: Map shows DXCC entity locations, not actual spot locations" -msgstr "" -"Примечание: Карта показывает расположения DXCC, а не актуальные расположения " -"спотов" +#: application/views/bandmap/list.php:546 +msgid "All Columns" +msgstr "Все столбцы" -#: application/views/bandmap/list.php:565 -msgid "Age in minutes" -msgstr "Возраст в минутах" +#: application/views/bandmap/list.php:547 +msgid "Spot Info" +msgstr "Информация о споте" -#: application/views/bandmap/list.php:567 -msgid "Freq" -msgstr "Частота" - -#: application/views/bandmap/list.php:569 +#: application/views/bandmap/list.php:552 +#: application/views/bandmap/list.php:592 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" msgstr "Подвид" -#: application/views/bandmap/list.php:570 -msgid "Spotted Callsign" -msgstr "Позывной спота" +#: application/views/bandmap/list.php:554 +msgid "DX Station" +msgstr "DX" -#: application/views/bandmap/list.php:573 -msgid "Flag" -msgstr "Флаг" - -#: application/views/bandmap/list.php:574 -msgid "DXCC Entity" -msgstr "DXCC" - -#: application/views/bandmap/list.php:574 +#: application/views/bandmap/list.php:558 +#: application/views/bandmap/list.php:597 msgid "Entity" msgstr "DXCC" -#: application/views/bandmap/list.php:575 -msgid "Spotter Callsign" -msgstr "Позывной споттера" - -#: application/views/bandmap/list.php:576 -msgid "Spotter Continent" -msgstr "Континент споттера" - -#: application/views/bandmap/list.php:577 -msgid "Spotter CQ Zone" -msgstr "Зона CQ споттера" - -#: application/views/bandmap/list.php:578 -msgid "Last QSO Date" -msgstr "Дата последнего QSO" - -#: application/views/bandmap/list.php:579 -msgid "Special" -msgstr "Отметки" - -#: application/views/bandmap/list.php:579 -msgid "Special Flags" -msgstr "Специальные флаги" - -#: application/views/bandmap/list.php:580 +#: application/views/bandmap/list.php:559 +#: application/views/bandmap/list.php:603 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -8345,6 +8345,62 @@ msgstr "Специальные флаги" msgid "Message" msgstr "Сообщение" +#: application/views/bandmap/list.php:563 +#: application/views/bandmap/list.php:599 +msgid "Spotter Continent" +msgstr "Континент споттера" + +#: application/views/bandmap/list.php:564 +#: application/views/bandmap/list.php:600 +msgid "Spotter CQ Zone" +msgstr "Зона CQ споттера" + +#: application/views/bandmap/list.php:567 +msgid "Search spots..." +msgstr "Поиск спотов..." + +#: application/views/bandmap/list.php:580 +msgid "Note: Map shows DXCC entity locations, not actual spot locations" +msgstr "" +"Примечание: Карта показывает расположения DXCC, а не актуальные расположения " +"спотов" + +#: application/views/bandmap/list.php:588 +msgid "Age in minutes" +msgstr "Возраст в минутах" + +#: application/views/bandmap/list.php:590 +msgid "Freq" +msgstr "Частота" + +#: application/views/bandmap/list.php:593 +msgid "Spotted Callsign" +msgstr "Позывной спота" + +#: application/views/bandmap/list.php:596 +msgid "Flag" +msgstr "Флаг" + +#: application/views/bandmap/list.php:597 +msgid "DXCC Entity" +msgstr "DXCC" + +#: application/views/bandmap/list.php:598 +msgid "Spotter Callsign" +msgstr "Позывной споттера" + +#: application/views/bandmap/list.php:601 +msgid "Last QSO Date" +msgstr "Дата последнего QSO" + +#: application/views/bandmap/list.php:602 +msgid "Special" +msgstr "Отметки" + +#: application/views/bandmap/list.php:602 +msgid "Special Flags" +msgstr "Специальные флаги" + #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" msgstr "Пожалуйста, введите допустимое значение для частоты" @@ -13104,7 +13160,7 @@ msgstr "" #: application/views/logbookadvanced/dbtoolsdialog.php:19 msgid "All Station Locations" -msgstr "" +msgstr "Все профили QTH" #: application/views/logbookadvanced/dbtoolsdialog.php:33 msgid "Check all QSOs in the logbook for incorrect CQ Zones" @@ -14849,11 +14905,11 @@ msgstr "Бубт показаны споты только от споттеро #: application/views/options/email.php:45 msgid "Outgoing Protocol" -msgstr "Протокол отправки емэйл" +msgstr "Протокол отправки" #: application/views/options/email.php:50 msgid "The protocol that will be used to send out emails." -msgstr "Протокол, который будет использоваться для отправки емэйл." +msgstr "Протокол, который будет использоваться для отправки электронной почты." #: application/views/options/email.php:54 msgid "SMTP Encryption" @@ -14865,7 +14921,9 @@ msgstr "Без шифрования" #: application/views/options/email.php:60 msgid "Choose whether emails should be sent with TLS or SSL." -msgstr "Выберите, что будет использоваться при отправке емэйл: TLS или SSL." +msgstr "" +"Выберите, что будет использоваться при отправке электронной почты: TLS или " +"SSL." #: application/views/options/email.php:64 msgid "Email Sender Name" @@ -14884,7 +14942,8 @@ msgstr "Адрес электронной почты" msgid "" "The email address from which the emails are sent, e.g. 'wavelog@example.com'" msgstr "" -"Адрес, с которого будет отправляться емэйл, к примеру, 'wavelog@example.com'" +"Адрес, с которого будет отправляться электронная почта, к примеру, " +"'wavelog@example.com'" #: application/views/options/email.php:80 msgid "SMTP Host" @@ -14920,7 +14979,7 @@ msgid "" "that is used." msgstr "" "Имя пользователя для входа на почтовый сервер, обычно это — указанный выше " -"адрес емэйл." +"адрес электронной почты." #: application/views/options/email.php:104 msgid "SMTP Password" @@ -14936,7 +14995,8 @@ msgstr "Отправить тестовое сообщение" #: application/views/options/email.php:117 msgid "The email will be sent to the address defined in your account settings." -msgstr "Емэйл будет отпрален на адрес, указанный в настройках вашего аккаунта." +msgstr "" +"Письмо будет отправлено на адрес, указанный в настройках вашего аккаунта." #: application/views/options/hon.php:38 msgid "Provider for Hams Of Note" @@ -15183,7 +15243,7 @@ msgstr "Есть ли дополнительная информация, о ко #: 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" -msgstr "Емэйл" +msgstr "Электронная почта" #: application/views/oqrs/notinlogform.php:36 #: application/views/oqrs/request.php:62 @@ -16164,7 +16224,7 @@ msgstr "Активные радиостанции" msgid "Below is a list of active radios that are connected to Wavelog." msgstr "Ниже приведен список активных радиостанций, подключенных к Wavelog." -#: application/views/radio/index.php:24 +#: application/views/radio/index.php:23 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." @@ -16172,16 +16232,33 @@ msgstr "" "Если вы еще не подключили ни одной радиостанции, посмотрите страницу API, " "чтобы сгенерировать ключи API." -#: application/views/radio/index.php:26 application/views/search/filter.php:66 +#: application/views/radio/index.php:25 +msgid "" +"As a clubstation operator, you can set a default radio which applies only to " +"you. This allows you to have a default radio that is automatically selected " +"when you log in, while still being able to use other radios if you want." +msgstr "" +"Как оператор коллективной станции, вы можете выбрать интерфейс радиостанции " +"по умолчанию, который будет использоваться только в вашем профиле. Этот " +"интерфейс будет автоматически выбираться при входе в систему, при этом вы " +"всё равно можете использовать другие интерфейсы радиостанций, если захотите." + +#: application/views/radio/index.php:27 +msgid "" +"As a normal user, you can set a default radio for yourself. This allows you " +"to have a default radio that is automatically selected when you log in, " +"while still being able to use other radios if you want." +msgstr "" +"Как обычный пользователь, вы можете выьрать интерфейс радиостанции по " +"умолчанию для себя. Этот интерфейс будет выбираться при входе в систему, при " +"этом всегда можно использовать другие интерфейсы радиостанций если захочется." + +#: application/views/radio/index.php:30 #, php-format -msgid "You can find out how to use the %s in the wiki." -msgstr "О том, как использовать %s, вы можете узнать в вики." +msgid "You can find out how to use the %sradio functions%s in the wiki." +msgstr "Информация об использовании функций %sрадио%s опубликована на вики." -#: application/views/radio/index.php:26 -msgid "radio functions" -msgstr "интерфейс радиостанции" - -#: application/views/radio/index.php:31 +#: application/views/radio/index.php:35 msgid "Please wait..." msgstr "Пожалуйста, подождите..." @@ -16647,6 +16724,11 @@ msgstr "Сохранить запрос" msgid "Stored queries" msgstr "Сохранённые запросы" +#: application/views/search/filter.php:66 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "О том, как использовать %s, вы можете узнать в вики." + #: application/views/search/filter.php:66 msgid "search filter functions" msgstr "функции фильтров поиска" @@ -17439,13 +17521,14 @@ msgstr "OQRS включен" #: application/views/station_profile/create.php:412 #: application/views/station_profile/edit.php:443 msgid "OQRS Email alert" -msgstr "Оповещение о OQRS о емэйл" +msgstr "Оповещение о OQRS по электронной почте" #: application/views/station_profile/create.php:417 #: application/views/station_profile/edit.php:448 msgid "Make sure email is set up under admin and global options." msgstr "" -"Убедитесь, что емэйл сконфигурирован администратором в общих настройках." +"Убедитесь, что электронная почта сконфигурирована в администивных и общих " +"настройках." #: application/views/station_profile/create.php:420 #: application/views/station_profile/edit.php:451 @@ -19399,6 +19482,9 @@ msgstr "CQ" msgid "CQz geojson" msgstr "CQ geojson" +#~ msgid "radio functions" +#~ msgstr "интерфейс радиостанции" + #~ msgid "Incorrectly logged CQ zones" #~ msgstr "Некорректно записанные зоны CQ" diff --git a/application/locale/sk/LC_MESSAGES/messages.mo b/application/locale/sk/LC_MESSAGES/messages.mo index 3464cf23c..d7987948a 100644 Binary files a/application/locale/sk/LC_MESSAGES/messages.mo and b/application/locale/sk/LC_MESSAGES/messages.mo differ diff --git a/application/locale/sk/LC_MESSAGES/messages.po b/application/locale/sk/LC_MESSAGES/messages.po index 1c3194e93..4aef05588 100644 --- a/application/locale/sk/LC_MESSAGES/messages.po +++ b/application/locale/sk/LC_MESSAGES/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-13 08:13+0000\n" -"PO-Revision-Date: 2026-01-26 21:21+0000\n" +"POT-Creation-Date: 2026-02-17 17:26+0000\n" +"PO-Revision-Date: 2026-02-11 19:47+0000\n" "Last-Translator: Viliam Petrik \n" "Language-Team: Slovak \n" @@ -71,8 +71,8 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:90 application/controllers/Lotw.php:116 -#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:437 -#: application/controllers/Lotw.php:801 application/controllers/Lotw.php:888 +#: application/controllers/Lotw.php:410 application/controllers/Lotw.php:433 +#: application/controllers/Lotw.php:797 application/controllers/Lotw.php:884 #: application/controllers/Map.php:12 application/controllers/Map.php:27 #: application/controllers/Mode.php:15 application/controllers/Notes.php:10 #: application/controllers/Operator.php:13 @@ -86,8 +86,8 @@ msgstr "" #: application/controllers/Qso.php:22 application/controllers/Qso.php:288 #: application/controllers/Qso.php:419 application/controllers/Qso.php:440 #: application/controllers/Qso.php:463 application/controllers/Qso.php:763 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 -#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:320 +#: application/controllers/Radio.php:346 application/controllers/Radio.php:362 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -350,7 +350,7 @@ msgid "DOK" msgstr "DOK" #: application/controllers/Awards.php:194 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:97 application/views/bands/index.php:50 +#: application/views/bandmap/list.php:98 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:192 @@ -443,7 +443,7 @@ msgstr " a " #: application/controllers/Awards.php:595 #: application/controllers/Logbook.php:1459 -#: application/views/awards/index.php:8 application/views/bandmap/list.php:326 +#: application/views/awards/index.php:8 application/views/bandmap/list.php:327 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 #: application/views/logbookadvanced/edit.php:32 @@ -471,7 +471,7 @@ msgstr "SOTA" #: application/controllers/Awards.php:613 #: application/controllers/Logbook.php:1460 -#: application/views/bandmap/list.php:328 application/views/bands/index.php:64 +#: application/views/bandmap/list.php:329 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 @@ -493,7 +493,7 @@ msgstr "WWFF" #: application/controllers/Awards.php:631 #: application/controllers/Logbook.php:1461 -#: application/views/adif/import.php:60 application/views/bandmap/list.php:327 +#: application/views/adif/import.php:60 application/views/bandmap/list.php:328 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 @@ -649,8 +649,7 @@ msgstr "Vytvoriť mód" msgid "Edit Band" msgstr "Úprava pásma" -#: application/controllers/Bandmap.php:28 -#: application/controllers/Bandmap.php:75 +#: application/controllers/Bandmap.php:56 #: application/controllers/Options.php:144 #: application/controllers/Options.php:155 #: application/views/options/sidebar.php:7 @@ -962,7 +961,7 @@ msgstr "Kľúč(e) vymazaný(é)." #: application/controllers/Debug.php:114 msgid "(empty)" -msgstr "" +msgstr "(prázdne)" #: application/controllers/Debug.php:132 msgid "Debug" @@ -1451,9 +1450,10 @@ msgstr "eQSL" #: application/controllers/Logbook.php:989 msgid "All callbook lookups failed or provided no results." msgstr "" +"Všetky vyhľadávania v callbooku zlyhali alebo neposkytli žiadne výsledky." #: application/controllers/Logbook.php:1454 -#: application/controllers/Radio.php:46 +#: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 #: application/views/adif/dcl_success.php:33 @@ -1478,9 +1478,11 @@ msgstr "" #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:167 -#: application/views/bandmap/list.php:301 -#: application/views/bandmap/list.php:568 +#: application/views/bandmap/list.php:100 +#: application/views/bandmap/list.php:168 +#: application/views/bandmap/list.php:302 +#: application/views/bandmap/list.php:551 +#: application/views/bandmap/list.php:591 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 @@ -1632,7 +1634,7 @@ msgstr "Krajina" #: application/controllers/Logbook.php:1458 #: application/views/awards/iota/index.php:198 -#: application/views/bandmap/list.php:329 application/views/bands/index.php:52 +#: application/views/bandmap/list.php:330 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/checkresult.php:394 @@ -1800,9 +1802,10 @@ msgstr "Vzdialenosť" #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:168 -#: application/views/bandmap/list.php:363 -#: application/views/bandmap/list.php:566 application/views/bands/create.php:24 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:169 +#: application/views/bandmap/list.php:364 +#: application/views/bandmap/list.php:549 +#: application/views/bandmap/list.php:589 application/views/bands/create.php:24 #: application/views/bands/edit.php:7 application/views/bands/index.php:47 #: application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 @@ -1866,8 +1869,9 @@ msgid "Band" msgstr "Pásmo" #: application/controllers/Logbook.php:1466 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 -#: application/views/bandmap/list.php:567 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:167 +#: application/views/bandmap/list.php:550 +#: application/views/bandmap/list.php:590 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:918 @@ -1893,7 +1897,7 @@ msgid "Frequency" msgstr "Frekvencia" #: application/controllers/Logbook.php:1467 -#: application/controllers/Radio.php:43 +#: application/controllers/Radio.php:46 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 #: application/views/logbookadvanced/index.php:478 @@ -1981,11 +1985,11 @@ msgstr "Certifikát importovaný." msgid "Certificate Updated." msgstr "Certifikát aktualizovaný." -#: application/controllers/Lotw.php:420 +#: application/controllers/Lotw.php:416 msgid "Certificate Deleted." msgstr "Certifikát bol zmazaný." -#: application/controllers/Lotw.php:448 +#: application/controllers/Lotw.php:444 #, php-format msgid "" "The certificate found in file %s contains a password and cannot be " @@ -1997,7 +2001,7 @@ msgstr "" "%sUistite sa, že exportujete LoTW certifikát z tqsl aplikácie bez hesla!%s " "Pre ďalšie informácie navštívte %sLoTW FAQ stránku%s vo Wavelog Wiki." -#: application/controllers/Lotw.php:450 +#: application/controllers/Lotw.php:446 #, php-format msgid "" "Generic error extracting the certificate from file %s. If the filename " @@ -2008,51 +2012,51 @@ msgstr "" "názov súboru obsahuje 'key-only', ide zvyčajne o žiadosť o certifikát, ktorá " "ešte nebola spracovaná službou LoTW." -#: application/controllers/Lotw.php:457 +#: application/controllers/Lotw.php:453 #, php-format msgid "Generic error processing the certificate in file %s." msgstr "Všeobecná chyba pri spracovaní certifikátu v súbore %s." -#: application/controllers/Lotw.php:469 +#: application/controllers/Lotw.php:465 #, php-format msgid "Generic error extracting the private key from certificate in file %s." msgstr "" "Všeobecná chyba pri extrahovaní súkromného kľúča z certifikátu v súbore %s." -#: application/controllers/Lotw.php:685 +#: application/controllers/Lotw.php:681 msgid "LoTW ADIF Information" msgstr "LoTW ADIF Informácie" -#: application/controllers/Lotw.php:858 +#: application/controllers/Lotw.php:854 msgid "Connection to LoTW failed." msgstr "Pripojenie k LoTW zlyhalo." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:859 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "Prihlásenie do LoTW zlyhalo pre používateľa %s: %s." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:859 msgid "Username/password incorrect" msgstr "Nesprávne používateľské meno/heslo" -#: application/controllers/Lotw.php:866 +#: application/controllers/Lotw.php:862 msgid "LoTW currently not available. Try again later." msgstr "LoTW momentálne nie je dostupný. Skús to znova neskôr." -#: application/controllers/Lotw.php:870 +#: application/controllers/Lotw.php:866 msgid "LoTW login OK!" msgstr "Prihlásenie na LoTW OK!" -#: application/controllers/Lotw.php:876 +#: application/controllers/Lotw.php:872 msgid "No LoTW credentials provided." msgstr "Nie sú zadané žiadne údaje pre LoTW." -#: application/controllers/Lotw.php:894 +#: application/controllers/Lotw.php:890 msgid "LoTW ADIF Import" msgstr "LoTW ADIF Import" -#: application/controllers/Lotw.php:920 +#: application/controllers/Lotw.php:916 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Nezadali ste svoje údaje pre ARRL LoTW!" @@ -2419,17 +2423,17 @@ msgstr "Nebola uvedená žiadna volacia značka." msgid "Hardware Interfaces" msgstr "Hardvérové rozhrania" -#: application/controllers/Radio.php:41 application/views/bandmap/list.php:20 +#: application/controllers/Radio.php:44 application/views/bandmap/list.php:21 #: application/views/contesting/index.php:157 #: application/views/qso/index.php:411 application/views/view_log/qso.php:714 msgid "Radio" msgstr "Rádio" -#: application/controllers/Radio.php:47 +#: application/controllers/Radio.php:50 msgid "Timestamp" msgstr "Časová značka" -#: application/controllers/Radio.php:49 +#: application/controllers/Radio.php:52 #: application/views/logbookadvanced/index.php:867 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 @@ -2438,30 +2442,34 @@ msgstr "Časová značka" msgid "Options" msgstr "Možnosti" -#: application/controllers/Radio.php:50 application/views/debug/index.php:321 +#: application/controllers/Radio.php:53 application/views/debug/index.php:321 #: application/views/qso/index.php:841 msgid "Settings" msgstr "Nastavenia" -#: application/controllers/Radio.php:63 +#: application/controllers/Radio.php:59 +msgid "WebSocket" +msgstr "" + +#: application/controllers/Radio.php:65 application/controllers/Radio.php:124 +msgid "Default (click to release)" +msgstr "Predvolené (kliknutím zrušíte)" + +#: application/controllers/Radio.php:67 application/controllers/Radio.php:126 +msgid "Set as default radio" +msgstr "Nastaviť ako predvolenú rádiostanicu" + +#: application/controllers/Radio.php:83 msgid "UNKNOWN" msgstr "NEZNÁME" -#: application/controllers/Radio.php:98 application/views/bandmap/list.php:242 +#: application/controllers/Radio.php:118 application/views/bandmap/list.php:243 #: application/views/contesting/index.php:162 #: application/views/qso/index.php:416 msgid "last updated" msgstr "naposledy aktualizované" -#: application/controllers/Radio.php:106 application/controllers/Radio.php:109 -msgid "Set as default radio" -msgstr "Nastaviť ako predvolenú rádiostanicu" - -#: application/controllers/Radio.php:111 -msgid "Default (click to release)" -msgstr "Predvolené (kliknutím zrušíte)" - -#: application/controllers/Radio.php:115 +#: application/controllers/Radio.php:128 #: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 @@ -2480,7 +2488,7 @@ msgstr "Predvolené (kliknutím zrušíte)" msgid "Edit" msgstr "Upraviť" -#: application/controllers/Radio.php:116 +#: application/controllers/Radio.php:129 #: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 @@ -2509,14 +2517,30 @@ msgstr "Upraviť" msgid "Delete" msgstr "Vymazať" -#: application/controllers/Radio.php:122 +#: application/controllers/Radio.php:136 +msgid "WebSocket is currently default (click to release)" +msgstr "" + +#: application/controllers/Radio.php:138 +msgid "Set WebSocket as default radio" +msgstr "" + +#: application/controllers/Radio.php:142 msgid "No CAT interfaced radios found." msgstr "Nenašlo sa žiadne rádio s CAT rozhraním." -#: application/controllers/Radio.php:137 application/views/radio/index.php:2 +#: application/controllers/Radio.php:143 +msgid "You can still set the WebSocket option as your default radio." +msgstr "" + +#: application/controllers/Radio.php:160 application/views/radio/index.php:2 msgid "Edit CAT Settings" msgstr "Upraviť nastavenia CAT" +#: application/controllers/Radio.php:332 +msgid "Radio removed successfully" +msgstr "" + #: application/controllers/Reg1test.php:22 msgid "Export EDI" msgstr "EDI export" @@ -2595,7 +2619,7 @@ msgstr "tu" msgid "Satellite Timers" msgstr "Satelitné časovače" -#: application/controllers/Search.php:15 application/views/bandmap/list.php:544 +#: application/controllers/Search.php:15 application/views/bandmap/list.php:567 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 @@ -2918,103 +2942,103 @@ msgstr "Príprava výnimiek DXCC: " msgid "Preparing DXCC Prefixes: " msgstr "Príprava DXCC prefixov: " -#: application/controllers/Update.php:275 +#: application/controllers/Update.php:277 msgid "DONE" msgstr "HOTOVO" -#: application/controllers/Update.php:304 +#: application/controllers/Update.php:326 msgid "Updating..." msgstr "Aktualizácia..." -#: application/controllers/Update.php:307 +#: application/controllers/Update.php:329 msgid "Dxcc Entities:" msgstr "DXCC entity:" -#: application/controllers/Update.php:308 +#: application/controllers/Update.php:330 msgid "Dxcc Exceptions:" msgstr "Výnimky DXCC:" -#: application/controllers/Update.php:309 +#: application/controllers/Update.php:331 msgid "Dxcc Prefixes:" msgstr "DXCC prefixy:" -#: application/controllers/Update.php:340 +#: application/controllers/Update.php:362 msgid "SCP Update complete. Result: " msgstr "Aktualizácia SCP kompletná. Výsledok: " -#: application/controllers/Update.php:342 +#: application/controllers/Update.php:364 msgid "SCP Update failed. Result: " msgstr "Aktualizácia SCP zlyhala. Výsledok: " -#: application/controllers/Update.php:379 +#: application/controllers/Update.php:401 msgid "LoTW Users Update complete. Result: " msgstr "Aktualizácia používateľov LoTW je dokončená. Výsledok: " -#: application/controllers/Update.php:381 +#: application/controllers/Update.php:403 msgid "LoTW Users Update failed. Result: " msgstr "Aktualizácia používateľov LoTW zlyhala. Výsledok: " -#: application/controllers/Update.php:416 +#: application/controllers/Update.php:438 msgid "DOK Update complete. Result: " msgstr "Aktualizácia DOK dokončená. Výsledok: " -#: application/controllers/Update.php:418 +#: application/controllers/Update.php:440 msgid "DOK Update failed. Result: " msgstr "Aktualizácia DOK zlyhala. Výsledok: " -#: application/controllers/Update.php:451 +#: application/controllers/Update.php:473 msgid "SOTA Update complete. Result: " msgstr "Aktualizácia SOTA dokončená. Výsledok: " -#: application/controllers/Update.php:453 +#: application/controllers/Update.php:475 msgid "SOTA Update failed. Result: " msgstr "Aktualizácia SOTA zlyhala. Výsledok: " -#: application/controllers/Update.php:486 +#: application/controllers/Update.php:508 msgid "WWFF Update complete. Result: " msgstr "Aktualizácia WWFF dokončená. Výsledok: " -#: application/controllers/Update.php:488 +#: application/controllers/Update.php:510 msgid "WWFF Update failed. Result: " msgstr "Aktualizácia WWFF zlyhala. Výsledok: " -#: application/controllers/Update.php:522 +#: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " msgstr "Aktualizácia HAMqsl dokončená. Výsledok: " -#: application/controllers/Update.php:524 +#: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " msgstr "Aktualizácia HAMqsl zlyhala. Výsledok: " -#: application/controllers/Update.php:557 +#: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " msgstr "Aktualizácia POTA dokončená. Výsledok: " -#: application/controllers/Update.php:559 +#: application/controllers/Update.php:581 msgid "POTA Update failed. Result: " msgstr "Aktualizácia POTA zlyhala. Výsledok: " -#: application/controllers/Update.php:588 +#: application/controllers/Update.php:610 msgid "TLE Update complete. Result: " msgstr "Aktualizácia TLE dokončená. Výsledok: " -#: application/controllers/Update.php:590 +#: application/controllers/Update.php:612 msgid "TLE Update failed. Result: " msgstr "Aktualizácia TLE zlyhala. Výsledok: " -#: application/controllers/Update.php:617 +#: application/controllers/Update.php:639 msgid "LoTW SAT Update" msgstr "LoTW SAT aktualizácia" -#: application/controllers/Update.php:645 +#: application/controllers/Update.php:667 msgid "Update of Hams of Note" msgstr "Update Hams of Note" -#: application/controllers/Update.php:685 +#: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " msgstr "Aktualizácia súboru VUCC lokátorov dokončená. Výsledok: " -#: application/controllers/Update.php:687 +#: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " msgstr "Aktualizácia súboru VUCC lokátorov zlyhala. Výsledok: " @@ -3529,7 +3553,7 @@ msgstr "" #: application/models/Logbook_model.php:311 msgid "Station not accessible" -msgstr "" +msgstr "Stanica nie je prístupná" #: application/models/Logbook_model.php:1293 msgid "Station ID not allowed" @@ -3544,13 +3568,13 @@ msgstr "Nezadaný volací znak" msgid "DXCC has to be Numeric" msgstr "DXCC musí byť číselné" -#: application/models/Logbook_model.php:4886 +#: application/models/Logbook_model.php:4806 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Nesprávna volacia značka stanice %s pri importe QSO s %s pre %s: PRESKOČENÉ" -#: application/models/Logbook_model.php:4900 +#: application/models/Logbook_model.php:4820 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3558,11 +3582,11 @@ msgstr "" "Pokúsil si sa importovať QSO bez platného dátumu. Toto QSO nebolo " "importované. Je neplatné" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4829 msgid "QSO on" msgstr "QSO o" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4829 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3570,7 +3594,7 @@ msgstr "" "Pokúsil si sa importovať QSO bez uvedenej značky. Toto QSO nebolo " "importované. Je neplatné." -#: application/models/Logbook_model.php:4958 +#: application/models/Logbook_model.php:4878 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3579,64 +3603,64 @@ msgstr "" "QSO na %s: Pokúsil si sa importovať QSO bez uvedeného pásma. Toto QSO nebolo " "importované. Je neplatné." -#: application/models/Logbook_model.php:5231 +#: application/models/Logbook_model.php:5151 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "qslrdate je neplatné (YYYYMMDD)" -#: application/models/Logbook_model.php:5242 +#: application/models/Logbook_model.php:5162 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "qslsdate je neplatné (RRRRMMDD)" -#: application/models/Logbook_model.php:5303 +#: application/models/Logbook_model.php:5223 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "clublog_qso_upload_date je neplatné (YYYYMMDD)" -#: application/models/Logbook_model.php:5676 +#: application/models/Logbook_model.php:5596 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Duplicita pre" -#: application/models/Logbook_model.php:5741 -#: application/models/Logbook_model.php:5836 +#: application/models/Logbook_model.php:5661 +#: application/models/Logbook_model.php:5756 msgid "QSO could not be matched" msgstr "QSO nebolo možné spárovať" -#: application/models/Logbook_model.php:5749 +#: application/models/Logbook_model.php:5669 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "potvrdené cez LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:5755 +#: application/models/Logbook_model.php:5675 msgid "confirmed by award manager" msgstr "potvrdené diplomovým manažérom" -#: application/models/Logbook_model.php:5759 +#: application/models/Logbook_model.php:5679 msgid "confirmed by cross-check of DCL data" msgstr "potvrdené krížovou kontrolou údajov DCL" -#: application/models/Logbook_model.php:5763 +#: application/models/Logbook_model.php:5683 msgid "confirmation pending" msgstr "potvrdenie čaká" -#: application/models/Logbook_model.php:5766 +#: application/models/Logbook_model.php:5686 msgid "unconfirmed" msgstr "nepotvrdené" -#: application/models/Logbook_model.php:5769 +#: application/models/Logbook_model.php:5689 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "neznáme" -#: application/models/Logbook_model.php:5839 +#: application/models/Logbook_model.php:5759 msgid "POTA reference already in log" msgstr "POTA referencia už v logu" -#: application/models/Logbook_model.php:5842 +#: application/models/Logbook_model.php:5762 msgid "QSO updated" msgstr "QSO aktualizované" -#: application/models/Logbook_model.php:6236 +#: application/models/Logbook_model.php:6156 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3818,13 +3842,13 @@ msgstr "Rozdiel" #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:101 -#: application/views/bandmap/list.php:295 -#: application/views/bandmap/list.php:303 -#: application/views/bandmap/list.php:325 -#: application/views/bandmap/list.php:337 -#: application/views/bandmap/list.php:351 -#: application/views/bandmap/list.php:365 application/views/bands/index.php:123 +#: application/views/bandmap/list.php:102 +#: application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:326 +#: application/views/bandmap/list.php:338 +#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:366 application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 #: application/views/callstats/index.php:24 @@ -4413,7 +4437,8 @@ msgstr "Nič sa nenašlo!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wpx/wpx_details.php:20 #: application/views/awards/wwff/index.php:35 -#: application/views/bandmap/list.php:27 application/views/bandmap/list.php:165 +#: application/views/bandmap/list.php:28 application/views/bandmap/list.php:166 +#: application/views/bandmap/list.php:555 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:147 #: application/views/calltester/comparison_result.php:60 @@ -4583,7 +4608,7 @@ msgstr "Dátum" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:137 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 #: application/views/contesting/index.php:262 @@ -5212,7 +5237,7 @@ msgstr "URL API pre túto instanciu Wavelogu je" #: application/views/api/index.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 #: application/views/interface_assets/footer.php:39 -#: application/views/qso/index.php:45 application/views/radio/index.php:26 +#: application/views/qso/index.php:45 application/views/radio/index.php:30 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -5490,7 +5515,8 @@ msgstr "Celkovo" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:193 -#: application/views/bandmap/list.php:572 application/views/csv/index.php:80 +#: application/views/bandmap/list.php:557 +#: application/views/bandmap/list.php:595 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 #: application/views/gridmap/index.php:236 application/views/kml/index.php:65 #: application/views/logbookadvanced/checkresult.php:246 @@ -5675,7 +5701,7 @@ msgstr "Dátum do" #: application/views/awards/wab/list.php:6 #: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 +#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 #: application/views/dashboard/index.php:342 #: application/views/dashboard/index.php:460 #: application/views/interface_assets/footer.php:45 @@ -5687,7 +5713,7 @@ msgstr "Potvrdené" #: application/views/awards/cq/index.php:88 #: application/views/awards/itu/index.php:38 #: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 +#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 #: application/views/dashboard/index.php:338 #: application/views/dashboard/index.php:454 #: application/views/search/result.php:35 @@ -6032,8 +6058,8 @@ msgstr "Zahrnúť zmazané" #: application/views/awards/dxcc/index.php:142 #: application/views/awards/iota/index.php:90 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/list.php:339 -#: application/views/bandmap/list.php:353 +#: application/views/bandmap/list.php:340 +#: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 #: application/views/logbookadvanced/index.php:491 #: application/views/lookup/index.php:60 @@ -6046,8 +6072,8 @@ msgstr "Antarktída" #: application/views/awards/dxcc/index.php:146 #: application/views/awards/iota/index.php:94 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/list.php:338 -#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:339 +#: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:218 #: application/views/logbookadvanced/index.php:490 #: application/views/lookup/index.php:59 @@ -6060,8 +6086,8 @@ msgstr "Afrika" #: application/views/awards/dxcc/index.php:150 #: application/views/awards/iota/index.php:98 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/list.php:340 -#: application/views/bandmap/list.php:354 +#: application/views/bandmap/list.php:341 +#: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:221 #: application/views/logbookadvanced/index.php:493 #: application/views/lookup/index.php:62 @@ -6074,8 +6100,8 @@ msgstr "Ázia" #: application/views/awards/dxcc/index.php:154 #: application/views/awards/iota/index.php:102 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/list.php:341 -#: application/views/bandmap/list.php:355 +#: application/views/bandmap/list.php:342 +#: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:222 #: application/views/logbookadvanced/index.php:494 #: application/views/lookup/index.php:63 @@ -6088,8 +6114,8 @@ msgstr "Európa" #: application/views/awards/dxcc/index.php:158 #: application/views/awards/iota/index.php:106 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/list.php:342 -#: application/views/bandmap/list.php:356 +#: application/views/bandmap/list.php:343 +#: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:220 #: application/views/logbookadvanced/index.php:492 #: application/views/lookup/index.php:61 @@ -6102,8 +6128,8 @@ msgstr "Severná Amerika" #: application/views/awards/dxcc/index.php:162 #: application/views/awards/iota/index.php:110 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/list.php:344 -#: application/views/bandmap/list.php:358 +#: application/views/bandmap/list.php:345 +#: application/views/bandmap/list.php:359 #: application/views/logbookadvanced/edit.php:223 #: application/views/logbookadvanced/index.php:495 #: application/views/lookup/index.php:64 @@ -6116,8 +6142,8 @@ msgstr "Južná Amerika" #: application/views/awards/dxcc/index.php:166 #: application/views/awards/iota/index.php:114 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/list.php:343 -#: application/views/bandmap/list.php:357 +#: application/views/bandmap/list.php:344 +#: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:224 #: application/views/logbookadvanced/index.php:496 #: application/views/lookup/index.php:65 @@ -6729,7 +6755,7 @@ msgstr "PHONE" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 -#: application/views/bandmap/list.php:305 +#: application/views/bandmap/list.php:306 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" @@ -7071,8 +7097,9 @@ msgid "Awards - Worked All Continents (WAC)" msgstr "Awards - Worked All Continents (WAC)" #: application/views/awards/wac/index.php:152 -#: application/views/bandmap/list.php:100 -#: application/views/bandmap/list.php:571 +#: application/views/bandmap/list.php:101 +#: application/views/bandmap/list.php:556 +#: application/views/bandmap/list.php:594 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 #: application/views/logbookadvanced/index.php:486 @@ -7428,219 +7455,219 @@ msgid "" "The backup of your notes completed successfully. The output can be found at" msgstr "Záloha vašich poznámok bola úspešne dokončená. Výstup nájdete na" -#: application/views/bandmap/list.php:11 +#: application/views/bandmap/list.php:12 msgid "Click to prepare logging." msgstr "Klikni na začatie logovania." -#: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:12 application/views/bandmap/list.php:132 msgid "to tune frequency" msgstr "na naladenie frekvencie" -#: application/views/bandmap/list.php:14 +#: application/views/bandmap/list.php:15 msgid "Pop-up Blocked" msgstr "Vyskakovacie okno zablokované" -#: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 +#: application/views/bandmap/list.php:16 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "" "Vyskakovacie okno bolo zablokované! Prosím, povoľte vyskakovacie okná pre " "túto stránku natrvalo." -#: application/views/bandmap/list.php:16 +#: application/views/bandmap/list.php:17 msgid "CAT Connection Required" msgstr "Je potrebné pripojenie CAT" -#: application/views/bandmap/list.php:17 +#: application/views/bandmap/list.php:18 msgid "Enable CAT connection to tune the radio" msgstr "Povoľte pripojenie CAT na ladenie rádia" -#: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 +#: application/views/bandmap/list.php:19 application/views/bandmap/list.php:412 msgid "Clear Filters" msgstr "Vymazať filtre" -#: application/views/bandmap/list.php:19 +#: application/views/bandmap/list.php:20 msgid "Band filter preserved (band lock is active)" msgstr "Pásmový filter zachovaný (pásmový zámok je aktívny)" -#: application/views/bandmap/list.php:21 +#: application/views/bandmap/list.php:22 msgid "Radio set to None - CAT connection disabled" msgstr "Rádio nastavené na Žiadne - CAT pripojenie deaktivované" -#: application/views/bandmap/list.php:22 +#: application/views/bandmap/list.php:23 msgid "Radio Tuned" msgstr "Rádio naladené" -#: application/views/bandmap/list.php:23 +#: application/views/bandmap/list.php:24 msgid "Tuned to" msgstr "Naladené na" -#: application/views/bandmap/list.php:24 +#: application/views/bandmap/list.php:25 msgid "Tuning Failed" msgstr "Ladenie zlyhalo" -#: application/views/bandmap/list.php:25 +#: application/views/bandmap/list.php:26 msgid "Failed to tune radio to frequency" msgstr "Nepodarilo sa naladiť rádio na frekvenciu" -#: application/views/bandmap/list.php:26 +#: application/views/bandmap/list.php:27 msgid "QSO Prepared" msgstr "QSO pripravené" -#: application/views/bandmap/list.php:28 +#: application/views/bandmap/list.php:29 msgid "sent to logging form" msgstr "odoslané do formulára denníka" -#: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 +#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:230 msgid "CAT Connection" msgstr "CAT pripojenie" -#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 +#: application/views/bandmap/list.php:31 application/views/bandmap/list.php:229 msgid "Click to enable CAT connection" msgstr "Kliknutím povolíte pripojenie CAT" -#: application/views/bandmap/list.php:31 +#: application/views/bandmap/list.php:32 msgid "CAT following radio - Click to disable" msgstr "CAT sleduje rádio - kliknutím vypnete" -#: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 +#: application/views/bandmap/list.php:33 application/views/bandmap/list.php:232 msgid "Click to enable band lock (requires CAT connection)" msgstr "Klikni na povolenie pásmového zámku (vyžaduje pripojenie CAT)" -#: application/views/bandmap/list.php:33 +#: application/views/bandmap/list.php:34 msgid "Band lock active - Click to disable" msgstr "Pásmový zámok je aktívny - kliknutím deaktivujete" -#: application/views/bandmap/list.php:34 +#: application/views/bandmap/list.php:35 msgid "Band Lock" msgstr "Pásmový zámok" -#: application/views/bandmap/list.php:35 +#: application/views/bandmap/list.php:36 msgid "Band lock enabled - band filter will track radio band" msgstr "Pásmový zámok povolený - pásmový filter bude sledovať rádiové pásmo" -#: application/views/bandmap/list.php:36 +#: application/views/bandmap/list.php:37 msgid "Band filter changed to" msgstr "Pásmový filter zmenený na" -#: application/views/bandmap/list.php:37 +#: application/views/bandmap/list.php:38 msgid "by transceiver" msgstr "cez transceiver" -#: application/views/bandmap/list.php:38 +#: application/views/bandmap/list.php:39 msgid "Frequency filter set to" msgstr "Nastavený frekvenčný filter na" -#: application/views/bandmap/list.php:39 +#: application/views/bandmap/list.php:40 msgid "Frequency outside known bands - showing all bands" msgstr "Frekvencia mimo známych pásiem - zobraziť všetky pásma" -#: application/views/bandmap/list.php:40 +#: application/views/bandmap/list.php:41 msgid "Waiting for radio data..." msgstr "Čakanie na dáta z rádia..." -#: application/views/bandmap/list.php:41 +#: application/views/bandmap/list.php:42 msgid "My Favorites" msgstr "Moje obľúbené" -#: application/views/bandmap/list.php:42 +#: application/views/bandmap/list.php:43 msgid "Failed to load favorites" msgstr "Nepodarilo sa načítať obľúbené položky" -#: application/views/bandmap/list.php:43 +#: application/views/bandmap/list.php:44 msgid "Modes applied. Band filter preserved (CAT connection is active)" msgstr "" "Módy boli použité. Pásmový filter zachovaný (pripojenie CAT je aktívne)" -#: application/views/bandmap/list.php:44 +#: application/views/bandmap/list.php:45 msgid "Applied your favorite bands and modes" msgstr "Použité tvoje obľúbené pásma a módy" -#: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 -#: application/views/bandmap/list.php:479 +#: application/views/bandmap/list.php:48 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:480 msgid "My Submodes" msgstr "Moje podmódy" -#: application/views/bandmap/list.php:48 +#: application/views/bandmap/list.php:49 msgid "Submode filter enabled" msgstr "Podmódový filter povolený" -#: application/views/bandmap/list.php:49 +#: application/views/bandmap/list.php:50 msgid "Submode filter disabled - showing all" msgstr "Podmódový filter vypnutý - zobrazenie všetkého" -#: application/views/bandmap/list.php:50 +#: application/views/bandmap/list.php:51 msgid "Required submodes" msgstr "Vyžadované podmódy" -#: application/views/bandmap/list.php:51 +#: application/views/bandmap/list.php:52 msgid "Configure in User Settings - Modes" msgstr "Nastavte v používateľských nastaveniach - Módy" -#: application/views/bandmap/list.php:52 +#: application/views/bandmap/list.php:53 msgid "No submodes configured - configure in User Settings - Modes" msgstr "" "Nie sú nakonfigurované žiadne podmódy - nakonfigurujte v nastaveniach " "používateľa - Módy" -#: application/views/bandmap/list.php:53 +#: application/views/bandmap/list.php:54 msgid "No submodes enabled in settings - showing all spots" msgstr "" "Žiadne podmódy nie sú v nastaveniach povolené - zobrazujú sa všetky spoty" -#: application/views/bandmap/list.php:54 +#: application/views/bandmap/list.php:55 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "" "Vypnuté - žiadne podmódy nie sú pre tento mód povolené v nastaveniach " "používateľa" -#: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 +#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 #: application/views/components/dxwaterfall.php:32 msgid "Toggle CW mode filter" msgstr "Prepnúť filter módu CW" -#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 +#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 #: application/views/components/dxwaterfall.php:34 msgid "Toggle Digital mode filter" msgstr "Prepnúť filter digitálnych módov" -#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 +#: application/views/bandmap/list.php:58 application/views/bandmap/list.php:471 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" msgstr "Prepnúť filter fónických módov" -#: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 +#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:422 msgid "Favorites" msgstr "Obľúbené" -#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 +#: application/views/bandmap/list.php:62 application/views/bandmap/list.php:425 msgid "Save Current Filters..." msgstr "Uložiť aktuálne filtre..." -#: application/views/bandmap/list.php:62 +#: application/views/bandmap/list.php:63 msgid "Enter a name for this filter preset:" msgstr "Zadajte názov pre tento filter:" -#: application/views/bandmap/list.php:63 +#: application/views/bandmap/list.php:64 msgid "Filter preset saved" msgstr "Prednastavenie filtra uložené" -#: application/views/bandmap/list.php:64 +#: application/views/bandmap/list.php:65 msgid "Filter preset loaded" msgstr "Prednastavenie filtra bolo načítané" -#: application/views/bandmap/list.php:65 +#: application/views/bandmap/list.php:66 msgid "Filter preset deleted" msgstr "Prednastavenie filtra odstránené" -#: application/views/bandmap/list.php:66 +#: application/views/bandmap/list.php:67 msgid "Are you sure to delete this filter preset?" msgstr "Naozaj chceš odstrániť toto prednastavenie filtra?" -#: application/views/bandmap/list.php:67 +#: application/views/bandmap/list.php:68 msgid "No saved filter presets" msgstr "Žiadne uložené prednastavenia filtrov" -#: application/views/bandmap/list.php:68 +#: application/views/bandmap/list.php:69 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." @@ -7648,64 +7675,64 @@ msgstr "" "Dosiahli ste maximálny počet 20 filtrových prednastavení. Pred pridaním " "nových odstráňte niektoré." -#: application/views/bandmap/list.php:71 +#: application/views/bandmap/list.php:72 msgid "Loading data from DX Cluster" msgstr "Načítanie údajov z DX clustra" -#: application/views/bandmap/list.php:72 +#: application/views/bandmap/list.php:73 msgid "Last fetched for" msgstr "Naposledy načítané pre" -#: application/views/bandmap/list.php:73 +#: application/views/bandmap/list.php:74 msgid "Max Age" msgstr "Max trvanlivosť" -#: application/views/bandmap/list.php:74 +#: application/views/bandmap/list.php:75 msgid "Fetched at" msgstr "Načítané o" -#: application/views/bandmap/list.php:75 +#: application/views/bandmap/list.php:76 msgid "Next update in" msgstr "Ďalšia aktualizácia za" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:77 msgid "minutes" msgstr "minút" -#: application/views/bandmap/list.php:77 +#: application/views/bandmap/list.php:78 msgid "seconds" msgstr "sekúnd" -#: application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:79 msgid "spots fetched" msgstr "spoty načítané" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 msgid "showing" msgstr "zobrazujem" -#: application/views/bandmap/list.php:80 +#: application/views/bandmap/list.php:81 msgid "showing all" msgstr "zobrazujem všetky" -#: application/views/bandmap/list.php:81 +#: application/views/bandmap/list.php:82 msgid "Active filters" msgstr "Aktívne filtre" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Fetching..." msgstr "Načítavam..." -#: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 #: application/views/interface_assets/footer.php:47 msgid "Not worked" msgstr "Neurobené" -#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 +#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:300 msgid "Worked, not Confirmed" msgstr "Urobené, nepotvrdené" -#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:316 #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:70 @@ -7713,46 +7740,46 @@ msgstr "Urobené, nepotvrdené" msgid "LoTW User" msgstr "LoTW používateľ" -#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 +#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:319 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" msgstr "Nová značka" -#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 +#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 #: application/views/components/dxwaterfall.php:16 msgid "New Continent" msgstr "Nový kontinent" -#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 +#: application/views/bandmap/list.php:93 application/views/bandmap/list.php:318 msgid "New Country" msgstr "Nová krajina" -#: application/views/bandmap/list.php:93 +#: application/views/bandmap/list.php:94 msgid "Worked Before" msgstr "Urobené predtým" -#: application/views/bandmap/list.php:94 +#: application/views/bandmap/list.php:95 #, php-format msgid "Worked on %s with %s" msgstr "Pracoval na %s s %s" -#: application/views/bandmap/list.php:102 -#: application/views/bandmap/list.php:575 +#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:598 msgid "de" msgstr "de" -#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:104 msgid "spotted" msgstr "spotovaný" -#: application/views/bandmap/list.php:106 +#: application/views/bandmap/list.php:107 msgid "Fresh spot (< 5 minutes old)" msgstr "Čerstvý spot (< 5 minút staré)" -#: application/views/bandmap/list.php:107 #: application/views/bandmap/list.php:108 -#: application/views/bandmap/list.php:320 -#: application/views/bandmap/list.php:510 +#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:511 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:482 @@ -7763,102 +7790,104 @@ msgstr "Čerstvý spot (< 5 minút staré)" msgid "Contest" msgstr "Contest" -#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:110 msgid "Click to view" msgstr "Klikni pre zobrazenie" -#: application/views/bandmap/list.php:110 +#: application/views/bandmap/list.php:111 msgid "on QRZ.com" msgstr "na QRZ.com" -#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:112 #, php-format msgid "Click to view %s on QRZ.com" msgstr "Klikni pre zobrazenie %s na QRZ.com" -#: application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:113 msgid "See details for" msgstr "Zobraziť podrobnosti pre" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Worked on" msgstr "Urobené na" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "Not worked on this band" msgstr "Neurobené na tomto pásme" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 #, php-format msgid "LoTW User. Last upload was %d days ago" msgstr "LoTW používateľ. Posledné nahratie bolo pred %d dňami" -#: application/views/bandmap/list.php:116 +#: application/views/bandmap/list.php:117 msgid "Click to view on POTA.app" msgstr "Klikni pre zobrazenie na POTA.app" -#: application/views/bandmap/list.php:117 +#: application/views/bandmap/list.php:118 msgid "Click to view on SOTL.as" msgstr "Kliknite pre zobrazenie na SOTL.as" -#: application/views/bandmap/list.php:118 +#: application/views/bandmap/list.php:119 msgid "Click to view on cqgma.org" msgstr "Kliknite pre zobrazenie na cqgma.org" -#: application/views/bandmap/list.php:119 +#: application/views/bandmap/list.php:120 msgid "Click to view on IOTA-World.org" msgstr "Klikni na zobrazenie na IOTA-World.org" -#: application/views/bandmap/list.php:120 +#: application/views/bandmap/list.php:121 msgid "See details for continent" msgstr "Pozrite si podrobnosti pre kontinent" -#: application/views/bandmap/list.php:121 +#: application/views/bandmap/list.php:122 #, php-format msgid "See details for continent %s" msgstr "Pozrite si podrobnosti pre kontinent %s" -#: application/views/bandmap/list.php:122 +#: application/views/bandmap/list.php:123 msgid "See details for CQ Zone" msgstr "Zobraziť podrobnosti o CQ zóne" -#: application/views/bandmap/list.php:123 +#: application/views/bandmap/list.php:124 #, php-format msgid "See details for CQ Zone %s" msgstr "Zobraziť podrobnosti o CQ zóne %s" -#: application/views/bandmap/list.php:124 +#: application/views/bandmap/list.php:125 msgid "in" msgstr "v" -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 msgid "Exit Fullscreen" msgstr "Ukončiť režim celej obrazovky" -#: application/views/bandmap/list.php:128 -#: application/views/bandmap/list.php:214 +#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:215 msgid "Toggle Fullscreen" msgstr "Prepnúť na celú obrazovku" -#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:130 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "" "Pásmové filtrovanie je riadené vaším rádiom, keď je aktivované CAT pripojenie" -#: application/views/bandmap/list.php:130 +#: application/views/bandmap/list.php:131 msgid "Click to prepare logging" msgstr "Klikni na začatie logovania" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "(requires CAT connection)" msgstr "(potrebné CAT pripojenie)" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:561 +#: application/views/bandmap/list.php:562 msgid "Spotter" msgstr "Spotter" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 @@ -7871,109 +7900,110 @@ msgstr "Spotter" msgid "Comment" msgstr "Komentár" -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:548 #: application/views/contesting/index.php:65 msgid "Age" msgstr "Trvanlivosť" -#: application/views/bandmap/list.php:137 +#: application/views/bandmap/list.php:138 msgid "Incoming" msgstr "Prichádzajúce" -#: application/views/bandmap/list.php:138 +#: application/views/bandmap/list.php:139 msgid "Outgoing" msgstr "Odchádzajúce" -#: application/views/bandmap/list.php:139 +#: application/views/bandmap/list.php:140 #: application/views/components/dxwaterfall.php:15 msgid "spots" msgstr "spoty" -#: application/views/bandmap/list.php:140 +#: application/views/bandmap/list.php:141 msgid "spot" msgstr "spot" -#: application/views/bandmap/list.php:141 +#: application/views/bandmap/list.php:142 msgid "spotters" msgstr "spotteri" -#: application/views/bandmap/list.php:144 +#: application/views/bandmap/list.php:145 msgid "Please Wait" msgstr "Prosím počkajte" -#: application/views/bandmap/list.php:145 +#: application/views/bandmap/list.php:146 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "" "Počkajte %s sekúnd pred odoslaním ďalšej volacej značky do formulára QSO" -#: application/views/bandmap/list.php:148 +#: application/views/bandmap/list.php:149 msgid "Loading spots..." msgstr "Načítavam spoty..." -#: application/views/bandmap/list.php:149 +#: application/views/bandmap/list.php:150 msgid "No spots found" msgstr "Žiadne spoty neboli nájdené" -#: application/views/bandmap/list.php:150 +#: application/views/bandmap/list.php:151 msgid "No data available" msgstr "Nie sú k dispozícii žiadne údaje" -#: application/views/bandmap/list.php:151 +#: application/views/bandmap/list.php:152 msgid "No spots found for selected filters" msgstr "Pre vybrané filtre sa nenašli žiadne spoty" -#: application/views/bandmap/list.php:152 +#: application/views/bandmap/list.php:153 msgid "Error loading spots. Please try again." msgstr "Chyba pri načítaní spotov. Skúste to znova." -#: application/views/bandmap/list.php:155 +#: application/views/bandmap/list.php:156 msgid "Show all modes" msgstr "Zobraziť všetky módy" -#: application/views/bandmap/list.php:156 +#: application/views/bandmap/list.php:157 msgid "Show all spots" msgstr "Zobraziť všetky spoty" -#: application/views/bandmap/list.php:161 +#: application/views/bandmap/list.php:162 msgid "Draw Spotters" msgstr "Zakresli spotterov" -#: application/views/bandmap/list.php:162 +#: application/views/bandmap/list.php:163 msgid "Extend Map" msgstr "Rozšír mapu" -#: application/views/bandmap/list.php:163 +#: application/views/bandmap/list.php:164 msgid "Show Day/Night" msgstr "Zobraziť deň/noc" -#: application/views/bandmap/list.php:164 +#: application/views/bandmap/list.php:165 msgid "Your QTH" msgstr "Vaše QTH" -#: application/views/bandmap/list.php:200 +#: application/views/bandmap/list.php:201 msgid "Return to Home" msgstr "Návrat domov" -#: application/views/bandmap/list.php:203 +#: application/views/bandmap/list.php:204 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" msgstr "DX Cluster" -#: application/views/bandmap/list.php:207 +#: application/views/bandmap/list.php:208 msgid "DX Cluster Help" msgstr "Pomoc pre DX cluster" -#: application/views/bandmap/list.php:210 +#: application/views/bandmap/list.php:211 msgid "Compact Mode - Hide/Show Menu" msgstr "Kompaktný režim - Skryť/Zobraziť menu" -#: application/views/bandmap/list.php:237 +#: application/views/bandmap/list.php:238 msgid "TRX:" msgstr "TRX:" -#: application/views/bandmap/list.php:239 -#: application/views/bandmap/list.php:313 +#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:314 #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 @@ -7981,314 +8011,281 @@ msgstr "TRX:" msgid "None" msgstr "Žiadny." -#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:241 #: application/views/contesting/index.php:160 #: application/views/qso/index.php:414 msgid "Live - WebSocket" -msgstr "" +msgstr "Naživo - WebSocket" -#: application/views/bandmap/list.php:242 application/views/qso/index.php:416 +#: application/views/bandmap/list.php:243 application/views/qso/index.php:416 msgid "Polling - " msgstr "Dopytovanie - " -#: application/views/bandmap/list.php:251 +#: application/views/bandmap/list.php:252 msgid "de:" msgstr "de:" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "Select all continents" msgstr "Vyber všetky kontinenty" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "World" msgstr "Svet" -#: application/views/bandmap/list.php:254 +#: application/views/bandmap/list.php:255 msgid "Toggle Africa continent filter" msgstr "Prepnúť filter kontinentu Afrika" -#: application/views/bandmap/list.php:255 +#: application/views/bandmap/list.php:256 msgid "Toggle Antarctica continent filter" msgstr "Prepnúť filter kontinentu Antarktída" -#: application/views/bandmap/list.php:256 +#: application/views/bandmap/list.php:257 msgid "Toggle Asia continent filter" msgstr "Prepnúť filter kontinentu Ázia" -#: application/views/bandmap/list.php:257 +#: application/views/bandmap/list.php:258 msgid "Toggle Europe continent filter" msgstr "Prepnúť filter kontinentu Európa" -#: application/views/bandmap/list.php:258 +#: application/views/bandmap/list.php:259 msgid "Toggle North America continent filter" msgstr "Prepni filter kontinentu Severná Amerika" -#: application/views/bandmap/list.php:259 +#: application/views/bandmap/list.php:260 msgid "Toggle Oceania continent filter" msgstr "Prepnúť filter kontinentu Oceánia" -#: application/views/bandmap/list.php:260 +#: application/views/bandmap/list.php:261 msgid "Toggle South America continent filter" msgstr "Prepnúť filter kontinentu Južná Amerika" -#: application/views/bandmap/list.php:273 +#: application/views/bandmap/list.php:274 msgid "Advanced Filters" msgstr "Pokročilé filtre" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "Hold" msgstr "Podržte" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "and click to select multiple options" msgstr "a klikni pre výber viacerých možností" -#: application/views/bandmap/list.php:293 +#: application/views/bandmap/list.php:294 msgid "DXCC-Status" msgstr "DXCC status" -#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:305 #: application/views/components/dxwaterfall.php:31 msgid "Phone" msgstr "Fónia" -#: application/views/bandmap/list.php:306 +#: application/views/bandmap/list.php:307 #: application/views/components/dxwaterfall.php:35 msgid "Digi" msgstr "Digi" -#: application/views/bandmap/list.php:311 +#: application/views/bandmap/list.php:312 msgid "Required Flags" msgstr "Požadované príznaky" -#: application/views/bandmap/list.php:319 +#: application/views/bandmap/list.php:320 msgid "Worked Callsign" msgstr "Urobená volacia značka" -#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:322 msgid "DX Spot" msgstr "DX spot" -#: application/views/bandmap/list.php:323 +#: application/views/bandmap/list.php:324 msgid "Additional Flags" msgstr "Ďalšie značky" -#: application/views/bandmap/list.php:330 +#: application/views/bandmap/list.php:331 msgid "Fresh (< 5 min)" msgstr "Čerstvý (< 5 min)" -#: application/views/bandmap/list.php:335 +#: application/views/bandmap/list.php:336 msgid "Spots de Continent" msgstr "Spoty z kontinentu" -#: application/views/bandmap/list.php:349 +#: application/views/bandmap/list.php:350 msgid "Spotted Station Continent" msgstr "Kontinent zaspotovanej stanice" -#: application/views/bandmap/list.php:409 +#: application/views/bandmap/list.php:410 msgid "Apply Filters" msgstr "Použiť filtre" -#: application/views/bandmap/list.php:420 +#: application/views/bandmap/list.php:421 msgid "Filter Favorites" msgstr "Obľúbené filtre" -#: application/views/bandmap/list.php:430 +#: application/views/bandmap/list.php:431 msgid "Clear all filters except De Continent" msgstr "Odstráň všetky filtre okrem spotov z kontinentu" -#: application/views/bandmap/list.php:436 +#: application/views/bandmap/list.php:437 msgid "Toggle 160m band filter" msgstr "Prepnúť filter pásma 160m" -#: application/views/bandmap/list.php:440 +#: application/views/bandmap/list.php:441 msgid "Toggle 80m band filter" msgstr "Prepnúť filter pásma 80 m" -#: application/views/bandmap/list.php:441 +#: application/views/bandmap/list.php:442 msgid "Toggle 60m band filter" msgstr "Prepni 60m pásmový filter" -#: application/views/bandmap/list.php:442 +#: application/views/bandmap/list.php:443 msgid "Toggle 40m band filter" msgstr "Prepnúť filter pásma 40m" -#: application/views/bandmap/list.php:443 +#: application/views/bandmap/list.php:444 msgid "Toggle 30m band filter" msgstr "Prepnúť filter pásma 30m" -#: application/views/bandmap/list.php:444 +#: application/views/bandmap/list.php:445 msgid "Toggle 20m band filter" msgstr "Prepnúť filter pásma 20m" -#: application/views/bandmap/list.php:445 +#: application/views/bandmap/list.php:446 msgid "Toggle 17m band filter" msgstr "Prepnúť filter pásma 17m" -#: application/views/bandmap/list.php:446 +#: application/views/bandmap/list.php:447 msgid "Toggle 15m band filter" msgstr "Prepnúť filter pásma 15m" -#: application/views/bandmap/list.php:447 +#: application/views/bandmap/list.php:448 msgid "Toggle 12m band filter" msgstr "Prepnúť filter pásma 12m" -#: application/views/bandmap/list.php:448 +#: application/views/bandmap/list.php:449 msgid "Toggle 10m band filter" msgstr "Prepnúť filter pásma 10m" -#: application/views/bandmap/list.php:452 +#: application/views/bandmap/list.php:453 msgid "Toggle 6m band filter" msgstr "Prepnúť filter pásma 6m" -#: application/views/bandmap/list.php:456 +#: application/views/bandmap/list.php:457 msgid "Toggle VHF bands filter" msgstr "Prepnúť filter pásiem VHF" -#: application/views/bandmap/list.php:457 +#: application/views/bandmap/list.php:458 msgid "Toggle UHF bands filter" msgstr "Prepnúť filter UHF pásiem" -#: application/views/bandmap/list.php:458 +#: application/views/bandmap/list.php:459 msgid "Toggle SHF bands filter" msgstr "Prepnúť filter pásiem SHF" -#: application/views/bandmap/list.php:478 +#: application/views/bandmap/list.php:479 msgid "Loading submodes..." msgstr "Načítavam podmódy..." -#: application/views/bandmap/list.php:483 +#: application/views/bandmap/list.php:484 msgid "Toggle LoTW User filter" msgstr "Prepnúť filter používateľa LoTW" -#: application/views/bandmap/list.php:484 +#: application/views/bandmap/list.php:485 msgid "LoTW users" msgstr "LoTW používatelia" -#: application/views/bandmap/list.php:490 +#: application/views/bandmap/list.php:491 msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" msgstr "Prepnúť filter DX spot-u (označený kontinent ≠ kontinent spottera)" -#: application/views/bandmap/list.php:491 -#: application/views/bandmap/list.php:570 +#: application/views/bandmap/list.php:492 +#: application/views/bandmap/list.php:593 msgid "DX" msgstr "DX" -#: application/views/bandmap/list.php:493 +#: application/views/bandmap/list.php:494 msgid "Toggle New Continents filter" msgstr "Prepnúť filter Nových kontinentov" -#: application/views/bandmap/list.php:494 +#: application/views/bandmap/list.php:495 msgid "New Continents" msgstr "Nové kontinenty" -#: application/views/bandmap/list.php:496 +#: application/views/bandmap/list.php:497 msgid "Toggle New Entities filter" msgstr "Prepnúť filter Nových entít" -#: application/views/bandmap/list.php:497 +#: application/views/bandmap/list.php:498 msgid "New Entities" msgstr "Nové entity" -#: application/views/bandmap/list.php:499 +#: application/views/bandmap/list.php:500 msgid "Toggle New Callsigns filter" msgstr "Prepnúť filter nových volacích znakov" -#: application/views/bandmap/list.php:500 +#: application/views/bandmap/list.php:501 msgid "New Callsigns" msgstr "Nové volacie značky" -#: application/views/bandmap/list.php:506 +#: application/views/bandmap/list.php:507 msgid "Toggle Fresh spots filter (< 5 minutes old)" msgstr "Prepínač filtra čerstvých spotov (nie starších ako 5 minút)" -#: application/views/bandmap/list.php:507 +#: application/views/bandmap/list.php:508 msgid "Fresh" msgstr "Čerstvé" -#: application/views/bandmap/list.php:509 +#: application/views/bandmap/list.php:510 msgid "Toggle Contest filter" msgstr "Prepnúť filter contestov" -#: application/views/bandmap/list.php:512 +#: application/views/bandmap/list.php:513 msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" msgstr "Prepnúť Geo Hunter (POTA/SOTA/IOTA/WWFF)" -#: application/views/bandmap/list.php:513 +#: application/views/bandmap/list.php:514 msgid "Referenced" msgstr "Uvedené" -#: application/views/bandmap/list.php:519 +#: application/views/bandmap/list.php:520 msgid "Open DX Map view" msgstr "Otvoriť mapu DX" -#: application/views/bandmap/list.php:520 +#: application/views/bandmap/list.php:521 msgid "DX Map" msgstr "DX mapa" -#: application/views/bandmap/list.php:544 -msgid "Search spots..." -msgstr "Vyhľadať spoty..." +#: application/views/bandmap/list.php:545 +msgid "Search Column" +msgstr "" -#: application/views/bandmap/list.php:557 -msgid "Note: Map shows DXCC entity locations, not actual spot locations" -msgstr "Poznámka: mapa zobrazuje polohy DXCC entít, nie skutočné lokácie miest" +#: application/views/bandmap/list.php:546 +msgid "All Columns" +msgstr "" -#: application/views/bandmap/list.php:565 -msgid "Age in minutes" -msgstr "Doba v minútach" +#: application/views/bandmap/list.php:547 +msgid "Spot Info" +msgstr "" -#: application/views/bandmap/list.php:567 -msgid "Freq" -msgstr "Frekv." - -#: application/views/bandmap/list.php:569 +#: application/views/bandmap/list.php:552 +#: application/views/bandmap/list.php:592 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" msgstr "Submód" -#: application/views/bandmap/list.php:570 -msgid "Spotted Callsign" -msgstr "Zachytená volačka" +#: application/views/bandmap/list.php:554 +msgid "DX Station" +msgstr "" -#: application/views/bandmap/list.php:573 -msgid "Flag" -msgstr "Príznak" - -#: application/views/bandmap/list.php:574 -msgid "DXCC Entity" -msgstr "DXCC entita" - -#: application/views/bandmap/list.php:574 +#: application/views/bandmap/list.php:558 +#: application/views/bandmap/list.php:597 msgid "Entity" msgstr "Entita" -#: application/views/bandmap/list.php:575 -msgid "Spotter Callsign" -msgstr "Značka spottera" - -#: application/views/bandmap/list.php:576 -msgid "Spotter Continent" -msgstr "Kontinent spottera" - -#: application/views/bandmap/list.php:577 -msgid "Spotter CQ Zone" -msgstr "Spotterova CQ zóna" - -#: application/views/bandmap/list.php:578 -msgid "Last QSO Date" -msgstr "Dátum posledného QSO" - -#: application/views/bandmap/list.php:579 -msgid "Special" -msgstr "Špeciálny" - -#: application/views/bandmap/list.php:579 -msgid "Special Flags" -msgstr "Špeciálne príznaky" - -#: application/views/bandmap/list.php:580 +#: application/views/bandmap/list.php:559 +#: application/views/bandmap/list.php:603 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -8296,6 +8293,60 @@ msgstr "Špeciálne príznaky" msgid "Message" msgstr "Správa" +#: application/views/bandmap/list.php:563 +#: application/views/bandmap/list.php:599 +msgid "Spotter Continent" +msgstr "Kontinent spottera" + +#: application/views/bandmap/list.php:564 +#: application/views/bandmap/list.php:600 +msgid "Spotter CQ Zone" +msgstr "Spotterova CQ zóna" + +#: application/views/bandmap/list.php:567 +msgid "Search spots..." +msgstr "Vyhľadať spoty..." + +#: application/views/bandmap/list.php:580 +msgid "Note: Map shows DXCC entity locations, not actual spot locations" +msgstr "Poznámka: mapa zobrazuje polohy DXCC entít, nie skutočné lokácie miest" + +#: application/views/bandmap/list.php:588 +msgid "Age in minutes" +msgstr "Doba v minútach" + +#: application/views/bandmap/list.php:590 +msgid "Freq" +msgstr "Frekv." + +#: application/views/bandmap/list.php:593 +msgid "Spotted Callsign" +msgstr "Zachytená volačka" + +#: application/views/bandmap/list.php:596 +msgid "Flag" +msgstr "Príznak" + +#: application/views/bandmap/list.php:597 +msgid "DXCC Entity" +msgstr "DXCC entita" + +#: application/views/bandmap/list.php:598 +msgid "Spotter Callsign" +msgstr "Značka spottera" + +#: application/views/bandmap/list.php:601 +msgid "Last QSO Date" +msgstr "Dátum posledného QSO" + +#: application/views/bandmap/list.php:602 +msgid "Special" +msgstr "Špeciálny" + +#: application/views/bandmap/list.php:602 +msgid "Special Flags" +msgstr "Špeciálne príznaky" + #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" msgstr "Zadaj platné čísla pre frekvenciu" @@ -10516,29 +10567,29 @@ msgstr "Nahraj súbor" #: application/views/debug/index.php:2 msgid "Are you sure you want to clear the cache?" -msgstr "" +msgstr "Ste si istý, že chcete vymazať vyrovnávaciu pamäť?" #: application/views/debug/index.php:3 msgid "Failed to clear cache!" -msgstr "" +msgstr "Nepodarilo sa vymazať cache!" #: application/views/debug/index.php:4 #, php-format msgid "Last version check: %s" -msgstr "" +msgstr "Posledná kontrola verzie: %s" #: application/views/debug/index.php:5 msgid "Wavelog is up to date!" -msgstr "" +msgstr "Wavelog je aktuálny!" #: application/views/debug/index.php:6 #, php-format msgid "There is a newer version available: %s" -msgstr "" +msgstr "Je k dispozícii novšia verzia: %s" #: application/views/debug/index.php:7 msgid "The Remote Repository doesn't know your branch." -msgstr "" +msgstr "Vzdialený repozitár nepozná tvoju vetvu." #: application/views/debug/index.php:32 msgid "Wavelog Information" @@ -10761,64 +10812,66 @@ msgstr "Nenainštalované" #: application/views/debug/index.php:413 msgid "Cache Information" -msgstr "" +msgstr "Informácie o vyrovnávacej pamäti" #: application/views/debug/index.php:417 msgid "Current Configuration" -msgstr "" +msgstr "Aktuálna konfigurácia" #: application/views/debug/index.php:420 msgctxt "Cache Adapter" msgid "Primary adapter" -msgstr "" +msgstr "Primárny adaptér" #: application/views/debug/index.php:431 msgctxt "Cache Backup Adapter (Fallback)" msgid "Backup adapter" -msgstr "" +msgstr "Záložný adaptér" #: application/views/debug/index.php:440 #, php-format msgctxt "Cache Path" msgid "Path for %s adapter" -msgstr "" +msgstr "Cesta pre adaptér %s" #: application/views/debug/index.php:444 msgctxt "Cache Key Prefix" msgid "Key Prefix" -msgstr "" +msgstr "Prefix kľúča" #: application/views/debug/index.php:450 msgid "" "Cache is currently using the backup adapter because the primary is " "unavailable." msgstr "" +"Vyrovnávacia pamäť momentálne používa záložný adaptér, pretože primárny nie " +"je dostupný." #: application/views/debug/index.php:454 msgid "Cache is working properly. Everything okay!" -msgstr "" +msgstr "Vyrovnávacia pamäť funguje správne. Všetko v poriadku!" #: application/views/debug/index.php:459 msgid "Cache Details" -msgstr "" +msgstr "Podrobnosti o vyrovnávacej pamäti" #: application/views/debug/index.php:462 msgctxt "Cache Details" msgid "Total Size" -msgstr "" +msgstr "Celková veľkosť" #: application/views/debug/index.php:468 msgctxt "Cache Key" msgid "Number of Keys" -msgstr "" +msgstr "Počet kľúčov" #: application/views/debug/index.php:479 msgid "Available Adapters" -msgstr "" +msgstr "Dostupné adaptéry" #: application/views/debug/index.php:496 msgid "Clear Cache" -msgstr "" +msgstr "Vymazať vyrovnávaciu pamäť" #: application/views/debug/index.php:543 msgid "Git Information" @@ -15848,10 +15901,12 @@ msgid "" "You have already filled in a callsign. First finish this QSO before filling " "the last spot from DXcluster." msgstr "" +"Už si vyplnil značku. Najskôr dokonči toto QSO, než prejdeš na spot z DX " +"clustera." #: application/views/qso/index.php:47 msgid "No spots found in this frequency." -msgstr "" +msgstr "Na tejto frekvencii sa nenašli žiadne spoty." #: application/views/qso/index.php:93 msgid "LIVE" @@ -16044,7 +16099,7 @@ msgstr "Aktívne rádiá" msgid "Below is a list of active radios that are connected to Wavelog." msgstr "Nižšie je zoznam aktívnych rádií, ktoré sú pripojené k Wavelogu." -#: application/views/radio/index.php:24 +#: application/views/radio/index.php:23 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." @@ -16052,16 +16107,26 @@ msgstr "" "Ak si ešte nepripojil žiadne rádiá, pozri si stránku s API na generovanie " "API kľúčov." -#: application/views/radio/index.php:26 application/views/search/filter.php:66 +#: application/views/radio/index.php:25 +msgid "" +"As a clubstation operator, you can set a default radio which applies only to " +"you. This allows you to have a default radio that is automatically selected " +"when you log in, while still being able to use other radios if you want." +msgstr "" + +#: application/views/radio/index.php:27 +msgid "" +"As a normal user, you can set a default radio for yourself. This allows you " +"to have a default radio that is automatically selected when you log in, " +"while still being able to use other radios if you want." +msgstr "" + +#: application/views/radio/index.php:30 #, php-format -msgid "You can find out how to use the %s in the wiki." -msgstr "Cez wiki sa môžeš dozvedieť, ako používať %s." +msgid "You can find out how to use the %sradio functions%s in the wiki." +msgstr "" -#: application/views/radio/index.php:26 -msgid "radio functions" -msgstr "rádiové funkcie" - -#: application/views/radio/index.php:31 +#: application/views/radio/index.php:35 msgid "Please wait..." msgstr "Prosím, počkajte..." @@ -16525,6 +16590,11 @@ msgstr "Uložiť dotaz" msgid "Stored queries" msgstr "Uložené dotazy" +#: application/views/search/filter.php:66 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "Cez wiki sa môžeš dozvedieť, ako používať %s." + #: application/views/search/filter.php:66 msgid "search filter functions" msgstr "vyhľadávacie funkcie filtrovania" @@ -19255,6 +19325,9 @@ msgstr "CQz" msgid "CQz geojson" msgstr "CQz geojson" +#~ msgid "radio functions" +#~ msgstr "rádiové funkcie" + #~ msgid "Incorrectly logged CQ zones" #~ msgstr "Nesprávne zaznamenané CQ zóny" diff --git a/application/locale/sl/LC_MESSAGES/messages.po b/application/locale/sl/LC_MESSAGES/messages.po index f5eb291a6..db7a9c024 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: 2026-02-13 08:13+0000\n" +"POT-Creation-Date: 2026-02-17 17:26+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -68,8 +68,8 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:90 application/controllers/Lotw.php:116 -#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:437 -#: application/controllers/Lotw.php:801 application/controllers/Lotw.php:888 +#: application/controllers/Lotw.php:410 application/controllers/Lotw.php:433 +#: application/controllers/Lotw.php:797 application/controllers/Lotw.php:884 #: application/controllers/Map.php:12 application/controllers/Map.php:27 #: application/controllers/Mode.php:15 application/controllers/Notes.php:10 #: application/controllers/Operator.php:13 @@ -83,8 +83,8 @@ msgstr "" #: application/controllers/Qso.php:22 application/controllers/Qso.php:288 #: application/controllers/Qso.php:419 application/controllers/Qso.php:440 #: application/controllers/Qso.php:463 application/controllers/Qso.php:763 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 -#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:320 +#: application/controllers/Radio.php:346 application/controllers/Radio.php:362 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -347,7 +347,7 @@ msgid "DOK" msgstr "" #: application/controllers/Awards.php:194 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:97 application/views/bands/index.php:50 +#: application/views/bandmap/list.php:98 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:192 @@ -440,7 +440,7 @@ msgstr "" #: application/controllers/Awards.php:595 #: application/controllers/Logbook.php:1459 -#: application/views/awards/index.php:8 application/views/bandmap/list.php:326 +#: application/views/awards/index.php:8 application/views/bandmap/list.php:327 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 #: application/views/logbookadvanced/edit.php:32 @@ -468,7 +468,7 @@ msgstr "" #: application/controllers/Awards.php:613 #: application/controllers/Logbook.php:1460 -#: application/views/bandmap/list.php:328 application/views/bands/index.php:64 +#: application/views/bandmap/list.php:329 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 @@ -490,7 +490,7 @@ msgstr "" #: application/controllers/Awards.php:631 #: application/controllers/Logbook.php:1461 -#: application/views/adif/import.php:60 application/views/bandmap/list.php:327 +#: application/views/adif/import.php:60 application/views/bandmap/list.php:328 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 @@ -646,8 +646,7 @@ msgstr "" msgid "Edit Band" msgstr "" -#: application/controllers/Bandmap.php:28 -#: application/controllers/Bandmap.php:75 +#: application/controllers/Bandmap.php:56 #: application/controllers/Options.php:144 #: application/controllers/Options.php:155 #: application/views/options/sidebar.php:7 @@ -1434,7 +1433,7 @@ msgid "All callbook lookups failed or provided no results." msgstr "" #: application/controllers/Logbook.php:1454 -#: application/controllers/Radio.php:46 +#: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 #: application/views/adif/dcl_success.php:33 @@ -1459,9 +1458,11 @@ msgstr "" #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:167 -#: application/views/bandmap/list.php:301 -#: application/views/bandmap/list.php:568 +#: application/views/bandmap/list.php:100 +#: application/views/bandmap/list.php:168 +#: application/views/bandmap/list.php:302 +#: application/views/bandmap/list.php:551 +#: application/views/bandmap/list.php:591 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 @@ -1613,7 +1614,7 @@ msgstr "" #: application/controllers/Logbook.php:1458 #: application/views/awards/iota/index.php:198 -#: application/views/bandmap/list.php:329 application/views/bands/index.php:52 +#: application/views/bandmap/list.php:330 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/checkresult.php:394 @@ -1781,9 +1782,10 @@ msgstr "" #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:168 -#: application/views/bandmap/list.php:363 -#: application/views/bandmap/list.php:566 application/views/bands/create.php:24 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:169 +#: application/views/bandmap/list.php:364 +#: application/views/bandmap/list.php:549 +#: application/views/bandmap/list.php:589 application/views/bands/create.php:24 #: application/views/bands/edit.php:7 application/views/bands/index.php:47 #: application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 @@ -1847,8 +1849,9 @@ msgid "Band" msgstr "" #: application/controllers/Logbook.php:1466 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 -#: application/views/bandmap/list.php:567 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:167 +#: application/views/bandmap/list.php:550 +#: application/views/bandmap/list.php:590 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:918 @@ -1874,7 +1877,7 @@ msgid "Frequency" msgstr "" #: application/controllers/Logbook.php:1467 -#: application/controllers/Radio.php:43 +#: application/controllers/Radio.php:46 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 #: application/views/logbookadvanced/index.php:478 @@ -1962,11 +1965,11 @@ msgstr "" msgid "Certificate Updated." msgstr "" -#: application/controllers/Lotw.php:420 +#: application/controllers/Lotw.php:416 msgid "Certificate Deleted." msgstr "" -#: application/controllers/Lotw.php:448 +#: application/controllers/Lotw.php:444 #, php-format msgid "" "The certificate found in file %s contains a password and cannot be " @@ -1975,7 +1978,7 @@ msgid "" "%sLoTW FAQ page%s in the Wavelog Wiki." msgstr "" -#: application/controllers/Lotw.php:450 +#: application/controllers/Lotw.php:446 #, php-format msgid "" "Generic error extracting the certificate from file %s. If the filename " @@ -1983,50 +1986,50 @@ msgid "" "been processed by LoTW yet." msgstr "" -#: application/controllers/Lotw.php:457 +#: application/controllers/Lotw.php:453 #, php-format msgid "Generic error processing the certificate in file %s." msgstr "" -#: application/controllers/Lotw.php:469 +#: application/controllers/Lotw.php:465 #, php-format msgid "Generic error extracting the private key from certificate in file %s." msgstr "" -#: application/controllers/Lotw.php:685 +#: application/controllers/Lotw.php:681 msgid "LoTW ADIF Information" msgstr "" -#: application/controllers/Lotw.php:858 +#: application/controllers/Lotw.php:854 msgid "Connection to LoTW failed." msgstr "" -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:859 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "" -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:859 msgid "Username/password incorrect" msgstr "" -#: application/controllers/Lotw.php:866 +#: application/controllers/Lotw.php:862 msgid "LoTW currently not available. Try again later." msgstr "" -#: application/controllers/Lotw.php:870 +#: application/controllers/Lotw.php:866 msgid "LoTW login OK!" msgstr "" -#: application/controllers/Lotw.php:876 +#: application/controllers/Lotw.php:872 msgid "No LoTW credentials provided." msgstr "" -#: application/controllers/Lotw.php:894 +#: application/controllers/Lotw.php:890 msgid "LoTW ADIF Import" msgstr "" -#: application/controllers/Lotw.php:920 +#: application/controllers/Lotw.php:916 msgid "You have not defined your ARRL LoTW credentials!" msgstr "" @@ -2381,17 +2384,17 @@ msgstr "" msgid "Hardware Interfaces" msgstr "" -#: application/controllers/Radio.php:41 application/views/bandmap/list.php:20 +#: application/controllers/Radio.php:44 application/views/bandmap/list.php:21 #: application/views/contesting/index.php:157 #: application/views/qso/index.php:411 application/views/view_log/qso.php:714 msgid "Radio" msgstr "" -#: application/controllers/Radio.php:47 +#: application/controllers/Radio.php:50 msgid "Timestamp" msgstr "" -#: application/controllers/Radio.php:49 +#: application/controllers/Radio.php:52 #: application/views/logbookadvanced/index.php:867 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 @@ -2400,30 +2403,34 @@ msgstr "" msgid "Options" msgstr "" -#: application/controllers/Radio.php:50 application/views/debug/index.php:321 +#: application/controllers/Radio.php:53 application/views/debug/index.php:321 #: application/views/qso/index.php:841 msgid "Settings" msgstr "" -#: application/controllers/Radio.php:63 +#: application/controllers/Radio.php:59 +msgid "WebSocket" +msgstr "" + +#: application/controllers/Radio.php:65 application/controllers/Radio.php:124 +msgid "Default (click to release)" +msgstr "" + +#: application/controllers/Radio.php:67 application/controllers/Radio.php:126 +msgid "Set as default radio" +msgstr "" + +#: application/controllers/Radio.php:83 msgid "UNKNOWN" msgstr "" -#: application/controllers/Radio.php:98 application/views/bandmap/list.php:242 +#: application/controllers/Radio.php:118 application/views/bandmap/list.php:243 #: application/views/contesting/index.php:162 #: application/views/qso/index.php:416 msgid "last updated" msgstr "" -#: application/controllers/Radio.php:106 application/controllers/Radio.php:109 -msgid "Set as default radio" -msgstr "" - -#: application/controllers/Radio.php:111 -msgid "Default (click to release)" -msgstr "" - -#: application/controllers/Radio.php:115 +#: application/controllers/Radio.php:128 #: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 @@ -2442,7 +2449,7 @@ msgstr "" msgid "Edit" msgstr "" -#: application/controllers/Radio.php:116 +#: application/controllers/Radio.php:129 #: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 @@ -2471,14 +2478,30 @@ msgstr "" msgid "Delete" msgstr "" -#: application/controllers/Radio.php:122 +#: application/controllers/Radio.php:136 +msgid "WebSocket is currently default (click to release)" +msgstr "" + +#: application/controllers/Radio.php:138 +msgid "Set WebSocket as default radio" +msgstr "" + +#: application/controllers/Radio.php:142 msgid "No CAT interfaced radios found." msgstr "" -#: application/controllers/Radio.php:137 application/views/radio/index.php:2 +#: application/controllers/Radio.php:143 +msgid "You can still set the WebSocket option as your default radio." +msgstr "" + +#: application/controllers/Radio.php:160 application/views/radio/index.php:2 msgid "Edit CAT Settings" msgstr "" +#: application/controllers/Radio.php:332 +msgid "Radio removed successfully" +msgstr "" + #: application/controllers/Reg1test.php:22 msgid "Export EDI" msgstr "" @@ -2557,7 +2580,7 @@ msgstr "" msgid "Satellite Timers" msgstr "" -#: application/controllers/Search.php:15 application/views/bandmap/list.php:544 +#: application/controllers/Search.php:15 application/views/bandmap/list.php:567 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 @@ -2873,103 +2896,103 @@ msgstr "" msgid "Preparing DXCC Prefixes: " msgstr "" -#: application/controllers/Update.php:275 +#: application/controllers/Update.php:277 msgid "DONE" msgstr "" -#: application/controllers/Update.php:304 +#: application/controllers/Update.php:326 msgid "Updating..." msgstr "" -#: application/controllers/Update.php:307 +#: application/controllers/Update.php:329 msgid "Dxcc Entities:" msgstr "" -#: application/controllers/Update.php:308 +#: application/controllers/Update.php:330 msgid "Dxcc Exceptions:" msgstr "" -#: application/controllers/Update.php:309 +#: application/controllers/Update.php:331 msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/Update.php:340 +#: application/controllers/Update.php:362 msgid "SCP Update complete. Result: " msgstr "" -#: application/controllers/Update.php:342 +#: application/controllers/Update.php:364 msgid "SCP Update failed. Result: " msgstr "" -#: application/controllers/Update.php:379 +#: application/controllers/Update.php:401 msgid "LoTW Users Update complete. Result: " msgstr "" -#: application/controllers/Update.php:381 +#: application/controllers/Update.php:403 msgid "LoTW Users Update failed. Result: " msgstr "" -#: application/controllers/Update.php:416 +#: application/controllers/Update.php:438 msgid "DOK Update complete. Result: " msgstr "" -#: application/controllers/Update.php:418 +#: application/controllers/Update.php:440 msgid "DOK Update failed. Result: " msgstr "" -#: application/controllers/Update.php:451 +#: application/controllers/Update.php:473 msgid "SOTA Update complete. Result: " msgstr "" -#: application/controllers/Update.php:453 +#: application/controllers/Update.php:475 msgid "SOTA Update failed. Result: " msgstr "" -#: application/controllers/Update.php:486 +#: application/controllers/Update.php:508 msgid "WWFF Update complete. Result: " msgstr "" -#: application/controllers/Update.php:488 +#: application/controllers/Update.php:510 msgid "WWFF Update failed. Result: " msgstr "" -#: application/controllers/Update.php:522 +#: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " msgstr "" -#: application/controllers/Update.php:524 +#: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " msgstr "" -#: application/controllers/Update.php:557 +#: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " msgstr "" -#: application/controllers/Update.php:559 +#: application/controllers/Update.php:581 msgid "POTA Update failed. Result: " msgstr "" -#: application/controllers/Update.php:588 +#: application/controllers/Update.php:610 msgid "TLE Update complete. Result: " msgstr "" -#: application/controllers/Update.php:590 +#: application/controllers/Update.php:612 msgid "TLE Update failed. Result: " msgstr "" -#: application/controllers/Update.php:617 +#: application/controllers/Update.php:639 msgid "LoTW SAT Update" msgstr "" -#: application/controllers/Update.php:645 +#: application/controllers/Update.php:667 msgid "Update of Hams of Note" msgstr "" -#: application/controllers/Update.php:685 +#: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " msgstr "" -#: application/controllers/Update.php:687 +#: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " msgstr "" @@ -3472,92 +3495,92 @@ msgstr "" msgid "DXCC has to be Numeric" msgstr "" -#: application/models/Logbook_model.php:4886 +#: application/models/Logbook_model.php:4806 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" -#: application/models/Logbook_model.php:4900 +#: application/models/Logbook_model.php:4820 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" msgstr "" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4829 msgid "QSO on" msgstr "" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4829 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" msgstr "" -#: application/models/Logbook_model.php:4958 +#: application/models/Logbook_model.php:4878 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " "imported. It's invalid" msgstr "" -#: application/models/Logbook_model.php:5231 +#: application/models/Logbook_model.php:5151 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:5242 +#: application/models/Logbook_model.php:5162 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:5303 +#: application/models/Logbook_model.php:5223 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:5676 +#: application/models/Logbook_model.php:5596 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "" -#: application/models/Logbook_model.php:5741 -#: application/models/Logbook_model.php:5836 +#: application/models/Logbook_model.php:5661 +#: application/models/Logbook_model.php:5756 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:5749 +#: application/models/Logbook_model.php:5669 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:5755 +#: application/models/Logbook_model.php:5675 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:5759 +#: application/models/Logbook_model.php:5679 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:5763 +#: application/models/Logbook_model.php:5683 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:5766 +#: application/models/Logbook_model.php:5686 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:5769 +#: application/models/Logbook_model.php:5689 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "" -#: application/models/Logbook_model.php:5839 +#: application/models/Logbook_model.php:5759 msgid "POTA reference already in log" msgstr "" -#: application/models/Logbook_model.php:5842 +#: application/models/Logbook_model.php:5762 msgid "QSO updated" msgstr "" -#: application/models/Logbook_model.php:6236 +#: application/models/Logbook_model.php:6156 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3739,13 +3762,13 @@ msgstr "" #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:101 -#: application/views/bandmap/list.php:295 -#: application/views/bandmap/list.php:303 -#: application/views/bandmap/list.php:325 -#: application/views/bandmap/list.php:337 -#: application/views/bandmap/list.php:351 -#: application/views/bandmap/list.php:365 application/views/bands/index.php:123 +#: application/views/bandmap/list.php:102 +#: application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:326 +#: application/views/bandmap/list.php:338 +#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:366 application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 #: application/views/callstats/index.php:24 @@ -4334,7 +4357,8 @@ msgstr "" #: application/views/awards/sota/index.php:33 #: application/views/awards/wpx/wpx_details.php:20 #: application/views/awards/wwff/index.php:35 -#: application/views/bandmap/list.php:27 application/views/bandmap/list.php:165 +#: application/views/bandmap/list.php:28 application/views/bandmap/list.php:166 +#: application/views/bandmap/list.php:555 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:147 #: application/views/calltester/comparison_result.php:60 @@ -4502,7 +4526,7 @@ msgstr "" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:137 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 #: application/views/contesting/index.php:262 @@ -5076,7 +5100,7 @@ msgstr "" #: application/views/api/index.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 #: application/views/interface_assets/footer.php:39 -#: application/views/qso/index.php:45 application/views/radio/index.php:26 +#: application/views/qso/index.php:45 application/views/radio/index.php:30 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -5337,7 +5361,8 @@ msgstr "" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:193 -#: application/views/bandmap/list.php:572 application/views/csv/index.php:80 +#: application/views/bandmap/list.php:557 +#: application/views/bandmap/list.php:595 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 #: application/views/gridmap/index.php:236 application/views/kml/index.php:65 #: application/views/logbookadvanced/checkresult.php:246 @@ -5515,7 +5540,7 @@ msgstr "" #: application/views/awards/wab/list.php:6 #: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 +#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 #: application/views/dashboard/index.php:342 #: application/views/dashboard/index.php:460 #: application/views/interface_assets/footer.php:45 @@ -5527,7 +5552,7 @@ msgstr "" #: application/views/awards/cq/index.php:88 #: application/views/awards/itu/index.php:38 #: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 +#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 #: application/views/dashboard/index.php:338 #: application/views/dashboard/index.php:454 #: application/views/search/result.php:35 @@ -5849,8 +5874,8 @@ msgstr "" #: application/views/awards/dxcc/index.php:142 #: application/views/awards/iota/index.php:90 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/list.php:339 -#: application/views/bandmap/list.php:353 +#: application/views/bandmap/list.php:340 +#: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 #: application/views/logbookadvanced/index.php:491 #: application/views/lookup/index.php:60 @@ -5863,8 +5888,8 @@ msgstr "" #: application/views/awards/dxcc/index.php:146 #: application/views/awards/iota/index.php:94 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/list.php:338 -#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:339 +#: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:218 #: application/views/logbookadvanced/index.php:490 #: application/views/lookup/index.php:59 @@ -5877,8 +5902,8 @@ msgstr "" #: application/views/awards/dxcc/index.php:150 #: application/views/awards/iota/index.php:98 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/list.php:340 -#: application/views/bandmap/list.php:354 +#: application/views/bandmap/list.php:341 +#: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:221 #: application/views/logbookadvanced/index.php:493 #: application/views/lookup/index.php:62 @@ -5891,8 +5916,8 @@ msgstr "" #: application/views/awards/dxcc/index.php:154 #: application/views/awards/iota/index.php:102 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/list.php:341 -#: application/views/bandmap/list.php:355 +#: application/views/bandmap/list.php:342 +#: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:222 #: application/views/logbookadvanced/index.php:494 #: application/views/lookup/index.php:63 @@ -5905,8 +5930,8 @@ msgstr "" #: application/views/awards/dxcc/index.php:158 #: application/views/awards/iota/index.php:106 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/list.php:342 -#: application/views/bandmap/list.php:356 +#: application/views/bandmap/list.php:343 +#: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:220 #: application/views/logbookadvanced/index.php:492 #: application/views/lookup/index.php:61 @@ -5919,8 +5944,8 @@ msgstr "" #: application/views/awards/dxcc/index.php:162 #: application/views/awards/iota/index.php:110 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/list.php:344 -#: application/views/bandmap/list.php:358 +#: application/views/bandmap/list.php:345 +#: application/views/bandmap/list.php:359 #: application/views/logbookadvanced/edit.php:223 #: application/views/logbookadvanced/index.php:495 #: application/views/lookup/index.php:64 @@ -5933,8 +5958,8 @@ msgstr "" #: application/views/awards/dxcc/index.php:166 #: application/views/awards/iota/index.php:114 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/list.php:343 -#: application/views/bandmap/list.php:357 +#: application/views/bandmap/list.php:344 +#: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:224 #: application/views/logbookadvanced/index.php:496 #: application/views/lookup/index.php:65 @@ -6459,7 +6484,7 @@ msgstr "" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 -#: application/views/bandmap/list.php:305 +#: application/views/bandmap/list.php:306 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "" @@ -6754,8 +6779,9 @@ msgid "Awards - Worked All Continents (WAC)" msgstr "" #: application/views/awards/wac/index.php:152 -#: application/views/bandmap/list.php:100 -#: application/views/bandmap/list.php:571 +#: application/views/bandmap/list.php:101 +#: application/views/bandmap/list.php:556 +#: application/views/bandmap/list.php:594 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 #: application/views/logbookadvanced/index.php:486 @@ -7051,274 +7077,274 @@ msgid "" "The backup of your notes completed successfully. The output can be found at" msgstr "" -#: application/views/bandmap/list.php:11 +#: application/views/bandmap/list.php:12 msgid "Click to prepare logging." msgstr "" -#: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:12 application/views/bandmap/list.php:132 msgid "to tune frequency" msgstr "" -#: application/views/bandmap/list.php:14 +#: application/views/bandmap/list.php:15 msgid "Pop-up Blocked" msgstr "" -#: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 +#: application/views/bandmap/list.php:16 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "" -#: application/views/bandmap/list.php:16 +#: application/views/bandmap/list.php:17 msgid "CAT Connection Required" msgstr "" -#: application/views/bandmap/list.php:17 +#: application/views/bandmap/list.php:18 msgid "Enable CAT connection to tune the radio" msgstr "" -#: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 +#: application/views/bandmap/list.php:19 application/views/bandmap/list.php:412 msgid "Clear Filters" msgstr "" -#: application/views/bandmap/list.php:19 +#: application/views/bandmap/list.php:20 msgid "Band filter preserved (band lock is active)" msgstr "" -#: application/views/bandmap/list.php:21 +#: application/views/bandmap/list.php:22 msgid "Radio set to None - CAT connection disabled" msgstr "" -#: application/views/bandmap/list.php:22 +#: application/views/bandmap/list.php:23 msgid "Radio Tuned" msgstr "" -#: application/views/bandmap/list.php:23 +#: application/views/bandmap/list.php:24 msgid "Tuned to" msgstr "" -#: application/views/bandmap/list.php:24 +#: application/views/bandmap/list.php:25 msgid "Tuning Failed" msgstr "" -#: application/views/bandmap/list.php:25 +#: application/views/bandmap/list.php:26 msgid "Failed to tune radio to frequency" msgstr "" -#: application/views/bandmap/list.php:26 +#: application/views/bandmap/list.php:27 msgid "QSO Prepared" msgstr "" -#: application/views/bandmap/list.php:28 +#: application/views/bandmap/list.php:29 msgid "sent to logging form" msgstr "" -#: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 +#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:230 msgid "CAT Connection" msgstr "" -#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 +#: application/views/bandmap/list.php:31 application/views/bandmap/list.php:229 msgid "Click to enable CAT connection" msgstr "" -#: application/views/bandmap/list.php:31 +#: application/views/bandmap/list.php:32 msgid "CAT following radio - Click to disable" msgstr "" -#: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 +#: application/views/bandmap/list.php:33 application/views/bandmap/list.php:232 msgid "Click to enable band lock (requires CAT connection)" msgstr "" -#: application/views/bandmap/list.php:33 +#: application/views/bandmap/list.php:34 msgid "Band lock active - Click to disable" msgstr "" -#: application/views/bandmap/list.php:34 +#: application/views/bandmap/list.php:35 msgid "Band Lock" msgstr "" -#: application/views/bandmap/list.php:35 +#: application/views/bandmap/list.php:36 msgid "Band lock enabled - band filter will track radio band" msgstr "" -#: application/views/bandmap/list.php:36 +#: application/views/bandmap/list.php:37 msgid "Band filter changed to" msgstr "" -#: application/views/bandmap/list.php:37 +#: application/views/bandmap/list.php:38 msgid "by transceiver" msgstr "" -#: application/views/bandmap/list.php:38 +#: application/views/bandmap/list.php:39 msgid "Frequency filter set to" msgstr "" -#: application/views/bandmap/list.php:39 +#: application/views/bandmap/list.php:40 msgid "Frequency outside known bands - showing all bands" msgstr "" -#: application/views/bandmap/list.php:40 +#: application/views/bandmap/list.php:41 msgid "Waiting for radio data..." msgstr "" -#: application/views/bandmap/list.php:41 +#: application/views/bandmap/list.php:42 msgid "My Favorites" msgstr "" -#: application/views/bandmap/list.php:42 +#: application/views/bandmap/list.php:43 msgid "Failed to load favorites" msgstr "" -#: application/views/bandmap/list.php:43 +#: application/views/bandmap/list.php:44 msgid "Modes applied. Band filter preserved (CAT connection is active)" msgstr "" -#: application/views/bandmap/list.php:44 +#: application/views/bandmap/list.php:45 msgid "Applied your favorite bands and modes" msgstr "" -#: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 -#: application/views/bandmap/list.php:479 +#: application/views/bandmap/list.php:48 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:480 msgid "My Submodes" msgstr "" -#: application/views/bandmap/list.php:48 +#: application/views/bandmap/list.php:49 msgid "Submode filter enabled" msgstr "" -#: application/views/bandmap/list.php:49 +#: application/views/bandmap/list.php:50 msgid "Submode filter disabled - showing all" msgstr "" -#: application/views/bandmap/list.php:50 +#: application/views/bandmap/list.php:51 msgid "Required submodes" msgstr "" -#: application/views/bandmap/list.php:51 +#: application/views/bandmap/list.php:52 msgid "Configure in User Settings - Modes" msgstr "" -#: application/views/bandmap/list.php:52 +#: application/views/bandmap/list.php:53 msgid "No submodes configured - configure in User Settings - Modes" msgstr "" -#: application/views/bandmap/list.php:53 +#: application/views/bandmap/list.php:54 msgid "No submodes enabled in settings - showing all spots" msgstr "" -#: application/views/bandmap/list.php:54 +#: application/views/bandmap/list.php:55 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "" -#: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 +#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 #: application/views/components/dxwaterfall.php:32 msgid "Toggle CW mode filter" msgstr "" -#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 +#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 #: application/views/components/dxwaterfall.php:34 msgid "Toggle Digital mode filter" msgstr "" -#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 +#: application/views/bandmap/list.php:58 application/views/bandmap/list.php:471 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" msgstr "" -#: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 +#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:422 msgid "Favorites" msgstr "" -#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 +#: application/views/bandmap/list.php:62 application/views/bandmap/list.php:425 msgid "Save Current Filters..." msgstr "" -#: application/views/bandmap/list.php:62 +#: application/views/bandmap/list.php:63 msgid "Enter a name for this filter preset:" msgstr "" -#: application/views/bandmap/list.php:63 +#: application/views/bandmap/list.php:64 msgid "Filter preset saved" msgstr "" -#: application/views/bandmap/list.php:64 +#: application/views/bandmap/list.php:65 msgid "Filter preset loaded" msgstr "" -#: application/views/bandmap/list.php:65 +#: application/views/bandmap/list.php:66 msgid "Filter preset deleted" msgstr "" -#: application/views/bandmap/list.php:66 +#: application/views/bandmap/list.php:67 msgid "Are you sure to delete this filter preset?" msgstr "" -#: application/views/bandmap/list.php:67 +#: application/views/bandmap/list.php:68 msgid "No saved filter presets" msgstr "" -#: application/views/bandmap/list.php:68 +#: application/views/bandmap/list.php:69 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." msgstr "" -#: application/views/bandmap/list.php:71 +#: application/views/bandmap/list.php:72 msgid "Loading data from DX Cluster" msgstr "" -#: application/views/bandmap/list.php:72 +#: application/views/bandmap/list.php:73 msgid "Last fetched for" msgstr "" -#: application/views/bandmap/list.php:73 +#: application/views/bandmap/list.php:74 msgid "Max Age" msgstr "" -#: application/views/bandmap/list.php:74 +#: application/views/bandmap/list.php:75 msgid "Fetched at" msgstr "" -#: application/views/bandmap/list.php:75 +#: application/views/bandmap/list.php:76 msgid "Next update in" msgstr "" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:77 msgid "minutes" msgstr "" -#: application/views/bandmap/list.php:77 +#: application/views/bandmap/list.php:78 msgid "seconds" msgstr "" -#: application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:79 msgid "spots fetched" msgstr "" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 msgid "showing" msgstr "" -#: application/views/bandmap/list.php:80 +#: application/views/bandmap/list.php:81 msgid "showing all" msgstr "" -#: application/views/bandmap/list.php:81 +#: application/views/bandmap/list.php:82 msgid "Active filters" msgstr "" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Fetching..." msgstr "" -#: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 #: application/views/interface_assets/footer.php:47 msgid "Not worked" msgstr "" -#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 +#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:300 msgid "Worked, not Confirmed" msgstr "" -#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:316 #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:70 @@ -7326,46 +7352,46 @@ msgstr "" msgid "LoTW User" msgstr "" -#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 +#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:319 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" msgstr "" -#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 +#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 #: application/views/components/dxwaterfall.php:16 msgid "New Continent" msgstr "" -#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 +#: application/views/bandmap/list.php:93 application/views/bandmap/list.php:318 msgid "New Country" msgstr "" -#: application/views/bandmap/list.php:93 +#: application/views/bandmap/list.php:94 msgid "Worked Before" msgstr "" -#: application/views/bandmap/list.php:94 +#: application/views/bandmap/list.php:95 #, php-format msgid "Worked on %s with %s" msgstr "" -#: application/views/bandmap/list.php:102 -#: application/views/bandmap/list.php:575 +#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:598 msgid "de" msgstr "" -#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:104 msgid "spotted" msgstr "" -#: application/views/bandmap/list.php:106 +#: application/views/bandmap/list.php:107 msgid "Fresh spot (< 5 minutes old)" msgstr "" -#: application/views/bandmap/list.php:107 #: application/views/bandmap/list.php:108 -#: application/views/bandmap/list.php:320 -#: application/views/bandmap/list.php:510 +#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:511 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:482 @@ -7376,101 +7402,103 @@ msgstr "" msgid "Contest" msgstr "" -#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:110 msgid "Click to view" msgstr "" -#: application/views/bandmap/list.php:110 +#: application/views/bandmap/list.php:111 msgid "on QRZ.com" msgstr "" -#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:112 #, php-format msgid "Click to view %s on QRZ.com" msgstr "" -#: application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:113 msgid "See details for" msgstr "" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Worked on" msgstr "" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "Not worked on this band" msgstr "" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 #, php-format msgid "LoTW User. Last upload was %d days ago" msgstr "" -#: application/views/bandmap/list.php:116 +#: application/views/bandmap/list.php:117 msgid "Click to view on POTA.app" msgstr "" -#: application/views/bandmap/list.php:117 +#: application/views/bandmap/list.php:118 msgid "Click to view on SOTL.as" msgstr "" -#: application/views/bandmap/list.php:118 +#: application/views/bandmap/list.php:119 msgid "Click to view on cqgma.org" msgstr "" -#: application/views/bandmap/list.php:119 +#: application/views/bandmap/list.php:120 msgid "Click to view on IOTA-World.org" msgstr "" -#: application/views/bandmap/list.php:120 +#: application/views/bandmap/list.php:121 msgid "See details for continent" msgstr "" -#: application/views/bandmap/list.php:121 +#: application/views/bandmap/list.php:122 #, php-format msgid "See details for continent %s" msgstr "" -#: application/views/bandmap/list.php:122 +#: application/views/bandmap/list.php:123 msgid "See details for CQ Zone" msgstr "" -#: application/views/bandmap/list.php:123 +#: application/views/bandmap/list.php:124 #, php-format msgid "See details for CQ Zone %s" msgstr "" -#: application/views/bandmap/list.php:124 +#: application/views/bandmap/list.php:125 msgid "in" msgstr "" -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 msgid "Exit Fullscreen" msgstr "" -#: application/views/bandmap/list.php:128 -#: application/views/bandmap/list.php:214 +#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:215 msgid "Toggle Fullscreen" msgstr "" -#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:130 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "" -#: application/views/bandmap/list.php:130 +#: application/views/bandmap/list.php:131 msgid "Click to prepare logging" msgstr "" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "(requires CAT connection)" msgstr "" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:561 +#: application/views/bandmap/list.php:562 msgid "Spotter" msgstr "" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 @@ -7483,108 +7511,109 @@ msgstr "" msgid "Comment" msgstr "" -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:548 #: application/views/contesting/index.php:65 msgid "Age" msgstr "" -#: application/views/bandmap/list.php:137 +#: application/views/bandmap/list.php:138 msgid "Incoming" msgstr "" -#: application/views/bandmap/list.php:138 +#: application/views/bandmap/list.php:139 msgid "Outgoing" msgstr "" -#: application/views/bandmap/list.php:139 +#: application/views/bandmap/list.php:140 #: application/views/components/dxwaterfall.php:15 msgid "spots" msgstr "" -#: application/views/bandmap/list.php:140 +#: application/views/bandmap/list.php:141 msgid "spot" msgstr "" -#: application/views/bandmap/list.php:141 +#: application/views/bandmap/list.php:142 msgid "spotters" msgstr "" -#: application/views/bandmap/list.php:144 +#: application/views/bandmap/list.php:145 msgid "Please Wait" msgstr "" -#: application/views/bandmap/list.php:145 +#: application/views/bandmap/list.php:146 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "" -#: application/views/bandmap/list.php:148 +#: application/views/bandmap/list.php:149 msgid "Loading spots..." msgstr "" -#: application/views/bandmap/list.php:149 +#: application/views/bandmap/list.php:150 msgid "No spots found" msgstr "" -#: application/views/bandmap/list.php:150 +#: application/views/bandmap/list.php:151 msgid "No data available" msgstr "" -#: application/views/bandmap/list.php:151 +#: application/views/bandmap/list.php:152 msgid "No spots found for selected filters" msgstr "" -#: application/views/bandmap/list.php:152 +#: application/views/bandmap/list.php:153 msgid "Error loading spots. Please try again." msgstr "" -#: application/views/bandmap/list.php:155 +#: application/views/bandmap/list.php:156 msgid "Show all modes" msgstr "" -#: application/views/bandmap/list.php:156 +#: application/views/bandmap/list.php:157 msgid "Show all spots" msgstr "" -#: application/views/bandmap/list.php:161 +#: application/views/bandmap/list.php:162 msgid "Draw Spotters" msgstr "" -#: application/views/bandmap/list.php:162 +#: application/views/bandmap/list.php:163 msgid "Extend Map" msgstr "" -#: application/views/bandmap/list.php:163 +#: application/views/bandmap/list.php:164 msgid "Show Day/Night" msgstr "" -#: application/views/bandmap/list.php:164 +#: application/views/bandmap/list.php:165 msgid "Your QTH" msgstr "" -#: application/views/bandmap/list.php:200 +#: application/views/bandmap/list.php:201 msgid "Return to Home" msgstr "" -#: application/views/bandmap/list.php:203 +#: application/views/bandmap/list.php:204 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" msgstr "" -#: application/views/bandmap/list.php:207 +#: application/views/bandmap/list.php:208 msgid "DX Cluster Help" msgstr "" -#: application/views/bandmap/list.php:210 +#: application/views/bandmap/list.php:211 msgid "Compact Mode - Hide/Show Menu" msgstr "" -#: application/views/bandmap/list.php:237 +#: application/views/bandmap/list.php:238 msgid "TRX:" msgstr "" -#: application/views/bandmap/list.php:239 -#: application/views/bandmap/list.php:313 +#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:314 #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 @@ -7592,314 +7621,281 @@ msgstr "" msgid "None" msgstr "" -#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:241 #: application/views/contesting/index.php:160 #: application/views/qso/index.php:414 msgid "Live - WebSocket" msgstr "" -#: application/views/bandmap/list.php:242 application/views/qso/index.php:416 +#: application/views/bandmap/list.php:243 application/views/qso/index.php:416 msgid "Polling - " msgstr "" -#: application/views/bandmap/list.php:251 +#: application/views/bandmap/list.php:252 msgid "de:" msgstr "" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "Select all continents" msgstr "" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "World" msgstr "" -#: application/views/bandmap/list.php:254 +#: application/views/bandmap/list.php:255 msgid "Toggle Africa continent filter" msgstr "" -#: application/views/bandmap/list.php:255 +#: application/views/bandmap/list.php:256 msgid "Toggle Antarctica continent filter" msgstr "" -#: application/views/bandmap/list.php:256 +#: application/views/bandmap/list.php:257 msgid "Toggle Asia continent filter" msgstr "" -#: application/views/bandmap/list.php:257 +#: application/views/bandmap/list.php:258 msgid "Toggle Europe continent filter" msgstr "" -#: application/views/bandmap/list.php:258 +#: application/views/bandmap/list.php:259 msgid "Toggle North America continent filter" msgstr "" -#: application/views/bandmap/list.php:259 +#: application/views/bandmap/list.php:260 msgid "Toggle Oceania continent filter" msgstr "" -#: application/views/bandmap/list.php:260 +#: application/views/bandmap/list.php:261 msgid "Toggle South America continent filter" msgstr "" -#: application/views/bandmap/list.php:273 +#: application/views/bandmap/list.php:274 msgid "Advanced Filters" msgstr "" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "Hold" msgstr "" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "and click to select multiple options" msgstr "" -#: application/views/bandmap/list.php:293 +#: application/views/bandmap/list.php:294 msgid "DXCC-Status" msgstr "" -#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:305 #: application/views/components/dxwaterfall.php:31 msgid "Phone" msgstr "" -#: application/views/bandmap/list.php:306 +#: application/views/bandmap/list.php:307 #: application/views/components/dxwaterfall.php:35 msgid "Digi" msgstr "" -#: application/views/bandmap/list.php:311 +#: application/views/bandmap/list.php:312 msgid "Required Flags" msgstr "" -#: application/views/bandmap/list.php:319 +#: application/views/bandmap/list.php:320 msgid "Worked Callsign" msgstr "" -#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:322 msgid "DX Spot" msgstr "" -#: application/views/bandmap/list.php:323 +#: application/views/bandmap/list.php:324 msgid "Additional Flags" msgstr "" -#: application/views/bandmap/list.php:330 +#: application/views/bandmap/list.php:331 msgid "Fresh (< 5 min)" msgstr "" -#: application/views/bandmap/list.php:335 +#: application/views/bandmap/list.php:336 msgid "Spots de Continent" msgstr "" -#: application/views/bandmap/list.php:349 +#: application/views/bandmap/list.php:350 msgid "Spotted Station Continent" msgstr "" -#: application/views/bandmap/list.php:409 +#: application/views/bandmap/list.php:410 msgid "Apply Filters" msgstr "" -#: application/views/bandmap/list.php:420 +#: application/views/bandmap/list.php:421 msgid "Filter Favorites" msgstr "" -#: application/views/bandmap/list.php:430 +#: application/views/bandmap/list.php:431 msgid "Clear all filters except De Continent" msgstr "" -#: application/views/bandmap/list.php:436 +#: application/views/bandmap/list.php:437 msgid "Toggle 160m band filter" msgstr "" -#: application/views/bandmap/list.php:440 +#: application/views/bandmap/list.php:441 msgid "Toggle 80m band filter" msgstr "" -#: application/views/bandmap/list.php:441 +#: application/views/bandmap/list.php:442 msgid "Toggle 60m band filter" msgstr "" -#: application/views/bandmap/list.php:442 +#: application/views/bandmap/list.php:443 msgid "Toggle 40m band filter" msgstr "" -#: application/views/bandmap/list.php:443 +#: application/views/bandmap/list.php:444 msgid "Toggle 30m band filter" msgstr "" -#: application/views/bandmap/list.php:444 +#: application/views/bandmap/list.php:445 msgid "Toggle 20m band filter" msgstr "" -#: application/views/bandmap/list.php:445 +#: application/views/bandmap/list.php:446 msgid "Toggle 17m band filter" msgstr "" -#: application/views/bandmap/list.php:446 +#: application/views/bandmap/list.php:447 msgid "Toggle 15m band filter" msgstr "" -#: application/views/bandmap/list.php:447 +#: application/views/bandmap/list.php:448 msgid "Toggle 12m band filter" msgstr "" -#: application/views/bandmap/list.php:448 +#: application/views/bandmap/list.php:449 msgid "Toggle 10m band filter" msgstr "" -#: application/views/bandmap/list.php:452 +#: application/views/bandmap/list.php:453 msgid "Toggle 6m band filter" msgstr "" -#: application/views/bandmap/list.php:456 +#: application/views/bandmap/list.php:457 msgid "Toggle VHF bands filter" msgstr "" -#: application/views/bandmap/list.php:457 +#: application/views/bandmap/list.php:458 msgid "Toggle UHF bands filter" msgstr "" -#: application/views/bandmap/list.php:458 +#: application/views/bandmap/list.php:459 msgid "Toggle SHF bands filter" msgstr "" -#: application/views/bandmap/list.php:478 +#: application/views/bandmap/list.php:479 msgid "Loading submodes..." msgstr "" -#: application/views/bandmap/list.php:483 +#: application/views/bandmap/list.php:484 msgid "Toggle LoTW User filter" msgstr "" -#: application/views/bandmap/list.php:484 +#: application/views/bandmap/list.php:485 msgid "LoTW users" msgstr "" -#: application/views/bandmap/list.php:490 +#: application/views/bandmap/list.php:491 msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" msgstr "" -#: application/views/bandmap/list.php:491 -#: application/views/bandmap/list.php:570 +#: application/views/bandmap/list.php:492 +#: application/views/bandmap/list.php:593 msgid "DX" msgstr "" -#: application/views/bandmap/list.php:493 +#: application/views/bandmap/list.php:494 msgid "Toggle New Continents filter" msgstr "" -#: application/views/bandmap/list.php:494 +#: application/views/bandmap/list.php:495 msgid "New Continents" msgstr "" -#: application/views/bandmap/list.php:496 +#: application/views/bandmap/list.php:497 msgid "Toggle New Entities filter" msgstr "" -#: application/views/bandmap/list.php:497 +#: application/views/bandmap/list.php:498 msgid "New Entities" msgstr "" -#: application/views/bandmap/list.php:499 +#: application/views/bandmap/list.php:500 msgid "Toggle New Callsigns filter" msgstr "" -#: application/views/bandmap/list.php:500 +#: application/views/bandmap/list.php:501 msgid "New Callsigns" msgstr "" -#: application/views/bandmap/list.php:506 +#: application/views/bandmap/list.php:507 msgid "Toggle Fresh spots filter (< 5 minutes old)" msgstr "" -#: application/views/bandmap/list.php:507 +#: application/views/bandmap/list.php:508 msgid "Fresh" msgstr "" -#: application/views/bandmap/list.php:509 +#: application/views/bandmap/list.php:510 msgid "Toggle Contest filter" msgstr "" -#: application/views/bandmap/list.php:512 +#: application/views/bandmap/list.php:513 msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" msgstr "" -#: application/views/bandmap/list.php:513 +#: application/views/bandmap/list.php:514 msgid "Referenced" msgstr "" -#: application/views/bandmap/list.php:519 +#: application/views/bandmap/list.php:520 msgid "Open DX Map view" msgstr "" -#: application/views/bandmap/list.php:520 +#: application/views/bandmap/list.php:521 msgid "DX Map" msgstr "" -#: application/views/bandmap/list.php:544 -msgid "Search spots..." +#: application/views/bandmap/list.php:545 +msgid "Search Column" msgstr "" -#: application/views/bandmap/list.php:557 -msgid "Note: Map shows DXCC entity locations, not actual spot locations" +#: application/views/bandmap/list.php:546 +msgid "All Columns" msgstr "" -#: application/views/bandmap/list.php:565 -msgid "Age in minutes" +#: application/views/bandmap/list.php:547 +msgid "Spot Info" msgstr "" -#: application/views/bandmap/list.php:567 -msgid "Freq" -msgstr "" - -#: application/views/bandmap/list.php:569 +#: application/views/bandmap/list.php:552 +#: application/views/bandmap/list.php:592 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" msgstr "" -#: application/views/bandmap/list.php:570 -msgid "Spotted Callsign" +#: application/views/bandmap/list.php:554 +msgid "DX Station" msgstr "" -#: application/views/bandmap/list.php:573 -msgid "Flag" -msgstr "" - -#: application/views/bandmap/list.php:574 -msgid "DXCC Entity" -msgstr "" - -#: application/views/bandmap/list.php:574 +#: application/views/bandmap/list.php:558 +#: application/views/bandmap/list.php:597 msgid "Entity" msgstr "" -#: application/views/bandmap/list.php:575 -msgid "Spotter Callsign" -msgstr "" - -#: application/views/bandmap/list.php:576 -msgid "Spotter Continent" -msgstr "" - -#: application/views/bandmap/list.php:577 -msgid "Spotter CQ Zone" -msgstr "" - -#: application/views/bandmap/list.php:578 -msgid "Last QSO Date" -msgstr "" - -#: application/views/bandmap/list.php:579 -msgid "Special" -msgstr "" - -#: application/views/bandmap/list.php:579 -msgid "Special Flags" -msgstr "" - -#: application/views/bandmap/list.php:580 +#: application/views/bandmap/list.php:559 +#: application/views/bandmap/list.php:603 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -7907,6 +7903,60 @@ msgstr "" msgid "Message" msgstr "" +#: application/views/bandmap/list.php:563 +#: application/views/bandmap/list.php:599 +msgid "Spotter Continent" +msgstr "" + +#: application/views/bandmap/list.php:564 +#: application/views/bandmap/list.php:600 +msgid "Spotter CQ Zone" +msgstr "" + +#: application/views/bandmap/list.php:567 +msgid "Search spots..." +msgstr "" + +#: application/views/bandmap/list.php:580 +msgid "Note: Map shows DXCC entity locations, not actual spot locations" +msgstr "" + +#: application/views/bandmap/list.php:588 +msgid "Age in minutes" +msgstr "" + +#: application/views/bandmap/list.php:590 +msgid "Freq" +msgstr "" + +#: application/views/bandmap/list.php:593 +msgid "Spotted Callsign" +msgstr "" + +#: application/views/bandmap/list.php:596 +msgid "Flag" +msgstr "" + +#: application/views/bandmap/list.php:597 +msgid "DXCC Entity" +msgstr "" + +#: application/views/bandmap/list.php:598 +msgid "Spotter Callsign" +msgstr "" + +#: application/views/bandmap/list.php:601 +msgid "Last QSO Date" +msgstr "" + +#: application/views/bandmap/list.php:602 +msgid "Special" +msgstr "" + +#: application/views/bandmap/list.php:602 +msgid "Special Flags" +msgstr "" + #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" msgstr "" @@ -15318,22 +15368,32 @@ msgstr "" msgid "Below is a list of active radios that are connected to Wavelog." msgstr "" -#: application/views/radio/index.php:24 +#: application/views/radio/index.php:23 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." msgstr "" -#: application/views/radio/index.php:26 application/views/search/filter.php:66 +#: application/views/radio/index.php:25 +msgid "" +"As a clubstation operator, you can set a default radio which applies only to " +"you. This allows you to have a default radio that is automatically selected " +"when you log in, while still being able to use other radios if you want." +msgstr "" + +#: application/views/radio/index.php:27 +msgid "" +"As a normal user, you can set a default radio for yourself. This allows you " +"to have a default radio that is automatically selected when you log in, " +"while still being able to use other radios if you want." +msgstr "" + +#: application/views/radio/index.php:30 #, php-format -msgid "You can find out how to use the %s in the wiki." +msgid "You can find out how to use the %sradio functions%s in the wiki." msgstr "" -#: application/views/radio/index.php:26 -msgid "radio functions" -msgstr "" - -#: application/views/radio/index.php:31 +#: application/views/radio/index.php:35 msgid "Please wait..." msgstr "" @@ -15779,6 +15839,11 @@ msgstr "" msgid "Stored queries" msgstr "" +#: application/views/search/filter.php:66 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "" + #: application/views/search/filter.php:66 msgid "search filter functions" msgstr "" diff --git a/application/locale/sq/LC_MESSAGES/messages.po b/application/locale/sq/LC_MESSAGES/messages.po index f8f6d38f2..da59c5519 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: 2026-02-13 08:13+0000\n" +"POT-Creation-Date: 2026-02-17 17:26+0000\n" "PO-Revision-Date: 2024-08-17 10:49+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Albanian \n" "Language-Team: Serbian \n" "Language-Team: Swedish \n" @@ -72,8 +72,8 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:90 application/controllers/Lotw.php:116 -#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:437 -#: application/controllers/Lotw.php:801 application/controllers/Lotw.php:888 +#: application/controllers/Lotw.php:410 application/controllers/Lotw.php:433 +#: application/controllers/Lotw.php:797 application/controllers/Lotw.php:884 #: application/controllers/Map.php:12 application/controllers/Map.php:27 #: application/controllers/Mode.php:15 application/controllers/Notes.php:10 #: application/controllers/Operator.php:13 @@ -87,8 +87,8 @@ msgstr "" #: application/controllers/Qso.php:22 application/controllers/Qso.php:288 #: application/controllers/Qso.php:419 application/controllers/Qso.php:440 #: application/controllers/Qso.php:463 application/controllers/Qso.php:763 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 -#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:320 +#: application/controllers/Radio.php:346 application/controllers/Radio.php:362 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -351,7 +351,7 @@ msgid "DOK" msgstr "DOK" #: application/controllers/Awards.php:194 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:97 application/views/bands/index.php:50 +#: application/views/bandmap/list.php:98 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:192 @@ -444,7 +444,7 @@ msgstr " och " #: application/controllers/Awards.php:595 #: application/controllers/Logbook.php:1459 -#: application/views/awards/index.php:8 application/views/bandmap/list.php:326 +#: application/views/awards/index.php:8 application/views/bandmap/list.php:327 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 #: application/views/logbookadvanced/edit.php:32 @@ -472,7 +472,7 @@ msgstr "SOTA" #: application/controllers/Awards.php:613 #: application/controllers/Logbook.php:1460 -#: application/views/bandmap/list.php:328 application/views/bands/index.php:64 +#: application/views/bandmap/list.php:329 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 @@ -494,7 +494,7 @@ msgstr "WWFF" #: application/controllers/Awards.php:631 #: application/controllers/Logbook.php:1461 -#: application/views/adif/import.php:60 application/views/bandmap/list.php:327 +#: application/views/adif/import.php:60 application/views/bandmap/list.php:328 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 @@ -650,8 +650,7 @@ msgstr "Skapa trafiksätt" msgid "Edit Band" msgstr "Redigera band" -#: application/controllers/Bandmap.php:28 -#: application/controllers/Bandmap.php:75 +#: application/controllers/Bandmap.php:56 #: application/controllers/Options.php:144 #: application/controllers/Options.php:155 #: application/views/options/sidebar.php:7 @@ -1453,7 +1452,7 @@ msgid "All callbook lookups failed or provided no results." msgstr "Alla callbook-sökningar misslyckades eller gav inga resultat." #: application/controllers/Logbook.php:1454 -#: application/controllers/Radio.php:46 +#: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 #: application/views/adif/dcl_success.php:33 @@ -1478,9 +1477,11 @@ msgstr "Alla callbook-sökningar misslyckades eller gav inga resultat." #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:167 -#: application/views/bandmap/list.php:301 -#: application/views/bandmap/list.php:568 +#: application/views/bandmap/list.php:100 +#: application/views/bandmap/list.php:168 +#: application/views/bandmap/list.php:302 +#: application/views/bandmap/list.php:551 +#: application/views/bandmap/list.php:591 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 @@ -1632,7 +1633,7 @@ msgstr "Land" #: application/controllers/Logbook.php:1458 #: application/views/awards/iota/index.php:198 -#: application/views/bandmap/list.php:329 application/views/bands/index.php:52 +#: application/views/bandmap/list.php:330 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/checkresult.php:394 @@ -1800,9 +1801,10 @@ msgstr "Avstånd" #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:168 -#: application/views/bandmap/list.php:363 -#: application/views/bandmap/list.php:566 application/views/bands/create.php:24 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:169 +#: application/views/bandmap/list.php:364 +#: application/views/bandmap/list.php:549 +#: application/views/bandmap/list.php:589 application/views/bands/create.php:24 #: application/views/bands/edit.php:7 application/views/bands/index.php:47 #: application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 @@ -1866,8 +1868,9 @@ msgid "Band" msgstr "Band" #: application/controllers/Logbook.php:1466 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 -#: application/views/bandmap/list.php:567 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:167 +#: application/views/bandmap/list.php:550 +#: application/views/bandmap/list.php:590 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:918 @@ -1893,7 +1896,7 @@ msgid "Frequency" msgstr "Frekvens" #: application/controllers/Logbook.php:1467 -#: application/controllers/Radio.php:43 +#: application/controllers/Radio.php:46 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 #: application/views/logbookadvanced/index.php:478 @@ -1981,11 +1984,11 @@ msgstr "Certifikat importerat." msgid "Certificate Updated." msgstr "Certifikat uppdaterat." -#: application/controllers/Lotw.php:420 +#: application/controllers/Lotw.php:416 msgid "Certificate Deleted." msgstr "Certifikat raderat." -#: application/controllers/Lotw.php:448 +#: application/controllers/Lotw.php:444 #, php-format msgid "" "The certificate found in file %s contains a password and cannot be " @@ -1998,7 +2001,7 @@ msgstr "" "tqsl-applikationen utan lösenord!%s För mer information, vänligen besök " "%sLoTW FAQ-sidan%s i Wavelog Wiki." -#: application/controllers/Lotw.php:450 +#: application/controllers/Lotw.php:446 #, php-format msgid "" "Generic error extracting the certificate from file %s. If the filename " @@ -2009,52 +2012,52 @@ msgstr "" "innehåller 'key-only' är det vanligtvis en certifikatbegäran som ännu inte " "har behandlats av LoTW." -#: application/controllers/Lotw.php:457 +#: application/controllers/Lotw.php:453 #, php-format msgid "Generic error processing the certificate in file %s." msgstr "Generiskt fel vid bearbetning av certifikatet i filen %s." -#: application/controllers/Lotw.php:469 +#: application/controllers/Lotw.php:465 #, php-format msgid "Generic error extracting the private key from certificate in file %s." msgstr "" "Generiskt fel vid extrahering av den privata nyckeln från certifikatet i " "filen %s." -#: application/controllers/Lotw.php:685 +#: application/controllers/Lotw.php:681 msgid "LoTW ADIF Information" msgstr "LoTW ADIF-information" -#: application/controllers/Lotw.php:858 +#: application/controllers/Lotw.php:854 msgid "Connection to LoTW failed." msgstr "Anslutning till LoTW misslyckades." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:859 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "LoTW-inloggning misslyckades för användare %s: %s." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:859 msgid "Username/password incorrect" msgstr "Användarnamn/lösenord felaktigt" -#: application/controllers/Lotw.php:866 +#: application/controllers/Lotw.php:862 msgid "LoTW currently not available. Try again later." msgstr "LoTW är för närvarande inte tillgänglig. Försök igen senare." -#: application/controllers/Lotw.php:870 +#: application/controllers/Lotw.php:866 msgid "LoTW login OK!" msgstr "LoTW-inloggning OK!" -#: application/controllers/Lotw.php:876 +#: application/controllers/Lotw.php:872 msgid "No LoTW credentials provided." msgstr "Inga LoTW detaljer angivna." -#: application/controllers/Lotw.php:894 +#: application/controllers/Lotw.php:890 msgid "LoTW ADIF Import" msgstr "LoTW ADIF-import" -#: application/controllers/Lotw.php:920 +#: application/controllers/Lotw.php:916 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Du har inte angivit dina ARRL LoTW-uppgifter!" @@ -2418,17 +2421,17 @@ msgstr "Ingen anropssignal angiven." msgid "Hardware Interfaces" msgstr "Hårdvarugränssnitt" -#: application/controllers/Radio.php:41 application/views/bandmap/list.php:20 +#: application/controllers/Radio.php:44 application/views/bandmap/list.php:21 #: application/views/contesting/index.php:157 #: application/views/qso/index.php:411 application/views/view_log/qso.php:714 msgid "Radio" msgstr "Radio" -#: application/controllers/Radio.php:47 +#: application/controllers/Radio.php:50 msgid "Timestamp" msgstr "Tidsstämpel" -#: application/controllers/Radio.php:49 +#: application/controllers/Radio.php:52 #: application/views/logbookadvanced/index.php:867 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 @@ -2437,30 +2440,34 @@ msgstr "Tidsstämpel" msgid "Options" msgstr "Alternativ" -#: application/controllers/Radio.php:50 application/views/debug/index.php:321 +#: application/controllers/Radio.php:53 application/views/debug/index.php:321 #: application/views/qso/index.php:841 msgid "Settings" msgstr "Inställningar" -#: application/controllers/Radio.php:63 +#: application/controllers/Radio.php:59 +msgid "WebSocket" +msgstr "WebSocket" + +#: application/controllers/Radio.php:65 application/controllers/Radio.php:124 +msgid "Default (click to release)" +msgstr "Standard (klicka för att släppa)" + +#: application/controllers/Radio.php:67 application/controllers/Radio.php:126 +msgid "Set as default radio" +msgstr "Ställ in som standardradio" + +#: application/controllers/Radio.php:83 msgid "UNKNOWN" msgstr "OKÄND" -#: application/controllers/Radio.php:98 application/views/bandmap/list.php:242 +#: application/controllers/Radio.php:118 application/views/bandmap/list.php:243 #: application/views/contesting/index.php:162 #: application/views/qso/index.php:416 msgid "last updated" msgstr "senast uppdaterad" -#: application/controllers/Radio.php:106 application/controllers/Radio.php:109 -msgid "Set as default radio" -msgstr "Ställ in som standardradio" - -#: application/controllers/Radio.php:111 -msgid "Default (click to release)" -msgstr "Standard (klicka för att släppa)" - -#: application/controllers/Radio.php:115 +#: application/controllers/Radio.php:128 #: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 @@ -2479,7 +2486,7 @@ msgstr "Standard (klicka för att släppa)" msgid "Edit" msgstr "Redigera" -#: application/controllers/Radio.php:116 +#: application/controllers/Radio.php:129 #: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 @@ -2508,14 +2515,31 @@ msgstr "Redigera" msgid "Delete" msgstr "Radera" -#: application/controllers/Radio.php:122 +#: application/controllers/Radio.php:136 +msgid "WebSocket is currently default (click to release)" +msgstr "WebSocket är för närvarande standard (klicka för att släppa)" + +#: application/controllers/Radio.php:138 +msgid "Set WebSocket as default radio" +msgstr "Ange WebSocket som standardradio" + +#: application/controllers/Radio.php:142 msgid "No CAT interfaced radios found." msgstr "Inga CAT-anslutna radioapparater hittades." -#: application/controllers/Radio.php:137 application/views/radio/index.php:2 +#: application/controllers/Radio.php:143 +msgid "You can still set the WebSocket option as your default radio." +msgstr "" +"Du kan fortfarande ställa in WebSocket-alternativet som din standardradio." + +#: application/controllers/Radio.php:160 application/views/radio/index.php:2 msgid "Edit CAT Settings" msgstr "Redigera CAT-inställningar" +#: application/controllers/Radio.php:332 +msgid "Radio removed successfully" +msgstr "Radio borttagen framgångsrikt" + #: application/controllers/Reg1test.php:22 msgid "Export EDI" msgstr "Exportera EDI" @@ -2594,7 +2618,7 @@ msgstr "här" msgid "Satellite Timers" msgstr "Satellittimers" -#: application/controllers/Search.php:15 application/views/bandmap/list.php:544 +#: application/controllers/Search.php:15 application/views/bandmap/list.php:567 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 @@ -2918,103 +2942,103 @@ msgstr "Förbereder DXCC-undantag: " msgid "Preparing DXCC Prefixes: " msgstr "Förbereder DXCC-prefix: " -#: application/controllers/Update.php:275 +#: application/controllers/Update.php:277 msgid "DONE" msgstr "KLAR" -#: application/controllers/Update.php:304 +#: application/controllers/Update.php:326 msgid "Updating..." msgstr "Uppdaterar..." -#: application/controllers/Update.php:307 +#: application/controllers/Update.php:329 msgid "Dxcc Entities:" msgstr "DXCC-entiteter:" -#: application/controllers/Update.php:308 +#: application/controllers/Update.php:330 msgid "Dxcc Exceptions:" msgstr "Dxcc-undantag:" -#: application/controllers/Update.php:309 +#: application/controllers/Update.php:331 msgid "Dxcc Prefixes:" msgstr "Dxcc-prefix:" -#: application/controllers/Update.php:340 +#: application/controllers/Update.php:362 msgid "SCP Update complete. Result: " msgstr "SCP-uppdatering slutförd. Resultat: " -#: application/controllers/Update.php:342 +#: application/controllers/Update.php:364 msgid "SCP Update failed. Result: " msgstr "SCP-uppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:379 +#: application/controllers/Update.php:401 msgid "LoTW Users Update complete. Result: " msgstr "LoTW-användaruppdatering slutförd. Resultat: " -#: application/controllers/Update.php:381 +#: application/controllers/Update.php:403 msgid "LoTW Users Update failed. Result: " msgstr "LoTW-användaruppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:416 +#: application/controllers/Update.php:438 msgid "DOK Update complete. Result: " msgstr "DOK-uppdatering slutförd. Resultat: " -#: application/controllers/Update.php:418 +#: application/controllers/Update.php:440 msgid "DOK Update failed. Result: " msgstr "DOK-uppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:451 +#: application/controllers/Update.php:473 msgid "SOTA Update complete. Result: " msgstr "SOTA-uppdatering slutförd. Resultat: " -#: application/controllers/Update.php:453 +#: application/controllers/Update.php:475 msgid "SOTA Update failed. Result: " msgstr "SOTA-uppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:486 +#: application/controllers/Update.php:508 msgid "WWFF Update complete. Result: " msgstr "WWFF-uppdatering slutförd. Resultat: " -#: application/controllers/Update.php:488 +#: application/controllers/Update.php:510 msgid "WWFF Update failed. Result: " msgstr "WWFF-uppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:522 +#: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " msgstr "HAMqsl-uppdatering klar. Resultat: " -#: application/controllers/Update.php:524 +#: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " msgstr "HAMqsl-uppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:557 +#: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " msgstr "POTA-uppdatering slutförd. Resultat: " -#: application/controllers/Update.php:559 +#: application/controllers/Update.php:581 msgid "POTA Update failed. Result: " msgstr "POTA-uppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:588 +#: application/controllers/Update.php:610 msgid "TLE Update complete. Result: " msgstr "TLE-uppdatering slutförd. Resultat: " -#: application/controllers/Update.php:590 +#: application/controllers/Update.php:612 msgid "TLE Update failed. Result: " msgstr "TLE-uppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:617 +#: application/controllers/Update.php:639 msgid "LoTW SAT Update" msgstr "LoTW SAT-uppdatering" -#: application/controllers/Update.php:645 +#: application/controllers/Update.php:667 msgid "Update of Hams of Note" msgstr "Uppdatering av Hams of Note" -#: application/controllers/Update.php:685 +#: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " msgstr "VUCC-locatorfiluppdatering slutförd. Resultat: " -#: application/controllers/Update.php:687 +#: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " msgstr "VUCC-lokatorfiluppdatering misslyckades. Resultat: " @@ -3549,12 +3573,12 @@ msgstr "Ingen anropssignal angiven" msgid "DXCC has to be Numeric" msgstr "DXCC måste vara numerisk" -#: application/models/Logbook_model.php:4886 +#: application/models/Logbook_model.php:4806 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "Fel anropssignal %s vid import av QSO med %s för %s: HOPPADES ÖVER" -#: application/models/Logbook_model.php:4900 +#: application/models/Logbook_model.php:4820 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3562,11 +3586,11 @@ msgstr "" "Du försökte importera ett QSO utan giltigt datum. Detta QSO importerades " "inte. Det är ogiltigt" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4829 msgid "QSO on" msgstr "QSO kl" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4829 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3574,7 +3598,7 @@ msgstr "" "Du försökte importera ett QSO utan angivet CALL. Detta QSO importerades " "inte. Det är ogiltigt" -#: application/models/Logbook_model.php:4958 +#: application/models/Logbook_model.php:4878 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3583,64 +3607,64 @@ msgstr "" "QSO på %s: Du försökte importera ett QSO utan angivet band. Detta QSO " "importerades inte. Det är ogiltigt" -#: application/models/Logbook_model.php:5231 +#: application/models/Logbook_model.php:5151 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "qslrdate är ogiltigt (ÅÅÅÅMMDD)" -#: application/models/Logbook_model.php:5242 +#: application/models/Logbook_model.php:5162 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "qslsdate är ogiltigt (ÅÅÅÅMMDD)" -#: application/models/Logbook_model.php:5303 +#: application/models/Logbook_model.php:5223 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "clublog_qso_upload_date är ogiltigt (ÅÅÅÅMMDD)" -#: application/models/Logbook_model.php:5676 +#: application/models/Logbook_model.php:5596 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Dubblett för" -#: application/models/Logbook_model.php:5741 -#: application/models/Logbook_model.php:5836 +#: application/models/Logbook_model.php:5661 +#: application/models/Logbook_model.php:5756 msgid "QSO could not be matched" msgstr "QSO kunde inte matchas" -#: application/models/Logbook_model.php:5749 +#: application/models/Logbook_model.php:5669 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "bekräftad av LoTW/Clublog/eQSL/Tävling" -#: application/models/Logbook_model.php:5755 +#: application/models/Logbook_model.php:5675 msgid "confirmed by award manager" msgstr "bekräftad av diplomansvarig" -#: application/models/Logbook_model.php:5759 +#: application/models/Logbook_model.php:5679 msgid "confirmed by cross-check of DCL data" msgstr "bekräftat genom korskontroll av DCL-data" -#: application/models/Logbook_model.php:5763 +#: application/models/Logbook_model.php:5683 msgid "confirmation pending" msgstr "bekräftelse väntar" -#: application/models/Logbook_model.php:5766 +#: application/models/Logbook_model.php:5686 msgid "unconfirmed" msgstr "obekräftad" -#: application/models/Logbook_model.php:5769 +#: application/models/Logbook_model.php:5689 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "Okänd" -#: application/models/Logbook_model.php:5839 +#: application/models/Logbook_model.php:5759 msgid "POTA reference already in log" msgstr "POTA-referens redan i loggen" -#: application/models/Logbook_model.php:5842 +#: application/models/Logbook_model.php:5762 msgid "QSO updated" msgstr "QSO uppdaterad" -#: application/models/Logbook_model.php:6236 +#: application/models/Logbook_model.php:6156 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3820,13 +3844,13 @@ msgstr "Skillnad" #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:101 -#: application/views/bandmap/list.php:295 -#: application/views/bandmap/list.php:303 -#: application/views/bandmap/list.php:325 -#: application/views/bandmap/list.php:337 -#: application/views/bandmap/list.php:351 -#: application/views/bandmap/list.php:365 application/views/bands/index.php:123 +#: application/views/bandmap/list.php:102 +#: application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:326 +#: application/views/bandmap/list.php:338 +#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:366 application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 #: application/views/callstats/index.php:24 @@ -4415,7 +4439,8 @@ msgstr "Inget hittades!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wpx/wpx_details.php:20 #: application/views/awards/wwff/index.php:35 -#: application/views/bandmap/list.php:27 application/views/bandmap/list.php:165 +#: application/views/bandmap/list.php:28 application/views/bandmap/list.php:166 +#: application/views/bandmap/list.php:555 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:147 #: application/views/calltester/comparison_result.php:60 @@ -4585,7 +4610,7 @@ msgstr "Datum" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:137 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 #: application/views/contesting/index.php:262 @@ -5218,7 +5243,7 @@ msgstr "API-URL:en för denna Wavelog-instans är" #: application/views/api/index.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 #: application/views/interface_assets/footer.php:39 -#: application/views/qso/index.php:45 application/views/radio/index.php:26 +#: application/views/qso/index.php:45 application/views/radio/index.php:30 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -5496,7 +5521,8 @@ msgstr "Totalt" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:193 -#: application/views/bandmap/list.php:572 application/views/csv/index.php:80 +#: application/views/bandmap/list.php:557 +#: application/views/bandmap/list.php:595 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 #: application/views/gridmap/index.php:236 application/views/kml/index.php:65 #: application/views/logbookadvanced/checkresult.php:246 @@ -5681,7 +5707,7 @@ msgstr "Datum till" #: application/views/awards/wab/list.php:6 #: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 +#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 #: application/views/dashboard/index.php:342 #: application/views/dashboard/index.php:460 #: application/views/interface_assets/footer.php:45 @@ -5693,7 +5719,7 @@ msgstr "Bekräftade" #: application/views/awards/cq/index.php:88 #: application/views/awards/itu/index.php:38 #: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 +#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 #: application/views/dashboard/index.php:338 #: application/views/dashboard/index.php:454 #: application/views/search/result.php:35 @@ -6037,8 +6063,8 @@ msgstr "Inkludera strukna" #: application/views/awards/dxcc/index.php:142 #: application/views/awards/iota/index.php:90 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/list.php:339 -#: application/views/bandmap/list.php:353 +#: application/views/bandmap/list.php:340 +#: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 #: application/views/logbookadvanced/index.php:491 #: application/views/lookup/index.php:60 @@ -6051,8 +6077,8 @@ msgstr "Antarktis" #: application/views/awards/dxcc/index.php:146 #: application/views/awards/iota/index.php:94 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/list.php:338 -#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:339 +#: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:218 #: application/views/logbookadvanced/index.php:490 #: application/views/lookup/index.php:59 @@ -6065,8 +6091,8 @@ msgstr "Afrika" #: application/views/awards/dxcc/index.php:150 #: application/views/awards/iota/index.php:98 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/list.php:340 -#: application/views/bandmap/list.php:354 +#: application/views/bandmap/list.php:341 +#: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:221 #: application/views/logbookadvanced/index.php:493 #: application/views/lookup/index.php:62 @@ -6079,8 +6105,8 @@ msgstr "Asien" #: application/views/awards/dxcc/index.php:154 #: application/views/awards/iota/index.php:102 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/list.php:341 -#: application/views/bandmap/list.php:355 +#: application/views/bandmap/list.php:342 +#: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:222 #: application/views/logbookadvanced/index.php:494 #: application/views/lookup/index.php:63 @@ -6093,8 +6119,8 @@ msgstr "Europa" #: application/views/awards/dxcc/index.php:158 #: application/views/awards/iota/index.php:106 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/list.php:342 -#: application/views/bandmap/list.php:356 +#: application/views/bandmap/list.php:343 +#: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:220 #: application/views/logbookadvanced/index.php:492 #: application/views/lookup/index.php:61 @@ -6107,8 +6133,8 @@ msgstr "Nordamerika" #: application/views/awards/dxcc/index.php:162 #: application/views/awards/iota/index.php:110 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/list.php:344 -#: application/views/bandmap/list.php:358 +#: application/views/bandmap/list.php:345 +#: application/views/bandmap/list.php:359 #: application/views/logbookadvanced/edit.php:223 #: application/views/logbookadvanced/index.php:495 #: application/views/lookup/index.php:64 @@ -6121,8 +6147,8 @@ msgstr "Sydamerika" #: application/views/awards/dxcc/index.php:166 #: application/views/awards/iota/index.php:114 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/list.php:343 -#: application/views/bandmap/list.php:357 +#: application/views/bandmap/list.php:344 +#: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:224 #: application/views/logbookadvanced/index.php:496 #: application/views/lookup/index.php:65 @@ -6728,7 +6754,7 @@ msgstr "FONI" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 -#: application/views/bandmap/list.php:305 +#: application/views/bandmap/list.php:306 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" @@ -7068,8 +7094,9 @@ msgid "Awards - Worked All Continents (WAC)" msgstr "Diplom - Worked All Continents (WAC)" #: application/views/awards/wac/index.php:152 -#: application/views/bandmap/list.php:100 -#: application/views/bandmap/list.php:571 +#: application/views/bandmap/list.php:101 +#: application/views/bandmap/list.php:556 +#: application/views/bandmap/list.php:594 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 #: application/views/logbookadvanced/index.php:486 @@ -7431,279 +7458,279 @@ msgstr "" "Säkerhetskopieringen av dina anteckningar slutfördes framgångsrikt. Kopian " "finns på" -#: application/views/bandmap/list.php:11 +#: application/views/bandmap/list.php:12 msgid "Click to prepare logging." msgstr "Klicka för att förbereda loggning." -#: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:12 application/views/bandmap/list.php:132 msgid "to tune frequency" msgstr "ställa in frekvens" -#: application/views/bandmap/list.php:14 +#: application/views/bandmap/list.php:15 msgid "Pop-up Blocked" msgstr "Pop-up Blockerad" -#: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 +#: application/views/bandmap/list.php:16 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "Popup blockerades! Tillåt pop-ups för den här webbplatsen permanent." -#: application/views/bandmap/list.php:16 +#: application/views/bandmap/list.php:17 msgid "CAT Connection Required" msgstr "CAT-anslutning krävs" -#: application/views/bandmap/list.php:17 +#: application/views/bandmap/list.php:18 msgid "Enable CAT connection to tune the radio" msgstr "Aktivera CAT-anslutning för att kontrollera radion" -#: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 +#: application/views/bandmap/list.php:19 application/views/bandmap/list.php:412 msgid "Clear Filters" msgstr "Rensa filter" -#: application/views/bandmap/list.php:19 +#: application/views/bandmap/list.php:20 msgid "Band filter preserved (band lock is active)" msgstr "Bandfilter bevarat (bandlås är aktivt)" -#: application/views/bandmap/list.php:21 +#: application/views/bandmap/list.php:22 msgid "Radio set to None - CAT connection disabled" msgstr "Radio inställd på Ingen - CAT-anslutning inaktiverad" -#: application/views/bandmap/list.php:22 +#: application/views/bandmap/list.php:23 msgid "Radio Tuned" msgstr "Radio inställd" -#: application/views/bandmap/list.php:23 +#: application/views/bandmap/list.php:24 msgid "Tuned to" msgstr "Inställd på" -#: application/views/bandmap/list.php:24 +#: application/views/bandmap/list.php:25 msgid "Tuning Failed" msgstr "Inställning misslyckades" -#: application/views/bandmap/list.php:25 +#: application/views/bandmap/list.php:26 msgid "Failed to tune radio to frequency" msgstr "Misslyckades med att ställa in frekvensen på radion" -#: application/views/bandmap/list.php:26 +#: application/views/bandmap/list.php:27 msgid "QSO Prepared" msgstr "QSO Förberedd" -#: application/views/bandmap/list.php:28 +#: application/views/bandmap/list.php:29 msgid "sent to logging form" msgstr "skickat till loggningsformulär" -#: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 +#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:230 msgid "CAT Connection" msgstr "CAT-anslutning" -#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 +#: application/views/bandmap/list.php:31 application/views/bandmap/list.php:229 msgid "Click to enable CAT connection" msgstr "Klicka för att aktivera CAT-anslutning" -#: application/views/bandmap/list.php:31 +#: application/views/bandmap/list.php:32 msgid "CAT following radio - Click to disable" msgstr "CAT följer radio - Klicka för att inaktivera" -#: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 +#: application/views/bandmap/list.php:33 application/views/bandmap/list.php:232 msgid "Click to enable band lock (requires CAT connection)" msgstr "Klicka för att aktivera bandlås (kräver CAT-anslutning)" -#: application/views/bandmap/list.php:33 +#: application/views/bandmap/list.php:34 msgid "Band lock active - Click to disable" msgstr "Bandlås aktivt - Klicka för att inaktivera" -#: application/views/bandmap/list.php:34 +#: application/views/bandmap/list.php:35 msgid "Band Lock" msgstr "Bandlås" -#: application/views/bandmap/list.php:35 +#: application/views/bandmap/list.php:36 msgid "Band lock enabled - band filter will track radio band" msgstr "Bandlås aktiverat - bandfiltret följer radions band" -#: application/views/bandmap/list.php:36 +#: application/views/bandmap/list.php:37 msgid "Band filter changed to" msgstr "Bandfilter ändrat till" -#: application/views/bandmap/list.php:37 +#: application/views/bandmap/list.php:38 msgid "by transceiver" msgstr "från transceiver" -#: application/views/bandmap/list.php:38 +#: application/views/bandmap/list.php:39 msgid "Frequency filter set to" msgstr "Frekvensfiltret inställt på" -#: application/views/bandmap/list.php:39 +#: application/views/bandmap/list.php:40 msgid "Frequency outside known bands - showing all bands" msgstr "Frekvens utanför kända band - visar alla band" -#: application/views/bandmap/list.php:40 +#: application/views/bandmap/list.php:41 msgid "Waiting for radio data..." msgstr "Väntar på radiodata..." -#: application/views/bandmap/list.php:41 +#: application/views/bandmap/list.php:42 msgid "My Favorites" msgstr "Mina favoriter" -#: application/views/bandmap/list.php:42 +#: application/views/bandmap/list.php:43 msgid "Failed to load favorites" msgstr "Det gick inte att läsa in favoriterna" -#: application/views/bandmap/list.php:43 +#: application/views/bandmap/list.php:44 msgid "Modes applied. Band filter preserved (CAT connection is active)" msgstr "Trafiksätt tillämpat. Bandfiltret bevarat (CAT-anslutningen är aktiv)" -#: application/views/bandmap/list.php:44 +#: application/views/bandmap/list.php:45 msgid "Applied your favorite bands and modes" msgstr "Tillämpar dina favorit band och trafiksätt" -#: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 -#: application/views/bandmap/list.php:479 +#: application/views/bandmap/list.php:48 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:480 msgid "My Submodes" msgstr "Mina Subtrafiksätt" -#: application/views/bandmap/list.php:48 +#: application/views/bandmap/list.php:49 msgid "Submode filter enabled" msgstr "Filter för Subtrafiksätt aktiverat" -#: application/views/bandmap/list.php:49 +#: application/views/bandmap/list.php:50 msgid "Submode filter disabled - showing all" msgstr "Filtret för Subtrafiksätt avaktiverat - visar alla" -#: application/views/bandmap/list.php:50 +#: application/views/bandmap/list.php:51 msgid "Required submodes" msgstr "Krävda subtrafiksätt" -#: application/views/bandmap/list.php:51 +#: application/views/bandmap/list.php:52 msgid "Configure in User Settings - Modes" msgstr "Konfigurera under Användarinställningar - Trafiksätt" -#: application/views/bandmap/list.php:52 +#: application/views/bandmap/list.php:53 msgid "No submodes configured - configure in User Settings - Modes" msgstr "" "Inga subtrafiksätt tillagda - konfigurera i Användarinställningar - " "Trafiksätt" -#: application/views/bandmap/list.php:53 +#: application/views/bandmap/list.php:54 msgid "No submodes enabled in settings - showing all spots" msgstr "Inga subtrafiksätt aktiverade i inställningarna - visar alla spots" -#: application/views/bandmap/list.php:54 +#: application/views/bandmap/list.php:55 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "" "Inaktiverad - inga subtrafiksätt i användarinställningarna har aktiverats " "för detta trafiksätt" -#: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 +#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 #: application/views/components/dxwaterfall.php:32 msgid "Toggle CW mode filter" msgstr "Växla filter för CW trafiksätt" -#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 +#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 #: application/views/components/dxwaterfall.php:34 msgid "Toggle Digital mode filter" msgstr "Växla filter för digitala trafiksätt" -#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 +#: application/views/bandmap/list.php:58 application/views/bandmap/list.php:471 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" msgstr "Växla filter för Foni trafiksätt" -#: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 +#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:422 msgid "Favorites" msgstr "Favoriter" -#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 +#: application/views/bandmap/list.php:62 application/views/bandmap/list.php:425 msgid "Save Current Filters..." msgstr "Spara nuvarande filter..." -#: application/views/bandmap/list.php:62 +#: application/views/bandmap/list.php:63 msgid "Enter a name for this filter preset:" msgstr "Ange ett namn för det här filterförvalet:" -#: application/views/bandmap/list.php:63 +#: application/views/bandmap/list.php:64 msgid "Filter preset saved" msgstr "Filterförval sparad" -#: application/views/bandmap/list.php:64 +#: application/views/bandmap/list.php:65 msgid "Filter preset loaded" msgstr "Filterförval laddat" -#: application/views/bandmap/list.php:65 +#: application/views/bandmap/list.php:66 msgid "Filter preset deleted" msgstr "Filterförval borttaget" -#: application/views/bandmap/list.php:66 +#: application/views/bandmap/list.php:67 msgid "Are you sure to delete this filter preset?" msgstr "Är du säker på att du vill ta bort detta filterförval?" -#: application/views/bandmap/list.php:67 +#: application/views/bandmap/list.php:68 msgid "No saved filter presets" msgstr "Inga sparade filterförval" -#: application/views/bandmap/list.php:68 +#: application/views/bandmap/list.php:69 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." msgstr "" "Maximala 20 filterförval har nåtts. Ta bort några innan du lägger till nya." -#: application/views/bandmap/list.php:71 +#: application/views/bandmap/list.php:72 msgid "Loading data from DX Cluster" msgstr "Laddar data från DX-kluster" -#: application/views/bandmap/list.php:72 +#: application/views/bandmap/list.php:73 msgid "Last fetched for" msgstr "Senast hämtad för" -#: application/views/bandmap/list.php:73 +#: application/views/bandmap/list.php:74 msgid "Max Age" msgstr "Max-ålder" -#: application/views/bandmap/list.php:74 +#: application/views/bandmap/list.php:75 msgid "Fetched at" msgstr "Hämtad kl" -#: application/views/bandmap/list.php:75 +#: application/views/bandmap/list.php:76 msgid "Next update in" msgstr "Nästa uppdatering om" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:77 msgid "minutes" msgstr "minuter" -#: application/views/bandmap/list.php:77 +#: application/views/bandmap/list.php:78 msgid "seconds" msgstr "sekunder" -#: application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:79 msgid "spots fetched" msgstr "spots hämtade" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 msgid "showing" msgstr "visar" -#: application/views/bandmap/list.php:80 +#: application/views/bandmap/list.php:81 msgid "showing all" msgstr "visar alla" -#: application/views/bandmap/list.php:81 +#: application/views/bandmap/list.php:82 msgid "Active filters" msgstr "Aktiva filter" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Fetching..." msgstr "Hämtar..." -#: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 #: application/views/interface_assets/footer.php:47 msgid "Not worked" msgstr "Ej kontaktade" -#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 +#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:300 msgid "Worked, not Confirmed" msgstr "Kontaktade, ej Bekräftade" -#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:316 #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:70 @@ -7711,46 +7738,46 @@ msgstr "Kontaktade, ej Bekräftade" msgid "LoTW User" msgstr "LoTW-användare" -#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 +#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:319 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" msgstr "Ny anropssignal" -#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 +#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 #: application/views/components/dxwaterfall.php:16 msgid "New Continent" msgstr "Ny kontinent" -#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 +#: application/views/bandmap/list.php:93 application/views/bandmap/list.php:318 msgid "New Country" msgstr "Nytt land" -#: application/views/bandmap/list.php:93 +#: application/views/bandmap/list.php:94 msgid "Worked Before" msgstr "Kontaktad tidigare" -#: application/views/bandmap/list.php:94 +#: application/views/bandmap/list.php:95 #, php-format msgid "Worked on %s with %s" msgstr "Kontaktade %s med %s" -#: application/views/bandmap/list.php:102 -#: application/views/bandmap/list.php:575 +#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:598 msgid "de" msgstr "de" -#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:104 msgid "spotted" msgstr "spottad" -#: application/views/bandmap/list.php:106 +#: application/views/bandmap/list.php:107 msgid "Fresh spot (< 5 minutes old)" msgstr "Färsk spot (< 5 minuter gammal)" -#: application/views/bandmap/list.php:107 #: application/views/bandmap/list.php:108 -#: application/views/bandmap/list.php:320 -#: application/views/bandmap/list.php:510 +#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:511 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:482 @@ -7761,101 +7788,103 @@ msgstr "Färsk spot (< 5 minuter gammal)" msgid "Contest" msgstr "Tävling" -#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:110 msgid "Click to view" msgstr "Klicka för att visa" -#: application/views/bandmap/list.php:110 +#: application/views/bandmap/list.php:111 msgid "on QRZ.com" msgstr "på QRZ.com" -#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:112 #, php-format msgid "Click to view %s on QRZ.com" msgstr "Klicka för att se %s på QRZ.com" -#: application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:113 msgid "See details for" msgstr "Se detaljer för" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Worked on" msgstr "Kontaktad" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "Not worked on this band" msgstr "Ej kontaktad på det här bandet" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 #, php-format msgid "LoTW User. Last upload was %d days ago" msgstr "LoTW-användare. Senaste uppladdningen var för %d dagar sedan" -#: application/views/bandmap/list.php:116 +#: application/views/bandmap/list.php:117 msgid "Click to view on POTA.app" msgstr "Klicka för att visa på POTA.app" -#: application/views/bandmap/list.php:117 +#: application/views/bandmap/list.php:118 msgid "Click to view on SOTL.as" msgstr "Klicka för att visa på SOTL.as" -#: application/views/bandmap/list.php:118 +#: application/views/bandmap/list.php:119 msgid "Click to view on cqgma.org" msgstr "Klicka för att visa på cqgma.org" -#: application/views/bandmap/list.php:119 +#: application/views/bandmap/list.php:120 msgid "Click to view on IOTA-World.org" msgstr "Klicka för att visa på IOTA-World.org" -#: application/views/bandmap/list.php:120 +#: application/views/bandmap/list.php:121 msgid "See details for continent" msgstr "Se detaljer för kontinenten" -#: application/views/bandmap/list.php:121 +#: application/views/bandmap/list.php:122 #, php-format msgid "See details for continent %s" msgstr "Se detaljer för kontinent %s" -#: application/views/bandmap/list.php:122 +#: application/views/bandmap/list.php:123 msgid "See details for CQ Zone" msgstr "Se detaljer för CQ-zonen" -#: application/views/bandmap/list.php:123 +#: application/views/bandmap/list.php:124 #, php-format msgid "See details for CQ Zone %s" msgstr "Se detaljer för CQ-zon %s" -#: application/views/bandmap/list.php:124 +#: application/views/bandmap/list.php:125 msgid "in" msgstr "i" -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 msgid "Exit Fullscreen" msgstr "Avsluta helskärmsläge" -#: application/views/bandmap/list.php:128 -#: application/views/bandmap/list.php:214 +#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:215 msgid "Toggle Fullscreen" msgstr "Växla till helskärm" -#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:130 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "Band filtreringen styrs av din radio när CAT-anslutningen är aktiverad" -#: application/views/bandmap/list.php:130 +#: application/views/bandmap/list.php:131 msgid "Click to prepare logging" msgstr "Klicka för att förbereda loggning" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "(requires CAT connection)" msgstr "(kräver CAT-anslutning)" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:561 +#: application/views/bandmap/list.php:562 msgid "Spotter" msgstr "Spotter" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 @@ -7868,110 +7897,111 @@ msgstr "Spotter" msgid "Comment" msgstr "Notering" -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:548 #: application/views/contesting/index.php:65 msgid "Age" msgstr "Ålder" -#: application/views/bandmap/list.php:137 +#: application/views/bandmap/list.php:138 msgid "Incoming" msgstr "Inkommande" -#: application/views/bandmap/list.php:138 +#: application/views/bandmap/list.php:139 msgid "Outgoing" msgstr "Utgående" -#: application/views/bandmap/list.php:139 +#: application/views/bandmap/list.php:140 #: application/views/components/dxwaterfall.php:15 msgid "spots" msgstr "spottar" -#: application/views/bandmap/list.php:140 +#: application/views/bandmap/list.php:141 msgid "spot" msgstr "spot" -#: application/views/bandmap/list.php:141 +#: application/views/bandmap/list.php:142 msgid "spotters" msgstr "spottare" -#: application/views/bandmap/list.php:144 +#: application/views/bandmap/list.php:145 msgid "Please Wait" msgstr "Vänligen vänta" -#: application/views/bandmap/list.php:145 +#: application/views/bandmap/list.php:146 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "" "Vänligen vänta %s sekunder innan du skickar en annan anropssignal till QSO-" "formuläret" -#: application/views/bandmap/list.php:148 +#: application/views/bandmap/list.php:149 msgid "Loading spots..." msgstr "Laddar spots..." -#: application/views/bandmap/list.php:149 +#: application/views/bandmap/list.php:150 msgid "No spots found" msgstr "Inga spottar hittades" -#: application/views/bandmap/list.php:150 +#: application/views/bandmap/list.php:151 msgid "No data available" msgstr "Ingen data tillgänglig" -#: application/views/bandmap/list.php:151 +#: application/views/bandmap/list.php:152 msgid "No spots found for selected filters" msgstr "Inga spottar hittades för valda filter" -#: application/views/bandmap/list.php:152 +#: application/views/bandmap/list.php:153 msgid "Error loading spots. Please try again." msgstr "Fel vid inläsning av spots. Försök igen." -#: application/views/bandmap/list.php:155 +#: application/views/bandmap/list.php:156 msgid "Show all modes" msgstr "Visa alla trafiksätt" -#: application/views/bandmap/list.php:156 +#: application/views/bandmap/list.php:157 msgid "Show all spots" msgstr "Visa alla spottar" -#: application/views/bandmap/list.php:161 +#: application/views/bandmap/list.php:162 msgid "Draw Spotters" msgstr "Visa Spottare" -#: application/views/bandmap/list.php:162 +#: application/views/bandmap/list.php:163 msgid "Extend Map" msgstr "Utöka karta" -#: application/views/bandmap/list.php:163 +#: application/views/bandmap/list.php:164 msgid "Show Day/Night" msgstr "Visa dag/natt" -#: application/views/bandmap/list.php:164 +#: application/views/bandmap/list.php:165 msgid "Your QTH" msgstr "Ditt QTH" -#: application/views/bandmap/list.php:200 +#: application/views/bandmap/list.php:201 msgid "Return to Home" msgstr "Återvänd hem" -#: application/views/bandmap/list.php:203 +#: application/views/bandmap/list.php:204 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" msgstr "DX-kluster" -#: application/views/bandmap/list.php:207 +#: application/views/bandmap/list.php:208 msgid "DX Cluster Help" msgstr "DX-kluster hjälp" -#: application/views/bandmap/list.php:210 +#: application/views/bandmap/list.php:211 msgid "Compact Mode - Hide/Show Menu" msgstr "Kompakt Läge - Dölj/Visa meny" -#: application/views/bandmap/list.php:237 +#: application/views/bandmap/list.php:238 msgid "TRX:" msgstr "TRX:" -#: application/views/bandmap/list.php:239 -#: application/views/bandmap/list.php:313 +#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:314 #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 @@ -7979,316 +8009,281 @@ msgstr "TRX:" msgid "None" msgstr "Ingen" -#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:241 #: application/views/contesting/index.php:160 #: application/views/qso/index.php:414 msgid "Live - WebSocket" msgstr "Live - WebSocket" -#: application/views/bandmap/list.php:242 application/views/qso/index.php:416 +#: application/views/bandmap/list.php:243 application/views/qso/index.php:416 msgid "Polling - " msgstr "Polling - " -#: application/views/bandmap/list.php:251 +#: application/views/bandmap/list.php:252 msgid "de:" msgstr "de:" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "Select all continents" msgstr "Välj alla kontinenter" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "World" msgstr "Värld" -#: application/views/bandmap/list.php:254 +#: application/views/bandmap/list.php:255 msgid "Toggle Africa continent filter" msgstr "Växla filter för den Afrikanska kontinenten" -#: application/views/bandmap/list.php:255 +#: application/views/bandmap/list.php:256 msgid "Toggle Antarctica continent filter" msgstr "Växla filter för den Antarktiska kontinenten" -#: application/views/bandmap/list.php:256 +#: application/views/bandmap/list.php:257 msgid "Toggle Asia continent filter" msgstr "Växla filter för den Asiatiska kontinenten" -#: application/views/bandmap/list.php:257 +#: application/views/bandmap/list.php:258 msgid "Toggle Europe continent filter" msgstr "Växla filter för den Europeiska kontinenten" -#: application/views/bandmap/list.php:258 +#: application/views/bandmap/list.php:259 msgid "Toggle North America continent filter" msgstr "Växla filter för den Nordamerikanska kontinenten" -#: application/views/bandmap/list.php:259 +#: application/views/bandmap/list.php:260 msgid "Toggle Oceania continent filter" msgstr "Växla filter för den Oceaniska kontinenten" -#: application/views/bandmap/list.php:260 +#: application/views/bandmap/list.php:261 msgid "Toggle South America continent filter" msgstr "Växla filter för den Sydamerikanska kontinenten" -#: application/views/bandmap/list.php:273 +#: application/views/bandmap/list.php:274 msgid "Advanced Filters" msgstr "Avancerade filter" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "Hold" msgstr "Håll" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "and click to select multiple options" msgstr "och klicka för att välja flera alternativ" -#: application/views/bandmap/list.php:293 +#: application/views/bandmap/list.php:294 msgid "DXCC-Status" msgstr "DXCC-status" -#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:305 #: application/views/components/dxwaterfall.php:31 msgid "Phone" msgstr "Foni" -#: application/views/bandmap/list.php:306 +#: application/views/bandmap/list.php:307 #: application/views/components/dxwaterfall.php:35 msgid "Digi" msgstr "Digi" -#: application/views/bandmap/list.php:311 +#: application/views/bandmap/list.php:312 msgid "Required Flags" msgstr "Nödvändiga flaggor" -#: application/views/bandmap/list.php:319 +#: application/views/bandmap/list.php:320 msgid "Worked Callsign" msgstr "Kontaktad anropssignal" -#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:322 msgid "DX Spot" msgstr "DX Spot" -#: application/views/bandmap/list.php:323 +#: application/views/bandmap/list.php:324 msgid "Additional Flags" msgstr "Ytterligare flaggor" -#: application/views/bandmap/list.php:330 +#: application/views/bandmap/list.php:331 msgid "Fresh (< 5 min)" msgstr "Färsk (< 5 min)" -#: application/views/bandmap/list.php:335 +#: application/views/bandmap/list.php:336 msgid "Spots de Continent" msgstr "Spottar de Kontinent" -#: application/views/bandmap/list.php:349 +#: application/views/bandmap/list.php:350 msgid "Spotted Station Continent" msgstr "Spottad stations kontinent" -#: application/views/bandmap/list.php:409 +#: application/views/bandmap/list.php:410 msgid "Apply Filters" msgstr "Tillämpa filter" -#: application/views/bandmap/list.php:420 +#: application/views/bandmap/list.php:421 msgid "Filter Favorites" msgstr "Filtrera favoriter" -#: application/views/bandmap/list.php:430 +#: application/views/bandmap/list.php:431 msgid "Clear all filters except De Continent" msgstr "Rensa alla filter förutom De Kontinent" -#: application/views/bandmap/list.php:436 +#: application/views/bandmap/list.php:437 msgid "Toggle 160m band filter" msgstr "Växla 160m bandfilter" -#: application/views/bandmap/list.php:440 +#: application/views/bandmap/list.php:441 msgid "Toggle 80m band filter" msgstr "Växla 80m bandfilter" -#: application/views/bandmap/list.php:441 +#: application/views/bandmap/list.php:442 msgid "Toggle 60m band filter" msgstr "Växla 60m bandfilter" -#: application/views/bandmap/list.php:442 +#: application/views/bandmap/list.php:443 msgid "Toggle 40m band filter" msgstr "Växla 40m bandfilter" -#: application/views/bandmap/list.php:443 +#: application/views/bandmap/list.php:444 msgid "Toggle 30m band filter" msgstr "Växla 30m bandfilter" -#: application/views/bandmap/list.php:444 +#: application/views/bandmap/list.php:445 msgid "Toggle 20m band filter" msgstr "Växla 20m bandfilter" -#: application/views/bandmap/list.php:445 +#: application/views/bandmap/list.php:446 msgid "Toggle 17m band filter" msgstr "Växla 17m bandfilter" -#: application/views/bandmap/list.php:446 +#: application/views/bandmap/list.php:447 msgid "Toggle 15m band filter" msgstr "Växla 15m bandfilter" -#: application/views/bandmap/list.php:447 +#: application/views/bandmap/list.php:448 msgid "Toggle 12m band filter" msgstr "Växla 12m bandfilter" -#: application/views/bandmap/list.php:448 +#: application/views/bandmap/list.php:449 msgid "Toggle 10m band filter" msgstr "Växla 10m bandfilter" -#: application/views/bandmap/list.php:452 +#: application/views/bandmap/list.php:453 msgid "Toggle 6m band filter" msgstr "Växla 6m-bandfilter" -#: application/views/bandmap/list.php:456 +#: application/views/bandmap/list.php:457 msgid "Toggle VHF bands filter" msgstr "Växla VHF-bandfilter" -#: application/views/bandmap/list.php:457 +#: application/views/bandmap/list.php:458 msgid "Toggle UHF bands filter" msgstr "Växla UHF-bandfilter" -#: application/views/bandmap/list.php:458 +#: application/views/bandmap/list.php:459 msgid "Toggle SHF bands filter" msgstr "Växla SHF-bandfilter" -#: application/views/bandmap/list.php:478 +#: application/views/bandmap/list.php:479 msgid "Loading submodes..." msgstr "Laddar subtrafiksätt..." -#: application/views/bandmap/list.php:483 +#: application/views/bandmap/list.php:484 msgid "Toggle LoTW User filter" msgstr "Växla LoTW-användarfilter" -#: application/views/bandmap/list.php:484 +#: application/views/bandmap/list.php:485 msgid "LoTW users" msgstr "LoTW-användare" -#: application/views/bandmap/list.php:490 +#: application/views/bandmap/list.php:491 msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" msgstr "Växla DX Spot-filter (spotted kontinent ≠ spotter kontinent)" -#: application/views/bandmap/list.php:491 -#: application/views/bandmap/list.php:570 +#: application/views/bandmap/list.php:492 +#: application/views/bandmap/list.php:593 msgid "DX" msgstr "DX" -#: application/views/bandmap/list.php:493 +#: application/views/bandmap/list.php:494 msgid "Toggle New Continents filter" msgstr "Växla Nya kontinenter-filter" -#: application/views/bandmap/list.php:494 +#: application/views/bandmap/list.php:495 msgid "New Continents" msgstr "Nya kontinenter" -#: application/views/bandmap/list.php:496 +#: application/views/bandmap/list.php:497 msgid "Toggle New Entities filter" msgstr "Växla filtret för nya Entiteter" -#: application/views/bandmap/list.php:497 +#: application/views/bandmap/list.php:498 msgid "New Entities" msgstr "Nya Entiteter" -#: application/views/bandmap/list.php:499 +#: application/views/bandmap/list.php:500 msgid "Toggle New Callsigns filter" msgstr "Växla filter för nya anropssignaler" -#: application/views/bandmap/list.php:500 +#: application/views/bandmap/list.php:501 msgid "New Callsigns" msgstr "Nya anropssignaler" -#: application/views/bandmap/list.php:506 +#: application/views/bandmap/list.php:507 msgid "Toggle Fresh spots filter (< 5 minutes old)" msgstr "Växla filter för nya spots (< 5 minuter gamla)" -#: application/views/bandmap/list.php:507 +#: application/views/bandmap/list.php:508 msgid "Fresh" msgstr "Färsk" -#: application/views/bandmap/list.php:509 +#: application/views/bandmap/list.php:510 msgid "Toggle Contest filter" msgstr "Växla tävlingsfilter" -#: application/views/bandmap/list.php:512 +#: application/views/bandmap/list.php:513 msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" msgstr "Växla Geo Hunter (POTA/SOTA/IOTA/WWFF)" -#: application/views/bandmap/list.php:513 +#: application/views/bandmap/list.php:514 msgid "Referenced" msgstr "Refererad" -#: application/views/bandmap/list.php:519 +#: application/views/bandmap/list.php:520 msgid "Open DX Map view" msgstr "Öppna DX-kartvy" -#: application/views/bandmap/list.php:520 +#: application/views/bandmap/list.php:521 msgid "DX Map" msgstr "DX-karta" -#: application/views/bandmap/list.php:544 -msgid "Search spots..." -msgstr "Sök spottar..." +#: application/views/bandmap/list.php:545 +msgid "Search Column" +msgstr "Sök kolumn" -#: application/views/bandmap/list.php:557 -msgid "Note: Map shows DXCC entity locations, not actual spot locations" -msgstr "" -"Observera: Kartan visar DXCC-entitet positioner, inte faktiska spot " -"positioner" +#: application/views/bandmap/list.php:546 +msgid "All Columns" +msgstr "Alla kolumner" -#: application/views/bandmap/list.php:565 -msgid "Age in minutes" -msgstr "Ålder i minuter" +#: application/views/bandmap/list.php:547 +msgid "Spot Info" +msgstr "Spot Info" -#: application/views/bandmap/list.php:567 -msgid "Freq" -msgstr "Frek" - -#: application/views/bandmap/list.php:569 +#: application/views/bandmap/list.php:552 +#: application/views/bandmap/list.php:592 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" msgstr "Subtrafiksätt" -#: application/views/bandmap/list.php:570 -msgid "Spotted Callsign" -msgstr "Spottad Anropssignal" +#: application/views/bandmap/list.php:554 +msgid "DX Station" +msgstr "DX-station" -#: application/views/bandmap/list.php:573 -msgid "Flag" -msgstr "Flagga" - -#: application/views/bandmap/list.php:574 -msgid "DXCC Entity" -msgstr "DXCC-entitet" - -#: application/views/bandmap/list.php:574 +#: application/views/bandmap/list.php:558 +#: application/views/bandmap/list.php:597 msgid "Entity" msgstr "Entitet" -#: application/views/bandmap/list.php:575 -msgid "Spotter Callsign" -msgstr "Spotter Anropssignal" - -#: application/views/bandmap/list.php:576 -msgid "Spotter Continent" -msgstr "Spotter Kontinent" - -#: application/views/bandmap/list.php:577 -msgid "Spotter CQ Zone" -msgstr "Spotter CQ-zon" - -#: application/views/bandmap/list.php:578 -msgid "Last QSO Date" -msgstr "Senaste QSO-datum" - -#: application/views/bandmap/list.php:579 -msgid "Special" -msgstr "Speciell" - -#: application/views/bandmap/list.php:579 -msgid "Special Flags" -msgstr "Speciella flaggor" - -#: application/views/bandmap/list.php:580 +#: application/views/bandmap/list.php:559 +#: application/views/bandmap/list.php:603 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -8296,6 +8291,62 @@ msgstr "Speciella flaggor" msgid "Message" msgstr "Meddelande" +#: application/views/bandmap/list.php:563 +#: application/views/bandmap/list.php:599 +msgid "Spotter Continent" +msgstr "Spotter Kontinent" + +#: application/views/bandmap/list.php:564 +#: application/views/bandmap/list.php:600 +msgid "Spotter CQ Zone" +msgstr "Spotter CQ-zon" + +#: application/views/bandmap/list.php:567 +msgid "Search spots..." +msgstr "Sök spottar..." + +#: application/views/bandmap/list.php:580 +msgid "Note: Map shows DXCC entity locations, not actual spot locations" +msgstr "" +"Observera: Kartan visar DXCC-entitet positioner, inte faktiska spot " +"positioner" + +#: application/views/bandmap/list.php:588 +msgid "Age in minutes" +msgstr "Ålder i minuter" + +#: application/views/bandmap/list.php:590 +msgid "Freq" +msgstr "Frek" + +#: application/views/bandmap/list.php:593 +msgid "Spotted Callsign" +msgstr "Spottad Anropssignal" + +#: application/views/bandmap/list.php:596 +msgid "Flag" +msgstr "Flagga" + +#: application/views/bandmap/list.php:597 +msgid "DXCC Entity" +msgstr "DXCC-entitet" + +#: application/views/bandmap/list.php:598 +msgid "Spotter Callsign" +msgstr "Spotter Anropssignal" + +#: application/views/bandmap/list.php:601 +msgid "Last QSO Date" +msgstr "Senaste QSO-datum" + +#: application/views/bandmap/list.php:602 +msgid "Special" +msgstr "Speciell" + +#: application/views/bandmap/list.php:602 +msgid "Special Flags" +msgstr "Speciella flaggor" + #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" msgstr "Vänligen ange giltiga nummer för frekvens" @@ -13012,7 +13063,7 @@ msgstr "" #: application/views/logbookadvanced/dbtoolsdialog.php:19 msgid "All Station Locations" -msgstr "" +msgstr "Alla stationsplatser" #: application/views/logbookadvanced/dbtoolsdialog.php:33 msgid "Check all QSOs in the logbook for incorrect CQ Zones" @@ -16048,7 +16099,7 @@ msgid "Below is a list of active radios that are connected to Wavelog." msgstr "" "Nedan är en lista över aktiva radioapparater som är anslutna till Wavelog." -#: application/views/radio/index.php:24 +#: application/views/radio/index.php:23 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." @@ -16056,16 +16107,33 @@ msgstr "" "Om du inte har anslutit några radioapparater än, se API-sidan för att " "generera API-nycklar." -#: application/views/radio/index.php:26 application/views/search/filter.php:66 +#: application/views/radio/index.php:25 +msgid "" +"As a clubstation operator, you can set a default radio which applies only to " +"you. This allows you to have a default radio that is automatically selected " +"when you log in, while still being able to use other radios if you want." +msgstr "" +"Som klubbstationsoperatör kan du ställa in en standardradio som bara gäller " +"för dig. Detta gör att du kan ha en standardradio som automatiskt väljs när " +"du loggar in, samtidigt som du fortfarande kan använda andra radioapparater " +"om du vill." + +#: application/views/radio/index.php:27 +msgid "" +"As a normal user, you can set a default radio for yourself. This allows you " +"to have a default radio that is automatically selected when you log in, " +"while still being able to use other radios if you want." +msgstr "" +"Som vanlig användare kan du ställa in en standardradio för dig själv. Detta " +"gör att du har en standardradio som automatiskt väljs när du loggar in, " +"samtidigt som du fortfarande kan använda andra radioapparater om du vill." + +#: application/views/radio/index.php:30 #, php-format -msgid "You can find out how to use the %s in the wiki." -msgstr "Du kan ta reda på hur du använder %s i wikin." +msgid "You can find out how to use the %sradio functions%s in the wiki." +msgstr "Du kan ta reda på hur du använder %sradiofunktionerna%s på wikin." -#: application/views/radio/index.php:26 -msgid "radio functions" -msgstr "radiofunktioner" - -#: application/views/radio/index.php:31 +#: application/views/radio/index.php:35 msgid "Please wait..." msgstr "Vänta lite..." @@ -16527,6 +16595,11 @@ msgstr "Spara fråga" msgid "Stored queries" msgstr "Lagrade frågor" +#: application/views/search/filter.php:66 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "Du kan ta reda på hur du använder %s i wikin." + #: application/views/search/filter.php:66 msgid "search filter functions" msgstr "sökfilterfunktioner" @@ -19269,6 +19342,9 @@ msgstr "CQz" msgid "CQz geojson" msgstr "CQz geojson" +#~ msgid "radio functions" +#~ msgstr "radiofunktioner" + #~ msgid "Incorrectly logged CQ zones" #~ msgstr "Felaktigt loggade CQ-zoner" diff --git a/application/locale/tr_TR/LC_MESSAGES/messages.mo b/application/locale/tr_TR/LC_MESSAGES/messages.mo index 4fd42285a..efc95be16 100644 Binary files a/application/locale/tr_TR/LC_MESSAGES/messages.mo and b/application/locale/tr_TR/LC_MESSAGES/messages.mo differ diff --git a/application/locale/tr_TR/LC_MESSAGES/messages.po b/application/locale/tr_TR/LC_MESSAGES/messages.po index 6196e7d19..9fcc3b569 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: 2026-02-13 08:13+0000\n" +"POT-Creation-Date: 2026-02-17 17:26+0000\n" "PO-Revision-Date: 2026-01-05 10:37+0000\n" "Last-Translator: Halil AYYILDIZ \n" "Language-Team: Turkish \n" "Language-Team: Chinese (Simplified Han script) 20) { @@ -541,7 +540,7 @@ class Dxcluster_model extends CI_Model { $minutes += $spotage->i; $json->age=$minutes; if ($minutes<=$maxage) { - $dxcc=$dxccObj->dxcc_lookup($json->spotter,date('Ymd', time())); + $dxcc=$dxccObj->dxcc_lookup($json->spotter,$date); $json->dxcc_spotter=$dxcc; return ($json); } else { diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 678ce59ea..b56a86925 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -137,7 +137,7 @@ class Logbook_model extends CI_Model { empty($qso_data['continent']); if ($needs_dxcc_lookup) { - $dxccobj = new Dxcc(null); + $dxccobj = new Dxcc(); $dxcc = $dxccobj->dxcc_lookup(strtoupper(trim($callsign)), $datetime); } @@ -1068,7 +1068,7 @@ class Logbook_model extends CI_Model { * $adif contains a line with the QSO in the ADIF format. QSO ends with an */ function push_qso_to_qrz($apikey, $adif, $replaceoption = false) { - $url = 'http://logbook.qrz.com/api'; // TODO: Move this to database + $url = 'https://logbook.qrz.com/api'; // TODO: Move this to database $post_data['KEY'] = $apikey; $post_data['ACTION'] = 'INSERT'; @@ -2761,16 +2761,6 @@ class Logbook_model extends CI_Model { // Load cache driver for file caching $cache_enabled = $this->config->item('enable_dxcluster_file_cache_worked') === true; - // Gets already loaded in dxcluster controller - // - // if ($cache_enabled && !isset($this->cache)) { - // $this->load->driver('cache', [ - // 'adapter' => $this->config->item('cache_adapter') ?? 'file', - // 'backup' => $this->config->item('cache_backup') ?? 'file', - // 'key_prefix' => $this->config->item('cache_key_prefix') ?? '' - // ]); - // } - // Cache TTL in seconds (15 minutes = 900 seconds) $cache_ttl = 900; @@ -2826,7 +2816,7 @@ class Logbook_model extends CI_Model { $cache_key = "{$logbook_ids_key}|call|{$callsign}"; // Check in-memory cache first - if (!isset($this->spot_status_cache[$cache_key])) { + if (!array_key_exists($cache_key, $this->spot_status_cache)) { // Check file cache if ($cache_enabled) { $file_cache_key = $this->dxclustercache->get_worked_call_key($logbook_ids_key, $callsign); @@ -2845,7 +2835,7 @@ class Logbook_model extends CI_Model { foreach (array_keys($dxccs) as $dxcc) { $cache_key = "{$logbook_ids_key}|dxcc|{$dxcc}"; - if (!isset($this->spot_status_cache[$cache_key])) { + if (!array_key_exists($cache_key, $this->spot_status_cache)) { if ($cache_enabled) { $file_cache_key = $this->dxclustercache->get_worked_dxcc_key($logbook_ids_key, $dxcc); $cached_data = $this->cache->get($file_cache_key); @@ -2861,7 +2851,7 @@ class Logbook_model extends CI_Model { foreach (array_keys($continents) as $cont) { $cache_key = "{$logbook_ids_key}|cont|{$cont}"; - if (!isset($this->spot_status_cache[$cache_key])) { + if (!array_key_exists($cache_key, $this->spot_status_cache)) { if ($cache_enabled) { $file_cache_key = $this->dxclustercache->get_worked_cont_key($logbook_ids_key, $cont); $cached_data = $this->cache->get($file_cache_key); @@ -2893,84 +2883,48 @@ class Logbook_model extends CI_Model { $dxccs_array = array_keys($dxccs_to_query); $continents_array = array_keys($continents_to_query); - // Split into two queries for performance: worked (faster) and confirmed (pre-filtered) - $worked_queries = []; - $confirmed_queries = []; - $worked_bind_params = []; - $confirmed_bind_params = []; + // OPTIMIZATION: Use ONE query instead of two (worked + confirmed) + $combined_queries = []; + $bind_params = []; if (!empty($callsigns_array)) { $callsigns_placeholders = implode(',', array_fill(0, count($callsigns_array), '?')); - // Query 1: Get all worked combinations - // Index: idx_HRD_COL_CALL_station_id (station_id, COL_CALL, COL_TIME_ON) - $worked_queries[] = " - SELECT 'call' as type, COL_CALL as identifier, COL_BAND as band, COL_MODE as mode + // Single query with conditional aggregation for worked AND confirmed + $combined_queries[] = " + SELECT 'call' as type, COL_CALL as identifier, COL_BAND as band, COL_MODE as mode, 1 as worked, MAX(CASE WHEN ({$qsl_where}) THEN 1 ELSE 0 END) as confirmed FROM {$this->config->item('table_name')} FORCE INDEX (idx_HRD_COL_CALL_station_id) WHERE station_id IN ({$station_ids_placeholders}) AND COL_CALL IN ({$callsigns_placeholders}) GROUP BY COL_CALL, COL_BAND, COL_MODE "; - $worked_bind_params = array_merge($worked_bind_params, $logbooks_locations_array, $callsigns_array); - - // Query 2: Get only confirmed combinations (pre-filtered by QSL status) - $confirmed_queries[] = " - SELECT 'call' as type, COL_CALL as identifier, COL_BAND as band, COL_MODE as mode - FROM {$this->config->item('table_name')} FORCE INDEX (idx_HRD_COL_CALL_station_id) - WHERE station_id IN ({$station_ids_placeholders}) - AND COL_CALL IN ({$callsigns_placeholders}) - AND ({$qsl_where}) - GROUP BY COL_CALL, COL_BAND, COL_MODE - "; - $confirmed_bind_params = array_merge($confirmed_bind_params, $logbooks_locations_array, $callsigns_array); + $bind_params = array_merge($bind_params, $logbooks_locations_array, $callsigns_array); } if (!empty($dxccs_array)) { $dxccs_placeholders = implode(',', array_fill(0, count($dxccs_array), '?')); - // Index: idx_HRD_COL_DXCC_station_id (station_id, COL_DXCC, COL_TIME_ON) - $worked_queries[] = " - SELECT 'dxcc' as type, COL_DXCC as identifier, COL_BAND as band, COL_MODE as mode + $combined_queries[] = " + SELECT 'dxcc' as type, COL_DXCC as identifier, COL_BAND as band, COL_MODE as mode, 1 as worked, MAX(CASE WHEN ({$qsl_where}) THEN 1 ELSE 0 END) as confirmed FROM {$this->config->item('table_name')} FORCE INDEX (idx_HRD_COL_DXCC_station_id) WHERE station_id IN ({$station_ids_placeholders}) AND COL_DXCC IN ({$dxccs_placeholders}) GROUP BY COL_DXCC, COL_BAND, COL_MODE "; - $worked_bind_params = array_merge($worked_bind_params, $logbooks_locations_array, $dxccs_array); - - $confirmed_queries[] = " - SELECT 'dxcc' as type, COL_DXCC as identifier, COL_BAND as band, COL_MODE as mode - FROM {$this->config->item('table_name')} FORCE INDEX (idx_HRD_COL_DXCC_station_id) - WHERE station_id IN ({$station_ids_placeholders}) - AND COL_DXCC IN ({$dxccs_placeholders}) - AND ({$qsl_where}) - GROUP BY COL_DXCC, COL_BAND, COL_MODE - "; - $confirmed_bind_params = array_merge($confirmed_bind_params, $logbooks_locations_array, $dxccs_array); + $bind_params = array_merge($bind_params, $logbooks_locations_array, $dxccs_array); } if (!empty($continents_array)) { $continents_placeholders = implode(',', array_fill(0, count($continents_array), '?')); - // No specific index for COL_CONT - let MySQL optimizer choose - $worked_queries[] = " - SELECT 'cont' as type, COL_CONT as identifier, COL_BAND as band, COL_MODE as mode + $combined_queries[] = " + SELECT 'cont' as type, COL_CONT as identifier, COL_BAND as band, COL_MODE as mode, 1 as worked, MAX(CASE WHEN ({$qsl_where}) THEN 1 ELSE 0 END) as confirmed FROM {$this->config->item('table_name')} FORCE INDEX (idx_HRD_station_id) WHERE station_id IN ({$station_ids_placeholders}) AND COL_CONT IN ({$continents_placeholders}) GROUP BY COL_CONT, COL_BAND, COL_MODE "; - $worked_bind_params = array_merge($worked_bind_params, $logbooks_locations_array, $continents_array); - - $confirmed_queries[] = " - SELECT 'cont' as type, COL_CONT as identifier, COL_BAND as band, COL_MODE as mode - FROM {$this->config->item('table_name')} FORCE INDEX (idx_HRD_station_id) - WHERE station_id IN ({$station_ids_placeholders}) - AND COL_CONT IN ({$continents_placeholders}) - AND ({$qsl_where}) - GROUP BY COL_CONT, COL_BAND, COL_MODE - "; - $confirmed_bind_params = array_merge($confirmed_bind_params, $logbooks_locations_array, $continents_array); + $bind_params = array_merge($bind_params, $logbooks_locations_array, $continents_array); } - if (empty($worked_queries)) { + if (empty($combined_queries)) { // Nothing to query, use cached data foreach ($spots_by_callsign as $callsign => $callsign_spots) { foreach ($callsign_spots as $spot) { @@ -2980,134 +2934,92 @@ class Logbook_model extends CI_Model { return $statuses; } - // Execute worked query (faster - no QSL filter) - $worked_sql = implode(' UNION ALL ', $worked_queries); - $worked_query = $this->db->query($worked_sql, $worked_bind_params); - $worked_results = $worked_query->result_array(); - - // Execute confirmed query (only scans confirmed QSOs) - $confirmed_sql = implode(' UNION ALL ', $confirmed_queries); - $confirmed_query = $this->db->query($confirmed_sql, $confirmed_bind_params); - $confirmed_results = $confirmed_query->result_array(); + $combined_sql = implode(' UNION ALL ', $combined_queries); + $query = $this->db->query($combined_sql, $bind_params); + $results = $query->result_array(); // Build comprehensive cache structure: identifier => [band|mode => status] - // This allows reusing data for ALL spots with same callsign/dxcc/continent - $call_data = []; // callsign => [band|mode => ['worked' => bool, 'confirmed' => bool]] - $dxcc_data = []; // dxcc => [band|mode => ['worked' => bool, 'confirmed' => bool]] - $cont_data = []; // continent => [band|mode => ['worked' => bool, 'confirmed' => bool]] + // Pre-allocate arrays to avoid repeated checks + $call_data = []; + $dxcc_data = []; + $cont_data = []; - // Process worked results first (mark as worked, not confirmed) - foreach ($worked_results as $row) { + // Pre-build mode mapping lookup table to avoid repeated function calls + $mode_cache = []; + + // Process ALL results in one pass (worked AND confirmed combined) + foreach ($results as $row) { $identifier = $row['identifier']; $band = $row['band']; $logbook_mode = $row['mode']; + $worked = (bool)$row['worked']; + $confirmed = (bool)$row['confirmed']; - // Convert logbook mode to spot mode category (phone/cw/digi) - $qrgmode = @$this->Modes->get_qrgmode_from_mode($logbook_mode); - $qrgmode_lower = strtolower($qrgmode ?? ''); + // Check mode cache first to avoid redundant conversions + if (!isset($mode_cache[$logbook_mode])) { + // Convert logbook mode to spot mode category (phone/cw/digi) + $qrgmode = @$this->Modes->get_qrgmode_from_mode($logbook_mode); + $qrgmode_lower = strtolower($qrgmode ?? ''); - // Check if qrgmode is valid (phone/cw/data/digi), otherwise use fallback - if (!empty($qrgmode) && in_array($qrgmode_lower, ['phone', 'cw', 'data', 'digi'])) { - $mode_category = $qrgmode_lower; - if ($mode_category === 'data') { - $mode_category = 'digi'; - } - } else { - // Fallback to hardcoded mapping - $logbook_mode_upper = strtoupper($logbook_mode ?? ''); - if (in_array($logbook_mode_upper, ['SSB', 'FM', 'AM', 'PHONE'])) { - $mode_category = 'phone'; - } elseif (in_array($logbook_mode_upper, ['CW'])) { - $mode_category = 'cw'; + // Check if qrgmode is valid (phone/cw/data/digi), otherwise use fallback + if (!empty($qrgmode) && in_array($qrgmode_lower, ['phone', 'cw', 'data', 'digi'])) { + $mode_cache[$logbook_mode] = ($qrgmode_lower === 'data') ? 'digi' : $qrgmode_lower; } else { - $mode_category = 'digi'; + // Fallback to hardcoded mapping + $logbook_mode_upper = strtoupper($logbook_mode); + if (in_array($logbook_mode_upper, ['SSB', 'FM', 'AM', 'PHONE'])) { + $mode_cache[$logbook_mode] = 'phone'; + } elseif ($logbook_mode_upper === 'CW') { + $mode_cache[$logbook_mode] = 'cw'; + } else { + $mode_cache[$logbook_mode] = 'digi'; + } } } + $mode_category = $mode_cache[$logbook_mode]; $band_mode_key = $band . '|' . $mode_category; + // Store in appropriate data structure if ($row['type'] === 'call') { if (!isset($call_data[$identifier])) { $call_data[$identifier] = []; } $call_data[$identifier][$band_mode_key] = [ - 'worked' => true, - 'confirmed' => false + 'worked' => $worked, + 'confirmed' => $confirmed ]; } elseif ($row['type'] === 'dxcc') { if (!isset($dxcc_data[$identifier])) { $dxcc_data[$identifier] = []; } $dxcc_data[$identifier][$band_mode_key] = [ - 'worked' => true, - 'confirmed' => false + 'worked' => $worked, + 'confirmed' => $confirmed ]; } elseif ($row['type'] === 'cont') { if (!isset($cont_data[$identifier])) { $cont_data[$identifier] = []; } $cont_data[$identifier][$band_mode_key] = [ - 'worked' => true, - 'confirmed' => false + 'worked' => $worked, + 'confirmed' => $confirmed ]; } } - // Now overlay confirmed results (update confirmed flag to true) - foreach ($confirmed_results as $row) { - $identifier = $row['identifier']; - $band = $row['band']; - $logbook_mode = $row['mode']; - - // Convert logbook mode to spot mode category (phone/cw/digi) - $qrgmode = @$this->Modes->get_qrgmode_from_mode($logbook_mode); - $qrgmode_lower = strtolower($qrgmode ?? ''); - - // Check if qrgmode is valid (phone/cw/data/digi), otherwise use fallback - if (!empty($qrgmode) && in_array($qrgmode_lower, ['phone', 'cw', 'data', 'digi'])) { - $mode_category = $qrgmode_lower; - if ($mode_category === 'data') { - $mode_category = 'digi'; - } - } else { - // Fallback to hardcoded mapping - $logbook_mode_upper = strtoupper($logbook_mode ?? ''); - if (in_array($logbook_mode_upper, ['SSB', 'FM', 'AM', 'PHONE'])) { - $mode_category = 'phone'; - } elseif (in_array($logbook_mode_upper, ['CW'])) { - $mode_category = 'cw'; - } else { - $mode_category = 'digi'; - } - } - - $band_mode_key = $band . '|' . $mode_category; - - if ($row['type'] === 'call') { - if (isset($call_data[$identifier][$band_mode_key])) { - $call_data[$identifier][$band_mode_key]['confirmed'] = true; - } - } elseif ($row['type'] === 'dxcc') { - if (isset($dxcc_data[$identifier][$band_mode_key])) { - $dxcc_data[$identifier][$band_mode_key]['confirmed'] = true; - } - } elseif ($row['type'] === 'cont') { - if (isset($cont_data[$identifier][$band_mode_key])) { - $cont_data[$identifier][$band_mode_key]['confirmed'] = true; - } - } - } - // Cache the complete data for each callsign/dxcc/continent (both in-memory and file) + // OPTIMIZATION: Batch file cache writes if enabled to reduce I/O operations + $file_cache_batch = []; + // Store worked items with their band/mode data foreach ($call_data as $callsign => $data) { $cache_key = "{$logbook_ids_key}|call|{$callsign}"; $this->spot_status_cache[$cache_key] = $data; - // Save to file cache for 15 minutes if ($cache_enabled) { $file_cache_key = $this->dxclustercache->get_worked_call_key($logbook_ids_key, $callsign); - $this->cache->save($file_cache_key, $data, $cache_ttl); + $file_cache_batch[$file_cache_key] = $data; } } foreach ($dxcc_data as $dxcc => $data) { @@ -3116,7 +3028,7 @@ class Logbook_model extends CI_Model { if ($cache_enabled) { $file_cache_key = $this->dxclustercache->get_worked_dxcc_key($logbook_ids_key, $dxcc); - $this->cache->save($file_cache_key, $data, $cache_ttl); + $file_cache_batch[$file_cache_key] = $data; } } foreach ($cont_data as $cont => $data) { @@ -3125,9 +3037,11 @@ class Logbook_model extends CI_Model { if ($cache_enabled) { $file_cache_key = $this->dxclustercache->get_worked_cont_key($logbook_ids_key, $cont); - $this->cache->save($file_cache_key, $data, $cache_ttl); + $file_cache_batch[$file_cache_key] = $data; } - } // Cache NOT WORKED items (negative results) - store empty arrays + } + + // Cache NOT WORKED items (negative results) - store empty arrays // This prevents redundant database queries for callsigns/dxccs/continents not in logbook foreach ($callsigns_array as $callsign) { if (!isset($call_data[$callsign])) { @@ -3136,7 +3050,7 @@ class Logbook_model extends CI_Model { if ($cache_enabled) { $file_cache_key = $this->dxclustercache->get_worked_call_key($logbook_ids_key, $callsign); - $this->cache->save($file_cache_key, [], $cache_ttl); + $file_cache_batch[$file_cache_key] = []; } } } @@ -3147,7 +3061,7 @@ class Logbook_model extends CI_Model { if ($cache_enabled) { $file_cache_key = $this->dxclustercache->get_worked_dxcc_key($logbook_ids_key, $dxcc); - $this->cache->save($file_cache_key, [], $cache_ttl); + $file_cache_batch[$file_cache_key] = []; } } } @@ -3158,9 +3072,15 @@ class Logbook_model extends CI_Model { if ($cache_enabled) { $file_cache_key = $this->dxclustercache->get_worked_cont_key($logbook_ids_key, $cont); - $this->cache->save($file_cache_key, [], $cache_ttl); + $file_cache_batch[$file_cache_key] = []; } } + } + + if ($cache_enabled && !empty($file_cache_batch)) { + foreach ($file_cache_batch as $key => $data) { + $this->cache->save($key, $data, $cache_ttl); + } } // Now map all spots to their status using cached data (query results + previously cached) foreach ($spots_by_callsign as $callsign => $callsign_spots) { foreach ($callsign_spots as $spot) { @@ -5031,14 +4951,14 @@ class Logbook_model extends CI_Model { $dxcc = array($record['dxcc'] ?? '', $entity['name'] ?? '', $entity['cqz'] ?? '', $entity['cont'] ?? ''); } else { if ($this->dxcc_object == null) { - $this->dxcc_object = new Dxcc(null); + $this->dxcc_object = new Dxcc(); } $dxcclookupresult = $this->dxcc_object->dxcc_lookup($record['call'], date('Y-m-d', strtotime($record['qso_date']))); $dxcc = array($dxcclookupresult['adif'], $dxcclookupresult['entity'], $dxcclookupresult['cqz'], $dxcclookupresult['cont']); } } else { if ($this->dxcc_object == null) { - $this->dxcc_object = new Dxcc(null); + $this->dxcc_object = new Dxcc(); } $dxcclookupresult = $this->dxcc_object->dxcc_lookup($record['call'], date('Y-m-d', strtotime($record['qso_date']))); $dxcc = array($dxcclookupresult['adif'], $dxcclookupresult['entity'], $dxcclookupresult['cqz'], $dxcclookupresult['cont']); diff --git a/application/models/Logbookadvanced_model.php b/application/models/Logbookadvanced_model.php index 99247a914..16b9dc9e9 100644 --- a/application/models/Logbookadvanced_model.php +++ b/application/models/Logbookadvanced_model.php @@ -2041,7 +2041,7 @@ class Logbookadvanced_model extends CI_Model { // Starting clock time in seconds $start_time = microtime(true); - $dxccobj = new Dxcc(null); + $dxccobj = new Dxcc(); foreach ($callarray->result() as $call) { @@ -2111,7 +2111,7 @@ class Logbookadvanced_model extends CI_Model { $r = $this->db->query($sql, array($this->session->userdata('user_id'), json_decode($ids, true))); $count = 0; - $dxccobj = new Dxcc(null); + $dxccobj = new Dxcc(); if ($r->num_rows() > 0) { //query dxcc_prefixes $sql = "update " . $this->config->item('table_name') . " set COL_COUNTRY = ?, COL_DXCC = ? where COL_PRIMARY_KEY = ?"; diff --git a/application/models/Stationsetup_model.php b/application/models/Stationsetup_model.php index c1e4f16f0..a0b80d22c 100644 --- a/application/models/Stationsetup_model.php +++ b/application/models/Stationsetup_model.php @@ -304,6 +304,7 @@ class Stationsetup_model extends CI_Model { // Data for user_options $optiondata = [ 'eqsl_default_qslmsg' => xss_clean($loc['eqsl_default_qslmsg'] ?? null), + 'link_active_logbook' => (empty($loc['link_active_logbook']) ? 'false' : 'true') ]; // Insert or update location in DB @@ -369,6 +370,15 @@ class Stationsetup_model extends CI_Model { $this->load->model('user_options_model'); $this->user_options_model->set_option('eqsl_default_qslmsg', 'key_station_id', array($location_id => $optiondata['eqsl_default_qslmsg']),($user_id ?? $this->session->userdata('user_id'))); } + if ($optiondata['link_active_logbook'] === 'true') { + $this->load->model('logbooks_model'); + $active_logbook = $this->logbooks_model->find_active_station_logbook_from_userid($dbdata['user_id']); + if(!empty($active_logbook)) { + // Can't use create_logbook_location_link if coming from API (No session->user_id, fails access check) + $data = array('station_logbook_id' => $active_logbook, 'station_location_id' => $location_id); + $this->db->insert('station_logbooks_relationship', $data); + } + } } return 1; diff --git a/application/views/adif/import.php b/application/views/adif/import.php index f737173be..6f7ab95a1 100644 --- a/application/views/adif/import.php +++ b/application/views/adif/import.php @@ -339,7 +339,7 @@ -

" . __("DARC DCL") . "") ?> ', ''); ?>

+

" . __("DARC DCL") . "") ?> ', ''); ?>

diff --git a/application/views/awards/counties/index.php b/application/views/awards/counties/index.php index f0eb3d473..5bfe83ed1 100644 --- a/application/views/awards/counties/index.php +++ b/application/views/awards/counties/index.php @@ -5,7 +5,7 @@

diff --git a/application/views/bandmap/list.php b/application/views/bandmap/list.php index 3d3067df6..6bc0650ee 100644 --- a/application/views/bandmap/list.php +++ b/application/views/bandmap/list.php @@ -4,6 +4,7 @@ var cat_timeout_interval = "optionslib->get_option('cat_timeout_interval'); ?>"; var dxcluster_maxage = optionslib->get_option('dxcluster_maxage') ?? 60; ?>; var custom_date_format = ""; + var dxcluster_refresh_time = ; // Detect OS for proper keyboard shortcuts var isMac = navigator.platform.toUpperCase().indexOf('MAC') >= 0; @@ -173,7 +174,7 @@ // Map configuration (matches QSO map settings) var map_tile_server = 'optionslib->get_option('option_map_tile_server');?>'; var map_tile_server_copyright = 'optionslib->get_option('option_map_tile_server_copyright');?>'; - var icon_dot_url = "assets/images/dot.png"; + var icon_dot_url = "paths->cache_buster('/assets/images/dot.png'); ?>"; // User gridsquare for home position marker var user_gridsquare = ''; - +
@@ -198,7 +199,7 @@
@@ -540,7 +541,29 @@
-
+
+ " aria-label=""> diff --git a/application/views/widgets/on_air.php b/application/views/widgets/on_air.php index 49cf85ee4..3411f544f 100644 --- a/application/views/widgets/on_air.php +++ b/application/views/widgets/on_air.php @@ -22,9 +22,9 @@ The widget automatically detects the nojs=1 parameter and serves a JavaScript-fr - - - + + + <?= "Wavelog Dynamic On-Air widget"; ?>