diff --git a/application/controllers/Api.php b/application/controllers/Api.php index c07cb6e01..30920b41d 100644 --- a/application/controllers/Api.php +++ b/application/controllers/Api.php @@ -119,10 +119,23 @@ class API extends CI_Controller { function create_station($key = '') { $this->load->model('api_model'); + if ($this->api_model->access($key) == "No Key Found" || $this->api_model->access($key) == "Key Disabled") { $this->output->set_status_header(401)->set_content_type('application/json')->set_output(json_encode(['status' => 'error', 'message' => 'Auth Error, invalid key'])); return; } + + $this->load->model('club_model'); + $userid = $this->api_model->key_userid($key); + $created_by = $this->api_model->key_created_by($key); + $club_perm = $this->club_model->get_permission_noui($userid,$created_by); + if ($userid != $created_by) { // We're dealing with a Club Member/Member ADIF or Clubofficer + if ((($club_perm ?? 0) == 3) || (($club_perm ?? 0) == 6)) { // Member or ADIF-Member? DENY + $this->output->set_status_header(401)->set_content_type('application/json')->set_output(json_encode(['status' => 'error', 'message' => 'Auth Error, not enough grants for this operation'])); + return; + } + } + try { $raw = file_get_contents("php://input"); if ($raw === false) { @@ -149,8 +162,7 @@ class API extends CI_Controller { $this->output->set_status_header(500)->set_content_type('application/json')->set_output(json_encode(['status' => 'error', 'message' => 'Processing error: ' . $e->getMessage()])); } $this->load->model('stationsetup_model'); - $user_id = $this->api_model->key_userid($key); - $imported = $this->stationsetup_model->import_locations_parse($locations,$user_id); + $imported = $this->stationsetup_model->import_locations_parse($locations,$userid); if (($imported[0] ?? '0') == 'limit') { $this->output->set_status_header(201)->set_content_type('application/json')->set_output(json_encode(['status' => 'success', 'message' => ($imported[1] ?? '0')." locations imported. Maximum limit of 1000 locations reached."])); } else { @@ -224,6 +236,7 @@ class API extends CI_Controller { $this->load->model('api_model'); $this->load->model('stations'); + $this->load->model('club_model'); if (!$this->load->is_loaded('Qra')) { $this->load->library('Qra'); @@ -252,6 +265,7 @@ class API extends CI_Controller { $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); /** * As the API key user could use it also for clubstations we need to do an additional check here. Only if clubstations are enabled @@ -260,12 +274,11 @@ class API extends CI_Controller { * If the user is not the creator of the API key, it's likely a clubstation. In this case the callsign of the clubstation * can not be the same as the callsign of the user (operator call provided by the user). If this is the case, we need to use the callsign of the creator of the API key */ - $real_operator = null; + $real_operator = null; // real_operator is only filled if its a clubstation and the used key is created by an OP. otherwise its null if ($this->config->item('special_callsign')) { if ($userid != $created_by) { $this->load->model('user_model'); $real_operator = $this->user_model->get_by_id($created_by)->row()->user_callsign; - // TODO: It would be possible to check here if operator is allowed to use the clubstation, but this can be added later if needed } else { $real_operator = null; } @@ -327,6 +340,11 @@ class API extends CI_Controller { $record['operator'] = $real_operator; } + // in case the caller is an OP for a clubstation (real_operator is filled - see above) and the OP only has level 3 or 6 - take the OP from real_operator! + if ($real_operator != null && ((($club_perm ?? 0) == 3) || (($club_perm ?? 0) == 6))) { + $record['operator'] = $real_operator; + } + if ((key_exists('gridsquare',$record)) && (($mygrid ?? '') != '') && (($record['gridsquare'] ?? '') != '') && (!(key_exists('distance',$record)))) { $record['distance'] = $this->qra->distance($mygrid, $record['gridsquare'], 'K'); } diff --git a/application/controllers/Logbookadvanced.php b/application/controllers/Logbookadvanced.php index 8b963fefa..4e7e9d12f 100644 --- a/application/controllers/Logbookadvanced.php +++ b/application/controllers/Logbookadvanced.php @@ -785,7 +785,6 @@ class Logbookadvanced extends CI_Controller { header("Content-Type: application/json"); print json_encode($q); - } public function fixItuZones() { @@ -834,8 +833,11 @@ class Logbookadvanced extends CI_Controller { $this->load->model('logbookadvanced_model'); $result = $this->logbookadvanced_model->check_missing_continent(); - header("Content-Type: application/json"); - print json_encode($result); + $data['result'] = $result; + + $data['type'] = 'continent'; + + $this->load->view('logbookadvanced/showUpdateResult', $data); } public function fixStateProgress() { @@ -874,14 +876,110 @@ class Logbookadvanced extends CI_Controller { } public function updateDistances() { + if(!clubaccess_check(9)) return; + $this->load->model('logbookadvanced_model'); $result = $this->logbookadvanced_model->update_distances_batch(); - header("Content-Type: application/json"); - print json_encode($result); + $data['result'] = $result; + + $data['type'] = 'distance'; + + $this->load->view('logbookadvanced/showUpdateResult', $data); } public function callbookDialog() { $this->load->view('logbookadvanced/callbookdialog'); } + + public function dbtoolsDialog() { + $this->load->view('logbookadvanced/dbtoolsdialog'); + } + + public function checkDb() { + if(!clubaccess_check(9)) return; + + $type = $this->input->post('type', true); + $this->load->model('logbookadvanced_model'); + + $data['result'] = $this->logbookadvanced_model->runCheckDb($type); + if ($type == 'checkstate') { + $this->load->view('logbookadvanced/statecheckresult', $data); + } else { + $data['type'] = $type; + $this->load->view('logbookadvanced/checkresult', $data); + } + + } + + public function fixStateBatch() { + if(!clubaccess_check(9)) return; + + $this->load->model('logbook_model'); + $this->load->model('logbookadvanced_model'); + + $dxcc = $this->input->post('dxcc', true); + $data['country'] = $this->input->post('country', true); + + // Process for batch QSO state fix + $result = $this->logbookadvanced_model->fixStateBatch($dxcc); + + $data['result'] = $result; + + $data['type'] = 'state'; + + $this->load->view('logbookadvanced/showUpdateResult', $data); + } + + public function openStateList() { + if(!clubaccess_check(9)) return; + + $this->load->model('logbookadvanced_model'); + + $data['dxcc'] = $this->input->post('dxcc', true); + $data['country'] = $this->input->post('country', true); + + // Process for batch QSO state fix + $data['qsos'] = $this->logbookadvanced_model->getStateListQsos($data['dxcc']); + + $this->load->view('logbookadvanced/showStateQsos', $data); + } + + public function fixMissingDxcc() { + if(!clubaccess_check(9)) return; + + $all = $this->input->post('all', true); + $this->load->model('logbookadvanced_model'); + $result = $this->logbookadvanced_model->check_missing_dxcc_id($all); + + $data['result'] = $result; + $data['all'] = $all; + $data['type'] = 'dxcc'; + + $this->load->view('logbookadvanced/showUpdateResult', $data); + } + + public function openMissingDxccList() { + if(!clubaccess_check(9)) return; + + $this->load->model('logbookadvanced_model'); + + $data['qsos'] = $this->logbookadvanced_model->getMissingDxccQsos(); + + $this->load->view('logbookadvanced/showMissingDxccQsos', $data); + } + + public function batchFix() { + if(!clubaccess_check(9)) return; + + $type = $this->input->post('type', true); + $this->load->model('logbookadvanced_model'); + $result = $this->logbookadvanced_model->batchFix($type); + + $data['result'] = $result; + $data['type'] = $type; + + $this->load->view('logbookadvanced/showUpdateResult', $data); + } + } diff --git a/application/controllers/Update.php b/application/controllers/Update.php index 24b80c296..855e713fd 100644 --- a/application/controllers/Update.php +++ b/application/controllers/Update.php @@ -316,37 +316,15 @@ class Update extends CI_Controller { private function fix_migrations(){ - $res = $this->db->query("SELECT version FROM migrations"); - if ($res->num_rows() >0){ - $row = $res->row(); - $version = $row->version; + $res = $this->db->query("SELECT version FROM migrations"); + if ($res->num_rows() >0){ + $row = $res->row(); + $version = $row->version; - if ($version < 7){ - $this->db->query("UPDATE migrations SET version=7"); - } - } - } - - public function check_missing_dxcc($all = false){ - $this->load->model('user_model'); - if (!$this->user_model->authorize(99)) { - $this->session->set_flashdata('error', __("You're not allowed to do that!")); - redirect('dashboard'); + if ($version < 7){ + $this->db->query("UPDATE migrations SET version=7"); + } } - - $this->load->model('logbook_model'); - $this->logbook_model->check_missing_dxcc_id($all); - } - - public function check_missing_grid($all = false){ - $this->load->model('user_model'); - if (!$this->user_model->authorize(99)) { - $this->session->set_flashdata('error', __("You're not allowed to do that!")); - redirect('dashboard'); - } - - $this->load->model('logbook_model'); - $this->logbook_model->check_missing_grid_id($all); } public function update_clublog_scp() { diff --git a/application/libraries/Geojson.php b/application/libraries/Geojson.php index 618143f42..8d3890dc2 100644 --- a/application/libraries/Geojson.php +++ b/application/libraries/Geojson.php @@ -22,47 +22,47 @@ class Geojson { * Value: Array with 'name' and 'enabled' flag */ const SUPPORTED_STATES = [ - 1 => ['name' => 'Canada', 'enabled' => true], // 13 provinces/territories - 6 => ['name' => 'Alaska', 'enabled' => true], // 1 state - 27 => ['name' => 'Belarus', 'enabled' => true], // 7 subdivisions - 29 => ['name' => 'Canary Islands', 'enabled' => true], // 2 provinces - 32 => ['name' => 'Ceuta & Melilla', 'enabled' => true], // 2 autonomous cities - 50 => ['name' => 'Mexico', 'enabled' => true], // 32 states - 100 => ['name' => 'Argentina', 'enabled' => true], // 24 subdivisions - 108 => ['name' => 'Brazil', 'enabled' => true], // 27 subdivisions - 112 => ['name' => 'Chile', 'enabled' => true], // 16 regions + 1 => ['name' => 'Canada', 'enabled' => true], // 13 provinces/territories + 6 => ['name' => 'Alaska', 'enabled' => true], // 1 state + 27 => ['name' => 'Belarus', 'enabled' => true], // 7 subdivisions + 29 => ['name' => 'Canary Islands', 'enabled' => true], // 2 provinces + 32 => ['name' => 'Ceuta & Melilla', 'enabled' => true], // 2 autonomous cities + 50 => ['name' => 'Mexico', 'enabled' => true], // 32 states + 100 => ['name' => 'Argentina', 'enabled' => true], // 24 subdivisions + 108 => ['name' => 'Brazil', 'enabled' => true], // 27 subdivisions + 110 => ['name' => 'Hawaii', 'enabled' => true], // 1 state + 112 => ['name' => 'Chile', 'enabled' => true], // 16 regions 137 => ['name' => 'Republic of Korea', 'enabled' => true], // 17 subdivisions - 110 => ['name' => 'Hawaii', 'enabled' => true], // 1 state - 144 => ['name' => 'Uruguay', 'enabled' => true], // 19 subdivisions - 148 => ['name' => 'Venezuela', 'enabled' => true], // 24 states - 149 => ['name' => 'Azores', 'enabled' => true], // 1 autonomous region - 150 => ['name' => 'Australia', 'enabled' => true], // 8 subdivisions - 163 => ['name' => 'Papua New Guinea', 'enabled' => true], // 22 provinces - 170 => ['name' => 'New Zealand', 'enabled' => true], // 16 regions - 209 => ['name' => 'Belgium', 'enabled' => true], // 11 subdivisions - 212 => ['name' => 'Bulgaria', 'enabled' => true], // 28 subdivisions - 214 => ['name' => 'Corsica', 'enabled' => true], // 2 departments (2A, 2B) - 225 => ['name' => 'Sardinia', 'enabled' => true], // 5 provinces - 227 => ['name' => 'France', 'enabled' => true], // 96 departments - 230 => ['name' => 'Germany', 'enabled' => true], // 16 federal states - 239 => ['name' => 'Hungary', 'enabled' => true], // 20 subdivisions - 245 => ['name' => 'Ireland', 'enabled' => true], // 27 subdivisions - 248 => ['name' => 'Italy', 'enabled' => true], // 107 provinces - 256 => ['name' => 'Madeira Islands', 'enabled' => true], // 1 autonomous region - 263 => ['name' => 'Netherlands', 'enabled' => true], // 12 provinces - 266 => ['name' => 'Norway', 'enabled' => true], // 11 counties - 269 => ['name' => 'Poland', 'enabled' => true], // 16 voivodeships - 272 => ['name' => 'Portugal', 'enabled' => true], // 18 districts - 275 => ['name' => 'Romania', 'enabled' => true], // 42 counties - 281 => ['name' => 'Spain', 'enabled' => true], // 47 provinces - 284 => ['name' => 'Sweden', 'enabled' => true], // 21 subdivisions - 287 => ['name' => 'Switzerland', 'enabled' => true], // 26 cantons - 291 => ['name' => 'USA', 'enabled' => true], // 52 states/territories - 318 => ['name' => 'China', 'enabled' => true], // 31 provinces - 324 => ['name' => 'India', 'enabled' => true], // 36 states/territories - 339 => ['name' => 'Japan', 'enabled' => true], // 47 prefectures - 386 => ['name' => 'Taiwan', 'enabled' => true], // 22 subdivisions - 497 => ['name' => 'Croatia', 'enabled' => true], // 21 subdivisions + 144 => ['name' => 'Uruguay', 'enabled' => true], // 19 subdivisions + 148 => ['name' => 'Venezuela', 'enabled' => true], // 24 states + 149 => ['name' => 'Azores', 'enabled' => true], // 1 autonomous region + 150 => ['name' => 'Australia', 'enabled' => true], // 8 subdivisions + 163 => ['name' => 'Papua New Guinea', 'enabled' => true], // 22 provinces + 170 => ['name' => 'New Zealand', 'enabled' => true], // 16 regions + 209 => ['name' => 'Belgium', 'enabled' => true], // 11 subdivisions + 212 => ['name' => 'Bulgaria', 'enabled' => true], // 28 subdivisions + 214 => ['name' => 'Corsica', 'enabled' => true], // 2 departments (2A, 2B) + 225 => ['name' => 'Sardinia', 'enabled' => true], // 5 provinces + 227 => ['name' => 'France', 'enabled' => true], // 96 departments + 230 => ['name' => 'Germany', 'enabled' => true], // 16 federal states + 239 => ['name' => 'Hungary', 'enabled' => true], // 20 subdivisions + 245 => ['name' => 'Ireland', 'enabled' => true], // 27 subdivisions + 248 => ['name' => 'Italy', 'enabled' => true], // 107 provinces + 256 => ['name' => 'Madeira Islands', 'enabled' => true], // 1 autonomous region + 263 => ['name' => 'Netherlands', 'enabled' => true], // 12 provinces + 266 => ['name' => 'Norway', 'enabled' => true], // 15 counties + 269 => ['name' => 'Poland', 'enabled' => true], // 16 voivodeships + 272 => ['name' => 'Portugal', 'enabled' => true], // 18 districts + 275 => ['name' => 'Romania', 'enabled' => true], // 42 counties + 281 => ['name' => 'Spain', 'enabled' => true], // 47 provinces + 284 => ['name' => 'Sweden', 'enabled' => true], // 21 subdivisions + 287 => ['name' => 'Switzerland', 'enabled' => true], // 26 cantons + 291 => ['name' => 'USA', 'enabled' => true], // 52 states/territories + 318 => ['name' => 'China', 'enabled' => true], // 31 provinces + 324 => ['name' => 'India', 'enabled' => true], // 36 states/territories + 339 => ['name' => 'Japan', 'enabled' => true], // 47 prefectures + 386 => ['name' => 'Taiwan', 'enabled' => true], // 22 subdivisions + 497 => ['name' => 'Croatia', 'enabled' => true], // 21 subdivisions ]; private $qra; @@ -134,6 +134,15 @@ class Geojson { return isset(self::SUPPORTED_STATES[$dxcc]) && self::SUPPORTED_STATES[$dxcc]['enabled'] === true; } + /** + * Retrieve list of DXCC entities that support state/province lookups + * + * @return array List of supported DXCC entities + */ + public function getSupportedDxccs() { + return self::SUPPORTED_STATES; + } + // ============================================================================ // COORDINATE CONVERSION // ============================================================================ diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index 3007352e4..4264f591f 100644 --- a/application/locale/bg_BG/LC_MESSAGES/messages.po +++ b/application/locale/bg_BG/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-12-13 14:06+0000\n" +"POT-Creation-Date: 2025-12-19 07:34+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" +"POT-Creation-Date: 2025-12-19 07:34+0000\n" +"PO-Revision-Date: 2025-12-13 14:06+0000\n" +"Last-Translator: Jörg Dorgeist \n" "Language-Team: German \n" "Language: de_DE\n" @@ -129,8 +129,7 @@ msgstr "" #: application/controllers/Themes.php:17 #: application/controllers/Timeline.php:10 #: application/controllers/Timeplotter.php:11 -#: application/controllers/Update.php:22 application/controllers/Update.php:333 -#: application/controllers/Update.php:344 application/controllers/User.php:14 +#: application/controllers/Update.php:22 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 #: application/controllers/User.php:384 application/controllers/User.php:385 @@ -351,8 +350,8 @@ msgstr "Diplome – %s" #: application/views/contesting/index.php:63 #: application/views/interface_assets/header.php:240 #: application/views/logbookadvanced/edit.php:25 -#: application/views/logbookadvanced/index.php:430 -#: application/views/logbookadvanced/index.php:929 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:940 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 @@ -369,9 +368,12 @@ msgstr "DOK" #: application/views/interface_assets/header.php:192 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:26 -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:905 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:916 #: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/logbookadvanced/showMissingDxccQsos.php:16 +#: application/views/logbookadvanced/showStateQsos.php:27 +#: application/views/logbookadvanced/statecheckresult.php:11 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 @@ -456,7 +458,7 @@ msgstr " und " #: 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 -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:436 #: application/views/logbookadvanced/useroptions.php:130 #: application/views/lookup/index.php:10 #: application/views/qslcard/searchresult.php:17 @@ -483,7 +485,7 @@ msgstr "SOTA" #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:458 #: application/views/logbookadvanced/useroptions.php:138 #: application/views/lookup/index.php:12 #: application/views/qso/award_tabs.php:65 @@ -505,8 +507,8 @@ msgstr "WWFF" #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 #: application/views/logbookadvanced/edit.php:30 -#: application/views/logbookadvanced/index.php:438 -#: application/views/logbookadvanced/index.php:923 +#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:934 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 @@ -705,8 +707,8 @@ msgstr "Club Mitglied ADIF" msgid "Club Member" msgstr "Club Mitglied" -#: application/controllers/Club.php:45 application/models/Club_model.php:75 -#: application/models/Club_model.php:149 application/models/Club_model.php:191 +#: application/controllers/Club.php:45 application/models/Club_model.php:107 +#: application/models/Club_model.php:181 application/models/Club_model.php:223 msgid "Invalid User ID!" msgstr "Ungültige Benutzer-ID!" @@ -722,8 +724,8 @@ msgstr "Club-Berechtigungen" #: application/controllers/Club.php:119 application/controllers/Club.php:148 #: application/controllers/Club.php:175 application/models/Club_model.php:22 -#: application/models/Club_model.php:70 application/models/Club_model.php:144 -#: application/models/Club_model.php:186 +#: application/models/Club_model.php:102 application/models/Club_model.php:176 +#: application/models/Club_model.php:218 msgid "Invalid Club ID!" msgstr "Ungültige Club-ID!" @@ -924,7 +926,7 @@ msgstr "DCL Schlüssel importiert" #: application/controllers/Dcl.php:68 application/views/dcl_views/import.php:3 #: application/views/dcl_views/index.php:3 -#: application/views/logbookadvanced/index.php:896 +#: application/views/logbookadvanced/index.php:907 #: application/views/logbookadvanced/useroptions.php:90 #: application/views/qso/edit_ajax.php:434 #: application/views/search/search_result_ajax.php:127 @@ -1075,27 +1077,27 @@ msgstr "Kein passender eQSL QTH Nickname: %s" #: application/controllers/Eqsl.php:312 msgid "QSO not found or not accessible" -msgstr "" +msgstr "QSO nicht gefunden oder Zugriff nicht möglich" #: application/controllers/Eqsl.php:330 msgid "User not found" -msgstr "" +msgstr "Benutzer nicht gefunden" #: application/controllers/Eqsl.php:339 msgid "eQSL password not configured for this user" -msgstr "" +msgstr "eQSL Passwort nicht konfiguriert für diesen Benutzer" #: application/controllers/Eqsl.php:357 msgid "Failed to fetch eQSL image data" -msgstr "" +msgstr "Download der eQSL Bilddaten fehlgeschlagen" #: application/controllers/Eqsl.php:376 msgid "eQSL image not available" -msgstr "" +msgstr "eQSL Bild nicht verfügbar" #: application/controllers/Eqsl.php:395 msgid "Failed to download eQSL image" -msgstr "" +msgstr "Download des eQSL Bildes fehlgeschlagen" #: application/controllers/Eqsl.php:495 msgid "eQSL Tools" @@ -1334,7 +1336,7 @@ msgstr "Logbuch" #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:171 #: application/views/interface_assets/footer.php:106 -#: application/views/logbookadvanced/index.php:884 +#: application/views/logbookadvanced/index.php:895 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:30 @@ -1468,9 +1470,11 @@ msgstr "eQSL" #: application/views/interface_assets/footer.php:121 #: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:335 -#: application/views/logbookadvanced/index.php:854 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:865 #: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/logbookadvanced/showMissingDxccQsos.php:12 +#: application/views/logbookadvanced/showStateQsos.php:23 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:40 #: application/views/oqrs/notinlogform.php:11 @@ -1519,7 +1523,7 @@ msgstr "Mode" #: application/views/contesting/index.php:180 #: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:857 +#: application/views/logbookadvanced/index.php:868 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -1548,7 +1552,7 @@ msgstr "RST (S)" #: application/views/contesting/index.php:204 #: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:860 +#: application/views/logbookadvanced/index.php:871 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1598,8 +1602,8 @@ msgstr "Land" #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/edit.php:28 -#: application/views/logbookadvanced/index.php:444 -#: application/views/logbookadvanced/index.php:920 +#: application/views/logbookadvanced/index.php:446 +#: application/views/logbookadvanced/index.php:931 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/lookup/index.php:7 @@ -1630,9 +1634,11 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 #: application/views/logbookadvanced/edit.php:96 -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:908 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:919 #: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/logbookadvanced/showMissingDxccQsos.php:14 +#: application/views/logbookadvanced/showStateQsos.php:25 #: application/views/logbookadvanced/useroptions.php:106 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 @@ -1662,9 +1668,12 @@ msgstr "Staat" #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:869 +#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:880 #: application/views/logbookadvanced/qslcarousel.php:39 +#: application/views/logbookadvanced/showMissingDxccQsos.php:15 +#: application/views/logbookadvanced/showStateQsos.php:26 +#: application/views/logbookadvanced/showUpdateResult.php:105 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/lookup/index.php:6 #: application/views/qslcard/confirmationresult.php:19 @@ -1705,8 +1714,8 @@ msgstr "Locator" #: application/views/gridmap/index.php:225 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 -#: application/views/logbookadvanced/index.php:489 -#: application/views/logbookadvanced/index.php:959 +#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:970 #: application/views/logbookadvanced/useroptions.php:174 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 @@ -1766,9 +1775,11 @@ msgstr "Distanz" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:56 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:863 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:874 #: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/logbookadvanced/showMissingDxccQsos.php:13 +#: application/views/logbookadvanced/showStateQsos.php:24 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 #: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 @@ -1816,7 +1827,7 @@ msgstr "Band" #: application/views/bandmap/list.php:567 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 -#: application/views/logbookadvanced/index.php:866 +#: application/views/logbookadvanced/index.php:877 #: application/views/logbookadvanced/useroptions.php:50 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 @@ -1842,8 +1853,8 @@ msgstr "Frequenz" #: application/controllers/Radio.php:43 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:460 -#: application/views/logbookadvanced/index.php:941 +#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:952 #: application/views/logbookadvanced/useroptions.php:150 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 @@ -1871,7 +1882,7 @@ msgstr "Operator" #: application/views/dxatlas/index.php:65 #: application/views/interface_assets/footer.php:822 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:319 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 @@ -2352,7 +2363,7 @@ msgid "Timestamp" msgstr "Zeitstempel" #: application/controllers/Radio.php:49 -#: application/views/logbookadvanced/index.php:821 +#: application/views/logbookadvanced/index.php:829 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:185 @@ -2391,7 +2402,7 @@ msgstr "Standardgerät (klicken zum freigeben)" #: application/views/interface_assets/footer.php:682 #: application/views/interface_assets/footer.php:691 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:808 +#: application/views/logbookadvanced/index.php:816 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 #: application/views/satellite/index.php:58 #: application/views/search/stored_queries.php:21 @@ -2414,7 +2425,7 @@ msgstr "Bearbeiten" #: application/views/interface_assets/footer.php:2800 #: application/views/interface_assets/footer.php:2818 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:824 +#: application/views/logbookadvanced/index.php:835 #: application/views/lotw_views/index.php:134 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 @@ -2522,7 +2533,7 @@ msgstr "Satelliten-Timer" #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 #: application/views/interface_assets/header.php:399 -#: application/views/logbookadvanced/index.php:797 +#: application/views/logbookadvanced/index.php:805 #: application/views/oqrs/index.php:30 #: application/views/oqrs/showrequests.php:69 #: application/views/qslcard/searchform.php:8 @@ -2867,83 +2878,83 @@ msgstr "DXCC-Ausnahmen:" msgid "Dxcc Prefixes:" msgstr "DXCC-Präfixe:" -#: application/controllers/Update.php:362 +#: application/controllers/Update.php:340 msgid "SCP Update complete. Result: " msgstr "SCP-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:364 +#: application/controllers/Update.php:342 msgid "SCP Update failed. Result: " msgstr "SCP-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:401 +#: application/controllers/Update.php:379 msgid "LoTW Users Update complete. Result: " msgstr "LoTW-Benutzer-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:403 +#: application/controllers/Update.php:381 msgid "LoTW Users Update failed. Result: " msgstr "LoTW-Benutzer-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:438 +#: application/controllers/Update.php:416 msgid "DOK Update complete. Result: " msgstr "DOK-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:440 +#: application/controllers/Update.php:418 msgid "DOK Update failed. Result: " msgstr "DOK-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:473 +#: application/controllers/Update.php:451 msgid "SOTA Update complete. Result: " msgstr "SOTA-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:475 +#: application/controllers/Update.php:453 msgid "SOTA Update failed. Result: " msgstr "SOTA-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:508 +#: application/controllers/Update.php:486 msgid "WWFF Update complete. Result: " msgstr "WWFF-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:510 +#: application/controllers/Update.php:488 msgid "WWFF Update failed. Result: " msgstr "WWFF-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:544 +#: application/controllers/Update.php:522 msgid "HAMqsl Update complete. Result: " msgstr "HAMqsl-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:546 +#: application/controllers/Update.php:524 msgid "HAMqsl Update failed. Result: " msgstr "HAMqsl-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:579 +#: application/controllers/Update.php:557 msgid "POTA Update complete. Result: " msgstr "POTA-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:581 +#: application/controllers/Update.php:559 msgid "POTA Update failed. Result: " msgstr "POTA-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:610 +#: application/controllers/Update.php:588 msgid "TLE Update complete. Result: " msgstr "TLE-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:612 +#: application/controllers/Update.php:590 msgid "TLE Update failed. Result: " msgstr "TLE-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:639 +#: application/controllers/Update.php:617 msgid "LoTW SAT Update" msgstr "LoTW SAT-Aktualisierung" -#: application/controllers/Update.php:667 +#: application/controllers/Update.php:645 msgid "Update of Hams of Note" msgstr "Update von 'Hams of Note'" -#: application/controllers/Update.php:707 +#: application/controllers/Update.php:685 msgid "VUCC Grid file update complete. Result: " msgstr "Update der VUCC-Planquadat-Datei erfolgt. Ergebnis: " -#: application/controllers/Update.php:709 +#: application/controllers/Update.php:687 msgid "VUCC Grid file update failed. Result: " msgstr "Update der VUCC-Planquadrat-Datei fehlgeschlagen. Ergebnis: " @@ -3311,7 +3322,7 @@ msgstr "QRZCQ Fehler" #: application/libraries/Callbook.php:155 msgid "Error obtaining a session key for HamQTH query" -msgstr "" +msgstr "Fehler bei der Sessionerzeugung für HamQTH" #: application/libraries/Cbr_parser.php:111 #: application/libraries/Cbr_parser.php:160 @@ -3405,11 +3416,11 @@ msgctxt "Division Name (States in various countries)." msgid "City / Ku / Gun" msgstr "Stadt / Ku / Gun" -#: application/models/Club_model.php:154 +#: application/models/Club_model.php:186 msgid "Invalid Permission Level!" msgstr "Ungültige Berechtigungsstufe!" -#: application/models/Club_model.php:169 +#: application/models/Club_model.php:201 msgid "Error adding Club Member!" msgstr "Fehler beim Hinzufügen eines Clubmitglieds!" @@ -3572,7 +3583,7 @@ msgstr "POTA Referenz bereits im Log" msgid "QSO updated" msgstr "QSO aktualisiert" -#: application/models/Logbook_model.php:6405 +#: application/models/Logbook_model.php:6331 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3788,28 +3799,28 @@ msgstr "Differenz" #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:337 -#: application/views/logbookadvanced/index.php:348 -#: application/views/logbookadvanced/index.php:359 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:402 -#: application/views/logbookadvanced/index.php:416 -#: application/views/logbookadvanced/index.php:470 -#: application/views/logbookadvanced/index.php:508 -#: application/views/logbookadvanced/index.php:519 -#: application/views/logbookadvanced/index.php:530 -#: application/views/logbookadvanced/index.php:540 -#: application/views/logbookadvanced/index.php:552 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/index.php:575 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/index.php:599 -#: application/views/logbookadvanced/index.php:610 -#: application/views/logbookadvanced/index.php:621 -#: application/views/logbookadvanced/index.php:630 -#: application/views/logbookadvanced/index.php:653 -#: application/views/logbookadvanced/index.php:662 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:418 +#: application/views/logbookadvanced/index.php:472 +#: application/views/logbookadvanced/index.php:510 +#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/index.php:532 +#: application/views/logbookadvanced/index.php:542 +#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/index.php:565 +#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:588 +#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:612 +#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/index.php:655 +#: application/views/logbookadvanced/index.php:664 #: application/views/lotw/import.php:55 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -3875,8 +3886,8 @@ msgstr "Zeitraum" #: application/views/distances/index.php:53 #: application/views/gridmap/index.php:71 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:947 +#: application/views/logbookadvanced/index.php:377 +#: application/views/logbookadvanced/index.php:958 #: application/views/logbookadvanced/useroptions.php:158 #: application/views/timeline/index.php:79 application/views/user/edit.php:351 #: application/views/view_log/partial/log_ajax.php:21 @@ -3896,7 +3907,7 @@ msgstr "Alle außer SAT" #: application/views/gridmap/index.php:75 #: application/views/logbookadvanced/edit.php:207 #: application/views/logbookadvanced/edit.php:215 -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:473 #: application/views/timeline/index.php:84 msgid "None/Empty" msgstr "Keine/Leer" @@ -3906,7 +3917,7 @@ msgstr "Keine/Leer" #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:77 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:381 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:532 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 @@ -3920,7 +3931,7 @@ msgstr "Flugzeug-Scatter" #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:78 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:382 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:533 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 @@ -3934,7 +3945,7 @@ msgstr "Aurora" #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:79 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:383 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:534 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 @@ -3948,7 +3959,7 @@ msgstr "Aurora-E" #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:80 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:384 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:535 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 @@ -3962,7 +3973,7 @@ msgstr "Rückwärts-Scatter" #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:81 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:385 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:536 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 @@ -3976,7 +3987,7 @@ msgstr "EchoLink" #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:82 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:386 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:537 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 @@ -3990,7 +4001,7 @@ msgstr "Erde-Mond-Erde" #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:83 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:385 +#: application/views/logbookadvanced/index.php:387 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:538 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 @@ -4004,7 +4015,7 @@ msgstr "Sporadic E" #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:84 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:386 +#: application/views/logbookadvanced/index.php:388 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:539 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 @@ -4018,7 +4029,7 @@ msgstr "feldausgerichtete Irregularitäten" #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:85 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:387 +#: application/views/logbookadvanced/index.php:389 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:540 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 @@ -4032,7 +4043,7 @@ msgstr "F2-Reflexion" #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:86 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:388 +#: application/views/logbookadvanced/index.php:390 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:541 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 @@ -4046,7 +4057,7 @@ msgstr "Internet-gestützt" #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:87 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:391 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:542 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 @@ -4060,7 +4071,7 @@ msgstr "Ionoscatter" #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:88 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:392 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:543 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 @@ -4074,7 +4085,7 @@ msgstr "IRLP" #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:89 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:393 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:544 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 @@ -4088,7 +4099,7 @@ msgstr "Meteor-Scatter" #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:90 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:394 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:545 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 @@ -4102,7 +4113,7 @@ msgstr "Terrestrische oder atmosphärische Repeater oder Transponder" #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:91 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:395 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:546 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 @@ -4116,7 +4127,7 @@ msgstr "Regen-Scatter" #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:92 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:396 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:547 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 @@ -4130,7 +4141,7 @@ msgstr "Satellit" #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:93 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:397 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:548 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 @@ -4144,7 +4155,7 @@ msgstr "Transequatorial" #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:94 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:398 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:549 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 @@ -4205,7 +4216,7 @@ msgstr "Anzeigen" #: application/views/hamsat/index.php:32 #: application/views/interface_assets/header.php:210 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:357 +#: application/views/logbookadvanced/index.php:359 #: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 @@ -4226,7 +4237,7 @@ msgstr "Satellit" #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:118 -#: application/views/logbookadvanced/index.php:366 +#: application/views/logbookadvanced/index.php:368 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:54 @@ -4356,6 +4367,8 @@ msgstr "Nichts gefunden!" #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/logbookadvanced/showUpdateResult.php:60 +#: application/views/logbookadvanced/showUpdateResult.php:104 #: application/views/lotw_views/index.php:32 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 @@ -4536,6 +4549,8 @@ msgstr "Zeit" #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 +#: application/views/logbookadvanced/showMissingDxccQsos.php:10 +#: application/views/logbookadvanced/showStateQsos.php:21 #: application/views/public_search/result.php:14 #: application/views/qslcard/searchresult.php:8 #: application/views/qso/components/previous_contacts.php:7 @@ -5211,7 +5226,7 @@ msgstr "Berechtigungen" #: application/views/club/permissions.php:250 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:740 +#: application/views/logbookadvanced/index.php:742 #: application/views/notes/main.php:77 application/views/qrz/export.php:44 #: application/views/user/index.php:33 application/views/user/index.php:160 #: application/views/webadif/export.php:45 @@ -5346,8 +5361,8 @@ msgid "Filtering on" msgstr "Filtern auf" #: application/views/awards/counties/details.php:13 -#: application/views/logbookadvanced/index.php:426 -#: application/views/logbookadvanced/index.php:911 +#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:922 #: application/views/logbookadvanced/useroptions.php:110 msgid "County" msgstr "County" @@ -5443,8 +5458,8 @@ msgstr "Gesamt" #: application/views/gridmap/index.php:229 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 -#: application/views/logbookadvanced/index.php:400 -#: application/views/logbookadvanced/index.php:914 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:925 #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:308 @@ -5508,7 +5523,7 @@ msgstr "Diplome - CQ WAZ" #: application/views/awards/dxcc/index.php:41 #: application/views/awards/wpx/index.php:13 #: application/views/gridmap/index.php:19 -#: application/views/logbookadvanced/index.php:270 +#: application/views/logbookadvanced/index.php:272 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" msgstr "Filter" @@ -5520,7 +5535,7 @@ msgstr "Zeige CQ-Zonen-Karte" #: application/views/awards/cq/index.php:55 #: application/views/awards/dxcc/index.php:51 #: application/views/gridmap/index.php:28 -#: application/views/logbookadvanced/index.php:276 +#: application/views/logbookadvanced/index.php:278 msgid "Date Presets" msgstr "Standarddaten" @@ -5532,55 +5547,55 @@ msgstr "Standarddaten" #: application/views/dashboard/index.php:408 #: application/views/dashboard/index.php:429 #: application/views/gridmap/index.php:31 -#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:280 msgid "Today" msgstr "Heute" #: application/views/awards/cq/index.php:58 #: application/views/awards/dxcc/index.php:54 #: application/views/gridmap/index.php:32 -#: application/views/logbookadvanced/index.php:279 +#: application/views/logbookadvanced/index.php:281 msgid "Yesterday" msgstr "Gestern" #: application/views/awards/cq/index.php:59 #: application/views/awards/dxcc/index.php:55 #: application/views/gridmap/index.php:33 -#: application/views/logbookadvanced/index.php:280 +#: application/views/logbookadvanced/index.php:282 msgid "Last 7 Days" msgstr "Letzte 7 Tage" #: application/views/awards/cq/index.php:60 #: application/views/awards/dxcc/index.php:56 #: application/views/gridmap/index.php:34 -#: application/views/logbookadvanced/index.php:281 +#: application/views/logbookadvanced/index.php:283 msgid "Last 30 Days" msgstr "Letzte 30 Tage" #: application/views/awards/cq/index.php:61 #: application/views/awards/dxcc/index.php:57 #: application/views/gridmap/index.php:35 -#: application/views/logbookadvanced/index.php:282 +#: application/views/logbookadvanced/index.php:284 msgid "This Month" msgstr "Dieser Monat" #: application/views/awards/cq/index.php:62 #: application/views/awards/dxcc/index.php:58 #: application/views/gridmap/index.php:36 -#: application/views/logbookadvanced/index.php:283 +#: application/views/logbookadvanced/index.php:285 msgid "Last Month" msgstr "Letzter Monat" #: application/views/awards/cq/index.php:63 #: application/views/awards/dxcc/index.php:59 #: application/views/gridmap/index.php:37 -#: application/views/logbookadvanced/index.php:284 +#: application/views/logbookadvanced/index.php:286 msgid "This Year" msgstr "Dieses Jahr" #: application/views/awards/cq/index.php:64 #: application/views/awards/dxcc/index.php:60 -#: application/views/logbookadvanced/index.php:285 +#: application/views/logbookadvanced/index.php:287 msgid "Last Year" msgstr "Letztes Jahr" @@ -5588,7 +5603,7 @@ msgstr "Letztes Jahr" #: application/views/awards/dxcc/index.php:61 #: application/views/gridmap/index.php:38 #: application/views/interface_assets/footer.php:52 -#: application/views/logbookadvanced/index.php:286 +#: application/views/logbookadvanced/index.php:288 #: application/views/qso/index.php:757 msgid "Clear" msgstr "Zurücksetzen" @@ -5736,7 +5751,7 @@ msgstr "Tabelle" #: application/views/awards/waja/index.php:135 #: application/views/awards/wap/index.php:129 #: application/views/awards/was/index.php:133 -#: application/views/logbookadvanced/index.php:813 +#: application/views/logbookadvanced/index.php:821 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Karte" @@ -5894,8 +5909,8 @@ msgstr "Jedes Band" #: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:828 -#: application/views/logbookadvanced/index.php:829 +#: application/views/logbookadvanced/index.php:839 +#: application/views/logbookadvanced/index.php:840 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:43 application/views/user/edit.php:723 @@ -5969,7 +5984,7 @@ msgstr "Inklusive gelöschte" #: application/views/bandmap/list.php:339 #: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:217 -#: application/views/logbookadvanced/index.php:473 +#: application/views/logbookadvanced/index.php:475 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:480 @@ -5983,7 +5998,7 @@ msgstr "Antarktis" #: application/views/bandmap/list.php:338 #: application/views/bandmap/list.php:352 #: application/views/logbookadvanced/edit.php:216 -#: application/views/logbookadvanced/index.php:472 +#: application/views/logbookadvanced/index.php:474 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:479 @@ -5997,7 +6012,7 @@ msgstr "Afrika" #: application/views/bandmap/list.php:340 #: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 -#: application/views/logbookadvanced/index.php:475 +#: application/views/logbookadvanced/index.php:477 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:481 @@ -6011,7 +6026,7 @@ msgstr "Asien" #: application/views/bandmap/list.php:341 #: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:220 -#: application/views/logbookadvanced/index.php:476 +#: application/views/logbookadvanced/index.php:478 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:482 @@ -6025,7 +6040,7 @@ msgstr "Europa" #: application/views/bandmap/list.php:342 #: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:218 -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:476 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:483 @@ -6039,7 +6054,7 @@ msgstr "Nordamerika" #: application/views/bandmap/list.php:344 #: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:221 -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:479 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:485 @@ -6053,7 +6068,7 @@ msgstr "Südamerika" #: application/views/bandmap/list.php:343 #: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:222 -#: application/views/logbookadvanced/index.php:478 +#: application/views/logbookadvanced/index.php:480 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:484 @@ -6102,6 +6117,7 @@ msgstr "DXCC Name" #: application/views/awards/dxcc/index.php:276 #: application/views/awards/iota/index.php:199 #: application/views/awards/wae/index.php:163 +#: application/views/logbookadvanced/statecheckresult.php:10 #: application/views/timeline/index.php:199 #: application/views/timeline/index.php:297 msgid "Prefix" @@ -6382,7 +6398,7 @@ msgstr "Zeige IOTA Karte" #: application/views/contesting/index.php:229 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:872 +#: application/views/logbookadvanced/index.php:883 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:58 #: application/views/lotw/satupdate.php:7 @@ -6410,8 +6426,8 @@ msgstr "Gelöscht" #: application/views/gridmap/index.php:231 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 -#: application/views/logbookadvanced/index.php:414 -#: application/views/logbookadvanced/index.php:917 +#: application/views/logbookadvanced/index.php:416 +#: application/views/logbookadvanced/index.php:928 #: application/views/logbookadvanced/useroptions.php:118 #: application/views/lookup/index.php:8 application/views/qso/edit_ajax.php:316 #: application/views/qso/index.php:515 @@ -6705,7 +6721,8 @@ msgid "Band Categories" msgstr "Band-Kategorien" #: application/views/awards/pl_polska/index.php:372 -#: application/views/logbookadvanced/index.php:772 +#: application/views/logbookadvanced/dbtoolsdialog.php:47 +#: application/views/logbookadvanced/index.php:773 msgid "Fix State" msgstr "Aktualisiere Staaten" @@ -6856,8 +6873,10 @@ msgid "Reference" msgstr "Referenz" #: application/views/awards/sig/qso_list.php:10 -#: application/views/logbookadvanced/index.php:845 +#: application/views/logbookadvanced/index.php:856 #: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/logbookadvanced/showMissingDxccQsos.php:11 +#: application/views/logbookadvanced/showStateQsos.php:22 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 #: application/views/qso/components/previous_contacts.php:6 @@ -7013,8 +7032,8 @@ msgstr "Diplome - Worked All Continents (WAC)" #: application/views/bandmap/list.php:571 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 -#: application/views/logbookadvanced/index.php:468 -#: application/views/logbookadvanced/index.php:956 +#: application/views/logbookadvanced/index.php:470 +#: application/views/logbookadvanced/index.php:967 #: application/views/logbookadvanced/useroptions.php:170 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:476 @@ -7692,8 +7711,8 @@ msgstr "Frischer Spot (<5 Minuten alt)" #: application/views/bandmap/list.php:510 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 -#: application/views/logbookadvanced/index.php:464 -#: application/views/logbookadvanced/index.php:950 +#: application/views/logbookadvanced/index.php:466 +#: application/views/logbookadvanced/index.php:961 #: application/views/logbookadvanced/useroptions.php:162 #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 @@ -7800,8 +7819,8 @@ msgstr "Spotter" #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:485 -#: application/views/logbookadvanced/index.php:944 +#: application/views/logbookadvanced/index.php:487 +#: application/views/logbookadvanced/index.php:955 #: application/views/logbookadvanced/useroptions.php:154 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:379 #: application/views/view_log/qso.php:228 @@ -8195,7 +8214,7 @@ msgstr "Gespottetes Rufzeichen" #: application/views/bandmap/list.php:573 msgid "Flag" -msgstr "Marker" +msgstr "Landesflagge" #: application/views/bandmap/list.php:574 msgid "DXCC Entity" @@ -8327,7 +8346,6 @@ msgstr "" #: application/views/bands/edit.php:2 #: application/views/logbookadvanced/index.php:53 -#: application/views/update/index.php:35 msgid "WARNING" msgstr "WARNUNG" @@ -8517,7 +8535,7 @@ msgstr "" "den IOTA-Referenzcode)." #: application/views/cabrillo/index.php:48 -#: application/views/logbookadvanced/index.php:787 +#: application/views/logbookadvanced/index.php:795 #: application/views/oqrs/showrequests.php:31 #: application/views/qso/index.php:362 #: application/views/station_profile/edit.php:96 @@ -8631,19 +8649,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:187 #: application/views/logbookadvanced/edit.php:193 #: application/views/logbookadvanced/edit.php:199 -#: application/views/logbookadvanced/index.php:509 -#: application/views/logbookadvanced/index.php:520 -#: application/views/logbookadvanced/index.php:553 -#: application/views/logbookadvanced/index.php:564 -#: application/views/logbookadvanced/index.php:576 -#: application/views/logbookadvanced/index.php:587 -#: application/views/logbookadvanced/index.php:600 -#: application/views/logbookadvanced/index.php:611 -#: application/views/logbookadvanced/index.php:622 -#: application/views/logbookadvanced/index.php:631 -#: application/views/logbookadvanced/index.php:646 -#: application/views/logbookadvanced/index.php:654 -#: application/views/logbookadvanced/index.php:663 +#: application/views/logbookadvanced/index.php:511 +#: application/views/logbookadvanced/index.php:522 +#: application/views/logbookadvanced/index.php:555 +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/index.php:578 +#: application/views/logbookadvanced/index.php:589 +#: application/views/logbookadvanced/index.php:602 +#: application/views/logbookadvanced/index.php:613 +#: application/views/logbookadvanced/index.php:624 +#: application/views/logbookadvanced/index.php:633 +#: application/views/logbookadvanced/index.php:648 +#: application/views/logbookadvanced/index.php:656 +#: application/views/logbookadvanced/index.php:665 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:444 #: application/views/qso/edit_ajax.php:477 @@ -8696,19 +8714,19 @@ msgstr "Ja" #: application/views/logbookadvanced/edit.php:188 #: application/views/logbookadvanced/edit.php:194 #: application/views/logbookadvanced/edit.php:200 -#: application/views/logbookadvanced/index.php:510 -#: application/views/logbookadvanced/index.php:521 -#: application/views/logbookadvanced/index.php:554 -#: application/views/logbookadvanced/index.php:565 -#: application/views/logbookadvanced/index.php:577 -#: application/views/logbookadvanced/index.php:588 -#: application/views/logbookadvanced/index.php:601 -#: application/views/logbookadvanced/index.php:612 -#: application/views/logbookadvanced/index.php:623 -#: application/views/logbookadvanced/index.php:632 -#: application/views/logbookadvanced/index.php:647 -#: application/views/logbookadvanced/index.php:655 -#: application/views/logbookadvanced/index.php:664 +#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:567 +#: application/views/logbookadvanced/index.php:579 +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/index.php:603 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/index.php:625 +#: application/views/logbookadvanced/index.php:634 +#: application/views/logbookadvanced/index.php:649 +#: application/views/logbookadvanced/index.php:657 +#: application/views/logbookadvanced/index.php:666 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:443 #: application/views/qso/edit_ajax.php:476 @@ -8840,6 +8858,7 @@ msgstr "Verfügbare Berechtigungen" #: application/views/club/permissions.php:26 #: application/views/eqsl/download.php:45 +#: application/views/logbookadvanced/statecheckresult.php:13 msgid "Action" msgstr "Aktion" @@ -9046,7 +9065,7 @@ msgstr "" #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 -#: application/views/logbookadvanced/index.php:968 +#: application/views/logbookadvanced/index.php:979 #: application/views/logbookadvanced/useroptions.php:186 #: application/views/qrz/export.php:39 #: application/views/qslprint/qslprint.php:32 @@ -9516,7 +9535,7 @@ msgid "Locator" msgstr "Lokator" #: application/views/contesting/index.php:69 -#: application/views/logbookadvanced/index.php:875 +#: application/views/logbookadvanced/index.php:886 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/qso/edit_ajax.php:177 msgid "QTH" @@ -10008,14 +10027,14 @@ msgstr "Erhalten" #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 -#: application/views/logbookadvanced/index.php:511 -#: application/views/logbookadvanced/index.php:522 -#: application/views/logbookadvanced/index.php:555 -#: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/index.php:578 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/index.php:602 -#: application/views/logbookadvanced/index.php:613 +#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:557 +#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:591 +#: application/views/logbookadvanced/index.php:604 +#: application/views/logbookadvanced/index.php:615 #: application/views/oqrs/qsolist.php:57 application/views/oqrs/qsolist.php:99 #: application/views/qslprint/qsolist.php:68 #: application/views/qslprint/qsolist.php:110 @@ -10585,6 +10604,11 @@ msgid "Check for new version" msgstr "Nach neuer Version suchen" #: application/views/debug/index.php:495 +#: application/views/logbookadvanced/checkresult.php:37 +#: application/views/logbookadvanced/checkresult.php:53 +#: application/views/logbookadvanced/checkresult.php:76 +#: application/views/logbookadvanced/checkresult.php:87 +#: application/views/logbookadvanced/checkresult.php:97 #: application/views/logbookadvanced/index.php:57 msgid "Update now" msgstr "Jetzt aktualisieren" @@ -11818,7 +11842,7 @@ msgstr "" "Warnung." #: application/views/interface_assets/footer.php:878 -#: application/views/logbookadvanced/index.php:792 +#: application/views/logbookadvanced/index.php:800 msgid "Callsign: " msgstr "Rufzeichen: " @@ -12071,7 +12095,7 @@ msgid "Log" msgstr "Logge" #: application/views/interface_assets/header.php:398 -#: application/views/logbookadvanced/index.php:689 +#: application/views/logbookadvanced/index.php:691 #: application/views/oqrs/index.php:28 application/views/user/edit.php:491 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" @@ -12152,7 +12176,7 @@ msgid "DCL Export" msgstr "DCL Export" #: application/views/interface_assets/header.php:536 -#: application/views/logbookadvanced/index.php:831 +#: application/views/logbookadvanced/index.php:842 msgid "Help" msgstr "Hilfe" @@ -12413,6 +12437,7 @@ msgid "Label types" msgstr "Etiketten-Typen" #: application/views/labels/index.php:81 +#: application/views/logbookadvanced/statecheckresult.php:12 #: application/views/statistics/index.php:70 #: application/views/statistics/index.php:114 msgid "QSOs" @@ -12484,25 +12509,20 @@ msgstr "" "Der ursprüngliche Wert wird erhalten und genauer spezifiziert, wenn eine " "Übereinstimmung vorliegt (z.B. JO90AB oder JO90AB12)." -#: application/views/logbookadvanced/continentdialog.php:2 -msgid "" -"Update all QSOs with the continent based on the DXCC country of the QSO." +#: application/views/logbookadvanced/checkresult.php:27 +msgid "Distance Check Results" msgstr "" -"Aktualisiere alle QSOs mit Kontinentinformationen basierend auf dem DXCC-" -"Land des QSO." -#: application/views/logbookadvanced/continentdialog.php:3 -msgid "This is useful if you have imported QSOs without continent information." +#: application/views/logbookadvanced/checkresult.php:28 +#: application/views/logbookadvanced/checkresult.php:44 +#: application/views/logbookadvanced/checkresult.php:60 +#: application/views/logbookadvanced/checkresult.php:72 +#: application/views/logbookadvanced/checkresult.php:83 +#: application/views/logbookadvanced/checkresult.php:94 +msgid "QSOs to update found:" msgstr "" -"Dies ist hilfreich, wenn du QSOs ohne Kontinentinformationen importiert hast." - -#: application/views/logbookadvanced/continentdialog.php:4 -msgid "" -"Update will only set the continent for QSOs where the continent is empty." -msgstr "" -"Aktualisierung setzt den Kontinent nur für die QSOs, wo keine Angaben zum " -"Kontinent vorhanden sind." +#: application/views/logbookadvanced/checkresult.php:31 #: application/views/logbookadvanced/distancedialog.php:2 msgid "" "Update all QSOs with the distance based on your gridsquare set in the " @@ -12513,14 +12533,156 @@ msgstr "" "des Stationsprofils und dem Planquadrat des QSO-Partners. Die Distanz wird " "anhand der Angabe zum langen oder kurzen Weg berechnet." +#: application/views/logbookadvanced/checkresult.php:32 #: application/views/logbookadvanced/distancedialog.php:3 msgid "This is useful if you have imported QSOs without distance information." msgstr "Dies ist hilfreich, wenn die QSOs ohne Distanzangaben importiert hast." +#: application/views/logbookadvanced/checkresult.php:33 #: application/views/logbookadvanced/distancedialog.php:4 msgid "Update will only set the distance for QSOs where the distance is empty." msgstr "Aktualisierung setzt die Distanz nur, wenn diese leer ist." +#: application/views/logbookadvanced/checkresult.php:43 +msgid "Continent Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:47 +#: application/views/logbookadvanced/continentdialog.php:2 +msgid "" +"Update all QSOs with the continent based on the DXCC country of the QSO." +msgstr "" +"Aktualisiere alle QSOs mit Kontinentinformationen basierend auf dem DXCC-" +"Land des QSO." + +#: application/views/logbookadvanced/checkresult.php:48 +#: application/views/logbookadvanced/continentdialog.php:3 +msgid "This is useful if you have imported QSOs without continent information." +msgstr "" +"Dies ist hilfreich, wenn du QSOs ohne Kontinentinformationen importiert hast." + +#: application/views/logbookadvanced/checkresult.php:49 +#: application/views/logbookadvanced/continentdialog.php:4 +msgid "" +"Update will only set the continent for QSOs where the continent is empty." +msgstr "" +"Aktualisierung setzt den Kontinent nur für die QSOs, wo keine Angaben zum " +"Kontinent vorhanden sind." + +#: application/views/logbookadvanced/checkresult.php:59 +msgid "DXCC Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:64 +#: application/views/logbookadvanced/statecheckresult.php:30 +msgid "Run fix" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:71 +msgid "CQ Zone Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:82 +msgid "ITU Zone Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:93 +msgid "Gridsquare Check Results" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:4 +msgid "Data Repair Tools" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:6 +msgid "Wiki Help" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:11 +#: application/views/logbookadvanced/index.php:771 +msgid "Fix CQ Zones" +msgstr "CQ-Zonen aktualisieren" + +#: application/views/logbookadvanced/dbtoolsdialog.php:12 +msgid "Update missing CQ zone information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:16 +#: application/views/logbookadvanced/dbtoolsdialog.php:28 +#: application/views/logbookadvanced/dbtoolsdialog.php:40 +#: application/views/logbookadvanced/dbtoolsdialog.php:52 +#: application/views/logbookadvanced/dbtoolsdialog.php:64 +#: application/views/logbookadvanced/dbtoolsdialog.php:76 +#: application/views/logbookadvanced/dbtoolsdialog.php:102 +msgid "Check" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:23 +#: application/views/logbookadvanced/index.php:772 +msgid "Fix ITU Zones" +msgstr "ITU-Zonen aktualisieren" + +#: application/views/logbookadvanced/dbtoolsdialog.php:24 +msgid "Update missing ITU zone information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:35 +msgid "Fix Continent" +msgstr "Aktualisiere Kontinent" + +#: application/views/logbookadvanced/dbtoolsdialog.php:36 +msgid "Update missing or incorrect continent information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:48 +msgid "Update missing state/province information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:59 +#: application/views/logbookadvanced/index.php:68 +msgid "Update Distances" +msgstr "Aktualisiere Distanzen" + +#: application/views/logbookadvanced/dbtoolsdialog.php:60 +msgid "Calculate and update distance information for QSOs" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:71 +msgid "Check QSOs missing DXCC data" +msgstr "Überprüft QSOs auf fehlende DXCC-Daten" + +#: application/views/logbookadvanced/dbtoolsdialog.php:72 +msgid "Identify QSOs that are missing DXCC information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:83 +msgid "Re-check DXCC for all QSOs in the logbook" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:84 +msgid "Use Wavelog to determine DXCC for all QSOs." +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:85 +msgid "This will overwrite ALL existing DXCC information!" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:89 +msgid "Run" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:96 +msgid "Lookup QSOs with missing grid in callbook" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:97 +msgid "Use callbook lookup to set gridsquare" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:98 +msgid "This is limited to 250 callsigns for each run!" +msgstr "" + #: application/views/logbookadvanced/edit.php:1 msgid "Please choose the column to be edited:" msgstr "Bitte wähle die zu bearbeitende Spalte aus:" @@ -12538,7 +12700,7 @@ msgid "Station Power" msgstr "Sendeleistung" #: application/views/logbookadvanced/edit.php:31 -#: application/views/logbookadvanced/index.php:938 +#: application/views/logbookadvanced/index.php:949 #: application/views/logbookadvanced/useroptions.php:146 #: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:489 #: application/views/view_log/qso.php:481 @@ -12610,8 +12772,8 @@ msgid "QSL Sent Method" msgstr "QSL Sendemethode" #: application/views/logbookadvanced/edit.php:53 -#: application/views/logbookadvanced/index.php:639 -#: application/views/logbookadvanced/index.php:878 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/index.php:889 #: application/views/logbookadvanced/useroptions.php:66 msgid "QSL via" msgstr "QSL via" @@ -12636,23 +12798,23 @@ msgstr "Band RX" #: application/views/logbookadvanced/edit.php:189 #: application/views/logbookadvanced/edit.php:195 #: application/views/logbookadvanced/edit.php:202 -#: application/views/logbookadvanced/index.php:479 -#: application/views/logbookadvanced/index.php:804 +#: application/views/logbookadvanced/index.php:481 +#: application/views/logbookadvanced/index.php:812 msgid "Invalid" msgstr "Ungültig" #: application/views/logbookadvanced/edit.php:177 #: application/views/logbookadvanced/edit.php:203 -#: application/views/logbookadvanced/index.php:524 -#: application/views/logbookadvanced/index.php:568 -#: application/views/logbookadvanced/index.php:591 -#: application/views/logbookadvanced/index.php:615 +#: application/views/logbookadvanced/index.php:526 +#: application/views/logbookadvanced/index.php:570 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:617 msgid "Verified" msgstr "Verifiziert" #: application/views/logbookadvanced/edit.php:208 -#: application/views/logbookadvanced/index.php:532 -#: application/views/logbookadvanced/index.php:542 +#: application/views/logbookadvanced/index.php:534 +#: application/views/logbookadvanced/index.php:544 #: application/views/oqrs/qsolist.php:73 application/views/oqrs/qsolist.php:115 #: application/views/oqrs/showrequests.php:8 #: application/views/qslprint/qslprint.php:7 @@ -12670,8 +12832,8 @@ msgid "Direct" msgstr "Direkt" #: application/views/logbookadvanced/edit.php:209 -#: application/views/logbookadvanced/index.php:531 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/index.php:543 #: application/views/oqrs/qsolist.php:70 application/views/oqrs/qsolist.php:112 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:48 @@ -12691,8 +12853,8 @@ msgid "Bureau" msgstr "Büro" #: application/views/logbookadvanced/edit.php:210 -#: application/views/logbookadvanced/index.php:533 -#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:545 #: application/views/oqrs/qsolist.php:79 application/views/oqrs/qsolist.php:121 #: application/views/oqrs/showrequests.php:9 #: application/views/qslprint/qslprint.php:8 @@ -12710,8 +12872,8 @@ msgid "Electronic" msgstr "Elektronisch" #: application/views/logbookadvanced/edit.php:211 -#: application/views/logbookadvanced/index.php:534 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/index.php:546 #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 @@ -13040,11 +13202,6 @@ msgstr "Während der Erzeugung der Anfrage ist ein Fehler aufgetreten" msgid "You need to select at least 1 location to do a search!" msgstr "Du musst mindestens 1 Lokation auswählen, um eine Suche durchzuführen!" -#: application/views/logbookadvanced/index.php:68 -#: application/views/logbookadvanced/index.php:773 -msgid "Update Distances" -msgstr "Aktualisiere Distanzen" - #: application/views/logbookadvanced/index.php:69 msgid "QSO records updated." msgstr "QSO-Einträge aktualisiert." @@ -13057,44 +13214,50 @@ msgstr "Es gab ein Problem bei der Aktualisierung der Distanzen." msgid "Distances updated successfully!" msgstr "Distanzen wurden erfolgreich aktualisiert!" -#: application/views/logbookadvanced/index.php:292 +#: application/views/logbookadvanced/index.php:73 +msgid "" +"Are you sure you want to fix all QSOs with missing DXCC information? This " +"action cannot be undone." +msgstr "" + +#: application/views/logbookadvanced/index.php:294 msgid "From" msgstr "Von" -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:298 msgid "To" msgstr "bis" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:851 +#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:862 #: application/views/logbookadvanced/useroptions.php:30 msgid "Dx" msgstr "Dx" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:326 -#: application/views/logbookadvanced/index.php:332 -#: application/views/logbookadvanced/index.php:403 -#: application/views/logbookadvanced/index.php:417 -#: application/views/logbookadvanced/index.php:427 -#: application/views/logbookadvanced/index.php:431 -#: application/views/logbookadvanced/index.php:435 -#: application/views/logbookadvanced/index.php:439 -#: application/views/logbookadvanced/index.php:457 -#: application/views/logbookadvanced/index.php:461 -#: application/views/logbookadvanced/index.php:465 -#: application/views/logbookadvanced/index.php:486 -#: application/views/logbookadvanced/index.php:490 -#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:303 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:419 +#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:441 +#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:467 +#: application/views/logbookadvanced/index.php:488 +#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:642 msgid "Empty" msgstr "Leer" -#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:380 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Keine/Leer" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:491 msgid "" "Distance in kilometers. Search will look for distances greater than or equal " "to this value." @@ -13102,18 +13265,18 @@ msgstr "" "Entfernung in Kilometern. Die Suche wird nach Entfernungen suchen, die " "größer oder gleich diesem Wert sind." -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:502 msgid "QSL Filters" msgstr "QSL-Filter" -#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/index.php:508 msgid "QSL sent" msgstr "QSL gesendet" -#: application/views/logbookadvanced/index.php:512 -#: application/views/logbookadvanced/index.php:556 -#: application/views/logbookadvanced/index.php:579 -#: application/views/logbookadvanced/index.php:603 +#: application/views/logbookadvanced/index.php:514 +#: application/views/logbookadvanced/index.php:558 +#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/index.php:605 #: application/views/oqrs/qsolist.php:54 application/views/oqrs/qsolist.php:96 #: application/views/qslprint/qsolist.php:65 #: application/views/qslprint/qsolist.php:107 @@ -13140,18 +13303,18 @@ msgstr "QSL gesendet" msgid "Queued" msgstr "In Warteschlange" -#: application/views/logbookadvanced/index.php:513 -#: application/views/logbookadvanced/index.php:523 -#: application/views/logbookadvanced/index.php:557 -#: application/views/logbookadvanced/index.php:567 -#: application/views/logbookadvanced/index.php:580 -#: application/views/logbookadvanced/index.php:590 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/index.php:614 -#: application/views/logbookadvanced/index.php:624 -#: application/views/logbookadvanced/index.php:633 -#: application/views/logbookadvanced/index.php:656 -#: application/views/logbookadvanced/index.php:665 +#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:525 +#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/index.php:582 +#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:606 +#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:626 +#: application/views/logbookadvanced/index.php:635 +#: application/views/logbookadvanced/index.php:658 +#: application/views/logbookadvanced/index.php:667 #: application/views/oqrs/qsolist.php:60 application/views/oqrs/qsolist.php:102 #: application/views/oqrs/qsolist.php:167 #: application/views/oqrs/qsolist.php:182 @@ -13196,272 +13359,269 @@ msgstr "In Warteschlange" msgid "Invalid (Ignore)" msgstr "Ungültig (Ignorieren)" -#: application/views/logbookadvanced/index.php:517 +#: application/views/logbookadvanced/index.php:519 msgid "QSL received" msgstr "QSL erhalten" -#: application/views/logbookadvanced/index.php:528 +#: application/views/logbookadvanced/index.php:530 msgid "QSL send. method" msgstr "QSL-Send. Methode" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:540 msgid "QSL recv. method" msgstr "QSL-Empf. Methode" -#: application/views/logbookadvanced/index.php:550 +#: application/views/logbookadvanced/index.php:552 msgid "LoTW sent" msgstr "LoTW gesendet" -#: application/views/logbookadvanced/index.php:561 +#: application/views/logbookadvanced/index.php:563 msgid "LoTW received" msgstr "LoTW erhalten" -#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:575 msgid "Clublog sent" msgstr "Clublog gesendet" -#: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/index.php:586 msgid "Clublog received" msgstr "Clublog erhalten" -#: application/views/logbookadvanced/index.php:597 +#: application/views/logbookadvanced/index.php:599 msgid "eQSL sent" msgstr "eQSL gesendet" -#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/index.php:610 msgid "eQSL received" msgstr "eQSL erhalten" -#: application/views/logbookadvanced/index.php:619 +#: application/views/logbookadvanced/index.php:621 msgid "DCL sent" msgstr "DCL gesendet" -#: application/views/logbookadvanced/index.php:628 +#: application/views/logbookadvanced/index.php:630 msgid "DCL received" msgstr "DCL empfangen" -#: application/views/logbookadvanced/index.php:643 +#: application/views/logbookadvanced/index.php:645 msgid "QSL Images" msgstr "QSL Bilder" -#: application/views/logbookadvanced/index.php:651 +#: application/views/logbookadvanced/index.php:653 msgid "QRZ sent" msgstr "QRZ gesendet" -#: application/views/logbookadvanced/index.php:660 +#: application/views/logbookadvanced/index.php:662 msgid "QRZ received" msgstr "QRZ empfangen" -#: application/views/logbookadvanced/index.php:676 +#: application/views/logbookadvanced/index.php:678 msgid "Quickfilters" msgstr "Schnellfilter" -#: application/views/logbookadvanced/index.php:681 +#: application/views/logbookadvanced/index.php:683 msgid "Quicksearch with selected: " msgstr "Schnellsuche in Markierten: " -#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:688 msgid "Search Date" msgstr "Suche Datum" -#: application/views/logbookadvanced/index.php:692 +#: application/views/logbookadvanced/index.php:694 msgid "Search DXCC" msgstr "Suche DXCC" -#: application/views/logbookadvanced/index.php:695 +#: application/views/logbookadvanced/index.php:697 msgid "Search State" msgstr "Suche Staat" -#: application/views/logbookadvanced/index.php:698 +#: application/views/logbookadvanced/index.php:700 msgid "Search Gridsquare" msgstr "Suche Locator" -#: application/views/logbookadvanced/index.php:701 +#: application/views/logbookadvanced/index.php:703 msgid "Search CQ Zone" msgstr "Suche CQ-Zone" -#: application/views/logbookadvanced/index.php:704 +#: application/views/logbookadvanced/index.php:706 msgid "Search ITU Zone" msgstr "Suche ITU-Zone" -#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:709 msgid "Search Mode" msgstr "Suche Mode" -#: application/views/logbookadvanced/index.php:710 +#: application/views/logbookadvanced/index.php:712 msgid "Search Band" msgstr "Suche Band" -#: application/views/logbookadvanced/index.php:713 +#: application/views/logbookadvanced/index.php:715 msgid "Search IOTA" msgstr "Suche IOTA" -#: application/views/logbookadvanced/index.php:716 +#: application/views/logbookadvanced/index.php:718 msgid "Search SOTA" msgstr "Suche SOTA" -#: application/views/logbookadvanced/index.php:719 +#: application/views/logbookadvanced/index.php:721 msgid "Search POTA" msgstr "Suche POTA" -#: application/views/logbookadvanced/index.php:722 +#: application/views/logbookadvanced/index.php:724 msgid "Search WWFF" msgstr "Suche WWFF" -#: application/views/logbookadvanced/index.php:725 +#: application/views/logbookadvanced/index.php:727 msgid "Search Operator" msgstr "Suche Operator" -#: application/views/logbookadvanced/index.php:744 +#: application/views/logbookadvanced/index.php:746 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "Warnung! Bist du sicher, dass du die markierten QSO löschen willst?" -#: application/views/logbookadvanced/index.php:745 +#: application/views/logbookadvanced/index.php:747 msgid " QSO(s) will be deleted" msgstr " QSO(s) werden gelöscht" -#: application/views/logbookadvanced/index.php:749 +#: application/views/logbookadvanced/index.php:751 msgid "With selected: " msgstr "Bei Markierten: " -#: application/views/logbookadvanced/index.php:753 +#: application/views/logbookadvanced/index.php:755 #: application/views/qso/edit_ajax.php:725 msgid "Update from Callbook" msgstr "Aktualisieren aus dem Callbook" -#: application/views/logbookadvanced/index.php:754 +#: application/views/logbookadvanced/index.php:756 msgid "Queue Bureau" msgstr "In die Warteschlange (Büro)" -#: application/views/logbookadvanced/index.php:755 +#: application/views/logbookadvanced/index.php:757 msgid "Queue Direct" msgstr "In die Warteschlange (Direkt)" -#: application/views/logbookadvanced/index.php:756 +#: application/views/logbookadvanced/index.php:758 msgid "Queue Electronic" msgstr "In die Warteschlange (Elektronisch)" -#: application/views/logbookadvanced/index.php:757 +#: application/views/logbookadvanced/index.php:759 msgid "Sent (Bureau)" msgstr "Gesendet (Büro)" -#: application/views/logbookadvanced/index.php:758 +#: application/views/logbookadvanced/index.php:760 msgid "Sent (Direct)" msgstr "Gesendet (Direkt)" -#: application/views/logbookadvanced/index.php:759 +#: application/views/logbookadvanced/index.php:761 msgid "Sent (Electronic)" msgstr "Gesendet (Elektronisch)" -#: application/views/logbookadvanced/index.php:760 +#: application/views/logbookadvanced/index.php:762 msgid "Not Sent" msgstr "Nicht gesendet" -#: application/views/logbookadvanced/index.php:761 +#: application/views/logbookadvanced/index.php:763 msgid "QSL Not Required" msgstr "QSL nicht erforderlich" -#: application/views/logbookadvanced/index.php:762 +#: application/views/logbookadvanced/index.php:764 msgid "Not Received" msgstr "Nicht erhalten" -#: application/views/logbookadvanced/index.php:763 +#: application/views/logbookadvanced/index.php:765 msgid "Received (Bureau)" msgstr "Erhalten (Büro)" -#: application/views/logbookadvanced/index.php:764 +#: application/views/logbookadvanced/index.php:766 msgid "Received (Direct)" msgstr "Erhalten (Direkt)" -#: application/views/logbookadvanced/index.php:765 +#: application/views/logbookadvanced/index.php:767 msgid "Received (Electronic)" msgstr "Erhalten (Elektronisch)" -#: application/views/logbookadvanced/index.php:766 +#: application/views/logbookadvanced/index.php:768 msgid "Create ADIF" msgstr "Erstelle ADIF" -#: application/views/logbookadvanced/index.php:767 +#: application/views/logbookadvanced/index.php:769 msgid "Print Label" msgstr "Label drucken" -#: application/views/logbookadvanced/index.php:768 +#: application/views/logbookadvanced/index.php:770 msgid "QSL Slideshow" msgstr "QSL-Präsentation" -#: application/views/logbookadvanced/index.php:769 -msgid "Fix CQ Zones" -msgstr "CQ-Zonen aktualisieren" +#: application/views/logbookadvanced/index.php:777 +msgid "With ALL QSOs: " +msgstr "" -#: application/views/logbookadvanced/index.php:770 -msgid "Fix ITU Zones" -msgstr "ITU-Zonen aktualisieren" +#: application/views/logbookadvanced/index.php:781 +#: application/views/logbookadvanced/index.php:832 +msgid "Database Tools" +msgstr "" -#: application/views/logbookadvanced/index.php:771 -msgid "Fix Continent" -msgstr "Aktualisiere Kontinent" - -#: application/views/logbookadvanced/index.php:780 +#: application/views/logbookadvanced/index.php:788 #: application/views/oqrs/showrequests.php:58 msgid "# Results" msgstr "# Resultate" -#: application/views/logbookadvanced/index.php:801 +#: application/views/logbookadvanced/index.php:809 msgid "Dupes" msgstr "Duplikate" -#: application/views/logbookadvanced/index.php:817 +#: application/views/logbookadvanced/index.php:825 msgid "Globe map" msgstr "Globus-Karte" -#: application/views/logbookadvanced/index.php:848 +#: application/views/logbookadvanced/index.php:859 #: application/views/logbookadvanced/useroptions.php:26 msgid "De" msgstr "De" -#: application/views/logbookadvanced/index.php:893 +#: application/views/logbookadvanced/index.php:904 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 #: application/views/timeline/index.php:72 application/views/user/edit.php:627 msgid "QRZ" msgstr "QRZ" -#: application/views/logbookadvanced/index.php:899 +#: application/views/logbookadvanced/index.php:910 #: application/views/logbookadvanced/useroptions.php:94 #: application/views/qso/edit_ajax.php:527 msgid "QSL Msg (S)" msgstr "QSL-Nachricht (S)" -#: application/views/logbookadvanced/index.php:902 +#: application/views/logbookadvanced/index.php:913 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/qso/edit_ajax.php:536 msgid "QSL Msg (R)" msgstr "QSL-Nachricht (R)" -#: application/views/logbookadvanced/index.php:953 +#: application/views/logbookadvanced/index.php:964 #: application/views/logbookadvanced/useroptions.php:166 msgid "My Refs" msgstr "Mein Refs" -#: application/views/logbookadvanced/index.php:962 +#: application/views/logbookadvanced/index.php:973 msgid "Ant az" msgstr "Ant Az" -#: application/views/logbookadvanced/index.php:962 +#: application/views/logbookadvanced/index.php:973 #: application/views/logbookadvanced/useroptions.php:178 msgid "Antenna azimuth" msgstr "Antennenazimut" -#: application/views/logbookadvanced/index.php:965 +#: application/views/logbookadvanced/index.php:976 msgid "Ant el" msgstr "Ant El" -#: application/views/logbookadvanced/index.php:965 +#: application/views/logbookadvanced/index.php:976 #: application/views/logbookadvanced/useroptions.php:182 msgid "Antenna elevation" msgstr "Antennenelevation" -#: application/views/logbookadvanced/index.php:971 +#: application/views/logbookadvanced/index.php:982 #: application/views/logbookadvanced/useroptions.php:190 msgid "Station power" msgstr "Sendeleistung" @@ -13481,6 +13641,130 @@ msgstr "Zurück" msgid "Next" msgstr "Weiter" +#: application/views/logbookadvanced/showMissingDxccQsos.php:5 +#, php-format +msgid "Found %s QSO(s) missing DXCC information." +msgstr "" + +#: application/views/logbookadvanced/showMissingDxccQsos.php:17 +#: application/views/logbookadvanced/showStateQsos.php:28 +#: application/views/oqrs/qsolist.php:11 +#: application/views/qslprint/qslprint.php:31 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 +#: application/views/search/cqzones_result.php:16 +#: application/views/search/ituzones_result.php:16 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/search_result_ajax.php:130 +#: application/views/user/edit.php:529 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:228 +#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:672 +#: application/views/view_log/qso.php:676 +#: application/views/view_log/qso.php:680 +#: application/views/view_log/qso.php:686 +#: application/views/view_log/qso.php:693 +#: application/views/view_log/qso.php:700 +#: application/views/view_log/qso.php:707 +#: application/views/view_log/qso.php:714 +#: application/views/view_log/qso.php:721 +#: application/views/view_log/qso.php:728 +#: application/views/view_log/qso.php:735 +#: application/views/view_log/qso.php:742 +#: application/views/view_log/qso.php:747 +msgid "Station" +msgstr "Station" + +#: application/views/logbookadvanced/showMissingDxccQsos.php:38 +#: application/views/logbookadvanced/showStateQsos.php:49 +msgid "No Issues Found" +msgstr "" + +#: application/views/logbookadvanced/showStateQsos.php:16 +#, php-format +msgid "Found %s QSO(s) missing state information for DXCC %s." +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:31 +msgid "Results for DXCC update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:34 +#: application/views/logbookadvanced/showUpdateResult.php:40 +msgid "The number of QSOs updated for missing DXCC IDs was" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:36 +#: application/views/logbookadvanced/showUpdateResult.php:42 +msgid "The number of QSOs re-checked for DXCC was" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:55 +#: application/views/logbookadvanced/showUpdateResult.php:99 +msgid "These QSOs could not be updated:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:61 +#: application/views/logbookadvanced/showUpdateResult.php:107 +msgid "Reason" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:62 +#: application/views/logbookadvanced/showUpdateResult.php:106 +#: application/views/search/lotw_unconfirmed.php:32 +msgid "Station location" +msgstr "Stationsstandort" + +#: application/views/logbookadvanced/showUpdateResult.php:83 +msgid "Results for state update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:85 +#: application/views/logbookadvanced/showUpdateResult.php:87 +msgid "The number of QSOs updated for state/province in" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:130 +msgid "Results for continent update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:131 +msgid "The number of QSOs updated for continent is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:135 +msgid "Results for distance update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:136 +msgid "The number of QSOs updated for distance is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:140 +msgid "Results for CQ zone update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:141 +msgid "The number of QSOs updated for CQ zone is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:145 +msgid "Results for ITU zone update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:146 +msgid "The number of QSOs updated for ITU zone is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:150 +msgid "Results for gridsquare update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:151 +msgid "The number of QSOs updated for gridsquare is" +msgstr "" + #: application/views/logbookadvanced/startatform.php:15 msgid "Include Via" msgstr "Inklusive Via" @@ -13493,6 +13777,21 @@ msgstr "QSLMSG einfügen" msgid "Include TNX message" msgstr "TNX Nachricht einfügen" +#: application/views/logbookadvanced/statecheckresult.php:3 +#: application/views/logbookadvanced/statecheckresult.php:42 +msgid "State Check Results" +msgstr "" + +#: application/views/logbookadvanced/statecheckresult.php:4 +msgid "" +"QSOs with missing state and gridsquares with 6 or more characters found for " +"the following DXCCs:" +msgstr "" + +#: application/views/logbookadvanced/statecheckresult.php:43 +msgid "No QSOs were found where state information can be fixed." +msgstr "" + #: application/views/logbookadvanced/statedialog.php:2 msgid "" "Update QSOs with state/province information based on gridsquare and DXCC " @@ -14332,34 +14631,6 @@ msgstr "Deine E-Mail-Adresse, wo wir dich kontaktieren können" msgid "Send not in log request" msgstr "Sende eine 'Nicht im Log'-Anfrage" -#: application/views/oqrs/qsolist.php:11 -#: application/views/qslprint/qslprint.php:31 -#: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 -#: application/views/search/cqzones_result.php:16 -#: application/views/search/ituzones_result.php:16 -#: application/views/search/lotw_unconfirmed_result.php:11 -#: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:529 -#: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:228 -#: application/views/view_log/qso.php:668 -#: application/views/view_log/qso.php:672 -#: application/views/view_log/qso.php:676 -#: application/views/view_log/qso.php:680 -#: application/views/view_log/qso.php:686 -#: application/views/view_log/qso.php:693 -#: application/views/view_log/qso.php:700 -#: application/views/view_log/qso.php:707 -#: application/views/view_log/qso.php:714 -#: application/views/view_log/qso.php:721 -#: application/views/view_log/qso.php:728 -#: application/views/view_log/qso.php:735 -#: application/views/view_log/qso.php:742 -#: application/views/view_log/qso.php:747 -msgid "Station" -msgstr "Station" - #: application/views/oqrs/qsolist.php:76 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 @@ -15897,10 +16168,6 @@ msgstr "" "Die Suche zeigt QSOs, die auf LoTW nicht bestätigt sind, aber das " "gearbeitete Rufzeichen Daten zu LoTW nach dem QSO Datum hochgeladen hat." -#: application/views/search/lotw_unconfirmed.php:32 -msgid "Station location" -msgstr "Stationsstandort" - #: application/views/search/lotw_unconfirmed_result.php:10 msgid "Last LoTW upload" msgstr "Letzter LoTW-Upload" @@ -16772,6 +17039,11 @@ msgid "" "analytics. Great for when you're operating in multiple locations but they " "are part of the same DXCC or VUCC Circle." msgstr "" +"Stationslogbücher ermöglichen es dir, Stationsstandorte zu gruppieren. " +"Dadurch kannst du alle Standorte innerhalb einer Sitzung von den " +"Logbuchbereichen bis zur Analyse sehen. Das ist besonders nützlich, wenn du " +"an verschiedenen Standorten arbeitest, die jedoch zu derselben DXCC- oder " +"VUCC-Zone gehören." #: application/views/stationsetup/stationsetup.php:35 msgid "Edit Linked locations" @@ -17173,43 +17445,6 @@ msgstr "DXCC-Daten aktualisieren" msgid "Status:" msgstr "Status:" -#: application/views/update/index.php:30 -msgid "Apply DXCC Data to Logbook" -msgstr "DXCC-Daten auf das Logbuch anwenden" - -#: application/views/update/index.php:32 -msgid "" -"After updating, Wavelog can fill in missing callsign information in the " -"logbook using the newly-obtained DXCC data.\n" -"\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that are " -"missing DXCC metadata or to re-check the entire logbook\n" -"\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." -msgstr "" -"Nach der Aktualisierung kann Wavelog fehlende Rufzeicheninformationen im " -"Logbuch mit den neu erhaltenen DXCC-Daten ausfüllen.\n" -"Du kannst wählen, ob nur die QSOs überprüft werden sollen, bei denen DXCC " -"Daten fehlen oder das gesamte Logbuch erneut überprüft\n" -"und auch bestehende DXCC aktualisiert werden sollen, falls sich etwas " -"geändert hat." - -#: application/views/update/index.php:35 -msgid "" -"This affects ALL QSOs of ANY user on this instance. The function is " -"deprectated and will be removed in a future version of Wavelog. As " -"replacement use the Logbook-Advanced!" -msgstr "" -"Dies verändert ALLE QSOs eines jeglichen Nutzers auf dieser Instanz. Die " -"Funktion wird in einer zukünftigen Wavelog-Version wegfallen. Bitte nutze " -"das Erweiterte Logbuch!" - -#: application/views/update/index.php:42 -msgid "Check QSOs missing DXCC data" -msgstr "Überprüft QSOs auf fehlende DXCC-Daten" - -#: application/views/update/index.php:51 -msgid "Re-check all QSOs in logbook" -msgstr "Alle QSOs in Logbuch nochmal überprüfen" - #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "Benutzerkonto löschen" @@ -17443,7 +17678,7 @@ msgstr "DX-Wasserfall" #: application/views/user/edit.php:450 msgid "squelched" -msgstr "" +msgstr "Rauschsperre" #: application/views/user/edit.php:453 msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." @@ -17602,7 +17837,7 @@ msgstr "" #: application/views/user/edit.php:688 msgid "Show Fields on QSO Tab" -msgstr "" +msgstr "Zeige Felder auf QSO-Reiter" #: application/views/user/edit.php:692 msgid "" @@ -18585,8 +18820,35 @@ msgstr "Anfrage senden" msgid "Rcvd" msgstr "Rcvd" -#~ msgid "Show Reference Fields on QSO Tab" -#~ msgstr "Zeige Referenzen auf QSO-Reiter" +#~ msgid "Apply DXCC Data to Logbook" +#~ msgstr "DXCC-Daten auf das Logbuch anwenden" + +#~ msgid "" +#~ "After updating, Wavelog can fill in missing callsign information in the " +#~ "logbook using the newly-obtained DXCC data.\n" +#~ "\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that " +#~ "are missing DXCC metadata or to re-check the entire logbook\n" +#~ "\t\t\t\t\t\t\tand update existing metadata as well, in case it has " +#~ "changed." +#~ msgstr "" +#~ "Nach der Aktualisierung kann Wavelog fehlende Rufzeicheninformationen im " +#~ "Logbuch mit den neu erhaltenen DXCC-Daten ausfüllen.\n" +#~ "Du kannst wählen, ob nur die QSOs überprüft werden sollen, bei denen DXCC " +#~ "Daten fehlen oder das gesamte Logbuch erneut überprüft\n" +#~ "und auch bestehende DXCC aktualisiert werden sollen, falls sich etwas " +#~ "geändert hat." + +#~ msgid "" +#~ "This affects ALL QSOs of ANY user on this instance. The function is " +#~ "deprectated and will be removed in a future version of Wavelog. As " +#~ "replacement use the Logbook-Advanced!" +#~ msgstr "" +#~ "Dies verändert ALLE QSOs eines jeglichen Nutzers auf dieser Instanz. Die " +#~ "Funktion wird in einer zukünftigen Wavelog-Version wegfallen. Bitte nutze " +#~ "das Erweiterte Logbuch!" + +#~ msgid "Re-check all QSOs in logbook" +#~ msgstr "Alle QSOs in Logbuch nochmal überprüfen" #~ msgid "" #~ "Station Logbooks allow you to group Station Locations, this allows you to " @@ -18600,6 +18862,9 @@ msgstr "Rcvd" #~ "du an verschiedenen Standorten arbeitest, die jedoch zu derselben DXCC- " #~ "oder VUCC-Zone gehören." +#~ msgid "Show Reference Fields on QSO Tab" +#~ msgstr "Zeige Referenzen auf QSO-Reiter" + #~ msgid "" #~ "You might have ADIF errors, the QSOs have still been added. Please check " #~ "the following information:" diff --git a/application/locale/el_GR/LC_MESSAGES/messages.po b/application/locale/el_GR/LC_MESSAGES/messages.po index 9709ffded..f53039c8f 100644 --- a/application/locale/el_GR/LC_MESSAGES/messages.po +++ b/application/locale/el_GR/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-12-13 14:06+0000\n" +"POT-Creation-Date: 2025-12-19 07:34+0000\n" "PO-Revision-Date: 2025-08-19 17:14+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Greek \n" "Language-Team: Spanish \n" "Language-Team: Estonian \n" "Language-Team: Finnish \n" "Language-Team: French \n" @@ -120,8 +120,7 @@ msgstr "" #: application/controllers/Themes.php:17 #: application/controllers/Timeline.php:10 #: application/controllers/Timeplotter.php:11 -#: application/controllers/Update.php:22 application/controllers/Update.php:333 -#: application/controllers/Update.php:344 application/controllers/User.php:14 +#: application/controllers/Update.php:22 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 #: application/controllers/User.php:384 application/controllers/User.php:385 @@ -342,8 +341,8 @@ msgstr "Trophées - %s" #: application/views/contesting/index.php:63 #: application/views/interface_assets/header.php:240 #: application/views/logbookadvanced/edit.php:25 -#: application/views/logbookadvanced/index.php:430 -#: application/views/logbookadvanced/index.php:929 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:940 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 @@ -360,9 +359,12 @@ msgstr "DOK" #: application/views/interface_assets/header.php:192 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:26 -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:905 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:916 #: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/logbookadvanced/showMissingDxccQsos.php:16 +#: application/views/logbookadvanced/showStateQsos.php:27 +#: application/views/logbookadvanced/statecheckresult.php:11 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 @@ -447,7 +449,7 @@ msgstr " et " #: 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 -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:436 #: application/views/logbookadvanced/useroptions.php:130 #: application/views/lookup/index.php:10 #: application/views/qslcard/searchresult.php:17 @@ -474,7 +476,7 @@ msgstr "SOTA" #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:458 #: application/views/logbookadvanced/useroptions.php:138 #: application/views/lookup/index.php:12 #: application/views/qso/award_tabs.php:65 @@ -496,8 +498,8 @@ msgstr "WWFF" #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 #: application/views/logbookadvanced/edit.php:30 -#: application/views/logbookadvanced/index.php:438 -#: application/views/logbookadvanced/index.php:923 +#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:934 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 @@ -696,8 +698,8 @@ msgstr "Membre du club ADIF" msgid "Club Member" msgstr "Membre du club" -#: application/controllers/Club.php:45 application/models/Club_model.php:75 -#: application/models/Club_model.php:149 application/models/Club_model.php:191 +#: application/controllers/Club.php:45 application/models/Club_model.php:107 +#: application/models/Club_model.php:181 application/models/Club_model.php:223 msgid "Invalid User ID!" msgstr "ID utilisateur invalide !" @@ -713,8 +715,8 @@ msgstr "Autorisations du club" #: application/controllers/Club.php:119 application/controllers/Club.php:148 #: application/controllers/Club.php:175 application/models/Club_model.php:22 -#: application/models/Club_model.php:70 application/models/Club_model.php:144 -#: application/models/Club_model.php:186 +#: application/models/Club_model.php:102 application/models/Club_model.php:176 +#: application/models/Club_model.php:218 msgid "Invalid Club ID!" msgstr "ID de club invalide !" @@ -916,7 +918,7 @@ msgstr "Importation de la clé DCL" #: application/controllers/Dcl.php:68 application/views/dcl_views/import.php:3 #: application/views/dcl_views/index.php:3 -#: application/views/logbookadvanced/index.php:896 +#: application/views/logbookadvanced/index.php:907 #: application/views/logbookadvanced/useroptions.php:90 #: application/views/qso/edit_ajax.php:434 #: application/views/search/search_result_ajax.php:127 @@ -1068,27 +1070,27 @@ msgstr "Nom d’utilisateur eQSL invalide : %s" #: application/controllers/Eqsl.php:312 msgid "QSO not found or not accessible" -msgstr "" +msgstr "QSO introuvable ou inaccessible" #: application/controllers/Eqsl.php:330 msgid "User not found" -msgstr "" +msgstr "Utilisateur introuvable" #: application/controllers/Eqsl.php:339 msgid "eQSL password not configured for this user" -msgstr "" +msgstr "Mot de passe eQSL non configuré pour cet utilisateur" #: application/controllers/Eqsl.php:357 msgid "Failed to fetch eQSL image data" -msgstr "" +msgstr "Échec de la récupération des données d'image eQSL" #: application/controllers/Eqsl.php:376 msgid "eQSL image not available" -msgstr "" +msgstr "Image eQSL non disponible" #: application/controllers/Eqsl.php:395 msgid "Failed to download eQSL image" -msgstr "" +msgstr "Échec du téléchargement de l'image eQSL" #: application/controllers/Eqsl.php:495 msgid "eQSL Tools" @@ -1329,7 +1331,7 @@ msgstr "Journal de trafic" #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:171 #: application/views/interface_assets/footer.php:106 -#: application/views/logbookadvanced/index.php:884 +#: application/views/logbookadvanced/index.php:895 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:30 @@ -1463,9 +1465,11 @@ msgstr "eQSL" #: application/views/interface_assets/footer.php:121 #: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:335 -#: application/views/logbookadvanced/index.php:854 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:865 #: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/logbookadvanced/showMissingDxccQsos.php:12 +#: application/views/logbookadvanced/showStateQsos.php:23 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:40 #: application/views/oqrs/notinlogform.php:11 @@ -1514,7 +1518,7 @@ msgstr "Mode" #: application/views/contesting/index.php:180 #: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:857 +#: application/views/logbookadvanced/index.php:868 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -1543,7 +1547,7 @@ msgstr "RST (E)" #: application/views/contesting/index.php:204 #: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:860 +#: application/views/logbookadvanced/index.php:871 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1593,8 +1597,8 @@ msgstr "Pays" #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/edit.php:28 -#: application/views/logbookadvanced/index.php:444 -#: application/views/logbookadvanced/index.php:920 +#: application/views/logbookadvanced/index.php:446 +#: application/views/logbookadvanced/index.php:931 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/lookup/index.php:7 @@ -1625,9 +1629,11 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 #: application/views/logbookadvanced/edit.php:96 -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:908 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:919 #: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/logbookadvanced/showMissingDxccQsos.php:14 +#: application/views/logbookadvanced/showStateQsos.php:25 #: application/views/logbookadvanced/useroptions.php:106 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 @@ -1657,9 +1663,12 @@ msgstr "Etat" #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:869 +#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:880 #: application/views/logbookadvanced/qslcarousel.php:39 +#: application/views/logbookadvanced/showMissingDxccQsos.php:15 +#: application/views/logbookadvanced/showStateQsos.php:26 +#: application/views/logbookadvanced/showUpdateResult.php:105 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/lookup/index.php:6 #: application/views/qslcard/confirmationresult.php:19 @@ -1700,8 +1709,8 @@ msgstr "Locator" #: application/views/gridmap/index.php:225 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 -#: application/views/logbookadvanced/index.php:489 -#: application/views/logbookadvanced/index.php:959 +#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:970 #: application/views/logbookadvanced/useroptions.php:174 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 @@ -1761,9 +1770,11 @@ msgstr "Distance" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:56 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:863 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:874 #: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/logbookadvanced/showMissingDxccQsos.php:13 +#: application/views/logbookadvanced/showStateQsos.php:24 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 #: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 @@ -1811,7 +1822,7 @@ msgstr "Bande" #: application/views/bandmap/list.php:567 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 -#: application/views/logbookadvanced/index.php:866 +#: application/views/logbookadvanced/index.php:877 #: application/views/logbookadvanced/useroptions.php:50 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 @@ -1837,8 +1848,8 @@ msgstr "Frequence" #: application/controllers/Radio.php:43 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:460 -#: application/views/logbookadvanced/index.php:941 +#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:952 #: application/views/logbookadvanced/useroptions.php:150 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 @@ -1866,7 +1877,7 @@ msgstr "Opérateur" #: application/views/dxatlas/index.php:65 #: application/views/interface_assets/footer.php:822 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:319 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 @@ -2349,7 +2360,7 @@ msgid "Timestamp" msgstr "Horodatage" #: application/controllers/Radio.php:49 -#: application/views/logbookadvanced/index.php:821 +#: application/views/logbookadvanced/index.php:829 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:185 @@ -2388,7 +2399,7 @@ msgstr "Par défaut (cliquez pour libérer)" #: application/views/interface_assets/footer.php:682 #: application/views/interface_assets/footer.php:691 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:808 +#: application/views/logbookadvanced/index.php:816 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 #: application/views/satellite/index.php:58 #: application/views/search/stored_queries.php:21 @@ -2411,7 +2422,7 @@ msgstr "Editer" #: application/views/interface_assets/footer.php:2800 #: application/views/interface_assets/footer.php:2818 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:824 +#: application/views/logbookadvanced/index.php:835 #: application/views/lotw_views/index.php:134 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 @@ -2519,7 +2530,7 @@ msgstr "Minuteries de satellite" #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 #: application/views/interface_assets/header.php:399 -#: application/views/logbookadvanced/index.php:797 +#: application/views/logbookadvanced/index.php:805 #: application/views/oqrs/index.php:30 #: application/views/oqrs/showrequests.php:69 #: application/views/qslcard/searchform.php:8 @@ -2862,83 +2873,83 @@ msgstr "Exceptions DXCC :" msgid "Dxcc Prefixes:" msgstr "Préfixes DXCC :" -#: application/controllers/Update.php:362 +#: application/controllers/Update.php:340 msgid "SCP Update complete. Result: " msgstr "Mise à jour SCP terminée. Résultat : " -#: application/controllers/Update.php:364 +#: application/controllers/Update.php:342 msgid "SCP Update failed. Result: " msgstr "Échec de la mise à jour SCP. Résultat : " -#: application/controllers/Update.php:401 +#: application/controllers/Update.php:379 msgid "LoTW Users Update complete. Result: " msgstr "Mise à jour des utilisateurs LoTW terminée. Résultat : " -#: application/controllers/Update.php:403 +#: application/controllers/Update.php:381 msgid "LoTW Users Update failed. Result: " msgstr "Mise à jour des utilisateurs LoTW échouée. Résultat : " -#: application/controllers/Update.php:438 +#: application/controllers/Update.php:416 msgid "DOK Update complete. Result: " msgstr "Mise à jour DOK terminée. Résultat : " -#: application/controllers/Update.php:440 +#: application/controllers/Update.php:418 msgid "DOK Update failed. Result: " msgstr "La mise à jour DOK a échoué. Résultat : " -#: application/controllers/Update.php:473 +#: application/controllers/Update.php:451 msgid "SOTA Update complete. Result: " msgstr "Mise à jour SOTA terminée. Résultat : " -#: application/controllers/Update.php:475 +#: application/controllers/Update.php:453 msgid "SOTA Update failed. Result: " msgstr "La mise à jour SOTA a échoué. Résultat : " -#: application/controllers/Update.php:508 +#: application/controllers/Update.php:486 msgid "WWFF Update complete. Result: " msgstr "Mise à jour WWFF terminée. Résultat : " -#: application/controllers/Update.php:510 +#: application/controllers/Update.php:488 msgid "WWFF Update failed. Result: " msgstr "Mise à jour WWFF échouée. Résultat : " -#: application/controllers/Update.php:544 +#: application/controllers/Update.php:522 msgid "HAMqsl Update complete. Result: " msgstr "Mise à jour HAMqsl terminée. Résultats : " -#: application/controllers/Update.php:546 +#: application/controllers/Update.php:524 msgid "HAMqsl Update failed. Result: " msgstr "Echec de la mise à jour HAMqsl. Résultats : " -#: application/controllers/Update.php:579 +#: application/controllers/Update.php:557 msgid "POTA Update complete. Result: " msgstr "Mise à jour POTA terminée. Résultat : " -#: application/controllers/Update.php:581 +#: application/controllers/Update.php:559 msgid "POTA Update failed. Result: " msgstr "La mise à jour POTA a échoué. Résultat : " -#: application/controllers/Update.php:610 +#: application/controllers/Update.php:588 msgid "TLE Update complete. Result: " msgstr "Mise à jour TLE terminée. Résultat : " -#: application/controllers/Update.php:612 +#: application/controllers/Update.php:590 msgid "TLE Update failed. Result: " msgstr "La mise à jour TLE a échoué. Résultat : " -#: application/controllers/Update.php:639 +#: application/controllers/Update.php:617 msgid "LoTW SAT Update" msgstr "Mise à jour LoTW SAT" -#: application/controllers/Update.php:667 +#: application/controllers/Update.php:645 msgid "Update of Hams of Note" msgstr "Mise à jour des radioamateurs remarquables" -#: application/controllers/Update.php:707 +#: application/controllers/Update.php:685 msgid "VUCC Grid file update complete. Result: " msgstr "Mise à jour du fichier Locator VUCC terminée. Résultat : " -#: application/controllers/Update.php:709 +#: application/controllers/Update.php:687 msgid "VUCC Grid file update failed. Result: " msgstr "Échec de la mise à jour du fichier Locator de VUCC. Résultat : " @@ -3308,7 +3319,7 @@ msgstr "Erreur QRZCQ" #: application/libraries/Callbook.php:155 msgid "Error obtaining a session key for HamQTH query" -msgstr "" +msgstr "Erreur lors de l'obtention d'une clé de session pour la requête HamQTH" #: application/libraries/Cbr_parser.php:111 #: application/libraries/Cbr_parser.php:160 @@ -3403,11 +3414,11 @@ msgctxt "Division Name (States in various countries)." msgid "City / Ku / Gun" msgstr "Ville / Arrondissement / Préfecture" -#: application/models/Club_model.php:154 +#: application/models/Club_model.php:186 msgid "Invalid Permission Level!" msgstr "Niveau de permission invalide !" -#: application/models/Club_model.php:169 +#: application/models/Club_model.php:201 msgid "Error adding Club Member!" msgstr "Erreur lors de l'ajout d'un membre du club !" @@ -3573,7 +3584,7 @@ msgstr "Les références du POTA sont déjà dans le log" msgid "QSO updated" msgstr "QSO mis à jour" -#: application/models/Logbook_model.php:6405 +#: application/models/Logbook_model.php:6331 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3788,28 +3799,28 @@ msgstr "Différence" #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:337 -#: application/views/logbookadvanced/index.php:348 -#: application/views/logbookadvanced/index.php:359 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:402 -#: application/views/logbookadvanced/index.php:416 -#: application/views/logbookadvanced/index.php:470 -#: application/views/logbookadvanced/index.php:508 -#: application/views/logbookadvanced/index.php:519 -#: application/views/logbookadvanced/index.php:530 -#: application/views/logbookadvanced/index.php:540 -#: application/views/logbookadvanced/index.php:552 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/index.php:575 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/index.php:599 -#: application/views/logbookadvanced/index.php:610 -#: application/views/logbookadvanced/index.php:621 -#: application/views/logbookadvanced/index.php:630 -#: application/views/logbookadvanced/index.php:653 -#: application/views/logbookadvanced/index.php:662 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:418 +#: application/views/logbookadvanced/index.php:472 +#: application/views/logbookadvanced/index.php:510 +#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/index.php:532 +#: application/views/logbookadvanced/index.php:542 +#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/index.php:565 +#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:588 +#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:612 +#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/index.php:655 +#: application/views/logbookadvanced/index.php:664 #: application/views/lotw/import.php:55 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -3875,8 +3886,8 @@ msgstr "Période" #: application/views/distances/index.php:53 #: application/views/gridmap/index.php:71 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:947 +#: application/views/logbookadvanced/index.php:377 +#: application/views/logbookadvanced/index.php:958 #: application/views/logbookadvanced/useroptions.php:158 #: application/views/timeline/index.php:79 application/views/user/edit.php:351 #: application/views/view_log/partial/log_ajax.php:21 @@ -3896,7 +3907,7 @@ msgstr "Tous sauf SAT" #: application/views/gridmap/index.php:75 #: application/views/logbookadvanced/edit.php:207 #: application/views/logbookadvanced/edit.php:215 -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:473 #: application/views/timeline/index.php:84 msgid "None/Empty" msgstr "Rien/Vide" @@ -3906,7 +3917,7 @@ msgstr "Rien/Vide" #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:77 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:381 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:532 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 @@ -3920,7 +3931,7 @@ msgstr "Aircraft Scatter" #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:78 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:382 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:533 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 @@ -3934,7 +3945,7 @@ msgstr "Aurores" #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:79 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:383 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:534 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 @@ -3948,7 +3959,7 @@ msgstr "Aurore-E" #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:80 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:384 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:535 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 @@ -3962,7 +3973,7 @@ msgstr "Rétrodiffusion" #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:81 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:385 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:536 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 @@ -3976,7 +3987,7 @@ msgstr "EchoLink" #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:82 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:386 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:537 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 @@ -3990,7 +4001,7 @@ msgstr "Terre-Lune-Terre" #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:83 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:385 +#: application/views/logbookadvanced/index.php:387 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:538 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 @@ -4004,7 +4015,7 @@ msgstr "Sporadique E" #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:84 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:386 +#: application/views/logbookadvanced/index.php:388 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:539 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 @@ -4018,7 +4029,7 @@ msgstr "Irrégularités alignées au champ" #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:85 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:387 +#: application/views/logbookadvanced/index.php:389 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:540 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 @@ -4032,7 +4043,7 @@ msgstr "F2 Réflexion" #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:86 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:388 +#: application/views/logbookadvanced/index.php:390 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:541 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 @@ -4046,7 +4057,7 @@ msgstr "Assisté par Internet" #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:87 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:391 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:542 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 @@ -4060,7 +4071,7 @@ msgstr "Réflexion Ionosphérique" #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:88 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:392 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:543 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 @@ -4074,7 +4085,7 @@ msgstr "IRLP" #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:89 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:393 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:544 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 @@ -4088,7 +4099,7 @@ msgstr "Réflexions météorites" #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:90 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:394 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:545 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 @@ -4102,7 +4113,7 @@ msgstr "Relais ou transpondeur terrestre ou atmosphérique" #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:91 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:395 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:546 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 @@ -4116,7 +4127,7 @@ msgstr "Rain scatter" #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:92 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:396 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:547 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 @@ -4130,7 +4141,7 @@ msgstr "Satellite" #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:93 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:397 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:548 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 @@ -4144,7 +4155,7 @@ msgstr "Transéquatoriale" #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:94 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:398 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:549 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 @@ -4205,7 +4216,7 @@ msgstr "Afficher" #: application/views/hamsat/index.php:32 #: application/views/interface_assets/header.php:210 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:357 +#: application/views/logbookadvanced/index.php:359 #: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 @@ -4226,7 +4237,7 @@ msgstr "Satellite" #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:118 -#: application/views/logbookadvanced/index.php:366 +#: application/views/logbookadvanced/index.php:368 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:54 @@ -4356,6 +4367,8 @@ msgstr "Rien trouvé !" #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/logbookadvanced/showUpdateResult.php:60 +#: application/views/logbookadvanced/showUpdateResult.php:104 #: application/views/lotw_views/index.php:32 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 @@ -4536,6 +4549,8 @@ msgstr "Heure" #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 +#: application/views/logbookadvanced/showMissingDxccQsos.php:10 +#: application/views/logbookadvanced/showStateQsos.php:21 #: application/views/public_search/result.php:14 #: application/views/qslcard/searchresult.php:8 #: application/views/qso/components/previous_contacts.php:7 @@ -5216,7 +5231,7 @@ msgstr "Autorisations" #: application/views/club/permissions.php:250 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:740 +#: application/views/logbookadvanced/index.php:742 #: application/views/notes/main.php:77 application/views/qrz/export.php:44 #: application/views/user/index.php:33 application/views/user/index.php:160 #: application/views/webadif/export.php:45 @@ -5351,8 +5366,8 @@ msgid "Filtering on" msgstr "Filtré sur" #: application/views/awards/counties/details.php:13 -#: application/views/logbookadvanced/index.php:426 -#: application/views/logbookadvanced/index.php:911 +#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:922 #: application/views/logbookadvanced/useroptions.php:110 msgid "County" msgstr "Comté" @@ -5396,8 +5411,8 @@ msgid "" "Fields taken for this Award: State (ADIF: STATE), Stations County (ADIF: " "CNTY), DXCC (Must be one of 291 (U.S.A.) ,6 (ALASKA) or 110 (HAWAII))" msgstr "" -"Champs requis pour ce trophée: Etat (ADIF: STATE), Comté (ADIF : CNTY), DXCC " -"(Doit être un des 291 (U.S.A.) ,6 (ALASKA) ou 110 (HAWAII))" +"Champs requis pour ce trophée : Etat (ADIF: STATE), Comté (ADIF : CNTY), " +"DXCC (Doit être un des 291 (U.S.A.), 6 (ALASKA) ou 110 (HAWAII))" #: application/views/awards/counties/index.php:22 msgid "Counties Worked" @@ -5448,8 +5463,8 @@ msgstr "Total" #: application/views/gridmap/index.php:229 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 -#: application/views/logbookadvanced/index.php:400 -#: application/views/logbookadvanced/index.php:914 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:925 #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:308 @@ -5514,7 +5529,7 @@ msgstr "Trophée - CQ WAZ" #: application/views/awards/dxcc/index.php:41 #: application/views/awards/wpx/index.php:13 #: application/views/gridmap/index.php:19 -#: application/views/logbookadvanced/index.php:270 +#: application/views/logbookadvanced/index.php:272 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" msgstr "Filtres" @@ -5526,7 +5541,7 @@ msgstr "Voir la carte" #: application/views/awards/cq/index.php:55 #: application/views/awards/dxcc/index.php:51 #: application/views/gridmap/index.php:28 -#: application/views/logbookadvanced/index.php:276 +#: application/views/logbookadvanced/index.php:278 msgid "Date Presets" msgstr "Préréglages de date" @@ -5538,55 +5553,55 @@ msgstr "Préréglages de date" #: application/views/dashboard/index.php:408 #: application/views/dashboard/index.php:429 #: application/views/gridmap/index.php:31 -#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:280 msgid "Today" msgstr "Aujourd'hui" #: application/views/awards/cq/index.php:58 #: application/views/awards/dxcc/index.php:54 #: application/views/gridmap/index.php:32 -#: application/views/logbookadvanced/index.php:279 +#: application/views/logbookadvanced/index.php:281 msgid "Yesterday" msgstr "Hier" #: application/views/awards/cq/index.php:59 #: application/views/awards/dxcc/index.php:55 #: application/views/gridmap/index.php:33 -#: application/views/logbookadvanced/index.php:280 +#: application/views/logbookadvanced/index.php:282 msgid "Last 7 Days" msgstr "7 derniers jours" #: application/views/awards/cq/index.php:60 #: application/views/awards/dxcc/index.php:56 #: application/views/gridmap/index.php:34 -#: application/views/logbookadvanced/index.php:281 +#: application/views/logbookadvanced/index.php:283 msgid "Last 30 Days" msgstr "30 derniers jours" #: application/views/awards/cq/index.php:61 #: application/views/awards/dxcc/index.php:57 #: application/views/gridmap/index.php:35 -#: application/views/logbookadvanced/index.php:282 +#: application/views/logbookadvanced/index.php:284 msgid "This Month" msgstr "Ce mois-ci" #: application/views/awards/cq/index.php:62 #: application/views/awards/dxcc/index.php:58 #: application/views/gridmap/index.php:36 -#: application/views/logbookadvanced/index.php:283 +#: application/views/logbookadvanced/index.php:285 msgid "Last Month" msgstr "Mois dernier" #: application/views/awards/cq/index.php:63 #: application/views/awards/dxcc/index.php:59 #: application/views/gridmap/index.php:37 -#: application/views/logbookadvanced/index.php:284 +#: application/views/logbookadvanced/index.php:286 msgid "This Year" msgstr "Cette année" #: application/views/awards/cq/index.php:64 #: application/views/awards/dxcc/index.php:60 -#: application/views/logbookadvanced/index.php:285 +#: application/views/logbookadvanced/index.php:287 msgid "Last Year" msgstr "L'année dernière" @@ -5594,7 +5609,7 @@ msgstr "L'année dernière" #: application/views/awards/dxcc/index.php:61 #: application/views/gridmap/index.php:38 #: application/views/interface_assets/footer.php:52 -#: application/views/logbookadvanced/index.php:286 +#: application/views/logbookadvanced/index.php:288 #: application/views/qso/index.php:757 msgid "Clear" msgstr "Effacer" @@ -5742,7 +5757,7 @@ msgstr "Table" #: application/views/awards/waja/index.php:135 #: application/views/awards/wap/index.php:129 #: application/views/awards/was/index.php:133 -#: application/views/logbookadvanced/index.php:813 +#: application/views/logbookadvanced/index.php:821 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Carte" @@ -5901,8 +5916,8 @@ msgstr "Chaque bande" #: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:828 -#: application/views/logbookadvanced/index.php:829 +#: application/views/logbookadvanced/index.php:839 +#: application/views/logbookadvanced/index.php:840 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:43 application/views/user/edit.php:723 @@ -5978,7 +5993,7 @@ msgstr "Inclure supprimé" #: application/views/bandmap/list.php:339 #: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:217 -#: application/views/logbookadvanced/index.php:473 +#: application/views/logbookadvanced/index.php:475 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:480 @@ -5992,7 +6007,7 @@ msgstr "Antarctique" #: application/views/bandmap/list.php:338 #: application/views/bandmap/list.php:352 #: application/views/logbookadvanced/edit.php:216 -#: application/views/logbookadvanced/index.php:472 +#: application/views/logbookadvanced/index.php:474 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:479 @@ -6006,7 +6021,7 @@ msgstr "Afrique" #: application/views/bandmap/list.php:340 #: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 -#: application/views/logbookadvanced/index.php:475 +#: application/views/logbookadvanced/index.php:477 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:481 @@ -6020,7 +6035,7 @@ msgstr "Asie" #: application/views/bandmap/list.php:341 #: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:220 -#: application/views/logbookadvanced/index.php:476 +#: application/views/logbookadvanced/index.php:478 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:482 @@ -6034,7 +6049,7 @@ msgstr "Europe" #: application/views/bandmap/list.php:342 #: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:218 -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:476 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:483 @@ -6048,7 +6063,7 @@ msgstr "Amérique du Nord" #: application/views/bandmap/list.php:344 #: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:221 -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:479 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:485 @@ -6062,7 +6077,7 @@ msgstr "Amérique du Sud" #: application/views/bandmap/list.php:343 #: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:222 -#: application/views/logbookadvanced/index.php:478 +#: application/views/logbookadvanced/index.php:480 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:484 @@ -6111,6 +6126,7 @@ msgstr "Nom DXCC" #: application/views/awards/dxcc/index.php:276 #: application/views/awards/iota/index.php:199 #: application/views/awards/wae/index.php:163 +#: application/views/logbookadvanced/statecheckresult.php:10 #: application/views/timeline/index.php:199 #: application/views/timeline/index.php:297 msgid "Prefix" @@ -6391,7 +6407,7 @@ msgstr "Afficher la carte IOTA" #: application/views/contesting/index.php:229 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:872 +#: application/views/logbookadvanced/index.php:883 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:58 #: application/views/lotw/satupdate.php:7 @@ -6419,8 +6435,8 @@ msgstr "Supprimé" #: application/views/gridmap/index.php:231 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 -#: application/views/logbookadvanced/index.php:414 -#: application/views/logbookadvanced/index.php:917 +#: application/views/logbookadvanced/index.php:416 +#: application/views/logbookadvanced/index.php:928 #: application/views/logbookadvanced/useroptions.php:118 #: application/views/lookup/index.php:8 application/views/qso/edit_ajax.php:316 #: application/views/qso/index.php:515 @@ -6639,7 +6655,7 @@ msgstr "Classe Or (1er)" #: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" -msgstr "Félicitations!" +msgstr "Félicitations !" #: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" @@ -6699,7 +6715,7 @@ msgstr "Bravo! Vous avez droit à" #: application/views/awards/pl_polska/index.php:252 #: application/views/awards/pl_polska/index.php:324 msgid "category award!" -msgstr "Prix de catégorie!" +msgstr "Prix de catégorie !" #: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" @@ -6714,7 +6730,8 @@ msgid "Band Categories" msgstr "Catégories de groupes" #: application/views/awards/pl_polska/index.php:372 -#: application/views/logbookadvanced/index.php:772 +#: application/views/logbookadvanced/dbtoolsdialog.php:47 +#: application/views/logbookadvanced/index.php:773 msgid "Fix State" msgstr "État fixe" @@ -6732,7 +6749,7 @@ msgstr "" #: application/views/awards/pl_polska/index.php:372 msgid "Tip:" -msgstr "Conseil :" +msgstr "Conseil:" #: application/views/awards/pl_polska/index.php:372 msgid "Use" @@ -6867,8 +6884,10 @@ msgid "Reference" msgstr "Référence" #: application/views/awards/sig/qso_list.php:10 -#: application/views/logbookadvanced/index.php:845 +#: application/views/logbookadvanced/index.php:856 #: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/logbookadvanced/showMissingDxccQsos.php:11 +#: application/views/logbookadvanced/showStateQsos.php:22 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 #: application/views/qso/components/previous_contacts.php:6 @@ -6950,7 +6969,7 @@ msgid "" "Fields taken for this Award: Gridsquare and vucc_grids (ADIF: GRIDSQUARE, " "VUCC_GRIDS)" msgstr "" -"Champs requis pour ce trophée: Locator et vucc_grids (ADIF: GRIDSQUARE, " +"Champs requis pour ce trophée : Locator et vucc_grids (ADIF: GRIDSQUARE, " "VUCC_GRIDS)" #: application/views/awards/vucc/index.php:23 @@ -7025,8 +7044,8 @@ msgstr "Diplome - Worked All Continents (WAC)" #: application/views/bandmap/list.php:571 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 -#: application/views/logbookadvanced/index.php:468 -#: application/views/logbookadvanced/index.php:956 +#: application/views/logbookadvanced/index.php:470 +#: application/views/logbookadvanced/index.php:967 #: application/views/logbookadvanced/useroptions.php:170 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:476 @@ -7459,27 +7478,28 @@ msgstr "Cliquez pour activer la connexion CAT" #: application/views/bandmap/list.php:31 msgid "CAT following radio - Click to disable" -msgstr "" +msgstr "Radio CAT suiveuse - Cliquez pour désactiver" #: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 msgid "Click to enable band lock (requires CAT connection)" -msgstr "" +msgstr "Cliquez pour activer le verrouillage de bande (connexion CAT requise)" #: application/views/bandmap/list.php:33 msgid "Band lock active - Click to disable" -msgstr "" +msgstr "Verrouillage de band activé - Cliquez pour désactiver" #: application/views/bandmap/list.php:34 msgid "Band Lock" -msgstr "" +msgstr "verrouillage de bande" #: application/views/bandmap/list.php:35 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 msgid "Band filter changed to" -msgstr "" +msgstr "Filtre de bande modifié en" #: application/views/bandmap/list.php:37 msgid "by transceiver" @@ -7516,35 +7536,40 @@ 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 msgid "My Submodes" -msgstr "" +msgstr "Mes sous-modes" #: application/views/bandmap/list.php:48 msgid "Submode filter enabled" -msgstr "" +msgstr "Filtre de sous-mode activé" #: application/views/bandmap/list.php:49 msgid "Submode filter disabled - showing all" -msgstr "" +msgstr "Filtre de sous-mode désactivé - tout affiché" #: application/views/bandmap/list.php:50 msgid "Required submodes" -msgstr "" +msgstr "Sous-modes requis" #: application/views/bandmap/list.php:51 msgid "Configure in User Settings - Modes" -msgstr "" +msgstr "Configurer dans les paramètres utilisateur - Modes" #: application/views/bandmap/list.php:52 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 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 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/components/dxwaterfall.php:32 @@ -7563,41 +7588,43 @@ msgstr "Activer/désactiver le filtre Phonie" #: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 msgid "Favorites" -msgstr "" +msgstr "Favoris" #: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 msgid "Save Current Filters..." -msgstr "" +msgstr "Enregistrer les filtres actuels..." #: application/views/bandmap/list.php:62 msgid "Enter a name for this filter preset:" -msgstr "" +msgstr "Saisissez un nom pour ce préréglage de filtre :" #: application/views/bandmap/list.php:63 msgid "Filter preset saved" -msgstr "" +msgstr "Préréglage de filtre enregistré" #: application/views/bandmap/list.php:64 msgid "Filter preset loaded" -msgstr "" +msgstr "Préréglage de filtre chargé" #: application/views/bandmap/list.php:65 msgid "Filter preset deleted" -msgstr "" +msgstr "Préréglage de filtre supprimé" #: application/views/bandmap/list.php:66 msgid "Are you sure to delete this filter preset?" -msgstr "" +msgstr "Êtes-vous sûr de vouloir supprimer ce filtre prédéfini ?" #: application/views/bandmap/list.php:67 msgid "No saved filter presets" -msgstr "" +msgstr "Aucun préréglage de filtre enregistré" #: application/views/bandmap/list.php:68 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." 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 msgid "Loading data from DX Cluster" @@ -7706,8 +7733,8 @@ msgstr "Tache fraîche (moins de 5 minutes)" #: application/views/bandmap/list.php:510 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 -#: application/views/logbookadvanced/index.php:464 -#: application/views/logbookadvanced/index.php:950 +#: application/views/logbookadvanced/index.php:466 +#: application/views/logbookadvanced/index.php:961 #: application/views/logbookadvanced/useroptions.php:162 #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 @@ -7815,8 +7842,8 @@ msgstr "Spotter" #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:485 -#: application/views/logbookadvanced/index.php:944 +#: application/views/logbookadvanced/index.php:487 +#: application/views/logbookadvanced/index.php:955 #: application/views/logbookadvanced/useroptions.php:154 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:379 #: application/views/view_log/qso.php:228 @@ -7919,11 +7946,11 @@ msgstr "Aide du cluster DX" #: application/views/bandmap/list.php:210 msgid "Compact Mode - Hide/Show Menu" -msgstr "" +msgstr "Mode compact - Afficher/Masquer le menu" #: application/views/bandmap/list.php:237 msgid "TRX:" -msgstr "TRX:" +msgstr "TRX :" #: application/views/bandmap/list.php:239 #: application/views/bandmap/list.php:313 @@ -7948,7 +7975,7 @@ msgstr "Vérification - " #: application/views/bandmap/list.php:251 msgid "de:" -msgstr "de:" +msgstr "de :" #: application/views/bandmap/list.php:253 msgid "Select all continents" @@ -8046,7 +8073,7 @@ msgstr "Appliquer les filtres" #: application/views/bandmap/list.php:420 msgid "Filter Favorites" -msgstr "" +msgstr "Filtrer les favoris" #: application/views/bandmap/list.php:430 msgid "Clear all filters except De Continent" @@ -8094,7 +8121,7 @@ msgstr "Activer/désactiver le filtre de bande 10m" #: application/views/bandmap/list.php:452 msgid "Toggle 6m band filter" -msgstr "" +msgstr "Activer/désactiver le filtre de bande 6 m" #: application/views/bandmap/list.php:456 msgid "Toggle VHF bands filter" @@ -8110,7 +8137,7 @@ msgstr "Activer/désactiver le filtre des bandes SHF" #: application/views/bandmap/list.php:478 msgid "Loading submodes..." -msgstr "" +msgstr "Chargement des sous-modes..." #: application/views/bandmap/list.php:483 msgid "Toggle LoTW User filter" @@ -8190,7 +8217,7 @@ msgstr "Recherchez des endroits..." #: 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 " +"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:565 @@ -8345,7 +8372,6 @@ msgstr "" #: application/views/bands/edit.php:2 #: application/views/logbookadvanced/index.php:53 -#: application/views/update/index.php:35 msgid "WARNING" msgstr "ATTENTION" @@ -8535,7 +8561,7 @@ msgstr "" "la référence IOTA)." #: application/views/cabrillo/index.php:48 -#: application/views/logbookadvanced/index.php:787 +#: application/views/logbookadvanced/index.php:795 #: application/views/oqrs/showrequests.php:31 #: application/views/qso/index.php:362 #: application/views/station_profile/edit.php:96 @@ -8649,19 +8675,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:187 #: application/views/logbookadvanced/edit.php:193 #: application/views/logbookadvanced/edit.php:199 -#: application/views/logbookadvanced/index.php:509 -#: application/views/logbookadvanced/index.php:520 -#: application/views/logbookadvanced/index.php:553 -#: application/views/logbookadvanced/index.php:564 -#: application/views/logbookadvanced/index.php:576 -#: application/views/logbookadvanced/index.php:587 -#: application/views/logbookadvanced/index.php:600 -#: application/views/logbookadvanced/index.php:611 -#: application/views/logbookadvanced/index.php:622 -#: application/views/logbookadvanced/index.php:631 -#: application/views/logbookadvanced/index.php:646 -#: application/views/logbookadvanced/index.php:654 -#: application/views/logbookadvanced/index.php:663 +#: application/views/logbookadvanced/index.php:511 +#: application/views/logbookadvanced/index.php:522 +#: application/views/logbookadvanced/index.php:555 +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/index.php:578 +#: application/views/logbookadvanced/index.php:589 +#: application/views/logbookadvanced/index.php:602 +#: application/views/logbookadvanced/index.php:613 +#: application/views/logbookadvanced/index.php:624 +#: application/views/logbookadvanced/index.php:633 +#: application/views/logbookadvanced/index.php:648 +#: application/views/logbookadvanced/index.php:656 +#: application/views/logbookadvanced/index.php:665 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:444 #: application/views/qso/edit_ajax.php:477 @@ -8714,19 +8740,19 @@ msgstr "Oui" #: application/views/logbookadvanced/edit.php:188 #: application/views/logbookadvanced/edit.php:194 #: application/views/logbookadvanced/edit.php:200 -#: application/views/logbookadvanced/index.php:510 -#: application/views/logbookadvanced/index.php:521 -#: application/views/logbookadvanced/index.php:554 -#: application/views/logbookadvanced/index.php:565 -#: application/views/logbookadvanced/index.php:577 -#: application/views/logbookadvanced/index.php:588 -#: application/views/logbookadvanced/index.php:601 -#: application/views/logbookadvanced/index.php:612 -#: application/views/logbookadvanced/index.php:623 -#: application/views/logbookadvanced/index.php:632 -#: application/views/logbookadvanced/index.php:647 -#: application/views/logbookadvanced/index.php:655 -#: application/views/logbookadvanced/index.php:664 +#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:567 +#: application/views/logbookadvanced/index.php:579 +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/index.php:603 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/index.php:625 +#: application/views/logbookadvanced/index.php:634 +#: application/views/logbookadvanced/index.php:649 +#: application/views/logbookadvanced/index.php:657 +#: application/views/logbookadvanced/index.php:666 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:443 #: application/views/qso/edit_ajax.php:476 @@ -8859,6 +8885,7 @@ msgstr "Autorisations disponibles" #: application/views/club/permissions.php:26 #: application/views/eqsl/download.php:45 +#: application/views/logbookadvanced/statecheckresult.php:13 msgid "Action" msgstr "Action" @@ -8910,7 +8937,7 @@ msgstr "Exporter des QSO par ADIF" #: application/views/club/permissions.php:128 msgid "Export own QSO per ADIF" -msgstr "" +msgstr "Exporter son propre QSO par ADIF" #: application/views/club/permissions.php:137 msgid "User Management" @@ -9072,7 +9099,7 @@ msgstr "" #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 -#: application/views/logbookadvanced/index.php:968 +#: application/views/logbookadvanced/index.php:979 #: application/views/logbookadvanced/useroptions.php:186 #: application/views/qrz/export.php:39 #: application/views/qslprint/qslprint.php:32 @@ -9277,7 +9304,7 @@ msgstr "Par :" #: application/views/components/dxwaterfall.php:57 #, php-format msgid "Please wait %s second(s) before toggling DX Waterfall again." -msgstr "" +msgstr "Veuillez patienter %s seconde(s) avant de réactiver DX Waterfall." #: application/views/components/dxwaterfall.php:81 #: application/views/components/dxwaterfall.php:87 @@ -9538,7 +9565,7 @@ msgid "Locator" msgstr "Locator" #: application/views/contesting/index.php:69 -#: application/views/logbookadvanced/index.php:875 +#: application/views/logbookadvanced/index.php:886 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/qso/edit_ajax.php:177 msgid "QTH" @@ -9893,6 +9920,8 @@ msgid "" "Don't lose your streak - You have already had at least one QSO for the last " "%s consecutive days." msgstr "" +"Ne perdez pas votre série - Vous avez déjà eu au moins un QSO pendant les %s " +"derniers jours consécutifs." #: application/views/dashboard/index.php:184 msgid "You have made no QSOs today; time to turn on the radio!" @@ -10029,14 +10058,14 @@ msgstr "Reçues" #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 -#: application/views/logbookadvanced/index.php:511 -#: application/views/logbookadvanced/index.php:522 -#: application/views/logbookadvanced/index.php:555 -#: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/index.php:578 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/index.php:602 -#: application/views/logbookadvanced/index.php:613 +#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:557 +#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:591 +#: application/views/logbookadvanced/index.php:604 +#: application/views/logbookadvanced/index.php:615 #: application/views/oqrs/qsolist.php:57 application/views/oqrs/qsolist.php:99 #: application/views/qslprint/qsolist.php:68 #: application/views/qslprint/qsolist.php:110 @@ -10605,6 +10634,11 @@ msgid "Check for new version" msgstr "Rechercher une nouvelle version" #: application/views/debug/index.php:495 +#: application/views/logbookadvanced/checkresult.php:37 +#: application/views/logbookadvanced/checkresult.php:53 +#: application/views/logbookadvanced/checkresult.php:76 +#: application/views/logbookadvanced/checkresult.php:87 +#: application/views/logbookadvanced/checkresult.php:97 #: application/views/logbookadvanced/index.php:57 msgid "Update now" msgstr "Mettre à jour maintenant" @@ -11845,7 +11879,7 @@ msgstr "" "êtes sûr, ignorez cet avertissement." #: application/views/interface_assets/footer.php:878 -#: application/views/logbookadvanced/index.php:792 +#: application/views/logbookadvanced/index.php:800 msgid "Callsign: " msgstr "Indicatif : " @@ -12042,7 +12076,7 @@ msgstr "LX Gridmaster" #: application/views/interface_assets/header.php:268 msgid "Poland" -msgstr "" +msgstr "Pologne" #: application/views/interface_assets/header.php:274 msgid "Switzerland" @@ -12098,7 +12132,7 @@ msgid "Log" msgstr "Log" #: application/views/interface_assets/header.php:398 -#: application/views/logbookadvanced/index.php:689 +#: application/views/logbookadvanced/index.php:691 #: application/views/oqrs/index.php:28 application/views/user/edit.php:491 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" @@ -12179,7 +12213,7 @@ msgid "DCL Export" msgstr "DCL Exportation" #: application/views/interface_assets/header.php:536 -#: application/views/logbookadvanced/index.php:831 +#: application/views/logbookadvanced/index.php:842 msgid "Help" msgstr "Aide" @@ -12443,6 +12477,7 @@ msgid "Label types" msgstr "Types d'étiquettes" #: application/views/labels/index.php:81 +#: application/views/logbookadvanced/statecheckresult.php:12 #: application/views/statistics/index.php:70 #: application/views/statistics/index.php:114 msgid "QSOs" @@ -12503,32 +12538,32 @@ msgid "" "If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " "data." msgstr "" +"Si un QSO possède un localisateur de 4 caractères (par exemple, JO90), " +"essayez de l'affiner à l'aide des données de l'annuaire." #: application/views/logbookadvanced/callbookdialog.php:6 msgid "" "We’ll keep the original value and add a more precise locator (e.g., JO90AB " "or JO90AB12) when a match is confident." msgstr "" +"Nous conserverons la valeur d'origine et ajouterons un localisateur plus " +"précis (par exemple, JO90AB ou JO90AB12) lorsqu'une correspondance sera " +"certaine." -#: application/views/logbookadvanced/continentdialog.php:2 -msgid "" -"Update all QSOs with the continent based on the DXCC country of the QSO." +#: application/views/logbookadvanced/checkresult.php:27 +msgid "Distance Check Results" msgstr "" -"Mettez à jour tous les QSO avec le continent en fonction du pays DXCC du QSO." -#: application/views/logbookadvanced/continentdialog.php:3 -msgid "This is useful if you have imported QSOs without continent information." +#: application/views/logbookadvanced/checkresult.php:28 +#: application/views/logbookadvanced/checkresult.php:44 +#: application/views/logbookadvanced/checkresult.php:60 +#: application/views/logbookadvanced/checkresult.php:72 +#: application/views/logbookadvanced/checkresult.php:83 +#: application/views/logbookadvanced/checkresult.php:94 +msgid "QSOs to update found:" msgstr "" -"Ceci est utile si vous avez importé des QSO sans information sur le " -"continent." - -#: application/views/logbookadvanced/continentdialog.php:4 -msgid "" -"Update will only set the continent for QSOs where the continent is empty." -msgstr "" -"La mise à jour ne définira le continent pour les QSO que si ce continent est " -"vide." +#: application/views/logbookadvanced/checkresult.php:31 #: application/views/logbookadvanced/distancedialog.php:2 msgid "" "Update all QSOs with the distance based on your gridsquare set in the " @@ -12540,16 +12575,158 @@ msgstr "" "partenaire. La distance sera calculée selon que le trajet court ou long est " "sélectionné." +#: application/views/logbookadvanced/checkresult.php:32 #: application/views/logbookadvanced/distancedialog.php:3 msgid "This is useful if you have imported QSOs without distance information." msgstr "" "Ceci est utile si vous avez importé des QSO sans information de distance." +#: application/views/logbookadvanced/checkresult.php:33 #: application/views/logbookadvanced/distancedialog.php:4 msgid "Update will only set the distance for QSOs where the distance is empty." msgstr "" "La mise à jour ne définira la distance que pour les QSO où ce champ est vide." +#: application/views/logbookadvanced/checkresult.php:43 +msgid "Continent Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:47 +#: application/views/logbookadvanced/continentdialog.php:2 +msgid "" +"Update all QSOs with the continent based on the DXCC country of the QSO." +msgstr "" +"Mettez à jour tous les QSO avec le continent en fonction du pays DXCC du QSO." + +#: application/views/logbookadvanced/checkresult.php:48 +#: application/views/logbookadvanced/continentdialog.php:3 +msgid "This is useful if you have imported QSOs without continent information." +msgstr "" +"Ceci est utile si vous avez importé des QSO sans information sur le " +"continent." + +#: application/views/logbookadvanced/checkresult.php:49 +#: application/views/logbookadvanced/continentdialog.php:4 +msgid "" +"Update will only set the continent for QSOs where the continent is empty." +msgstr "" +"La mise à jour ne définira le continent pour les QSO que si ce continent est " +"vide." + +#: application/views/logbookadvanced/checkresult.php:59 +msgid "DXCC Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:64 +#: application/views/logbookadvanced/statecheckresult.php:30 +msgid "Run fix" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:71 +msgid "CQ Zone Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:82 +msgid "ITU Zone Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:93 +msgid "Gridsquare Check Results" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:4 +msgid "Data Repair Tools" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:6 +msgid "Wiki Help" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:11 +#: application/views/logbookadvanced/index.php:771 +msgid "Fix CQ Zones" +msgstr "Corriger les Zones CQ" + +#: application/views/logbookadvanced/dbtoolsdialog.php:12 +msgid "Update missing CQ zone information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:16 +#: application/views/logbookadvanced/dbtoolsdialog.php:28 +#: application/views/logbookadvanced/dbtoolsdialog.php:40 +#: application/views/logbookadvanced/dbtoolsdialog.php:52 +#: application/views/logbookadvanced/dbtoolsdialog.php:64 +#: application/views/logbookadvanced/dbtoolsdialog.php:76 +#: application/views/logbookadvanced/dbtoolsdialog.php:102 +msgid "Check" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:23 +#: application/views/logbookadvanced/index.php:772 +msgid "Fix ITU Zones" +msgstr "Corriger les Zones ITU" + +#: application/views/logbookadvanced/dbtoolsdialog.php:24 +msgid "Update missing ITU zone information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:35 +msgid "Fix Continent" +msgstr "Réparer le continent" + +#: application/views/logbookadvanced/dbtoolsdialog.php:36 +msgid "Update missing or incorrect continent information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:48 +msgid "Update missing state/province information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:59 +#: application/views/logbookadvanced/index.php:68 +msgid "Update Distances" +msgstr "Mise à jour des distances" + +#: application/views/logbookadvanced/dbtoolsdialog.php:60 +msgid "Calculate and update distance information for QSOs" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:71 +msgid "Check QSOs missing DXCC data" +msgstr "Vérifiez les QSO manquant de données DXCC" + +#: application/views/logbookadvanced/dbtoolsdialog.php:72 +msgid "Identify QSOs that are missing DXCC information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:83 +msgid "Re-check DXCC for all QSOs in the logbook" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:84 +msgid "Use Wavelog to determine DXCC for all QSOs." +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:85 +msgid "This will overwrite ALL existing DXCC information!" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:89 +msgid "Run" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:96 +msgid "Lookup QSOs with missing grid in callbook" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:97 +msgid "Use callbook lookup to set gridsquare" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:98 +msgid "This is limited to 250 callsigns for each run!" +msgstr "" + #: application/views/logbookadvanced/edit.php:1 msgid "Please choose the column to be edited:" msgstr "Veuillez choisir la colonne à éditer :" @@ -12567,7 +12744,7 @@ msgid "Station Power" msgstr "Puissance de la station" #: application/views/logbookadvanced/edit.php:31 -#: application/views/logbookadvanced/index.php:938 +#: application/views/logbookadvanced/index.php:949 #: application/views/logbookadvanced/useroptions.php:146 #: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:489 #: application/views/view_log/qso.php:481 @@ -12639,8 +12816,8 @@ msgid "QSL Sent Method" msgstr "Méthode d'envoi des QSL" #: application/views/logbookadvanced/edit.php:53 -#: application/views/logbookadvanced/index.php:639 -#: application/views/logbookadvanced/index.php:878 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/index.php:889 #: application/views/logbookadvanced/useroptions.php:66 msgid "QSL via" msgstr "QSL via" @@ -12665,23 +12842,23 @@ msgstr "Bande RX" #: application/views/logbookadvanced/edit.php:189 #: application/views/logbookadvanced/edit.php:195 #: application/views/logbookadvanced/edit.php:202 -#: application/views/logbookadvanced/index.php:479 -#: application/views/logbookadvanced/index.php:804 +#: application/views/logbookadvanced/index.php:481 +#: application/views/logbookadvanced/index.php:812 msgid "Invalid" msgstr "Invalide" #: application/views/logbookadvanced/edit.php:177 #: application/views/logbookadvanced/edit.php:203 -#: application/views/logbookadvanced/index.php:524 -#: application/views/logbookadvanced/index.php:568 -#: application/views/logbookadvanced/index.php:591 -#: application/views/logbookadvanced/index.php:615 +#: application/views/logbookadvanced/index.php:526 +#: application/views/logbookadvanced/index.php:570 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:617 msgid "Verified" msgstr "Vérifiée" #: application/views/logbookadvanced/edit.php:208 -#: application/views/logbookadvanced/index.php:532 -#: application/views/logbookadvanced/index.php:542 +#: application/views/logbookadvanced/index.php:534 +#: application/views/logbookadvanced/index.php:544 #: application/views/oqrs/qsolist.php:73 application/views/oqrs/qsolist.php:115 #: application/views/oqrs/showrequests.php:8 #: application/views/qslprint/qslprint.php:7 @@ -12699,8 +12876,8 @@ msgid "Direct" msgstr "Direct" #: application/views/logbookadvanced/edit.php:209 -#: application/views/logbookadvanced/index.php:531 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/index.php:543 #: application/views/oqrs/qsolist.php:70 application/views/oqrs/qsolist.php:112 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:48 @@ -12720,8 +12897,8 @@ msgid "Bureau" msgstr "Bureau" #: application/views/logbookadvanced/edit.php:210 -#: application/views/logbookadvanced/index.php:533 -#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:545 #: application/views/oqrs/qsolist.php:79 application/views/oqrs/qsolist.php:121 #: application/views/oqrs/showrequests.php:9 #: application/views/qslprint/qslprint.php:8 @@ -12739,8 +12916,8 @@ msgid "Electronic" msgstr "Numérique" #: application/views/logbookadvanced/edit.php:211 -#: application/views/logbookadvanced/index.php:534 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/index.php:546 #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 @@ -13074,11 +13251,6 @@ msgid "You need to select at least 1 location to do a search!" msgstr "" "Vous devez sélectionner au moins un lieu pour effectuer une recherche !" -#: application/views/logbookadvanced/index.php:68 -#: application/views/logbookadvanced/index.php:773 -msgid "Update Distances" -msgstr "Mise à jour des distances" - #: application/views/logbookadvanced/index.php:69 msgid "QSO records updated." msgstr "Les enregistrements QSO ont été mis à jour." @@ -13091,44 +13263,50 @@ msgstr "Un problème est survenu lors de la mise à jour des distances." msgid "Distances updated successfully!" msgstr "Distances mises à jour avec succès !" -#: application/views/logbookadvanced/index.php:292 +#: application/views/logbookadvanced/index.php:73 +msgid "" +"Are you sure you want to fix all QSOs with missing DXCC information? This " +"action cannot be undone." +msgstr "" + +#: application/views/logbookadvanced/index.php:294 msgid "From" msgstr "Date, du" -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:298 msgid "To" msgstr "au" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:851 +#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:862 #: application/views/logbookadvanced/useroptions.php:30 msgid "Dx" msgstr "Dx" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:326 -#: application/views/logbookadvanced/index.php:332 -#: application/views/logbookadvanced/index.php:403 -#: application/views/logbookadvanced/index.php:417 -#: application/views/logbookadvanced/index.php:427 -#: application/views/logbookadvanced/index.php:431 -#: application/views/logbookadvanced/index.php:435 -#: application/views/logbookadvanced/index.php:439 -#: application/views/logbookadvanced/index.php:457 -#: application/views/logbookadvanced/index.php:461 -#: application/views/logbookadvanced/index.php:465 -#: application/views/logbookadvanced/index.php:486 -#: application/views/logbookadvanced/index.php:490 -#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:303 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:419 +#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:441 +#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:467 +#: application/views/logbookadvanced/index.php:488 +#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:642 msgid "Empty" msgstr "Vide" -#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:380 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Aucun / Vide" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:491 msgid "" "Distance in kilometers. Search will look for distances greater than or equal " "to this value." @@ -13136,18 +13314,18 @@ msgstr "" "Distance en kilomètres. La recherche portera sur les distances supérieures " "ou égales à cette valeur." -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:502 msgid "QSL Filters" msgstr "Filtres QSL" -#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/index.php:508 msgid "QSL sent" msgstr "QSL Envoyée" -#: application/views/logbookadvanced/index.php:512 -#: application/views/logbookadvanced/index.php:556 -#: application/views/logbookadvanced/index.php:579 -#: application/views/logbookadvanced/index.php:603 +#: application/views/logbookadvanced/index.php:514 +#: application/views/logbookadvanced/index.php:558 +#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/index.php:605 #: application/views/oqrs/qsolist.php:54 application/views/oqrs/qsolist.php:96 #: application/views/qslprint/qsolist.php:65 #: application/views/qslprint/qsolist.php:107 @@ -13174,18 +13352,18 @@ msgstr "QSL Envoyée" msgid "Queued" msgstr "En attente" -#: application/views/logbookadvanced/index.php:513 -#: application/views/logbookadvanced/index.php:523 -#: application/views/logbookadvanced/index.php:557 -#: application/views/logbookadvanced/index.php:567 -#: application/views/logbookadvanced/index.php:580 -#: application/views/logbookadvanced/index.php:590 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/index.php:614 -#: application/views/logbookadvanced/index.php:624 -#: application/views/logbookadvanced/index.php:633 -#: application/views/logbookadvanced/index.php:656 -#: application/views/logbookadvanced/index.php:665 +#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:525 +#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/index.php:582 +#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:606 +#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:626 +#: application/views/logbookadvanced/index.php:635 +#: application/views/logbookadvanced/index.php:658 +#: application/views/logbookadvanced/index.php:667 #: application/views/oqrs/qsolist.php:60 application/views/oqrs/qsolist.php:102 #: application/views/oqrs/qsolist.php:167 #: application/views/oqrs/qsolist.php:182 @@ -13230,274 +13408,271 @@ msgstr "En attente" msgid "Invalid (Ignore)" msgstr "Invalide (Ignoré)" -#: application/views/logbookadvanced/index.php:517 +#: application/views/logbookadvanced/index.php:519 msgid "QSL received" msgstr "QSL Reçue" -#: application/views/logbookadvanced/index.php:528 +#: application/views/logbookadvanced/index.php:530 msgid "QSL send. method" msgstr "QSL Méthode (envoi)" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:540 msgid "QSL recv. method" msgstr "QSL Méthode (reçue)" -#: application/views/logbookadvanced/index.php:550 +#: application/views/logbookadvanced/index.php:552 msgid "LoTW sent" msgstr "LoTW Envoyé" -#: application/views/logbookadvanced/index.php:561 +#: application/views/logbookadvanced/index.php:563 msgid "LoTW received" msgstr "LoTW Reçu" -#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:575 msgid "Clublog sent" msgstr "Clublog Envoyé" -#: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/index.php:586 msgid "Clublog received" msgstr "Clublog reçu" -#: application/views/logbookadvanced/index.php:597 +#: application/views/logbookadvanced/index.php:599 msgid "eQSL sent" msgstr "eQSL Envoyée" -#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/index.php:610 msgid "eQSL received" msgstr "eQSL Reçue" -#: application/views/logbookadvanced/index.php:619 +#: application/views/logbookadvanced/index.php:621 msgid "DCL sent" msgstr "DCL envoyé" -#: application/views/logbookadvanced/index.php:628 +#: application/views/logbookadvanced/index.php:630 msgid "DCL received" msgstr "DCL reçu" -#: application/views/logbookadvanced/index.php:643 +#: application/views/logbookadvanced/index.php:645 msgid "QSL Images" msgstr "Images QSL" -#: application/views/logbookadvanced/index.php:651 +#: application/views/logbookadvanced/index.php:653 msgid "QRZ sent" msgstr "QRZ envoyé" -#: application/views/logbookadvanced/index.php:660 +#: application/views/logbookadvanced/index.php:662 msgid "QRZ received" msgstr "QRZ reçu" -#: application/views/logbookadvanced/index.php:676 +#: application/views/logbookadvanced/index.php:678 msgid "Quickfilters" msgstr "Filtres rapides" -#: application/views/logbookadvanced/index.php:681 +#: application/views/logbookadvanced/index.php:683 msgid "Quicksearch with selected: " msgstr "Recherche rapide (avec infos de la ligne sélectionnée) : " -#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:688 msgid "Search Date" msgstr "Date de recherche" -#: application/views/logbookadvanced/index.php:692 +#: application/views/logbookadvanced/index.php:694 msgid "Search DXCC" msgstr "Même DXCC" -#: application/views/logbookadvanced/index.php:695 +#: application/views/logbookadvanced/index.php:697 msgid "Search State" msgstr "Même Etat" -#: application/views/logbookadvanced/index.php:698 +#: application/views/logbookadvanced/index.php:700 msgid "Search Gridsquare" msgstr "Même Locator" -#: application/views/logbookadvanced/index.php:701 +#: application/views/logbookadvanced/index.php:703 msgid "Search CQ Zone" msgstr "Même Zone CQ" -#: application/views/logbookadvanced/index.php:704 +#: application/views/logbookadvanced/index.php:706 msgid "Search ITU Zone" msgstr "Recherche de la Zone ITU" -#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:709 msgid "Search Mode" msgstr "Même Mode" -#: application/views/logbookadvanced/index.php:710 +#: application/views/logbookadvanced/index.php:712 msgid "Search Band" msgstr "Même Band" -#: application/views/logbookadvanced/index.php:713 +#: application/views/logbookadvanced/index.php:715 msgid "Search IOTA" msgstr "Même IOTA" -#: application/views/logbookadvanced/index.php:716 +#: application/views/logbookadvanced/index.php:718 msgid "Search SOTA" msgstr "Même SOTA" -#: application/views/logbookadvanced/index.php:719 +#: application/views/logbookadvanced/index.php:721 msgid "Search POTA" msgstr "Même POTA" -#: application/views/logbookadvanced/index.php:722 +#: application/views/logbookadvanced/index.php:724 msgid "Search WWFF" msgstr "Même WWFF" -#: application/views/logbookadvanced/index.php:725 +#: application/views/logbookadvanced/index.php:727 msgid "Search Operator" msgstr "Recherche de l'opérateur" -#: application/views/logbookadvanced/index.php:744 +#: application/views/logbookadvanced/index.php:746 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" "ATTENTION ! Etes vous certain de vouloir supprimer les QSO " "sélectionnés ?" -#: application/views/logbookadvanced/index.php:745 +#: application/views/logbookadvanced/index.php:747 msgid " QSO(s) will be deleted" msgstr " Les QSO seront supprimés" -#: application/views/logbookadvanced/index.php:749 +#: application/views/logbookadvanced/index.php:751 msgid "With selected: " msgstr "Action pour lignes sélectionnées : " -#: application/views/logbookadvanced/index.php:753 +#: application/views/logbookadvanced/index.php:755 #: application/views/qso/edit_ajax.php:725 msgid "Update from Callbook" msgstr "Mise à jour depuis Callbook" -#: application/views/logbookadvanced/index.php:754 +#: application/views/logbookadvanced/index.php:756 msgid "Queue Bureau" msgstr "En attente (Bureau)" -#: application/views/logbookadvanced/index.php:755 +#: application/views/logbookadvanced/index.php:757 msgid "Queue Direct" msgstr "En attente (Direct)" -#: application/views/logbookadvanced/index.php:756 +#: application/views/logbookadvanced/index.php:758 msgid "Queue Electronic" msgstr "En attente (Electronic)" -#: application/views/logbookadvanced/index.php:757 +#: application/views/logbookadvanced/index.php:759 msgid "Sent (Bureau)" msgstr "Envoyée (Bureau)" -#: application/views/logbookadvanced/index.php:758 +#: application/views/logbookadvanced/index.php:760 msgid "Sent (Direct)" msgstr "Envoyée (Direct)" -#: application/views/logbookadvanced/index.php:759 +#: application/views/logbookadvanced/index.php:761 msgid "Sent (Electronic)" msgstr "Envoyée (Electronic)" -#: application/views/logbookadvanced/index.php:760 +#: application/views/logbookadvanced/index.php:762 msgid "Not Sent" msgstr "Non envoyée" -#: application/views/logbookadvanced/index.php:761 +#: application/views/logbookadvanced/index.php:763 msgid "QSL Not Required" msgstr "QSL Non requis" -#: application/views/logbookadvanced/index.php:762 +#: application/views/logbookadvanced/index.php:764 msgid "Not Received" msgstr "Non reçu" -#: application/views/logbookadvanced/index.php:763 +#: application/views/logbookadvanced/index.php:765 msgid "Received (Bureau)" msgstr "Reçue (Bureau)" -#: application/views/logbookadvanced/index.php:764 +#: application/views/logbookadvanced/index.php:766 msgid "Received (Direct)" msgstr "Reçue (Direct)" -#: application/views/logbookadvanced/index.php:765 +#: application/views/logbookadvanced/index.php:767 msgid "Received (Electronic)" msgstr "Reçue (Numérique)" -#: application/views/logbookadvanced/index.php:766 +#: application/views/logbookadvanced/index.php:768 msgid "Create ADIF" msgstr "Exporter en ADIF" -#: application/views/logbookadvanced/index.php:767 +#: application/views/logbookadvanced/index.php:769 msgid "Print Label" msgstr "Imprimer Etiquette" -#: application/views/logbookadvanced/index.php:768 +#: application/views/logbookadvanced/index.php:770 msgid "QSL Slideshow" msgstr "Diaporama QSL" -#: application/views/logbookadvanced/index.php:769 -msgid "Fix CQ Zones" -msgstr "Corriger les Zones CQ" +#: application/views/logbookadvanced/index.php:777 +msgid "With ALL QSOs: " +msgstr "" -#: application/views/logbookadvanced/index.php:770 -msgid "Fix ITU Zones" -msgstr "Corriger les Zones ITU" +#: application/views/logbookadvanced/index.php:781 +#: application/views/logbookadvanced/index.php:832 +msgid "Database Tools" +msgstr "" -#: application/views/logbookadvanced/index.php:771 -msgid "Fix Continent" -msgstr "Réparer le continent" - -#: application/views/logbookadvanced/index.php:780 +#: application/views/logbookadvanced/index.php:788 #: application/views/oqrs/showrequests.php:58 msgid "# Results" msgstr "Nb lignes" -#: application/views/logbookadvanced/index.php:801 +#: application/views/logbookadvanced/index.php:809 msgid "Dupes" msgstr "Doublon(s)" -#: application/views/logbookadvanced/index.php:817 +#: application/views/logbookadvanced/index.php:825 msgid "Globe map" msgstr "Carte du globe" -#: application/views/logbookadvanced/index.php:848 +#: application/views/logbookadvanced/index.php:859 #: application/views/logbookadvanced/useroptions.php:26 msgid "De" msgstr "De" -#: application/views/logbookadvanced/index.php:893 +#: application/views/logbookadvanced/index.php:904 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 #: application/views/timeline/index.php:72 application/views/user/edit.php:627 msgid "QRZ" msgstr "QRZ" -#: application/views/logbookadvanced/index.php:899 +#: application/views/logbookadvanced/index.php:910 #: application/views/logbookadvanced/useroptions.php:94 #: application/views/qso/edit_ajax.php:527 msgid "QSL Msg (S)" msgstr "QSL MSG (S)" -#: application/views/logbookadvanced/index.php:902 +#: application/views/logbookadvanced/index.php:913 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/qso/edit_ajax.php:536 msgid "QSL Msg (R)" msgstr "QSL MSG (R)" -#: application/views/logbookadvanced/index.php:953 +#: application/views/logbookadvanced/index.php:964 #: application/views/logbookadvanced/useroptions.php:166 msgid "My Refs" msgstr "Ma Refs" -#: application/views/logbookadvanced/index.php:962 +#: application/views/logbookadvanced/index.php:973 msgid "Ant az" msgstr "Az Ant" -#: application/views/logbookadvanced/index.php:962 +#: application/views/logbookadvanced/index.php:973 #: application/views/logbookadvanced/useroptions.php:178 msgid "Antenna azimuth" msgstr "Azimuth de l'antenne" -#: application/views/logbookadvanced/index.php:965 +#: application/views/logbookadvanced/index.php:976 msgid "Ant el" msgstr "El Ant" -#: application/views/logbookadvanced/index.php:965 +#: application/views/logbookadvanced/index.php:976 #: application/views/logbookadvanced/useroptions.php:182 msgid "Antenna elevation" msgstr "Elévation de l'antenne" -#: application/views/logbookadvanced/index.php:971 +#: application/views/logbookadvanced/index.php:982 #: application/views/logbookadvanced/useroptions.php:190 msgid "Station power" msgstr "Puissance de la station" @@ -13517,6 +13692,130 @@ msgstr "Précédent" msgid "Next" msgstr "Suivant" +#: application/views/logbookadvanced/showMissingDxccQsos.php:5 +#, php-format +msgid "Found %s QSO(s) missing DXCC information." +msgstr "" + +#: application/views/logbookadvanced/showMissingDxccQsos.php:17 +#: application/views/logbookadvanced/showStateQsos.php:28 +#: application/views/oqrs/qsolist.php:11 +#: application/views/qslprint/qslprint.php:31 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 +#: application/views/search/cqzones_result.php:16 +#: application/views/search/ituzones_result.php:16 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/search_result_ajax.php:130 +#: application/views/user/edit.php:529 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:228 +#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:672 +#: application/views/view_log/qso.php:676 +#: application/views/view_log/qso.php:680 +#: application/views/view_log/qso.php:686 +#: application/views/view_log/qso.php:693 +#: application/views/view_log/qso.php:700 +#: application/views/view_log/qso.php:707 +#: application/views/view_log/qso.php:714 +#: application/views/view_log/qso.php:721 +#: application/views/view_log/qso.php:728 +#: application/views/view_log/qso.php:735 +#: application/views/view_log/qso.php:742 +#: application/views/view_log/qso.php:747 +msgid "Station" +msgstr "Station" + +#: application/views/logbookadvanced/showMissingDxccQsos.php:38 +#: application/views/logbookadvanced/showStateQsos.php:49 +msgid "No Issues Found" +msgstr "" + +#: application/views/logbookadvanced/showStateQsos.php:16 +#, php-format +msgid "Found %s QSO(s) missing state information for DXCC %s." +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:31 +msgid "Results for DXCC update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:34 +#: application/views/logbookadvanced/showUpdateResult.php:40 +msgid "The number of QSOs updated for missing DXCC IDs was" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:36 +#: application/views/logbookadvanced/showUpdateResult.php:42 +msgid "The number of QSOs re-checked for DXCC was" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:55 +#: application/views/logbookadvanced/showUpdateResult.php:99 +msgid "These QSOs could not be updated:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:61 +#: application/views/logbookadvanced/showUpdateResult.php:107 +msgid "Reason" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:62 +#: application/views/logbookadvanced/showUpdateResult.php:106 +#: application/views/search/lotw_unconfirmed.php:32 +msgid "Station location" +msgstr "Emplacement de la Station" + +#: application/views/logbookadvanced/showUpdateResult.php:83 +msgid "Results for state update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:85 +#: application/views/logbookadvanced/showUpdateResult.php:87 +msgid "The number of QSOs updated for state/province in" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:130 +msgid "Results for continent update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:131 +msgid "The number of QSOs updated for continent is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:135 +msgid "Results for distance update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:136 +msgid "The number of QSOs updated for distance is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:140 +msgid "Results for CQ zone update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:141 +msgid "The number of QSOs updated for CQ zone is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:145 +msgid "Results for ITU zone update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:146 +msgid "The number of QSOs updated for ITU zone is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:150 +msgid "Results for gridsquare update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:151 +msgid "The number of QSOs updated for gridsquare is" +msgstr "" + #: application/views/logbookadvanced/startatform.php:15 msgid "Include Via" msgstr "Ajouter Via" @@ -13529,37 +13828,56 @@ msgstr "Inclure QSLMSG" msgid "Include TNX message" msgstr "Inclure message TNX" +#: application/views/logbookadvanced/statecheckresult.php:3 +#: application/views/logbookadvanced/statecheckresult.php:42 +msgid "State Check Results" +msgstr "" + +#: application/views/logbookadvanced/statecheckresult.php:4 +msgid "" +"QSOs with missing state and gridsquares with 6 or more characters found for " +"the following DXCCs:" +msgstr "" + +#: application/views/logbookadvanced/statecheckresult.php:43 +msgid "No QSOs were found where state information can be fixed." +msgstr "" + #: application/views/logbookadvanced/statedialog.php:2 msgid "" "Update QSOs with state/province information based on gridsquare and DXCC " "country." msgstr "" +"Mettez à jour les QSO avec les informations d'état/province en fonction de " +"la grille et du pays DXCC." #: application/views/logbookadvanced/statedialog.php:3 msgid "" "This feature uses GeoJSON boundary data to determine the state/province from " "the gridsquare locator." msgstr "" +"Cette fonctionnalité utilise les données de limites GeoJSON pour déterminer " +"l'état/la province à partir du localisateur de carrés de la grille." #: application/views/logbookadvanced/statedialog.php:4 msgid "Update will only set the state for QSOs where:" -msgstr "" +msgstr "La mise à jour ne modifiera l'état que pour les QSO où :" #: application/views/logbookadvanced/statedialog.php:6 msgid "The state field is empty" -msgstr "" +msgstr "Le champ d'état est vide" #: application/views/logbookadvanced/statedialog.php:7 msgid "A gridsquare is present (at least 6 characters)" -msgstr "" +msgstr "Un localisateur est présent (au moins 6 caractères)" #: application/views/logbookadvanced/statedialog.php:8 msgid "The DXCC country supports state lookup" -msgstr "" +msgstr "Le pays DXCC prend en charge la recherche par état" #: application/views/logbookadvanced/statedialog.php:10 msgid "Currently supported countries" -msgstr "" +msgstr "Pays actuellement pris en charge" #: application/views/logbookadvanced/useroptions.php:16 msgid "Column" @@ -13702,15 +14020,15 @@ msgstr "Dernier téléchargement" #: application/views/lotw_views/index.php:95 msgid "Last change:" -msgstr "" +msgstr "Dernière modification :" #: application/views/lotw_views/index.php:95 msgid "Serial number:" -msgstr "" +msgstr "Numéro de série :" #: application/views/lotw_views/index.php:97 msgid "Certificate superseded" -msgstr "" +msgstr "Certificat remplacé" #: application/views/lotw_views/index.php:100 msgid "Certificate expired" @@ -14370,34 +14688,6 @@ msgstr "Votre adresse e-mail où nous pouvons vous contacter" msgid "Send not in log request" msgstr "Envoyer une requête non enregistrée" -#: application/views/oqrs/qsolist.php:11 -#: application/views/qslprint/qslprint.php:31 -#: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 -#: application/views/search/cqzones_result.php:16 -#: application/views/search/ituzones_result.php:16 -#: application/views/search/lotw_unconfirmed_result.php:11 -#: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:529 -#: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:228 -#: application/views/view_log/qso.php:668 -#: application/views/view_log/qso.php:672 -#: application/views/view_log/qso.php:676 -#: application/views/view_log/qso.php:680 -#: application/views/view_log/qso.php:686 -#: application/views/view_log/qso.php:693 -#: application/views/view_log/qso.php:700 -#: application/views/view_log/qso.php:707 -#: application/views/view_log/qso.php:714 -#: application/views/view_log/qso.php:721 -#: application/views/view_log/qso.php:728 -#: application/views/view_log/qso.php:735 -#: application/views/view_log/qso.php:742 -#: application/views/view_log/qso.php:747 -msgid "Station" -msgstr "Station" - #: application/views/oqrs/qsolist.php:76 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 @@ -15180,7 +15470,7 @@ msgstr "Valeur non valide pour l'élévation de l'antenne :" #: application/views/qso/index.php:38 msgid "Please wait before saving another QSO" -msgstr "" +msgstr "Veuillez patienter avant d'enregistrer un autre QSO" #: application/views/qso/index.php:86 msgid "LIVE" @@ -15937,10 +16227,6 @@ msgstr "" "l'indicatif d'appel contacté a été téléchargé sur LoTW après la date de " "votre QSO." -#: application/views/search/lotw_unconfirmed.php:32 -msgid "Station location" -msgstr "Emplacement de la Station" - #: application/views/search/lotw_unconfirmed_result.php:10 msgid "Last LoTW upload" msgstr "Dernier téléchargement de LoTW" @@ -16819,6 +17105,10 @@ msgid "" "analytics. Great for when you're operating in multiple locations but they " "are part of the same DXCC or VUCC Circle." msgstr "" +"Les carnets de station permettent de regrouper les emplacements, ce qui vous " +"permet de visualiser tous les emplacements d'une même session, des zones du " +"carnet de station aux analyses. C'est très pratique lorsque vous opérez " +"depuis plusieurs emplacements appartenant au même cercle DXCC ou VUCC." #: application/views/stationsetup/stationsetup.php:35 msgid "Edit Linked locations" @@ -17222,44 +17512,6 @@ msgstr "Mettre à jour les données DXCC" msgid "Status:" msgstr "Statut :" -#: application/views/update/index.php:30 -msgid "Apply DXCC Data to Logbook" -msgstr "Appliquer les données DXCC au carnet de trafic" - -#: application/views/update/index.php:32 -msgid "" -"After updating, Wavelog can fill in missing callsign information in the " -"logbook using the newly-obtained DXCC data.\n" -"\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that are " -"missing DXCC metadata or to re-check the entire logbook\n" -"\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." -msgstr "" -"Après la mise à jour, Wavelog peut compléter les informations d'indicatif " -"manquantes dans le log à l'aide des données DXCC nouvellement obtenues.\n" -"\t\t\t\t\t\t\tVous pouvez choisir de vérifier uniquement les QSO du carnet " -"de trafic pour lesquels il manque des métadonnées DXCC ou de revérifier " -"l'intégralité du log.\n" -"\t\t\t\t\t\t\tet mettre à jour les métadonnées existantes également, au cas " -"où elles auraient changé." - -#: application/views/update/index.php:35 -msgid "" -"This affects ALL QSOs of ANY user on this instance. The function is " -"deprectated and will be removed in a future version of Wavelog. As " -"replacement use the Logbook-Advanced!" -msgstr "" -"Ceci affecte tous les QSO de tous les utilisateurs dans ce cas. Cette " -"fonction est obsolète et sera supprimée dans une future version de Wavelog. " -"Utilisez plutôt le Logbook-Advanced !" - -#: application/views/update/index.php:42 -msgid "Check QSOs missing DXCC data" -msgstr "Vérifiez les QSO manquant de données DXCC" - -#: application/views/update/index.php:51 -msgid "Re-check all QSOs in logbook" -msgstr "Revérifiez tous les QSO dans le log" - #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "Supprimer l'utilisateur" @@ -17492,7 +17744,7 @@ msgstr "DX Waterfall" #: application/views/user/edit.php:450 msgid "squelched" -msgstr "" +msgstr "silencieux" #: application/views/user/edit.php:453 msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." @@ -17655,7 +17907,7 @@ msgstr "" #: application/views/user/edit.php:688 msgid "Show Fields on QSO Tab" -msgstr "" +msgstr "Afficher les champs sur l'onglet QSO" #: application/views/user/edit.php:692 msgid "" @@ -18513,7 +18765,7 @@ msgstr "Image eQSL" #: application/views/view_log/qso.php:916 msgid "QSO not found" -msgstr "" +msgstr "QSO introuvable" #: application/views/visitor/layout/footer.php:239 msgid "Filter Results" @@ -18642,8 +18894,36 @@ msgstr "Soumettre la demande" msgid "Rcvd" msgstr "Reçu" -#~ msgid "Show Reference Fields on QSO Tab" -#~ msgstr "Afficher les champs de référence dans l'onglet QSO" +#~ msgid "Apply DXCC Data to Logbook" +#~ msgstr "Appliquer les données DXCC au carnet de trafic" + +#~ msgid "" +#~ "After updating, Wavelog can fill in missing callsign information in the " +#~ "logbook using the newly-obtained DXCC data.\n" +#~ "\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that " +#~ "are missing DXCC metadata or to re-check the entire logbook\n" +#~ "\t\t\t\t\t\t\tand update existing metadata as well, in case it has " +#~ "changed." +#~ msgstr "" +#~ "Après la mise à jour, Wavelog peut compléter les informations d'indicatif " +#~ "manquantes dans le log à l'aide des données DXCC nouvellement obtenues.\n" +#~ "\t\t\t\t\t\t\tVous pouvez choisir de vérifier uniquement les QSO du " +#~ "carnet de trafic pour lesquels il manque des métadonnées DXCC ou de " +#~ "revérifier l'intégralité du log.\n" +#~ "\t\t\t\t\t\t\tet mettre à jour les métadonnées existantes également, au " +#~ "cas où elles auraient changé." + +#~ msgid "" +#~ "This affects ALL QSOs of ANY user on this instance. The function is " +#~ "deprectated and will be removed in a future version of Wavelog. As " +#~ "replacement use the Logbook-Advanced!" +#~ msgstr "" +#~ "Ceci affecte tous les QSO de tous les utilisateurs dans ce cas. Cette " +#~ "fonction est obsolète et sera supprimée dans une future version de " +#~ "Wavelog. Utilisez plutôt le Logbook-Advanced !" + +#~ msgid "Re-check all QSOs in logbook" +#~ msgstr "Revérifiez tous les QSO dans le log" #~ msgid "" #~ "Station Logbooks allow you to group Station Locations, this allows you to " @@ -18657,6 +18937,9 @@ msgstr "Reçu" #~ "trafic, jusqu'aux statistiques.
Idéal lorsque vous travaillez sur " #~ "plusieurs sites, mais qu'ils font partie du même cercle DXCC ou VUCC." +#~ msgid "Show Reference Fields on QSO Tab" +#~ msgstr "Afficher les champs de référence dans l'onglet QSO" + #~ msgid "" #~ "You might have ADIF errors, the QSOs have still been added. Please check " #~ "the following information:" diff --git a/application/locale/hr/LC_MESSAGES/messages.po b/application/locale/hr/LC_MESSAGES/messages.po index d6ceeac0b..9d06edc6d 100644 --- a/application/locale/hr/LC_MESSAGES/messages.po +++ b/application/locale/hr/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-12-13 14:06+0000\n" +"POT-Creation-Date: 2025-12-19 07:34+0000\n" "PO-Revision-Date: 2024-11-23 16:17+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Croatian \n" "Language-Team: Hungarian \n" "Language-Team: Armenian \n" "Language-Team: Italian \n" @@ -112,8 +112,7 @@ msgstr "" #: application/controllers/Themes.php:17 #: application/controllers/Timeline.php:10 #: application/controllers/Timeplotter.php:11 -#: application/controllers/Update.php:22 application/controllers/Update.php:333 -#: application/controllers/Update.php:344 application/controllers/User.php:14 +#: application/controllers/Update.php:22 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 #: application/controllers/User.php:384 application/controllers/User.php:385 @@ -334,8 +333,8 @@ msgstr "Premi - %s" #: application/views/contesting/index.php:63 #: application/views/interface_assets/header.php:240 #: application/views/logbookadvanced/edit.php:25 -#: application/views/logbookadvanced/index.php:430 -#: application/views/logbookadvanced/index.php:929 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:940 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 @@ -352,9 +351,12 @@ msgstr "DOK" #: application/views/interface_assets/header.php:192 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:26 -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:905 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:916 #: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/logbookadvanced/showMissingDxccQsos.php:16 +#: application/views/logbookadvanced/showStateQsos.php:27 +#: application/views/logbookadvanced/statecheckresult.php:11 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 @@ -439,7 +441,7 @@ msgstr " e " #: 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 -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:436 #: application/views/logbookadvanced/useroptions.php:130 #: application/views/lookup/index.php:10 #: application/views/qslcard/searchresult.php:17 @@ -466,7 +468,7 @@ msgstr "SOTA" #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:458 #: application/views/logbookadvanced/useroptions.php:138 #: application/views/lookup/index.php:12 #: application/views/qso/award_tabs.php:65 @@ -488,8 +490,8 @@ msgstr "WWFF" #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 #: application/views/logbookadvanced/edit.php:30 -#: application/views/logbookadvanced/index.php:438 -#: application/views/logbookadvanced/index.php:923 +#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:934 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 @@ -688,8 +690,8 @@ msgstr "Membro del club ADIF" msgid "Club Member" msgstr "Membro di stazione" -#: application/controllers/Club.php:45 application/models/Club_model.php:75 -#: application/models/Club_model.php:149 application/models/Club_model.php:191 +#: application/controllers/Club.php:45 application/models/Club_model.php:107 +#: application/models/Club_model.php:181 application/models/Club_model.php:223 msgid "Invalid User ID!" msgstr "User ID non valido!" @@ -705,8 +707,8 @@ msgstr "Permessi club" #: application/controllers/Club.php:119 application/controllers/Club.php:148 #: application/controllers/Club.php:175 application/models/Club_model.php:22 -#: application/models/Club_model.php:70 application/models/Club_model.php:144 -#: application/models/Club_model.php:186 +#: application/models/Club_model.php:102 application/models/Club_model.php:176 +#: application/models/Club_model.php:218 msgid "Invalid Club ID!" msgstr "Club ID non valido!" @@ -907,7 +909,7 @@ msgstr "Importazione chiave DCL" #: application/controllers/Dcl.php:68 application/views/dcl_views/import.php:3 #: application/views/dcl_views/index.php:3 -#: application/views/logbookadvanced/index.php:896 +#: application/views/logbookadvanced/index.php:907 #: application/views/logbookadvanced/useroptions.php:90 #: application/views/qso/edit_ajax.php:434 #: application/views/search/search_result_ajax.php:127 @@ -1318,7 +1320,7 @@ msgstr "Registro" #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:171 #: application/views/interface_assets/footer.php:106 -#: application/views/logbookadvanced/index.php:884 +#: application/views/logbookadvanced/index.php:895 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:30 @@ -1452,9 +1454,11 @@ msgstr "eQSL" #: application/views/interface_assets/footer.php:121 #: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:335 -#: application/views/logbookadvanced/index.php:854 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:865 #: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/logbookadvanced/showMissingDxccQsos.php:12 +#: application/views/logbookadvanced/showStateQsos.php:23 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:40 #: application/views/oqrs/notinlogform.php:11 @@ -1503,7 +1507,7 @@ msgstr "Modo" #: application/views/contesting/index.php:180 #: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:857 +#: application/views/logbookadvanced/index.php:868 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -1532,7 +1536,7 @@ msgstr "RST (I)" #: application/views/contesting/index.php:204 #: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:860 +#: application/views/logbookadvanced/index.php:871 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1582,8 +1586,8 @@ msgstr "Paese" #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/edit.php:28 -#: application/views/logbookadvanced/index.php:444 -#: application/views/logbookadvanced/index.php:920 +#: application/views/logbookadvanced/index.php:446 +#: application/views/logbookadvanced/index.php:931 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/lookup/index.php:7 @@ -1614,9 +1618,11 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 #: application/views/logbookadvanced/edit.php:96 -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:908 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:919 #: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/logbookadvanced/showMissingDxccQsos.php:14 +#: application/views/logbookadvanced/showStateQsos.php:25 #: application/views/logbookadvanced/useroptions.php:106 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 @@ -1646,9 +1652,12 @@ msgstr "Stato" #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:869 +#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:880 #: application/views/logbookadvanced/qslcarousel.php:39 +#: application/views/logbookadvanced/showMissingDxccQsos.php:15 +#: application/views/logbookadvanced/showStateQsos.php:26 +#: application/views/logbookadvanced/showUpdateResult.php:105 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/lookup/index.php:6 #: application/views/qslcard/confirmationresult.php:19 @@ -1689,8 +1698,8 @@ msgstr "Locatore" #: application/views/gridmap/index.php:225 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 -#: application/views/logbookadvanced/index.php:489 -#: application/views/logbookadvanced/index.php:959 +#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:970 #: application/views/logbookadvanced/useroptions.php:174 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 @@ -1750,9 +1759,11 @@ msgstr "Distanza" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:56 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:863 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:874 #: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/logbookadvanced/showMissingDxccQsos.php:13 +#: application/views/logbookadvanced/showStateQsos.php:24 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 #: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 @@ -1800,7 +1811,7 @@ msgstr "Banda" #: application/views/bandmap/list.php:567 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 -#: application/views/logbookadvanced/index.php:866 +#: application/views/logbookadvanced/index.php:877 #: application/views/logbookadvanced/useroptions.php:50 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 @@ -1826,8 +1837,8 @@ msgstr "Frequenza" #: application/controllers/Radio.php:43 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:460 -#: application/views/logbookadvanced/index.php:941 +#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:952 #: application/views/logbookadvanced/useroptions.php:150 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 @@ -1855,7 +1866,7 @@ msgstr "Operatore" #: application/views/dxatlas/index.php:65 #: application/views/interface_assets/footer.php:822 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:319 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 @@ -2337,7 +2348,7 @@ msgid "Timestamp" msgstr "Orario" #: application/controllers/Radio.php:49 -#: application/views/logbookadvanced/index.php:821 +#: application/views/logbookadvanced/index.php:829 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:185 @@ -2376,7 +2387,7 @@ msgstr "Predefinito (premi per rimuovere)" #: application/views/interface_assets/footer.php:682 #: application/views/interface_assets/footer.php:691 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:808 +#: application/views/logbookadvanced/index.php:816 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 #: application/views/satellite/index.php:58 #: application/views/search/stored_queries.php:21 @@ -2399,7 +2410,7 @@ msgstr "Modifica" #: application/views/interface_assets/footer.php:2800 #: application/views/interface_assets/footer.php:2818 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:824 +#: application/views/logbookadvanced/index.php:835 #: application/views/lotw_views/index.php:134 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 @@ -2507,7 +2518,7 @@ msgstr "Orari satelliti" #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 #: application/views/interface_assets/header.php:399 -#: application/views/logbookadvanced/index.php:797 +#: application/views/logbookadvanced/index.php:805 #: application/views/oqrs/index.php:30 #: application/views/oqrs/showrequests.php:69 #: application/views/qslcard/searchform.php:8 @@ -2851,83 +2862,83 @@ msgstr "Eccezioni DXCC:" msgid "Dxcc Prefixes:" msgstr "Prefissi DXCC:" -#: application/controllers/Update.php:362 +#: application/controllers/Update.php:340 msgid "SCP Update complete. Result: " msgstr "Aggiornamento SCP completato. Risultato: " -#: application/controllers/Update.php:364 +#: application/controllers/Update.php:342 msgid "SCP Update failed. Result: " msgstr "Aggiornamento SCP fallito. Risultato: " -#: application/controllers/Update.php:401 +#: application/controllers/Update.php:379 msgid "LoTW Users Update complete. Result: " msgstr "Aggiornamento utenti LoTW completato. Risultato: " -#: application/controllers/Update.php:403 +#: application/controllers/Update.php:381 msgid "LoTW Users Update failed. Result: " msgstr "Aggiornamento utenti LoTW fallito. Risultato: " -#: application/controllers/Update.php:438 +#: application/controllers/Update.php:416 msgid "DOK Update complete. Result: " msgstr "Aggiornamento DOK completato. Risultato: " -#: application/controllers/Update.php:440 +#: application/controllers/Update.php:418 msgid "DOK Update failed. Result: " msgstr "Aggiornamento DOK fallito. Risultato: " -#: application/controllers/Update.php:473 +#: application/controllers/Update.php:451 msgid "SOTA Update complete. Result: " msgstr "Aggiornamento SOTA completato. Risultato: " -#: application/controllers/Update.php:475 +#: application/controllers/Update.php:453 msgid "SOTA Update failed. Result: " msgstr "Aggiornamento SOTA fallito. Risultato: " -#: application/controllers/Update.php:508 +#: application/controllers/Update.php:486 msgid "WWFF Update complete. Result: " msgstr "Aggiornamento WWFF completato. Risultato: " -#: application/controllers/Update.php:510 +#: application/controllers/Update.php:488 msgid "WWFF Update failed. Result: " msgstr "Aggiornamento WWFF fallito. Risultato: " -#: application/controllers/Update.php:544 +#: application/controllers/Update.php:522 msgid "HAMqsl Update complete. Result: " msgstr "aggiornamento HAMqsl completato. Risultato: " -#: application/controllers/Update.php:546 +#: application/controllers/Update.php:524 msgid "HAMqsl Update failed. Result: " msgstr "Aggiornamento HAMqsl fallito. Risultato: " -#: application/controllers/Update.php:579 +#: application/controllers/Update.php:557 msgid "POTA Update complete. Result: " msgstr "Aggiornamento POTA completato. Risultato: " -#: application/controllers/Update.php:581 +#: application/controllers/Update.php:559 msgid "POTA Update failed. Result: " msgstr "Aggiornamento POTA fallito. Risultato: " -#: application/controllers/Update.php:610 +#: application/controllers/Update.php:588 msgid "TLE Update complete. Result: " msgstr "Aggiornamento TLE completato. Risultato: " -#: application/controllers/Update.php:612 +#: application/controllers/Update.php:590 msgid "TLE Update failed. Result: " msgstr "Aggiornamento TLE fallito. RIsultato: " -#: application/controllers/Update.php:639 +#: application/controllers/Update.php:617 msgid "LoTW SAT Update" msgstr "Aggiorna LoTW SAT" -#: application/controllers/Update.php:667 +#: application/controllers/Update.php:645 msgid "Update of Hams of Note" msgstr "Aggiornamento di Hams of Note" -#: application/controllers/Update.php:707 +#: application/controllers/Update.php:685 msgid "VUCC Grid file update complete. Result: " msgstr "VUCC Grid file aggiornato. Risultato: " -#: application/controllers/Update.php:709 +#: application/controllers/Update.php:687 msgid "VUCC Grid file update failed. Result: " msgstr "Aggiornamento file Grid VUCC fallito. Risultato: " @@ -3389,11 +3400,11 @@ msgctxt "Division Name (States in various countries)." msgid "City / Ku / Gun" msgstr "Città / Ku / Gun" -#: application/models/Club_model.php:154 +#: application/models/Club_model.php:186 msgid "Invalid Permission Level!" msgstr "Livello di autorizzazione non valido!" -#: application/models/Club_model.php:169 +#: application/models/Club_model.php:201 msgid "Error adding Club Member!" msgstr "Errore durante l'aggiunta del membro del club!" @@ -3554,7 +3565,7 @@ msgstr "Riferimento POTA già presente nel registro di stazione" msgid "QSO updated" msgstr "QSO aggiornato" -#: application/models/Logbook_model.php:6405 +#: application/models/Logbook_model.php:6331 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3769,28 +3780,28 @@ msgstr "Differenza" #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:337 -#: application/views/logbookadvanced/index.php:348 -#: application/views/logbookadvanced/index.php:359 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:402 -#: application/views/logbookadvanced/index.php:416 -#: application/views/logbookadvanced/index.php:470 -#: application/views/logbookadvanced/index.php:508 -#: application/views/logbookadvanced/index.php:519 -#: application/views/logbookadvanced/index.php:530 -#: application/views/logbookadvanced/index.php:540 -#: application/views/logbookadvanced/index.php:552 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/index.php:575 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/index.php:599 -#: application/views/logbookadvanced/index.php:610 -#: application/views/logbookadvanced/index.php:621 -#: application/views/logbookadvanced/index.php:630 -#: application/views/logbookadvanced/index.php:653 -#: application/views/logbookadvanced/index.php:662 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:418 +#: application/views/logbookadvanced/index.php:472 +#: application/views/logbookadvanced/index.php:510 +#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/index.php:532 +#: application/views/logbookadvanced/index.php:542 +#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/index.php:565 +#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:588 +#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:612 +#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/index.php:655 +#: application/views/logbookadvanced/index.php:664 #: application/views/lotw/import.php:55 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -3856,8 +3867,8 @@ msgstr "Periodo" #: application/views/distances/index.php:53 #: application/views/gridmap/index.php:71 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:947 +#: application/views/logbookadvanced/index.php:377 +#: application/views/logbookadvanced/index.php:958 #: application/views/logbookadvanced/useroptions.php:158 #: application/views/timeline/index.php:79 application/views/user/edit.php:351 #: application/views/view_log/partial/log_ajax.php:21 @@ -3877,7 +3888,7 @@ msgstr "Tutti tranne SAT" #: application/views/gridmap/index.php:75 #: application/views/logbookadvanced/edit.php:207 #: application/views/logbookadvanced/edit.php:215 -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:473 #: application/views/timeline/index.php:84 msgid "None/Empty" msgstr "Nessuno/Vuoto" @@ -3887,7 +3898,7 @@ msgstr "Nessuno/Vuoto" #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:77 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:381 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:532 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 @@ -3901,7 +3912,7 @@ msgstr "Aircraft Scatter" #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:78 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:382 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:533 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 @@ -3915,7 +3926,7 @@ msgstr "Aurora" #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:79 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:383 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:534 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 @@ -3929,7 +3940,7 @@ msgstr "Aurora-E" #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:80 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:384 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:535 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 @@ -3943,7 +3954,7 @@ msgstr "Back scatter" #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:81 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:385 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:536 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 @@ -3957,7 +3968,7 @@ msgstr "EchoLink" #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:82 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:386 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:537 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 @@ -3971,7 +3982,7 @@ msgstr "Terra-Luna-Terra" #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:83 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:385 +#: application/views/logbookadvanced/index.php:387 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:538 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 @@ -3985,7 +3996,7 @@ msgstr "E Sporadico" #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:84 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:386 +#: application/views/logbookadvanced/index.php:388 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:539 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 @@ -3999,7 +4010,7 @@ msgstr "Irregolarità allineamento del campo" #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:85 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:387 +#: application/views/logbookadvanced/index.php:389 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:540 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 @@ -4013,7 +4024,7 @@ msgstr "Riflessione F2" #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:86 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:388 +#: application/views/logbookadvanced/index.php:390 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:541 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 @@ -4027,7 +4038,7 @@ msgstr "Assistito da Internet" #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:87 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:391 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:542 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 @@ -4041,7 +4052,7 @@ msgstr "Ionoscatter" #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:88 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:392 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:543 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 @@ -4055,7 +4066,7 @@ msgstr "IRLP" #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:89 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:393 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:544 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 @@ -4069,7 +4080,7 @@ msgstr "Meteor scatter" #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:90 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:394 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:545 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 @@ -4083,7 +4094,7 @@ msgstr "Ripetitore/transponder terrestre o atmosferico" #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:91 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:395 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:546 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 @@ -4097,7 +4108,7 @@ msgstr "Rain scatter" #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:92 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:396 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:547 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 @@ -4111,7 +4122,7 @@ msgstr "Satellite" #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:93 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:397 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:548 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 @@ -4125,7 +4136,7 @@ msgstr "Trans-equatoriale" #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:94 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:398 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:549 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 @@ -4186,7 +4197,7 @@ msgstr "Mostra" #: application/views/hamsat/index.php:32 #: application/views/interface_assets/header.php:210 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:357 +#: application/views/logbookadvanced/index.php:359 #: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 @@ -4207,7 +4218,7 @@ msgstr "Satellite" #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:118 -#: application/views/logbookadvanced/index.php:366 +#: application/views/logbookadvanced/index.php:368 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:54 @@ -4337,6 +4348,8 @@ msgstr "Non ho trovato nulla!" #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/logbookadvanced/showUpdateResult.php:60 +#: application/views/logbookadvanced/showUpdateResult.php:104 #: application/views/lotw_views/index.php:32 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 @@ -4517,6 +4530,8 @@ msgstr "Orario" #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 +#: application/views/logbookadvanced/showMissingDxccQsos.php:10 +#: application/views/logbookadvanced/showStateQsos.php:21 #: application/views/public_search/result.php:14 #: application/views/qslcard/searchresult.php:8 #: application/views/qso/components/previous_contacts.php:7 @@ -5187,7 +5202,7 @@ msgstr "Autorizzazioni" #: application/views/club/permissions.php:250 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:740 +#: application/views/logbookadvanced/index.php:742 #: application/views/notes/main.php:77 application/views/qrz/export.php:44 #: application/views/user/index.php:33 application/views/user/index.php:160 #: application/views/webadif/export.php:45 @@ -5322,8 +5337,8 @@ msgid "Filtering on" msgstr "Filtraggio per" #: application/views/awards/counties/details.php:13 -#: application/views/logbookadvanced/index.php:426 -#: application/views/logbookadvanced/index.php:911 +#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:922 #: application/views/logbookadvanced/useroptions.php:110 msgid "County" msgstr "Contea" @@ -5418,8 +5433,8 @@ msgstr "Totale" #: application/views/gridmap/index.php:229 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 -#: application/views/logbookadvanced/index.php:400 -#: application/views/logbookadvanced/index.php:914 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:925 #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:308 @@ -5484,7 +5499,7 @@ msgstr "Premi - CQ WAZ" #: application/views/awards/dxcc/index.php:41 #: application/views/awards/wpx/index.php:13 #: application/views/gridmap/index.php:19 -#: application/views/logbookadvanced/index.php:270 +#: application/views/logbookadvanced/index.php:272 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" msgstr "Filtri" @@ -5496,7 +5511,7 @@ msgstr "Mostra mappa zona CQ" #: application/views/awards/cq/index.php:55 #: application/views/awards/dxcc/index.php:51 #: application/views/gridmap/index.php:28 -#: application/views/logbookadvanced/index.php:276 +#: application/views/logbookadvanced/index.php:278 msgid "Date Presets" msgstr "Preimpostazioni data" @@ -5508,55 +5523,55 @@ msgstr "Preimpostazioni data" #: application/views/dashboard/index.php:408 #: application/views/dashboard/index.php:429 #: application/views/gridmap/index.php:31 -#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:280 msgid "Today" msgstr "Oggi" #: application/views/awards/cq/index.php:58 #: application/views/awards/dxcc/index.php:54 #: application/views/gridmap/index.php:32 -#: application/views/logbookadvanced/index.php:279 +#: application/views/logbookadvanced/index.php:281 msgid "Yesterday" msgstr "Ieri" #: application/views/awards/cq/index.php:59 #: application/views/awards/dxcc/index.php:55 #: application/views/gridmap/index.php:33 -#: application/views/logbookadvanced/index.php:280 +#: application/views/logbookadvanced/index.php:282 msgid "Last 7 Days" msgstr "Ultimi 7 giorni" #: application/views/awards/cq/index.php:60 #: application/views/awards/dxcc/index.php:56 #: application/views/gridmap/index.php:34 -#: application/views/logbookadvanced/index.php:281 +#: application/views/logbookadvanced/index.php:283 msgid "Last 30 Days" msgstr "Ultimi 30 giorni" #: application/views/awards/cq/index.php:61 #: application/views/awards/dxcc/index.php:57 #: application/views/gridmap/index.php:35 -#: application/views/logbookadvanced/index.php:282 +#: application/views/logbookadvanced/index.php:284 msgid "This Month" msgstr "Questo mese" #: application/views/awards/cq/index.php:62 #: application/views/awards/dxcc/index.php:58 #: application/views/gridmap/index.php:36 -#: application/views/logbookadvanced/index.php:283 +#: application/views/logbookadvanced/index.php:285 msgid "Last Month" msgstr "Il mese scorso" #: application/views/awards/cq/index.php:63 #: application/views/awards/dxcc/index.php:59 #: application/views/gridmap/index.php:37 -#: application/views/logbookadvanced/index.php:284 +#: application/views/logbookadvanced/index.php:286 msgid "This Year" msgstr "Quest'anno" #: application/views/awards/cq/index.php:64 #: application/views/awards/dxcc/index.php:60 -#: application/views/logbookadvanced/index.php:285 +#: application/views/logbookadvanced/index.php:287 msgid "Last Year" msgstr "L'anno scorso" @@ -5564,7 +5579,7 @@ msgstr "L'anno scorso" #: application/views/awards/dxcc/index.php:61 #: application/views/gridmap/index.php:38 #: application/views/interface_assets/footer.php:52 -#: application/views/logbookadvanced/index.php:286 +#: application/views/logbookadvanced/index.php:288 #: application/views/qso/index.php:757 msgid "Clear" msgstr "Pulisci" @@ -5712,7 +5727,7 @@ msgstr "Tabella" #: application/views/awards/waja/index.php:135 #: application/views/awards/wap/index.php:129 #: application/views/awards/was/index.php:133 -#: application/views/logbookadvanced/index.php:813 +#: application/views/logbookadvanced/index.php:821 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Mappa" @@ -5871,8 +5886,8 @@ msgstr "Ogni banda" #: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:828 -#: application/views/logbookadvanced/index.php:829 +#: application/views/logbookadvanced/index.php:839 +#: application/views/logbookadvanced/index.php:840 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:43 application/views/user/edit.php:723 @@ -5947,7 +5962,7 @@ msgstr "Includi eliminati" #: application/views/bandmap/list.php:339 #: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:217 -#: application/views/logbookadvanced/index.php:473 +#: application/views/logbookadvanced/index.php:475 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:480 @@ -5961,7 +5976,7 @@ msgstr "Antartide" #: application/views/bandmap/list.php:338 #: application/views/bandmap/list.php:352 #: application/views/logbookadvanced/edit.php:216 -#: application/views/logbookadvanced/index.php:472 +#: application/views/logbookadvanced/index.php:474 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:479 @@ -5975,7 +5990,7 @@ msgstr "Africa" #: application/views/bandmap/list.php:340 #: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 -#: application/views/logbookadvanced/index.php:475 +#: application/views/logbookadvanced/index.php:477 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:481 @@ -5989,7 +6004,7 @@ msgstr "Asia" #: application/views/bandmap/list.php:341 #: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:220 -#: application/views/logbookadvanced/index.php:476 +#: application/views/logbookadvanced/index.php:478 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:482 @@ -6003,7 +6018,7 @@ msgstr "Europa" #: application/views/bandmap/list.php:342 #: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:218 -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:476 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:483 @@ -6017,7 +6032,7 @@ msgstr "America del Nord" #: application/views/bandmap/list.php:344 #: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:221 -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:479 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:485 @@ -6031,7 +6046,7 @@ msgstr "America del Sud" #: application/views/bandmap/list.php:343 #: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:222 -#: application/views/logbookadvanced/index.php:478 +#: application/views/logbookadvanced/index.php:480 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:484 @@ -6080,6 +6095,7 @@ msgstr "Nome DXCC" #: application/views/awards/dxcc/index.php:276 #: application/views/awards/iota/index.php:199 #: application/views/awards/wae/index.php:163 +#: application/views/logbookadvanced/statecheckresult.php:10 #: application/views/timeline/index.php:199 #: application/views/timeline/index.php:297 msgid "Prefix" @@ -6359,7 +6375,7 @@ msgstr "Mostra mappa IOTA" #: application/views/contesting/index.php:229 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:872 +#: application/views/logbookadvanced/index.php:883 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:58 #: application/views/lotw/satupdate.php:7 @@ -6387,8 +6403,8 @@ msgstr "Eliminato" #: application/views/gridmap/index.php:231 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 -#: application/views/logbookadvanced/index.php:414 -#: application/views/logbookadvanced/index.php:917 +#: application/views/logbookadvanced/index.php:416 +#: application/views/logbookadvanced/index.php:928 #: application/views/logbookadvanced/useroptions.php:118 #: application/views/lookup/index.php:8 application/views/qso/edit_ajax.php:316 #: application/views/qso/index.php:515 @@ -6681,9 +6697,10 @@ msgid "Band Categories" msgstr "Categorie di bande" #: application/views/awards/pl_polska/index.php:372 -#: application/views/logbookadvanced/index.php:772 +#: application/views/logbookadvanced/dbtoolsdialog.php:47 +#: application/views/logbookadvanced/index.php:773 msgid "Fix State" -msgstr "" +msgstr "Correggi stato" #: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" @@ -6830,8 +6847,10 @@ msgid "Reference" msgstr "Riferenza" #: application/views/awards/sig/qso_list.php:10 -#: application/views/logbookadvanced/index.php:845 +#: application/views/logbookadvanced/index.php:856 #: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/logbookadvanced/showMissingDxccQsos.php:11 +#: application/views/logbookadvanced/showStateQsos.php:22 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 #: application/views/qso/components/previous_contacts.php:6 @@ -6989,8 +7008,8 @@ msgstr "Premi - Collegati tutti i continenti (WAC)" #: application/views/bandmap/list.php:571 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 -#: application/views/logbookadvanced/index.php:468 -#: application/views/logbookadvanced/index.php:956 +#: application/views/logbookadvanced/index.php:470 +#: application/views/logbookadvanced/index.php:967 #: application/views/logbookadvanced/useroptions.php:170 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:476 @@ -7353,7 +7372,7 @@ msgstr "Fare clic per preparare il registro." #: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 msgid "to tune frequency" -msgstr "" +msgstr "per sintonizzare la frequenza" #: application/views/bandmap/list.php:14 msgid "Pop-up Blocked" @@ -7403,7 +7422,7 @@ msgstr "Impossibile sintonizzare la radio sulla frequenza" #: application/views/bandmap/list.php:26 msgid "QSO Prepared" -msgstr "" +msgstr "QSO Pronto" #: application/views/bandmap/list.php:28 msgid "sent to logging form" @@ -7676,8 +7695,8 @@ msgstr "Spot recenti (<5 minuti)" #: application/views/bandmap/list.php:510 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 -#: application/views/logbookadvanced/index.php:464 -#: application/views/logbookadvanced/index.php:950 +#: application/views/logbookadvanced/index.php:466 +#: application/views/logbookadvanced/index.php:961 #: application/views/logbookadvanced/useroptions.php:162 #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 @@ -7750,7 +7769,7 @@ msgstr "Vedi i dettagli per CQ Zone %s" #: application/views/bandmap/list.php:124 msgid "in" -msgstr "" +msgstr "in" #: application/views/bandmap/list.php:127 msgid "Exit Fullscreen" @@ -7785,8 +7804,8 @@ msgstr "Segnalatore" #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:485 -#: application/views/logbookadvanced/index.php:944 +#: application/views/logbookadvanced/index.php:487 +#: application/views/logbookadvanced/index.php:955 #: application/views/logbookadvanced/useroptions.php:154 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:379 #: application/views/view_log/qso.php:228 @@ -7817,7 +7836,7 @@ msgstr "spot" #: application/views/bandmap/list.php:141 msgid "spotters" -msgstr "" +msgstr "segnalatori" #: application/views/bandmap/list.php:144 msgid "Please Wait" @@ -7859,7 +7878,7 @@ msgstr "Mostra tutti gli spot" #: application/views/bandmap/list.php:161 msgid "Draw Spotters" -msgstr "" +msgstr "Disegna i segnalatori" #: application/views/bandmap/list.php:162 msgid "Extend Map" @@ -8019,7 +8038,7 @@ msgstr "Filtra Preferiti" #: application/views/bandmap/list.php:430 msgid "Clear all filters except De Continent" -msgstr "" +msgstr "Cancella tutti i filtri tranne De Continent" #: application/views/bandmap/list.php:436 msgid "Toggle 160m band filter" @@ -8193,15 +8212,15 @@ msgstr "Entità" #: application/views/bandmap/list.php:575 msgid "Spotter Callsign" -msgstr "" +msgstr "Nominativo del segnalatore" #: application/views/bandmap/list.php:576 msgid "Spotter Continent" -msgstr "" +msgstr "Continente del segnalatore" #: application/views/bandmap/list.php:577 msgid "Spotter CQ Zone" -msgstr "" +msgstr "Zona CQ del segnalatore" #: application/views/bandmap/list.php:578 msgid "Last QSO Date" @@ -8314,7 +8333,6 @@ msgstr "" #: application/views/bands/edit.php:2 #: application/views/logbookadvanced/index.php:53 -#: application/views/update/index.php:35 msgid "WARNING" msgstr "AVVERTIMENTO" @@ -8502,7 +8520,7 @@ msgstr "" "codice di riferimento IOTA)." #: application/views/cabrillo/index.php:48 -#: application/views/logbookadvanced/index.php:787 +#: application/views/logbookadvanced/index.php:795 #: application/views/oqrs/showrequests.php:31 #: application/views/qso/index.php:362 #: application/views/station_profile/edit.php:96 @@ -8616,19 +8634,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:187 #: application/views/logbookadvanced/edit.php:193 #: application/views/logbookadvanced/edit.php:199 -#: application/views/logbookadvanced/index.php:509 -#: application/views/logbookadvanced/index.php:520 -#: application/views/logbookadvanced/index.php:553 -#: application/views/logbookadvanced/index.php:564 -#: application/views/logbookadvanced/index.php:576 -#: application/views/logbookadvanced/index.php:587 -#: application/views/logbookadvanced/index.php:600 -#: application/views/logbookadvanced/index.php:611 -#: application/views/logbookadvanced/index.php:622 -#: application/views/logbookadvanced/index.php:631 -#: application/views/logbookadvanced/index.php:646 -#: application/views/logbookadvanced/index.php:654 -#: application/views/logbookadvanced/index.php:663 +#: application/views/logbookadvanced/index.php:511 +#: application/views/logbookadvanced/index.php:522 +#: application/views/logbookadvanced/index.php:555 +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/index.php:578 +#: application/views/logbookadvanced/index.php:589 +#: application/views/logbookadvanced/index.php:602 +#: application/views/logbookadvanced/index.php:613 +#: application/views/logbookadvanced/index.php:624 +#: application/views/logbookadvanced/index.php:633 +#: application/views/logbookadvanced/index.php:648 +#: application/views/logbookadvanced/index.php:656 +#: application/views/logbookadvanced/index.php:665 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:444 #: application/views/qso/edit_ajax.php:477 @@ -8681,19 +8699,19 @@ msgstr "Si" #: application/views/logbookadvanced/edit.php:188 #: application/views/logbookadvanced/edit.php:194 #: application/views/logbookadvanced/edit.php:200 -#: application/views/logbookadvanced/index.php:510 -#: application/views/logbookadvanced/index.php:521 -#: application/views/logbookadvanced/index.php:554 -#: application/views/logbookadvanced/index.php:565 -#: application/views/logbookadvanced/index.php:577 -#: application/views/logbookadvanced/index.php:588 -#: application/views/logbookadvanced/index.php:601 -#: application/views/logbookadvanced/index.php:612 -#: application/views/logbookadvanced/index.php:623 -#: application/views/logbookadvanced/index.php:632 -#: application/views/logbookadvanced/index.php:647 -#: application/views/logbookadvanced/index.php:655 -#: application/views/logbookadvanced/index.php:664 +#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:567 +#: application/views/logbookadvanced/index.php:579 +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/index.php:603 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/index.php:625 +#: application/views/logbookadvanced/index.php:634 +#: application/views/logbookadvanced/index.php:649 +#: application/views/logbookadvanced/index.php:657 +#: application/views/logbookadvanced/index.php:666 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:443 #: application/views/qso/edit_ajax.php:476 @@ -8826,6 +8844,7 @@ msgstr "Autorizzazioni disponibili" #: application/views/club/permissions.php:26 #: application/views/eqsl/download.php:45 +#: application/views/logbookadvanced/statecheckresult.php:13 msgid "Action" msgstr "Azione" @@ -9035,7 +9054,7 @@ msgstr "" #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 -#: application/views/logbookadvanced/index.php:968 +#: application/views/logbookadvanced/index.php:979 #: application/views/logbookadvanced/useroptions.php:186 #: application/views/qrz/export.php:39 #: application/views/qslprint/qslprint.php:32 @@ -9142,7 +9161,7 @@ msgstr "Fai clic per scorrere o aspetta 1,5s per applicare" #: application/views/components/dxwaterfall.php:28 msgid "Change spotter continent" -msgstr "" +msgstr "Cambia continente del segnalatore" #: application/views/components/dxwaterfall.php:29 msgid "Filter by mode" @@ -9150,7 +9169,7 @@ msgstr "Filtra per modo" #: application/views/components/dxwaterfall.php:36 msgid "Zoom out" -msgstr "" +msgstr "Diminuisci lo zoom" #: application/views/components/dxwaterfall.php:37 msgid "Reset zoom to default (3)" @@ -9210,7 +9229,7 @@ msgstr "Attendere, per favore" #: application/views/components/dxwaterfall.php:50 msgid "Cycle label size" -msgstr "" +msgstr "Cicla tra le dimensioni di etichette" #: application/views/components/dxwaterfall.php:51 msgid "X-Small" @@ -9496,7 +9515,7 @@ msgid "Locator" msgstr "Locatore" #: application/views/contesting/index.php:69 -#: application/views/logbookadvanced/index.php:875 +#: application/views/logbookadvanced/index.php:886 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/qso/edit_ajax.php:177 msgid "QTH" @@ -9983,14 +10002,14 @@ msgstr "Ricevuta" #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 -#: application/views/logbookadvanced/index.php:511 -#: application/views/logbookadvanced/index.php:522 -#: application/views/logbookadvanced/index.php:555 -#: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/index.php:578 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/index.php:602 -#: application/views/logbookadvanced/index.php:613 +#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:557 +#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:591 +#: application/views/logbookadvanced/index.php:604 +#: application/views/logbookadvanced/index.php:615 #: application/views/oqrs/qsolist.php:57 application/views/oqrs/qsolist.php:99 #: application/views/qslprint/qsolist.php:68 #: application/views/qslprint/qsolist.php:110 @@ -10557,6 +10576,11 @@ msgid "Check for new version" msgstr "Controlla se ci sono nuove versioni" #: application/views/debug/index.php:495 +#: application/views/logbookadvanced/checkresult.php:37 +#: application/views/logbookadvanced/checkresult.php:53 +#: application/views/logbookadvanced/checkresult.php:76 +#: application/views/logbookadvanced/checkresult.php:87 +#: application/views/logbookadvanced/checkresult.php:97 #: application/views/logbookadvanced/index.php:57 msgid "Update now" msgstr "Aggiorna ora" @@ -11521,7 +11545,7 @@ msgstr "Cerca le informazioni di riferimento %s su %s" #: application/views/interface_assets/footer.php:95 msgid "Error loading bearing!" -msgstr "" +msgstr "Errore nel caricamento della direzione!" #: application/views/interface_assets/footer.php:96 msgid "Aliases" @@ -11569,11 +11593,11 @@ msgstr "Visualizza la posizione su Google Maps (Satellite)" #: application/views/interface_assets/footer.php:108 msgid "Novice" -msgstr "" +msgstr "Novice" #: application/views/interface_assets/footer.php:109 msgid "Technician" -msgstr "" +msgstr "Technician" #: application/views/interface_assets/footer.php:111 #: application/views/interface_assets/header.php:117 @@ -11582,110 +11606,119 @@ msgstr "Avanzato" #: application/views/interface_assets/footer.php:112 msgid "Extra" -msgstr "" +msgstr "Extra" #: application/views/interface_assets/footer.php:113 msgid "Gridsquare Formatting" -msgstr "" +msgstr "Formattazione locatori" #: application/views/interface_assets/footer.php:114 msgid "" "Enter multiple (4-digit) grids separated with commas. For example: IO77,IO78" msgstr "" +"Inserisci più locatori (a 4 cifre) separati da virgole. Ad esempio: IO77,IO78" #: application/views/interface_assets/footer.php:115 msgid "live" -msgstr "" +msgstr "in tempo reale" #: application/views/interface_assets/footer.php:116 msgid "polling" -msgstr "" +msgstr "polling" #: application/views/interface_assets/footer.php:117 msgid "" "Note: Periodic polling is slow. When operating locally, WebSockets are a " "more convenient way to control your radio in real-time." msgstr "" +"Nota: Il polling periodico è lento. Quando si opera localmente, i WebSocket " +"sono un modo più conveniente per controllare la tua radio in tempo reale." #: application/views/interface_assets/footer.php:118 msgid "TX" -msgstr "" +msgstr "TX" #: application/views/interface_assets/footer.php:119 msgid "RX" -msgstr "" +msgstr "RX" #: application/views/interface_assets/footer.php:120 msgid "TX/RX" -msgstr "" +msgstr "TX/RX" #: application/views/interface_assets/footer.php:122 msgid "Power" -msgstr "" +msgstr "Potenza" #: application/views/interface_assets/footer.php:123 msgid "Radio connection error" -msgstr "" +msgstr "Errore di connessione radio" #: application/views/interface_assets/footer.php:124 msgid "Connection lost, please select another radio." -msgstr "" +msgstr "Connessione persa, seleziona un'altra radio." #: application/views/interface_assets/footer.php:125 msgid "Radio connection timeout" -msgstr "" +msgstr "Timeout connessione radio" #: application/views/interface_assets/footer.php:126 msgid "Data is stale, please select another radio." -msgstr "" +msgstr "I dati sono obsoleti, seleziona un'altra radio." #: application/views/interface_assets/footer.php:127 msgid "You're not logged in. Please log in." -msgstr "" +msgstr "Non sei connesso. Effettua l'accesso." #: application/views/interface_assets/footer.php:128 msgid "Radio Tuning Failed" -msgstr "" +msgstr "Sintonia radio fallita" #: application/views/interface_assets/footer.php:129 msgid "Failed to tune radio to" -msgstr "" +msgstr "Impossibile sintonizzare la radio su" #: application/views/interface_assets/footer.php:130 msgid "CAT interface not responding. Please check your radio connection." msgstr "" +"L'interfaccia CAT non risponde. Controlla la connessione della tua radio." #: application/views/interface_assets/footer.php:131 msgid "No CAT URL configured for this radio" -msgstr "" +msgstr "Nessun URL CAT configurato per questa radio" #: application/views/interface_assets/footer.php:132 msgid "WebSocket Radio" -msgstr "" +msgstr "WebSocket Radio" #: application/views/interface_assets/footer.php:133 msgid "Location is fetched from provided gridsquare" -msgstr "" +msgstr "La posizione è ottenuta dal locatore fornito" #: application/views/interface_assets/footer.php:134 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" +"La posizione è ottenuta dalle coordinate DXCC (nessun locatore fornito)" #: application/views/interface_assets/footer.php:137 msgid "Working without CAT connection" -msgstr "" +msgstr "Funzionamento senza connessione CAT" #: application/views/interface_assets/footer.php:138 msgid "" "CAT connection is currently disabled. Enable CAT connection to work in " "online mode with your radio." msgstr "" +"La connessione CAT è attualmente disabilitata. Abilita la connessione CAT " +"per lavorare in modalità online con la tua radio." #: application/views/interface_assets/footer.php:139 msgid "" "To connect your radio to Wavelog, visit the Wavelog Wiki for setup " "instructions." msgstr "" +"Per collegare la tua radio a Wavelog, visita il Wiki di Wavelog per le " +"istruzioni di configurazione." #: application/views/interface_assets/footer.php:223 #: application/views/interface_assets/header.php:535 @@ -11781,7 +11814,7 @@ msgstr "" "sei sicuro, ignora questo avviso." #: application/views/interface_assets/footer.php:878 -#: application/views/logbookadvanced/index.php:792 +#: application/views/logbookadvanced/index.php:800 msgid "Callsign: " msgstr "Nominativo: " @@ -11934,7 +11967,7 @@ msgstr "Collegato tutta Europa (WAE)" #: application/views/interface_assets/header.php:204 msgid "Worked All Prefixes (WPX)" -msgstr "" +msgstr "Worked All Prefixes (WPX)" #: application/views/interface_assets/header.php:226 msgid "Canada" @@ -11978,7 +12011,7 @@ msgstr "LX Gridmaster" #: application/views/interface_assets/header.php:268 msgid "Poland" -msgstr "" +msgstr "Polonia" #: application/views/interface_assets/header.php:274 msgid "Switzerland" @@ -12034,7 +12067,7 @@ msgid "Log" msgstr "Registro" #: application/views/interface_assets/header.php:398 -#: application/views/logbookadvanced/index.php:689 +#: application/views/logbookadvanced/index.php:691 #: application/views/oqrs/index.php:28 application/views/user/edit.php:491 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" @@ -12115,7 +12148,7 @@ msgid "DCL Export" msgstr "Esportazione DCL" #: application/views/interface_assets/header.php:536 -#: application/views/logbookadvanced/index.php:831 +#: application/views/logbookadvanced/index.php:842 msgid "Help" msgstr "Aiuto" @@ -12379,6 +12412,7 @@ msgid "Label types" msgstr "Tipi di etichette" #: application/views/labels/index.php:81 +#: application/views/logbookadvanced/statecheckresult.php:12 #: application/views/statistics/index.php:70 #: application/views/statistics/index.php:114 msgid "QSOs" @@ -12439,41 +12473,189 @@ msgid "" "If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " "data." msgstr "" +"Se un QSO ha un locatore di 4 caratteri (es. JO90), prova a raffinarlo " +"usando i dati del callbook." #: application/views/logbookadvanced/callbookdialog.php:6 msgid "" "We’ll keep the original value and add a more precise locator (e.g., JO90AB " "or JO90AB12) when a match is confident." msgstr "" +"Manterremo il valore originale e aggiungeremo un localizzatore più preciso " +"(ad esempio, JO90AB o JO90AB12) quando una corrispondenza sarà sicura." -#: application/views/logbookadvanced/continentdialog.php:2 -msgid "" -"Update all QSOs with the continent based on the DXCC country of the QSO." +#: application/views/logbookadvanced/checkresult.php:27 +msgid "Distance Check Results" msgstr "" -#: application/views/logbookadvanced/continentdialog.php:3 -msgid "This is useful if you have imported QSOs without continent information." -msgstr "" - -#: application/views/logbookadvanced/continentdialog.php:4 -msgid "" -"Update will only set the continent for QSOs where the continent is empty." +#: application/views/logbookadvanced/checkresult.php:28 +#: application/views/logbookadvanced/checkresult.php:44 +#: application/views/logbookadvanced/checkresult.php:60 +#: application/views/logbookadvanced/checkresult.php:72 +#: application/views/logbookadvanced/checkresult.php:83 +#: application/views/logbookadvanced/checkresult.php:94 +msgid "QSOs to update found:" msgstr "" +#: application/views/logbookadvanced/checkresult.php:31 #: application/views/logbookadvanced/distancedialog.php:2 msgid "" "Update all QSOs with the distance based on your gridsquare set in the " "station profile, and the gridsquare of the QSO partner. Distance will be " "calculated based on if short path or long path is set." msgstr "" +"Aggiorna tutti i QSO con la distanza basata sul tuo locatore impostato nel " +"profilo della stazione e sul locatore del corrispondente. La distanza verrà " +"calcolata in base al percorso corto o lungo impostato." +#: application/views/logbookadvanced/checkresult.php:32 #: application/views/logbookadvanced/distancedialog.php:3 msgid "This is useful if you have imported QSOs without distance information." -msgstr "" +msgstr "Questo è utile se hai importato QSO senza informazioni sulla distanza." +#: application/views/logbookadvanced/checkresult.php:33 #: application/views/logbookadvanced/distancedialog.php:4 msgid "Update will only set the distance for QSOs where the distance is empty." msgstr "" +"L'aggiornamento imposterà la distanza solo per i QSO dove la distanza è " +"vuota." + +#: application/views/logbookadvanced/checkresult.php:43 +msgid "Continent Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:47 +#: application/views/logbookadvanced/continentdialog.php:2 +msgid "" +"Update all QSOs with the continent based on the DXCC country of the QSO." +msgstr "Aggiorna tutti i QSO con il continente basato sul paese DXCC del QSO." + +#: application/views/logbookadvanced/checkresult.php:48 +#: application/views/logbookadvanced/continentdialog.php:3 +msgid "This is useful if you have imported QSOs without continent information." +msgstr "Questo è utile se hai importato QSO senza informazioni sul continente." + +#: application/views/logbookadvanced/checkresult.php:49 +#: application/views/logbookadvanced/continentdialog.php:4 +msgid "" +"Update will only set the continent for QSOs where the continent is empty." +msgstr "" +"L'aggiornamento imposterà il continente solo per i QSO in cui il continente " +"è vuoto." + +#: application/views/logbookadvanced/checkresult.php:59 +msgid "DXCC Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:64 +#: application/views/logbookadvanced/statecheckresult.php:30 +msgid "Run fix" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:71 +msgid "CQ Zone Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:82 +msgid "ITU Zone Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:93 +msgid "Gridsquare Check Results" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:4 +msgid "Data Repair Tools" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:6 +msgid "Wiki Help" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:11 +#: application/views/logbookadvanced/index.php:771 +msgid "Fix CQ Zones" +msgstr "Correggi le zone CQ" + +#: application/views/logbookadvanced/dbtoolsdialog.php:12 +msgid "Update missing CQ zone information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:16 +#: application/views/logbookadvanced/dbtoolsdialog.php:28 +#: application/views/logbookadvanced/dbtoolsdialog.php:40 +#: application/views/logbookadvanced/dbtoolsdialog.php:52 +#: application/views/logbookadvanced/dbtoolsdialog.php:64 +#: application/views/logbookadvanced/dbtoolsdialog.php:76 +#: application/views/logbookadvanced/dbtoolsdialog.php:102 +msgid "Check" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:23 +#: application/views/logbookadvanced/index.php:772 +msgid "Fix ITU Zones" +msgstr "Correggi le zone ITU" + +#: application/views/logbookadvanced/dbtoolsdialog.php:24 +msgid "Update missing ITU zone information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:35 +msgid "Fix Continent" +msgstr "Sistema continente" + +#: application/views/logbookadvanced/dbtoolsdialog.php:36 +msgid "Update missing or incorrect continent information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:48 +msgid "Update missing state/province information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:59 +#: application/views/logbookadvanced/index.php:68 +msgid "Update Distances" +msgstr "Aggiorna le distanze" + +#: application/views/logbookadvanced/dbtoolsdialog.php:60 +msgid "Calculate and update distance information for QSOs" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:71 +msgid "Check QSOs missing DXCC data" +msgstr "Controlla i QSOs mancanti di dati DXCC" + +#: application/views/logbookadvanced/dbtoolsdialog.php:72 +msgid "Identify QSOs that are missing DXCC information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:83 +msgid "Re-check DXCC for all QSOs in the logbook" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:84 +msgid "Use Wavelog to determine DXCC for all QSOs." +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:85 +msgid "This will overwrite ALL existing DXCC information!" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:89 +msgid "Run" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:96 +msgid "Lookup QSOs with missing grid in callbook" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:97 +msgid "Use callbook lookup to set gridsquare" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:98 +msgid "This is limited to 250 callsigns for each run!" +msgstr "" #: application/views/logbookadvanced/edit.php:1 msgid "Please choose the column to be edited:" @@ -12492,7 +12674,7 @@ msgid "Station Power" msgstr "Potenza di trasmissione" #: application/views/logbookadvanced/edit.php:31 -#: application/views/logbookadvanced/index.php:938 +#: application/views/logbookadvanced/index.php:949 #: application/views/logbookadvanced/useroptions.php:146 #: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:489 #: application/views/view_log/qso.php:481 @@ -12545,11 +12727,11 @@ msgstr "QRZ inviato" #: application/views/logbookadvanced/edit.php:48 msgid "QSL Received" -msgstr "" +msgstr "QSL ricevuta" #: application/views/logbookadvanced/edit.php:49 msgid "QSL Sent" -msgstr "" +msgstr "QSL inviata" #: application/views/logbookadvanced/edit.php:50 msgid "QSLMSG" @@ -12564,8 +12746,8 @@ msgid "QSL Sent Method" msgstr "Metodo di invio QSL" #: application/views/logbookadvanced/edit.php:53 -#: application/views/logbookadvanced/index.php:639 -#: application/views/logbookadvanced/index.php:878 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/index.php:889 #: application/views/logbookadvanced/useroptions.php:66 msgid "QSL via" msgstr "QSL tramite" @@ -12590,23 +12772,23 @@ msgstr "Banda RX" #: application/views/logbookadvanced/edit.php:189 #: application/views/logbookadvanced/edit.php:195 #: application/views/logbookadvanced/edit.php:202 -#: application/views/logbookadvanced/index.php:479 -#: application/views/logbookadvanced/index.php:804 +#: application/views/logbookadvanced/index.php:481 +#: application/views/logbookadvanced/index.php:812 msgid "Invalid" msgstr "Non valido" #: application/views/logbookadvanced/edit.php:177 #: application/views/logbookadvanced/edit.php:203 -#: application/views/logbookadvanced/index.php:524 -#: application/views/logbookadvanced/index.php:568 -#: application/views/logbookadvanced/index.php:591 -#: application/views/logbookadvanced/index.php:615 +#: application/views/logbookadvanced/index.php:526 +#: application/views/logbookadvanced/index.php:570 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:617 msgid "Verified" msgstr "Verificato" #: application/views/logbookadvanced/edit.php:208 -#: application/views/logbookadvanced/index.php:532 -#: application/views/logbookadvanced/index.php:542 +#: application/views/logbookadvanced/index.php:534 +#: application/views/logbookadvanced/index.php:544 #: application/views/oqrs/qsolist.php:73 application/views/oqrs/qsolist.php:115 #: application/views/oqrs/showrequests.php:8 #: application/views/qslprint/qslprint.php:7 @@ -12624,8 +12806,8 @@ msgid "Direct" msgstr "Diretta" #: application/views/logbookadvanced/edit.php:209 -#: application/views/logbookadvanced/index.php:531 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/index.php:543 #: application/views/oqrs/qsolist.php:70 application/views/oqrs/qsolist.php:112 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:48 @@ -12645,8 +12827,8 @@ msgid "Bureau" msgstr "Bureau" #: application/views/logbookadvanced/edit.php:210 -#: application/views/logbookadvanced/index.php:533 -#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:545 #: application/views/oqrs/qsolist.php:79 application/views/oqrs/qsolist.php:121 #: application/views/oqrs/showrequests.php:9 #: application/views/qslprint/qslprint.php:8 @@ -12664,8 +12846,8 @@ msgid "Electronic" msgstr "Elettronica" #: application/views/logbookadvanced/edit.php:211 -#: application/views/logbookadvanced/index.php:534 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/index.php:546 #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 @@ -12832,79 +13014,79 @@ msgstr "Aiuto per il registro avanzato" #: application/views/logbookadvanced/index.php:24 msgid "Continent fix" -msgstr "" +msgstr "Correggi continente" #: application/views/logbookadvanced/index.php:25 msgid "There was a problem fixing ITU Zones." -msgstr "" +msgstr "Si è verificato un problema nel sistemare le zone ITU." #: application/views/logbookadvanced/index.php:26 msgid "There was a problem fixing CQ Zones." -msgstr "" +msgstr "Si è verificato un problema nel correggere le zone CQ." #: application/views/logbookadvanced/index.php:27 msgid "ITU Zones updated successfully!" -msgstr "" +msgstr "Zone ITU aggiornate con successo!" #: application/views/logbookadvanced/index.php:28 msgid "CQ Zones updated successfully!" -msgstr "" +msgstr "Zone CQ aggiornate con successo!" #: application/views/logbookadvanced/index.php:29 msgid "You need to select at least 1 row to fix ITU Zones!" -msgstr "" +msgstr "Devi selezionare almeno 1 riga per correggere le zone ITU!" #: application/views/logbookadvanced/index.php:30 msgid "You need to select at least 1 row to fix CQ Zones!" -msgstr "" +msgstr "È necessario selezionare almeno 1 riga per correggere le zone CQ!" #: application/views/logbookadvanced/index.php:31 msgid "You need to select at least 1 row to fix State!" -msgstr "" +msgstr "È necessario selezionare almeno 1 riga per correggere lo stato!" #: application/views/logbookadvanced/index.php:32 msgid "State updated successfully!" -msgstr "" +msgstr "Stato aggiornato con successo!" #: application/views/logbookadvanced/index.php:33 msgid "There was a problem fixing State." -msgstr "" +msgstr "Si è verificato un problema nel sistemare lo stato." #: application/views/logbookadvanced/index.php:34 msgid "Fixing State" -msgstr "" +msgstr "Sistemazione degli stati" #: application/views/logbookadvanced/index.php:35 #, php-format msgid "Fixing State (%s QSOs)" -msgstr "" +msgstr "Sistemazione degli stati (%s QSO)" #: application/views/logbookadvanced/index.php:36 #, php-format msgid "Fixing State: %s remaining" -msgstr "" +msgstr "Sistemazione degli stati: %s rimanenti" #: application/views/logbookadvanced/index.php:37 msgid "Fixed" -msgstr "" +msgstr "Sistemato" #: application/views/logbookadvanced/index.php:38 #, php-format msgid "Fixed: %s" -msgstr "" +msgstr "Sistemati: %s" #: application/views/logbookadvanced/index.php:39 msgid "Skipped" -msgstr "" +msgstr "Saltato" #: application/views/logbookadvanced/index.php:40 #, php-format msgid "Skipped: %s, see details for skipped rows below" -msgstr "" +msgstr "Saltati: %s, vedere i dettagli per le righe saltate di seguito" #: application/views/logbookadvanced/index.php:41 msgid "State Fix Complete" -msgstr "" +msgstr "Sistemazione stati completata" #: application/views/logbookadvanced/index.php:42 #, php-format @@ -12913,68 +13095,73 @@ msgid "" "countries, please create a ticket at %s with the GeoJSON file and desired " "letter coding for your country." msgstr "" +"Non tutti le entità DXCC hanno uno stato. Se hai bisogno di supporto per " +"ulteriori paesi, crea un ticket su %s con il file GeoJSON e la codifica " +"delle lettere desiderata per il tuo paese." #: application/views/logbookadvanced/index.php:45 msgid "Only 1 row can be selected for Quickfilter!" -msgstr "" +msgstr "È possibile selezionare solo 1 riga per il filtro rapido!" #: application/views/logbookadvanced/index.php:46 msgid "You need to select a row to use the Quickfilters!" -msgstr "" +msgstr "Devi selezionare una riga per usare i Filtri rapidi!" #: application/views/logbookadvanced/index.php:47 msgid "You need to select a least 1 row to display a QSL card!" -msgstr "" +msgstr "È necessario selezionare almeno 1 riga per visualizzare una cartolina!" #: application/views/logbookadvanced/index.php:48 msgid "Continents updated successfully!" -msgstr "" +msgstr "Continenti aggiornati con successo!" #: application/views/logbookadvanced/index.php:49 msgid "There was a problem fixing Continents." -msgstr "" +msgstr "Si è verificato un problema nel sistemare i continenti." #: application/views/logbookadvanced/index.php:51 msgid "SUCCESS" -msgstr "" +msgstr "SUCCESSO" #: application/views/logbookadvanced/index.php:52 msgid "INFO" -msgstr "" +msgstr "INFORMAZIONI" #: application/views/logbookadvanced/index.php:58 msgid "Options for the Advanced Logbook" -msgstr "" +msgstr "Opzioni per il registro avanzato" #: application/views/logbookadvanced/index.php:59 msgid "" "Something went wrong with label print. Go to labels and check if you have " "defined a label, and that it is set for print!" msgstr "" +"Qualcosa è andato storto con la stampa delle etichette. Vai alle etichette e " +"controlla se hai definito un'etichetta e che sia impostata per la stampa!" #: application/views/logbookadvanced/index.php:60 msgid "You need to select a least 1 row!" -msgstr "" +msgstr "Devi selezionare almeno 1 riga!" #: application/views/logbookadvanced/index.php:61 msgid "Start printing at which label?" -msgstr "" +msgstr "Iniziare a stampare da quale etichetta?" #: application/views/logbookadvanced/index.php:62 msgid "You need to select at least 1 row to print a label!" -msgstr "" +msgstr "Devi selezionare almeno 1 riga per stampare un'etichetta!" #: application/views/logbookadvanced/index.php:63 msgid "An error occurred while saving options: " -msgstr "" +msgstr "Si è verificato un errore durante il salvataggio delle opzioni: " #: application/views/logbookadvanced/index.php:64 msgid "You need to select a least 1 row to delete!" -msgstr "" +msgstr "È necessario selezionare almeno una riga da eliminare!" #: application/views/logbookadvanced/index.php:65 msgid "You need to select a least 1 row to update from callbook!" -msgstr "" +msgstr "È necessario selezionare almeno 1 riga da aggiornare nel registro!" #: application/views/logbookadvanced/index.php:66 #: application/views/oqrs/showrequests.php:10 @@ -12983,80 +13170,83 @@ msgstr "Si è verificato un errore durante la richiesta" #: application/views/logbookadvanced/index.php:67 msgid "You need to select at least 1 location to do a search!" -msgstr "" - -#: application/views/logbookadvanced/index.php:68 -#: application/views/logbookadvanced/index.php:773 -msgid "Update Distances" -msgstr "" +msgstr "Devi selezionare almeno 1 posizione per effettuare una ricerca!" #: application/views/logbookadvanced/index.php:69 msgid "QSO records updated." -msgstr "" +msgstr "QSO record aggiornati." #: application/views/logbookadvanced/index.php:70 msgid "There was a problem updating distances." -msgstr "" +msgstr "Si è verificato un problema nell'aggiornamento delle distanze." #: application/views/logbookadvanced/index.php:71 msgid "Distances updated successfully!" +msgstr "Distanze aggiornate con successo!" + +#: application/views/logbookadvanced/index.php:73 +msgid "" +"Are you sure you want to fix all QSOs with missing DXCC information? This " +"action cannot be undone." msgstr "" -#: application/views/logbookadvanced/index.php:292 +#: application/views/logbookadvanced/index.php:294 msgid "From" msgstr "Da" -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:298 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:851 +#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:862 #: application/views/logbookadvanced/useroptions.php:30 msgid "Dx" msgstr "Dx" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:326 -#: application/views/logbookadvanced/index.php:332 -#: application/views/logbookadvanced/index.php:403 -#: application/views/logbookadvanced/index.php:417 -#: application/views/logbookadvanced/index.php:427 -#: application/views/logbookadvanced/index.php:431 -#: application/views/logbookadvanced/index.php:435 -#: application/views/logbookadvanced/index.php:439 -#: application/views/logbookadvanced/index.php:457 -#: application/views/logbookadvanced/index.php:461 -#: application/views/logbookadvanced/index.php:465 -#: application/views/logbookadvanced/index.php:486 -#: application/views/logbookadvanced/index.php:490 -#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:303 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:419 +#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:441 +#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:467 +#: application/views/logbookadvanced/index.php:488 +#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:642 msgid "Empty" msgstr "Vuoto" -#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:380 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Nessuno/Vuoto" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:491 msgid "" "Distance in kilometers. Search will look for distances greater than or equal " "to this value." msgstr "" +"Distanza in chilometri. La ricerca troverà distanze maggiori o uguali a " +"questo valore." -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:502 msgid "QSL Filters" msgstr "Filtri QSL" -#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/index.php:508 msgid "QSL sent" msgstr "QSL inviata" -#: application/views/logbookadvanced/index.php:512 -#: application/views/logbookadvanced/index.php:556 -#: application/views/logbookadvanced/index.php:579 -#: application/views/logbookadvanced/index.php:603 +#: application/views/logbookadvanced/index.php:514 +#: application/views/logbookadvanced/index.php:558 +#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/index.php:605 #: application/views/oqrs/qsolist.php:54 application/views/oqrs/qsolist.php:96 #: application/views/qslprint/qsolist.php:65 #: application/views/qslprint/qsolist.php:107 @@ -13083,18 +13273,18 @@ msgstr "QSL inviata" msgid "Queued" msgstr "In coda" -#: application/views/logbookadvanced/index.php:513 -#: application/views/logbookadvanced/index.php:523 -#: application/views/logbookadvanced/index.php:557 -#: application/views/logbookadvanced/index.php:567 -#: application/views/logbookadvanced/index.php:580 -#: application/views/logbookadvanced/index.php:590 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/index.php:614 -#: application/views/logbookadvanced/index.php:624 -#: application/views/logbookadvanced/index.php:633 -#: application/views/logbookadvanced/index.php:656 -#: application/views/logbookadvanced/index.php:665 +#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:525 +#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/index.php:582 +#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:606 +#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:626 +#: application/views/logbookadvanced/index.php:635 +#: application/views/logbookadvanced/index.php:658 +#: application/views/logbookadvanced/index.php:667 #: application/views/oqrs/qsolist.php:60 application/views/oqrs/qsolist.php:102 #: application/views/oqrs/qsolist.php:167 #: application/views/oqrs/qsolist.php:182 @@ -13139,272 +13329,269 @@ msgstr "In coda" msgid "Invalid (Ignore)" msgstr "Invalido (Ignora)" -#: application/views/logbookadvanced/index.php:517 +#: application/views/logbookadvanced/index.php:519 msgid "QSL received" msgstr "QSL ricevuta" -#: application/views/logbookadvanced/index.php:528 +#: application/views/logbookadvanced/index.php:530 msgid "QSL send. method" msgstr "Metodo invio QSL" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:540 msgid "QSL recv. method" msgstr "Metodo di ricezione QSL" -#: application/views/logbookadvanced/index.php:550 +#: application/views/logbookadvanced/index.php:552 msgid "LoTW sent" msgstr "LoTW inviato" -#: application/views/logbookadvanced/index.php:561 +#: application/views/logbookadvanced/index.php:563 msgid "LoTW received" msgstr "LoTW ricevuto" -#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:575 msgid "Clublog sent" msgstr "Clublog inviato" -#: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/index.php:586 msgid "Clublog received" msgstr "Clublog ricevuto" -#: application/views/logbookadvanced/index.php:597 +#: application/views/logbookadvanced/index.php:599 msgid "eQSL sent" msgstr "eQSL inviata" -#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/index.php:610 msgid "eQSL received" msgstr "eQSL ricevuta" -#: application/views/logbookadvanced/index.php:619 +#: application/views/logbookadvanced/index.php:621 msgid "DCL sent" msgstr "DCL inviato" -#: application/views/logbookadvanced/index.php:628 +#: application/views/logbookadvanced/index.php:630 msgid "DCL received" msgstr "DCL ricevuto" -#: application/views/logbookadvanced/index.php:643 +#: application/views/logbookadvanced/index.php:645 msgid "QSL Images" msgstr "Immagini QSL" -#: application/views/logbookadvanced/index.php:651 +#: application/views/logbookadvanced/index.php:653 msgid "QRZ sent" -msgstr "" +msgstr "QRZ inviato" -#: application/views/logbookadvanced/index.php:660 +#: application/views/logbookadvanced/index.php:662 msgid "QRZ received" -msgstr "" +msgstr "QRZ ricevuto" -#: application/views/logbookadvanced/index.php:676 +#: application/views/logbookadvanced/index.php:678 msgid "Quickfilters" msgstr "Filtri rapidi" -#: application/views/logbookadvanced/index.php:681 +#: application/views/logbookadvanced/index.php:683 msgid "Quicksearch with selected: " msgstr "Ricerca rapida con selezionato: " -#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:688 msgid "Search Date" msgstr "Ricerca data" -#: application/views/logbookadvanced/index.php:692 +#: application/views/logbookadvanced/index.php:694 msgid "Search DXCC" msgstr "Cerca DXCC" -#: application/views/logbookadvanced/index.php:695 +#: application/views/logbookadvanced/index.php:697 msgid "Search State" msgstr "Cerca Stato" -#: application/views/logbookadvanced/index.php:698 +#: application/views/logbookadvanced/index.php:700 msgid "Search Gridsquare" msgstr "Cerca locatore" -#: application/views/logbookadvanced/index.php:701 +#: application/views/logbookadvanced/index.php:703 msgid "Search CQ Zone" msgstr "Cerca Zona CQ" -#: application/views/logbookadvanced/index.php:704 +#: application/views/logbookadvanced/index.php:706 msgid "Search ITU Zone" msgstr "Cerca Zona ITU" -#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:709 msgid "Search Mode" msgstr "Modalità di ricerca" -#: application/views/logbookadvanced/index.php:710 +#: application/views/logbookadvanced/index.php:712 msgid "Search Band" msgstr "Cerca banda" -#: application/views/logbookadvanced/index.php:713 +#: application/views/logbookadvanced/index.php:715 msgid "Search IOTA" msgstr "Cerca IOTA" -#: application/views/logbookadvanced/index.php:716 +#: application/views/logbookadvanced/index.php:718 msgid "Search SOTA" msgstr "Cerca SOTA" -#: application/views/logbookadvanced/index.php:719 +#: application/views/logbookadvanced/index.php:721 msgid "Search POTA" msgstr "Cerca POTA" -#: application/views/logbookadvanced/index.php:722 +#: application/views/logbookadvanced/index.php:724 msgid "Search WWFF" msgstr "Cerca WWFF" -#: application/views/logbookadvanced/index.php:725 +#: application/views/logbookadvanced/index.php:727 msgid "Search Operator" msgstr "Cerca Operatore" -#: application/views/logbookadvanced/index.php:744 +#: application/views/logbookadvanced/index.php:746 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "Attenzione! Sei sicuro di voler eliminare il/i QSO selezionato/i?" -#: application/views/logbookadvanced/index.php:745 +#: application/views/logbookadvanced/index.php:747 msgid " QSO(s) will be deleted" msgstr " QSO saranno eliminati" -#: application/views/logbookadvanced/index.php:749 +#: application/views/logbookadvanced/index.php:751 msgid "With selected: " msgstr "Con selezionato: " -#: application/views/logbookadvanced/index.php:753 +#: application/views/logbookadvanced/index.php:755 #: application/views/qso/edit_ajax.php:725 msgid "Update from Callbook" msgstr "Aggiornamento dal Callbook" -#: application/views/logbookadvanced/index.php:754 +#: application/views/logbookadvanced/index.php:756 msgid "Queue Bureau" msgstr "Coda Bureau" -#: application/views/logbookadvanced/index.php:755 +#: application/views/logbookadvanced/index.php:757 msgid "Queue Direct" msgstr "Coda Direct" -#: application/views/logbookadvanced/index.php:756 +#: application/views/logbookadvanced/index.php:758 msgid "Queue Electronic" msgstr "Coda QSL Elettronica" -#: application/views/logbookadvanced/index.php:757 +#: application/views/logbookadvanced/index.php:759 msgid "Sent (Bureau)" msgstr "Inviato (Bureau)" -#: application/views/logbookadvanced/index.php:758 +#: application/views/logbookadvanced/index.php:760 msgid "Sent (Direct)" msgstr "Inviato (Direct)" -#: application/views/logbookadvanced/index.php:759 +#: application/views/logbookadvanced/index.php:761 msgid "Sent (Electronic)" msgstr "Inviato (QSL elettronica)" -#: application/views/logbookadvanced/index.php:760 +#: application/views/logbookadvanced/index.php:762 msgid "Not Sent" msgstr "Non inviato" -#: application/views/logbookadvanced/index.php:761 +#: application/views/logbookadvanced/index.php:763 msgid "QSL Not Required" msgstr "QSL non richiesta" -#: application/views/logbookadvanced/index.php:762 +#: application/views/logbookadvanced/index.php:764 msgid "Not Received" msgstr "Non ricevuta" -#: application/views/logbookadvanced/index.php:763 +#: application/views/logbookadvanced/index.php:765 msgid "Received (Bureau)" msgstr "Ricevuto (Bureau)" -#: application/views/logbookadvanced/index.php:764 +#: application/views/logbookadvanced/index.php:766 msgid "Received (Direct)" msgstr "Ricevuto (Direct)" -#: application/views/logbookadvanced/index.php:765 +#: application/views/logbookadvanced/index.php:767 msgid "Received (Electronic)" msgstr "Ricevuto (QSL elettronica)" -#: application/views/logbookadvanced/index.php:766 +#: application/views/logbookadvanced/index.php:768 msgid "Create ADIF" msgstr "Crea ADIF" -#: application/views/logbookadvanced/index.php:767 +#: application/views/logbookadvanced/index.php:769 msgid "Print Label" msgstr "Stampa etichetta" -#: application/views/logbookadvanced/index.php:768 +#: application/views/logbookadvanced/index.php:770 msgid "QSL Slideshow" msgstr "Presentazione QSL" -#: application/views/logbookadvanced/index.php:769 -msgid "Fix CQ Zones" -msgstr "Correggi le zone CQ" - -#: application/views/logbookadvanced/index.php:770 -msgid "Fix ITU Zones" -msgstr "Correggi le zone ITU" - -#: application/views/logbookadvanced/index.php:771 -msgid "Fix Continent" +#: application/views/logbookadvanced/index.php:777 +msgid "With ALL QSOs: " msgstr "" -#: application/views/logbookadvanced/index.php:780 +#: application/views/logbookadvanced/index.php:781 +#: application/views/logbookadvanced/index.php:832 +msgid "Database Tools" +msgstr "" + +#: application/views/logbookadvanced/index.php:788 #: application/views/oqrs/showrequests.php:58 msgid "# Results" msgstr "# Risultati" -#: application/views/logbookadvanced/index.php:801 +#: application/views/logbookadvanced/index.php:809 msgid "Dupes" msgstr "Duplicati" -#: application/views/logbookadvanced/index.php:817 +#: application/views/logbookadvanced/index.php:825 msgid "Globe map" msgstr "Mappa del mondo" -#: application/views/logbookadvanced/index.php:848 +#: application/views/logbookadvanced/index.php:859 #: application/views/logbookadvanced/useroptions.php:26 msgid "De" msgstr "Da" -#: application/views/logbookadvanced/index.php:893 +#: application/views/logbookadvanced/index.php:904 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 #: application/views/timeline/index.php:72 application/views/user/edit.php:627 msgid "QRZ" msgstr "QRZ" -#: application/views/logbookadvanced/index.php:899 +#: application/views/logbookadvanced/index.php:910 #: application/views/logbookadvanced/useroptions.php:94 #: application/views/qso/edit_ajax.php:527 msgid "QSL Msg (S)" msgstr "Messaggio QSL inviato" -#: application/views/logbookadvanced/index.php:902 +#: application/views/logbookadvanced/index.php:913 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/qso/edit_ajax.php:536 msgid "QSL Msg (R)" msgstr "Messaggio QSL ricevuto" -#: application/views/logbookadvanced/index.php:953 +#: application/views/logbookadvanced/index.php:964 #: application/views/logbookadvanced/useroptions.php:166 msgid "My Refs" msgstr "Le mie referenze" -#: application/views/logbookadvanced/index.php:962 +#: application/views/logbookadvanced/index.php:973 msgid "Ant az" msgstr "AZ ant" -#: application/views/logbookadvanced/index.php:962 +#: application/views/logbookadvanced/index.php:973 #: application/views/logbookadvanced/useroptions.php:178 msgid "Antenna azimuth" msgstr "Azimut dell'antenna" -#: application/views/logbookadvanced/index.php:965 +#: application/views/logbookadvanced/index.php:976 msgid "Ant el" msgstr "EL antenna" -#: application/views/logbookadvanced/index.php:965 +#: application/views/logbookadvanced/index.php:976 #: application/views/logbookadvanced/useroptions.php:182 msgid "Antenna elevation" msgstr "Elevazione dell'antenna" -#: application/views/logbookadvanced/index.php:971 +#: application/views/logbookadvanced/index.php:982 #: application/views/logbookadvanced/useroptions.php:190 msgid "Station power" msgstr "Potenza di trasmissione" @@ -13424,6 +13611,130 @@ msgstr "Precedente" msgid "Next" msgstr "Successivo" +#: application/views/logbookadvanced/showMissingDxccQsos.php:5 +#, php-format +msgid "Found %s QSO(s) missing DXCC information." +msgstr "" + +#: application/views/logbookadvanced/showMissingDxccQsos.php:17 +#: application/views/logbookadvanced/showStateQsos.php:28 +#: application/views/oqrs/qsolist.php:11 +#: application/views/qslprint/qslprint.php:31 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 +#: application/views/search/cqzones_result.php:16 +#: application/views/search/ituzones_result.php:16 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/search_result_ajax.php:130 +#: application/views/user/edit.php:529 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:228 +#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:672 +#: application/views/view_log/qso.php:676 +#: application/views/view_log/qso.php:680 +#: application/views/view_log/qso.php:686 +#: application/views/view_log/qso.php:693 +#: application/views/view_log/qso.php:700 +#: application/views/view_log/qso.php:707 +#: application/views/view_log/qso.php:714 +#: application/views/view_log/qso.php:721 +#: application/views/view_log/qso.php:728 +#: application/views/view_log/qso.php:735 +#: application/views/view_log/qso.php:742 +#: application/views/view_log/qso.php:747 +msgid "Station" +msgstr "Stazione" + +#: application/views/logbookadvanced/showMissingDxccQsos.php:38 +#: application/views/logbookadvanced/showStateQsos.php:49 +msgid "No Issues Found" +msgstr "" + +#: application/views/logbookadvanced/showStateQsos.php:16 +#, php-format +msgid "Found %s QSO(s) missing state information for DXCC %s." +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:31 +msgid "Results for DXCC update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:34 +#: application/views/logbookadvanced/showUpdateResult.php:40 +msgid "The number of QSOs updated for missing DXCC IDs was" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:36 +#: application/views/logbookadvanced/showUpdateResult.php:42 +msgid "The number of QSOs re-checked for DXCC was" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:55 +#: application/views/logbookadvanced/showUpdateResult.php:99 +msgid "These QSOs could not be updated:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:61 +#: application/views/logbookadvanced/showUpdateResult.php:107 +msgid "Reason" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:62 +#: application/views/logbookadvanced/showUpdateResult.php:106 +#: application/views/search/lotw_unconfirmed.php:32 +msgid "Station location" +msgstr "Posizione della stazione" + +#: application/views/logbookadvanced/showUpdateResult.php:83 +msgid "Results for state update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:85 +#: application/views/logbookadvanced/showUpdateResult.php:87 +msgid "The number of QSOs updated for state/province in" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:130 +msgid "Results for continent update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:131 +msgid "The number of QSOs updated for continent is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:135 +msgid "Results for distance update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:136 +msgid "The number of QSOs updated for distance is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:140 +msgid "Results for CQ zone update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:141 +msgid "The number of QSOs updated for CQ zone is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:145 +msgid "Results for ITU zone update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:146 +msgid "The number of QSOs updated for ITU zone is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:150 +msgid "Results for gridsquare update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:151 +msgid "The number of QSOs updated for gridsquare is" +msgstr "" + #: application/views/logbookadvanced/startatform.php:15 msgid "Include Via" msgstr "Includere Via" @@ -13436,37 +13747,56 @@ msgstr "Includi QSLMSG" msgid "Include TNX message" msgstr "Includi il messaggio TNX" +#: application/views/logbookadvanced/statecheckresult.php:3 +#: application/views/logbookadvanced/statecheckresult.php:42 +msgid "State Check Results" +msgstr "" + +#: application/views/logbookadvanced/statecheckresult.php:4 +msgid "" +"QSOs with missing state and gridsquares with 6 or more characters found for " +"the following DXCCs:" +msgstr "" + +#: application/views/logbookadvanced/statecheckresult.php:43 +msgid "No QSOs were found where state information can be fixed." +msgstr "" + #: application/views/logbookadvanced/statedialog.php:2 msgid "" "Update QSOs with state/province information based on gridsquare and DXCC " "country." msgstr "" +"Aggiorna i QSO con informazioni su stato/provincia basate su gridsquare e " +"paese DXCC." #: application/views/logbookadvanced/statedialog.php:3 msgid "" "This feature uses GeoJSON boundary data to determine the state/province from " "the gridsquare locator." msgstr "" +"Questa funzione utilizza i dati di confine GeoJSON per determinare lo stato/" +"provincia dal localizzatore del locatore." #: application/views/logbookadvanced/statedialog.php:4 msgid "Update will only set the state for QSOs where:" -msgstr "" +msgstr "L'aggiornamento imposterà lo stato solo per i QSO in cui:" #: application/views/logbookadvanced/statedialog.php:6 msgid "The state field is empty" -msgstr "" +msgstr "Il campo stato è vuoto" #: application/views/logbookadvanced/statedialog.php:7 msgid "A gridsquare is present (at least 6 characters)" -msgstr "" +msgstr "Un locatore è presente (almeno 6 caratteri)" #: application/views/logbookadvanced/statedialog.php:8 msgid "The DXCC country supports state lookup" -msgstr "" +msgstr "Il paese DXCC supporta la ricerca dello stato" #: application/views/logbookadvanced/statedialog.php:10 msgid "Currently supported countries" -msgstr "" +msgstr "Paesu attualmente supportati" #: application/views/logbookadvanced/useroptions.php:16 msgid "Column" @@ -13607,31 +13937,31 @@ msgstr "Last upload" #: application/views/lotw_views/index.php:95 msgid "Last change:" -msgstr "" +msgstr "Ultima modifica:" #: application/views/lotw_views/index.php:95 msgid "Serial number:" -msgstr "" +msgstr "Numero progressivo:" #: application/views/lotw_views/index.php:97 msgid "Certificate superseded" -msgstr "" +msgstr "Certificato sostituito" #: application/views/lotw_views/index.php:100 msgid "Certificate expired" -msgstr "" +msgstr "Certificato scaduto" #: application/views/lotw_views/index.php:102 msgid "Certificate expiring" -msgstr "" +msgstr "Certificato in scadenza" #: application/views/lotw_views/index.php:104 msgid "Certificate valid" -msgstr "" +msgstr "Certificato valido" #: application/views/lotw_views/index.php:109 msgid "QSO end date nearing" -msgstr "" +msgstr "La data di fine QSO si avvicina" #: application/views/lotw_views/index.php:121 #, php-format @@ -13761,6 +14091,10 @@ msgid "" "store information about QSO partners. These notes are private and are not " "shared with other users nor exported to external services." msgstr "" +"Contatti è una categoria speciale di note utilizzata in vari punti di " +"Wavelog per memorizzare informazioni sui partner QSO. Queste note sono " +"private e non vengono condivise con altri utenti né esportate verso servizi " +"esterni." #: application/views/notes/add.php:61 application/views/notes/edit.php:56 msgid "Note Contents" @@ -13773,31 +14107,31 @@ msgstr "Salva Nota" #: application/views/notes/main.php:25 msgid "All Categories" -msgstr "" +msgstr "Tutte le categorie" #: application/views/notes/main.php:53 msgid "Search notes (min. 3 chars)" -msgstr "" +msgstr "Cerca note (min. 3 caratteri)" #: application/views/notes/main.php:54 msgid "Add stroked zero (Ø)" -msgstr "" +msgstr "Aggiungi zero sbarrato (Ø)" #: application/views/notes/main.php:57 msgid "Reset search" -msgstr "" +msgstr "Reimposta ricerca" #: application/views/notes/main.php:75 msgid "Creation" -msgstr "" +msgstr "Creazione" #: application/views/notes/main.php:76 msgid "Last Modification" -msgstr "" +msgstr "Ultima modifica" #: application/views/notes/view.php:20 msgid "View Note" -msgstr "" +msgstr "Visualizza nota" #: application/views/operator/index.php:9 msgid "" @@ -14269,34 +14603,6 @@ msgstr "Il tuo indirizzo e-mail dove possiamo contattarti" msgid "Send not in log request" msgstr "Invia richiesta non in log" -#: application/views/oqrs/qsolist.php:11 -#: application/views/qslprint/qslprint.php:31 -#: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 -#: application/views/search/cqzones_result.php:16 -#: application/views/search/ituzones_result.php:16 -#: application/views/search/lotw_unconfirmed_result.php:11 -#: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:529 -#: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:228 -#: application/views/view_log/qso.php:668 -#: application/views/view_log/qso.php:672 -#: application/views/view_log/qso.php:676 -#: application/views/view_log/qso.php:680 -#: application/views/view_log/qso.php:686 -#: application/views/view_log/qso.php:693 -#: application/views/view_log/qso.php:700 -#: application/views/view_log/qso.php:707 -#: application/views/view_log/qso.php:714 -#: application/views/view_log/qso.php:721 -#: application/views/view_log/qso.php:728 -#: application/views/view_log/qso.php:735 -#: application/views/view_log/qso.php:742 -#: application/views/view_log/qso.php:747 -msgid "Station" -msgstr "Stazione" - #: application/views/oqrs/qsolist.php:76 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 @@ -14833,7 +15139,7 @@ msgstr "L'input WWFF deve essere compilato per mostrare un riepilogo!" #: application/views/qso/award_tabs.php:19 msgid "Propagation mode needs to be SAT to show a summary!" -msgstr "" +msgstr "La modalità di propagazione deve essere SAT per mostrare un riepilogo!" #: application/views/qso/award_tabs.php:20 msgid "Gridsquare input needs to be filled to show a summary!" @@ -15077,7 +15383,7 @@ msgstr "Valore non valido per l'elevazione dell'antenna:" #: application/views/qso/index.php:38 msgid "Please wait before saving another QSO" -msgstr "" +msgstr "Attendere prima di salvare un altro QSO" #: application/views/qso/index.php:86 msgid "LIVE" @@ -15171,7 +15477,7 @@ msgstr "Modo Satellite" #: application/views/qso/index.php:698 msgid "QSO Note" -msgstr "" +msgstr "Nota QSO" #: application/views/qso/index.php:741 msgid "QSL MSG" @@ -15183,13 +15489,15 @@ msgstr "Reimposta ai valori predefiniti" #: application/views/qso/index.php:777 msgid "Callsign Notes" -msgstr "" +msgstr "Note sul nominativo" #: application/views/qso/index.php:778 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" +"Memorizza informazioni private sul tuo partner QSO. Queste note non vengono " +"mai condivise o esportate verso servizi esterni." #: application/views/qso/index.php:827 msgid "Winkey" @@ -15217,7 +15525,7 @@ msgstr "Ferma la sintonia" #: application/views/qso/index.php:866 msgid "Enter text..." -msgstr "" +msgstr "Inserisci il testo..." #: application/views/qso/index.php:867 msgid "Send" @@ -15229,13 +15537,15 @@ msgstr "Suggerimenti" #: application/views/qso/index.php:888 msgid "QSO Partner's Profile" -msgstr "" +msgstr "Profilo del corrispondente" #: application/views/qso/index.php:889 msgid "" "Profile picture and data fetched from third-party services. This information " "is not stored on your Wavelog instance." msgstr "" +"Immagine del profilo e dati ottenuti da servizi di terze parti. Queste " +"informazioni non sono memorizzate sulla tua istanza di Wavelog." #: application/views/qso/log_qso.php:9 msgid "Redirecting to QSO logging page..." @@ -15827,10 +16137,6 @@ msgstr "" "La ricerca mostra i QSO che non sono confermati su LoTW, ma il nominativo " "utilizzato è stato caricato su LoTW dopo la data del tuo QSO." -#: application/views/search/lotw_unconfirmed.php:32 -msgid "Station location" -msgstr "Posizione della stazione" - #: application/views/search/lotw_unconfirmed_result.php:10 msgid "Last LoTW upload" msgstr "Ultimo upload su LoTW" @@ -16759,7 +17065,7 @@ msgstr "Mostra tutte le posizioni" #: application/views/stationsetup/stationsetup.php:106 msgid "Show a location list" -msgstr "" +msgstr "Mostra un elenco di località" #: application/views/stationsetup/stationsetup.php:110 msgid "" @@ -17104,42 +17410,6 @@ msgstr "Aggiorna i dati DXCC" msgid "Status:" msgstr "Stato:" -#: application/views/update/index.php:30 -msgid "Apply DXCC Data to Logbook" -msgstr "Applica i dati DXCC al registro di stazione" - -#: application/views/update/index.php:32 -msgid "" -"After updating, Wavelog can fill in missing callsign information in the " -"logbook using the newly-obtained DXCC data.\n" -"\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that are " -"missing DXCC metadata or to re-check the entire logbook\n" -"\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." -msgstr "" -"Dopo l'aggiornamento, Wavelog può compilare le informazioni di callsign " -"mancanti nel registro utilizzando i nuovi dati DXCC ottenuti.\n" -"Puoi scegliere di controllare solo i QSOs nel registro che mancano di " -"metadati DXCC oppure di ricontrollare l'intero registro\n" -"e aggiornare anche i metadati esistenti, nel caso in cui siano cambiati." - -#: application/views/update/index.php:35 -msgid "" -"This affects ALL QSOs of ANY user on this instance. The function is " -"deprectated and will be removed in a future version of Wavelog. As " -"replacement use the Logbook-Advanced!" -msgstr "" -"Questo influisce su TUTTI i QSO di QUALSIASI utente su questa istanza. La " -"funzione è deprecata e verrà rimossa in una futura versione di Wavelog. In " -"alternativa, usa la modalita' Logbook-Advanced!" - -#: application/views/update/index.php:42 -msgid "Check QSOs missing DXCC data" -msgstr "Controlla i QSOs mancanti di dati DXCC" - -#: application/views/update/index.php:51 -msgid "Re-check all QSOs in logbook" -msgstr "Ricontrolla tutti i QSOs nel registro di stazione" - #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "Elimina account utente" @@ -17305,6 +17575,7 @@ msgstr "" #: application/views/user/edit.php:375 msgid "Prioritize database search over external lookup" msgstr "" +"Dai priorità alla ricerca nel database rispetto alla consultazione esterna" #: application/views/user/edit.php:381 msgid "" @@ -17312,6 +17583,9 @@ msgid "" "QSOs before querying external services. Set to \"No\" to always use external " "lookup services instead." msgstr "" +"Quando impostato su \"Sì\", la ricerca dei nominativi utilizzerà prima i " +"dati dei tuoi QSO precedenti prima di interrogare servizi esterni. Imposta " +"su \"No\" per utilizzare sempre servizi di ricerca esterni invece." #: application/views/user/edit.php:385 msgid "" @@ -17364,7 +17638,7 @@ msgstr "Numero di contatti precedenti visualizzati nella pagina QSO." #: application/views/user/edit.php:446 msgid "DX Waterfall" -msgstr "" +msgstr "DX Waterfall" #: application/views/user/edit.php:450 msgid "squelched" @@ -17373,6 +17647,8 @@ msgstr "" #: application/views/user/edit.php:453 msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." msgstr "" +"Mostra un 'Waterfall' interattivo del DX Cluster sulla pagina di " +"registrazione QSO." #: application/views/user/edit.php:464 msgid "Menu Options" @@ -17448,7 +17724,7 @@ msgstr "Non visualizzato" #: application/views/user/edit.php:548 msgid "QSO (worked, not confirmed)" -msgstr "" +msgstr "QSO (collegati, non confermati)" #: application/views/user/edit.php:567 msgid "QSO (confirmed)" @@ -17456,15 +17732,15 @@ msgstr "QSO (confermato)" #: application/views/user/edit.php:568 msgid "(If 'No', displayed as 'QSO (worked, not confirmed)')" -msgstr "" +msgstr "(Se 'No', visualizzato come 'QSO (collegato, non confermato)')" #: application/views/user/edit.php:587 msgid "Unworked (e.g. Zones)" -msgstr "" +msgstr "Non collegate (es. Zone)" #: application/views/user/edit.php:588 msgid "(Color for unworked zones)" -msgstr "" +msgstr "(Colore per zone non collegate)" #: application/views/user/edit.php:598 msgid "Show Locator" @@ -17515,12 +17791,14 @@ msgstr "" #: application/views/user/edit.php:674 msgid "Dashboard solar and propagation data" -msgstr "" +msgstr "Dati solari e di propagazione" #: application/views/user/edit.php:680 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" +"Questo commuta la visualizzazione dei dati solari e di propagazione nella " +"homepage." #: application/views/user/edit.php:688 msgid "Show Fields on QSO Tab" @@ -17653,7 +17931,7 @@ msgstr "Club Log" #: application/views/user/edit.php:942 msgid "Club Log Email" -msgstr "" +msgstr "Email di ClubLog" #: application/views/user/edit.php:948 msgid "Club Log Password" @@ -18251,7 +18529,7 @@ msgstr "Gestione QSL" #: application/views/view_log/qso.php:86 msgid "View note for this callsign" -msgstr "" +msgstr "Visualizza nota per questo nominativo" #: application/views/view_log/qso.php:138 msgid "Total Distance" @@ -18375,7 +18653,7 @@ msgstr "immagine eQSL" #: application/views/view_log/qso.php:916 msgid "QSO not found" -msgstr "" +msgstr "QSO non trovato" #: application/views/visitor/layout/footer.php:239 msgid "Filter Results" @@ -18505,8 +18783,34 @@ msgstr "Invia richiesta" msgid "Rcvd" msgstr "Ricevuto" -#~ msgid "Show Reference Fields on QSO Tab" -#~ msgstr "Mostra i campi di riferimento nella scheda QSO" +#~ msgid "Apply DXCC Data to Logbook" +#~ msgstr "Applica i dati DXCC al registro di stazione" + +#~ msgid "" +#~ "After updating, Wavelog can fill in missing callsign information in the " +#~ "logbook using the newly-obtained DXCC data.\n" +#~ "\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that " +#~ "are missing DXCC metadata or to re-check the entire logbook\n" +#~ "\t\t\t\t\t\t\tand update existing metadata as well, in case it has " +#~ "changed." +#~ msgstr "" +#~ "Dopo l'aggiornamento, Wavelog può compilare le informazioni di callsign " +#~ "mancanti nel registro utilizzando i nuovi dati DXCC ottenuti.\n" +#~ "Puoi scegliere di controllare solo i QSOs nel registro che mancano di " +#~ "metadati DXCC oppure di ricontrollare l'intero registro\n" +#~ "e aggiornare anche i metadati esistenti, nel caso in cui siano cambiati." + +#~ msgid "" +#~ "This affects ALL QSOs of ANY user on this instance. The function is " +#~ "deprectated and will be removed in a future version of Wavelog. As " +#~ "replacement use the Logbook-Advanced!" +#~ msgstr "" +#~ "Questo influisce su TUTTI i QSO di QUALSIASI utente su questa istanza. La " +#~ "funzione è deprecata e verrà rimossa in una futura versione di Wavelog. " +#~ "In alternativa, usa la modalita' Logbook-Advanced!" + +#~ msgid "Re-check all QSOs in logbook" +#~ msgstr "Ricontrolla tutti i QSOs nel registro di stazione" #~ msgid "" #~ "Station Logbooks allow you to group Station Locations, this allows you to " @@ -18519,6 +18823,9 @@ msgstr "Ricevuto" #~ "sessione, dalle aree del registro alle analisi. Ottimo per quando operi " #~ "in più posizioni ma fanno parte dello stesso DXCC o VUCC Circle." +#~ msgid "Show Reference Fields on QSO Tab" +#~ msgstr "Mostra i campi di riferimento nella scheda QSO" + #~ msgid "" #~ "You might have ADIF errors, the QSOs have still been added. Please check " #~ "the following information:" diff --git a/application/locale/ja/LC_MESSAGES/messages.mo b/application/locale/ja/LC_MESSAGES/messages.mo index 66fd3ee56..62d5d6fa6 100644 Binary files a/application/locale/ja/LC_MESSAGES/messages.mo and b/application/locale/ja/LC_MESSAGES/messages.mo differ diff --git a/application/locale/ja/LC_MESSAGES/messages.po b/application/locale/ja/LC_MESSAGES/messages.po index f51afd863..0030bd658 100644 --- a/application/locale/ja/LC_MESSAGES/messages.po +++ b/application/locale/ja/LC_MESSAGES/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-12-13 14:06+0000\n" -"PO-Revision-Date: 2025-12-09 10:03+0000\n" +"POT-Creation-Date: 2025-12-19 07:34+0000\n" +"PO-Revision-Date: 2025-12-14 10:34+0000\n" "Last-Translator: \"S.NAKAO(JG3HLX)\" \n" "Language-Team: Japanese \n" @@ -111,8 +111,7 @@ msgstr "" #: application/controllers/Themes.php:17 #: application/controllers/Timeline.php:10 #: application/controllers/Timeplotter.php:11 -#: application/controllers/Update.php:22 application/controllers/Update.php:333 -#: application/controllers/Update.php:344 application/controllers/User.php:14 +#: application/controllers/Update.php:22 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 #: application/controllers/User.php:384 application/controllers/User.php:385 @@ -333,8 +332,8 @@ msgstr "アワード歴 - %s" #: application/views/contesting/index.php:63 #: application/views/interface_assets/header.php:240 #: application/views/logbookadvanced/edit.php:25 -#: application/views/logbookadvanced/index.php:430 -#: application/views/logbookadvanced/index.php:929 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:940 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 @@ -351,9 +350,12 @@ msgstr "DOK" #: application/views/interface_assets/header.php:192 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:26 -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:905 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:916 #: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/logbookadvanced/showMissingDxccQsos.php:16 +#: application/views/logbookadvanced/showStateQsos.php:27 +#: application/views/logbookadvanced/statecheckresult.php:11 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 @@ -438,7 +440,7 @@ msgstr " そして " #: 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 -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:436 #: application/views/logbookadvanced/useroptions.php:130 #: application/views/lookup/index.php:10 #: application/views/qslcard/searchresult.php:17 @@ -465,7 +467,7 @@ msgstr "SOTA" #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:458 #: application/views/logbookadvanced/useroptions.php:138 #: application/views/lookup/index.php:12 #: application/views/qso/award_tabs.php:65 @@ -487,8 +489,8 @@ msgstr "WWFF" #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 #: application/views/logbookadvanced/edit.php:30 -#: application/views/logbookadvanced/index.php:438 -#: application/views/logbookadvanced/index.php:923 +#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:934 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 @@ -687,8 +689,8 @@ msgstr "クラブ会員 ADIF" msgid "Club Member" msgstr "クラブ会員" -#: application/controllers/Club.php:45 application/models/Club_model.php:75 -#: application/models/Club_model.php:149 application/models/Club_model.php:191 +#: application/controllers/Club.php:45 application/models/Club_model.php:107 +#: application/models/Club_model.php:181 application/models/Club_model.php:223 msgid "Invalid User ID!" msgstr "無効なユーザーIDです!" @@ -704,8 +706,8 @@ msgstr "クラブの権限" #: application/controllers/Club.php:119 application/controllers/Club.php:148 #: application/controllers/Club.php:175 application/models/Club_model.php:22 -#: application/models/Club_model.php:70 application/models/Club_model.php:144 -#: application/models/Club_model.php:186 +#: application/models/Club_model.php:102 application/models/Club_model.php:176 +#: application/models/Club_model.php:218 msgid "Invalid Club ID!" msgstr "無効なクラブIDです!" @@ -906,7 +908,7 @@ msgstr "DCLキーのインポート" #: application/controllers/Dcl.php:68 application/views/dcl_views/import.php:3 #: application/views/dcl_views/index.php:3 -#: application/views/logbookadvanced/index.php:896 +#: application/views/logbookadvanced/index.php:907 #: application/views/logbookadvanced/useroptions.php:90 #: application/views/qso/edit_ajax.php:434 #: application/views/search/search_result_ajax.php:127 @@ -1056,27 +1058,27 @@ msgstr "そのような eQSL QTH ニックネームはありません: %s" #: application/controllers/Eqsl.php:312 msgid "QSO not found or not accessible" -msgstr "" +msgstr "QSOが見つかりません、またはアクセスできません" #: application/controllers/Eqsl.php:330 msgid "User not found" -msgstr "" +msgstr "ユーザーが見つかりません" #: application/controllers/Eqsl.php:339 msgid "eQSL password not configured for this user" -msgstr "" +msgstr "このユーザーにはeQSLパスワードが設定されていません" #: application/controllers/Eqsl.php:357 msgid "Failed to fetch eQSL image data" -msgstr "" +msgstr "eQSL画像データの取得に失敗しました" #: application/controllers/Eqsl.php:376 msgid "eQSL image not available" -msgstr "" +msgstr "eQSL画像は利用できません" #: application/controllers/Eqsl.php:395 msgid "Failed to download eQSL image" -msgstr "" +msgstr "eQSLイメージのダウンロードに失敗しました" #: application/controllers/Eqsl.php:495 msgid "eQSL Tools" @@ -1314,7 +1316,7 @@ msgstr "ログブック" #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:171 #: application/views/interface_assets/footer.php:106 -#: application/views/logbookadvanced/index.php:884 +#: application/views/logbookadvanced/index.php:895 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:30 @@ -1448,9 +1450,11 @@ msgstr "eQSL" #: application/views/interface_assets/footer.php:121 #: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:335 -#: application/views/logbookadvanced/index.php:854 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:865 #: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/logbookadvanced/showMissingDxccQsos.php:12 +#: application/views/logbookadvanced/showStateQsos.php:23 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:40 #: application/views/oqrs/notinlogform.php:11 @@ -1499,7 +1503,7 @@ msgstr "モード" #: application/views/contesting/index.php:180 #: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:857 +#: application/views/logbookadvanced/index.php:868 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -1528,7 +1532,7 @@ msgstr "RST (S)" #: application/views/contesting/index.php:204 #: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:860 +#: application/views/logbookadvanced/index.php:871 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1578,8 +1582,8 @@ msgstr "国" #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/edit.php:28 -#: application/views/logbookadvanced/index.php:444 -#: application/views/logbookadvanced/index.php:920 +#: application/views/logbookadvanced/index.php:446 +#: application/views/logbookadvanced/index.php:931 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/lookup/index.php:7 @@ -1610,9 +1614,11 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 #: application/views/logbookadvanced/edit.php:96 -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:908 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:919 #: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/logbookadvanced/showMissingDxccQsos.php:14 +#: application/views/logbookadvanced/showStateQsos.php:25 #: application/views/logbookadvanced/useroptions.php:106 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 @@ -1642,9 +1648,12 @@ msgstr "州" #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:869 +#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:880 #: application/views/logbookadvanced/qslcarousel.php:39 +#: application/views/logbookadvanced/showMissingDxccQsos.php:15 +#: application/views/logbookadvanced/showStateQsos.php:26 +#: application/views/logbookadvanced/showUpdateResult.php:105 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/lookup/index.php:6 #: application/views/qslcard/confirmationresult.php:19 @@ -1685,8 +1694,8 @@ msgstr "グリッドスクエア" #: application/views/gridmap/index.php:225 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 -#: application/views/logbookadvanced/index.php:489 -#: application/views/logbookadvanced/index.php:959 +#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:970 #: application/views/logbookadvanced/useroptions.php:174 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 @@ -1746,9 +1755,11 @@ msgstr "距離" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:56 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:863 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:874 #: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/logbookadvanced/showMissingDxccQsos.php:13 +#: application/views/logbookadvanced/showStateQsos.php:24 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 #: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 @@ -1796,7 +1807,7 @@ msgstr "バンド" #: application/views/bandmap/list.php:567 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 -#: application/views/logbookadvanced/index.php:866 +#: application/views/logbookadvanced/index.php:877 #: application/views/logbookadvanced/useroptions.php:50 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 @@ -1822,8 +1833,8 @@ msgstr "周波数" #: application/controllers/Radio.php:43 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:460 -#: application/views/logbookadvanced/index.php:941 +#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:952 #: application/views/logbookadvanced/useroptions.php:150 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 @@ -1851,7 +1862,7 @@ msgstr "オペレーター" #: application/views/dxatlas/index.php:65 #: application/views/interface_assets/footer.php:822 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:319 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 @@ -2327,7 +2338,7 @@ msgid "Timestamp" msgstr "タイムスタンプ" #: application/controllers/Radio.php:49 -#: application/views/logbookadvanced/index.php:821 +#: application/views/logbookadvanced/index.php:829 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:185 @@ -2366,7 +2377,7 @@ msgstr "デフォルト(クリックして解除)" #: application/views/interface_assets/footer.php:682 #: application/views/interface_assets/footer.php:691 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:808 +#: application/views/logbookadvanced/index.php:816 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 #: application/views/satellite/index.php:58 #: application/views/search/stored_queries.php:21 @@ -2389,7 +2400,7 @@ msgstr "編集" #: application/views/interface_assets/footer.php:2800 #: application/views/interface_assets/footer.php:2818 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:824 +#: application/views/logbookadvanced/index.php:835 #: application/views/lotw_views/index.php:134 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 @@ -2497,7 +2508,7 @@ msgstr "衛星タイマー" #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 #: application/views/interface_assets/header.php:399 -#: application/views/logbookadvanced/index.php:797 +#: application/views/logbookadvanced/index.php:805 #: application/views/oqrs/index.php:30 #: application/views/oqrs/showrequests.php:69 #: application/views/qslcard/searchform.php:8 @@ -2839,83 +2850,83 @@ msgstr "Dxcc 例外:" msgid "Dxcc Prefixes:" msgstr "Dxcc プレフィックス:" -#: application/controllers/Update.php:362 +#: application/controllers/Update.php:340 msgid "SCP Update complete. Result: " msgstr "SCP 更新が完了しました。結果: " -#: application/controllers/Update.php:364 +#: application/controllers/Update.php:342 msgid "SCP Update failed. Result: " msgstr "SCP 更新に失敗しました。結果: " -#: application/controllers/Update.php:401 +#: application/controllers/Update.php:379 msgid "LoTW Users Update complete. Result: " msgstr "LoTWユーザーのアップデートが完了しました。結果: " -#: application/controllers/Update.php:403 +#: application/controllers/Update.php:381 msgid "LoTW Users Update failed. Result: " msgstr "LoTWユーザーの更新に失敗しました。結果: " -#: application/controllers/Update.php:438 +#: application/controllers/Update.php:416 msgid "DOK Update complete. Result: " msgstr "DOK 更新が完了しました。結果: " -#: application/controllers/Update.php:440 +#: application/controllers/Update.php:418 msgid "DOK Update failed. Result: " msgstr "DOK 更新が完了しました。結果: " -#: application/controllers/Update.php:473 +#: application/controllers/Update.php:451 msgid "SOTA Update complete. Result: " msgstr "SOTAアップデートが完了しました。結果: " -#: application/controllers/Update.php:475 +#: application/controllers/Update.php:453 msgid "SOTA Update failed. Result: " msgstr "SOTA アップデートに失敗しました。結果: " -#: application/controllers/Update.php:508 +#: application/controllers/Update.php:486 msgid "WWFF Update complete. Result: " msgstr "WWFFアップデートが完了しました。結果: " -#: application/controllers/Update.php:510 +#: application/controllers/Update.php:488 msgid "WWFF Update failed. Result: " msgstr "WWFF アップデートに失敗しました。結果: " -#: application/controllers/Update.php:544 +#: application/controllers/Update.php:522 msgid "HAMqsl Update complete. Result: " msgstr "HAMqsl 更新完了。結果: " -#: application/controllers/Update.php:546 +#: application/controllers/Update.php:524 msgid "HAMqsl Update failed. Result: " msgstr "HAMqsl 更新に失敗しました。結果: " -#: application/controllers/Update.php:579 +#: application/controllers/Update.php:557 msgid "POTA Update complete. Result: " msgstr "POTA 更新が完了しました。結果: " -#: application/controllers/Update.php:581 +#: application/controllers/Update.php:559 msgid "POTA Update failed. Result: " msgstr "POTA 更新に失敗しました。結果: " -#: application/controllers/Update.php:610 +#: application/controllers/Update.php:588 msgid "TLE Update complete. Result: " msgstr "TLEアップデートが完了しました。結果: " -#: application/controllers/Update.php:612 +#: application/controllers/Update.php:590 msgid "TLE Update failed. Result: " msgstr "TLE 更新に失敗しました。結果: " -#: application/controllers/Update.php:639 +#: application/controllers/Update.php:617 msgid "LoTW SAT Update" msgstr "LoTW SATアップデート" -#: application/controllers/Update.php:667 +#: application/controllers/Update.php:645 msgid "Update of Hams of Note" msgstr "注目のハムの最新情報" -#: application/controllers/Update.php:707 +#: application/controllers/Update.php:685 msgid "VUCC Grid file update complete. Result: " msgstr "VUCCグリッドファイルの更新が完了しました。結果: " -#: application/controllers/Update.php:709 +#: application/controllers/Update.php:687 msgid "VUCC Grid file update failed. Result: " msgstr "VUCC グリッドファイルの更新に失敗しました。結果: " @@ -3282,7 +3293,7 @@ msgstr "QRZCQ エラー" #: application/libraries/Callbook.php:155 msgid "Error obtaining a session key for HamQTH query" -msgstr "" +msgstr "HamQTHクエリのセッションキーの取得エラー" #: application/libraries/Cbr_parser.php:111 #: application/libraries/Cbr_parser.php:160 @@ -3376,11 +3387,11 @@ msgctxt "Division Name (States in various countries)." msgid "City / Ku / Gun" msgstr "市 / 区 / 郡" -#: application/models/Club_model.php:154 +#: application/models/Club_model.php:186 msgid "Invalid Permission Level!" msgstr "権限レベルが無効です!" -#: application/models/Club_model.php:169 +#: application/models/Club_model.php:201 msgid "Error adding Club Member!" msgstr "クラブメンバーの追加中にエラーが発生しました!" @@ -3540,7 +3551,7 @@ msgstr "POTA 参照。既にログに存在します" msgid "QSO updated" msgstr "QSOが更新されました" -#: application/models/Logbook_model.php:6405 +#: application/models/Logbook_model.php:6331 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3754,28 +3765,28 @@ msgstr "違い" #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:337 -#: application/views/logbookadvanced/index.php:348 -#: application/views/logbookadvanced/index.php:359 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:402 -#: application/views/logbookadvanced/index.php:416 -#: application/views/logbookadvanced/index.php:470 -#: application/views/logbookadvanced/index.php:508 -#: application/views/logbookadvanced/index.php:519 -#: application/views/logbookadvanced/index.php:530 -#: application/views/logbookadvanced/index.php:540 -#: application/views/logbookadvanced/index.php:552 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/index.php:575 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/index.php:599 -#: application/views/logbookadvanced/index.php:610 -#: application/views/logbookadvanced/index.php:621 -#: application/views/logbookadvanced/index.php:630 -#: application/views/logbookadvanced/index.php:653 -#: application/views/logbookadvanced/index.php:662 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:418 +#: application/views/logbookadvanced/index.php:472 +#: application/views/logbookadvanced/index.php:510 +#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/index.php:532 +#: application/views/logbookadvanced/index.php:542 +#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/index.php:565 +#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:588 +#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:612 +#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/index.php:655 +#: application/views/logbookadvanced/index.php:664 #: application/views/lotw/import.php:55 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -3841,8 +3852,8 @@ msgstr "期間" #: application/views/distances/index.php:53 #: application/views/gridmap/index.php:71 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:947 +#: application/views/logbookadvanced/index.php:377 +#: application/views/logbookadvanced/index.php:958 #: application/views/logbookadvanced/useroptions.php:158 #: application/views/timeline/index.php:79 application/views/user/edit.php:351 #: application/views/view_log/partial/log_ajax.php:21 @@ -3862,7 +3873,7 @@ msgstr "SAT以外すべて" #: application/views/gridmap/index.php:75 #: application/views/logbookadvanced/edit.php:207 #: application/views/logbookadvanced/edit.php:215 -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:473 #: application/views/timeline/index.php:84 msgid "None/Empty" msgstr "なし/空" @@ -3872,7 +3883,7 @@ msgstr "なし/空" #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:77 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:381 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:532 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 @@ -3886,7 +3897,7 @@ msgstr "航空機の散乱" #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:78 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:382 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:533 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 @@ -3900,7 +3911,7 @@ msgstr "オーロラ" #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:79 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:383 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:534 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 @@ -3914,7 +3925,7 @@ msgstr "オーロラE伝搬" #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:80 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:384 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:535 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 @@ -3928,7 +3939,7 @@ msgstr "後方散乱" #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:81 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:385 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:536 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 @@ -3942,7 +3953,7 @@ msgstr "エコーリンク" #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:82 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:386 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:537 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 @@ -3956,7 +3967,7 @@ msgstr "地球-月-地球" #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:83 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:385 +#: application/views/logbookadvanced/index.php:387 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:538 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 @@ -3970,7 +3981,7 @@ msgstr "Eスポ" #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:84 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:386 +#: application/views/logbookadvanced/index.php:388 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:539 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 @@ -3984,7 +3995,7 @@ msgstr "磁場に沿った不規則性" #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:85 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:387 +#: application/views/logbookadvanced/index.php:389 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:540 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 @@ -3998,7 +4009,7 @@ msgstr "F2反射" #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:86 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:388 +#: application/views/logbookadvanced/index.php:390 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:541 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 @@ -4012,7 +4023,7 @@ msgstr "インターネット支援" #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:87 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:391 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:542 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 @@ -4026,7 +4037,7 @@ msgstr "イオノスキャッター" #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:88 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:392 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:543 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 @@ -4040,7 +4051,7 @@ msgstr "IRLP" #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:89 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:393 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:544 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 @@ -4054,7 +4065,7 @@ msgstr "流星散乱" #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:90 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:394 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:545 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 @@ -4068,7 +4079,7 @@ msgstr "地上または大気圏の中継器またはトランスポンダー" #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:91 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:395 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:546 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 @@ -4082,7 +4093,7 @@ msgstr "雨散乱" #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:92 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:396 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:547 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 @@ -4096,7 +4107,7 @@ msgstr "衛星" #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:93 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:397 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:548 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 @@ -4110,7 +4121,7 @@ msgstr "赤道横断" #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:94 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:398 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:549 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 @@ -4171,7 +4182,7 @@ msgstr "表示" #: application/views/hamsat/index.php:32 #: application/views/interface_assets/header.php:210 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:357 +#: application/views/logbookadvanced/index.php:359 #: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 @@ -4192,7 +4203,7 @@ msgstr "衛星" #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:118 -#: application/views/logbookadvanced/index.php:366 +#: application/views/logbookadvanced/index.php:368 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:54 @@ -4322,6 +4333,8 @@ msgstr "何も見つかりません!" #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/logbookadvanced/showUpdateResult.php:60 +#: application/views/logbookadvanced/showUpdateResult.php:104 #: application/views/lotw_views/index.php:32 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 @@ -4502,6 +4515,8 @@ msgstr "時間" #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 +#: application/views/logbookadvanced/showMissingDxccQsos.php:10 +#: application/views/logbookadvanced/showStateQsos.php:21 #: application/views/public_search/result.php:14 #: application/views/qslcard/searchresult.php:8 #: application/views/qso/components/previous_contacts.php:7 @@ -5163,7 +5178,7 @@ msgstr "権限" #: application/views/club/permissions.php:250 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:740 +#: application/views/logbookadvanced/index.php:742 #: application/views/notes/main.php:77 application/views/qrz/export.php:44 #: application/views/user/index.php:33 application/views/user/index.php:160 #: application/views/webadif/export.php:45 @@ -5298,8 +5313,8 @@ msgid "Filtering on" msgstr "フィルタリング" #: application/views/awards/counties/details.php:13 -#: application/views/logbookadvanced/index.php:426 -#: application/views/logbookadvanced/index.php:911 +#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:922 #: application/views/logbookadvanced/useroptions.php:110 msgid "County" msgstr "郡" @@ -5392,8 +5407,8 @@ msgstr "合計" #: application/views/gridmap/index.php:229 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 -#: application/views/logbookadvanced/index.php:400 -#: application/views/logbookadvanced/index.php:914 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:925 #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:308 @@ -5455,7 +5470,7 @@ msgstr "アワード歴 - CQ WAZ" #: application/views/awards/dxcc/index.php:41 #: application/views/awards/wpx/index.php:13 #: application/views/gridmap/index.php:19 -#: application/views/logbookadvanced/index.php:270 +#: application/views/logbookadvanced/index.php:272 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" msgstr "フィルター" @@ -5467,7 +5482,7 @@ msgstr "CQゾーンマップを表示" #: application/views/awards/cq/index.php:55 #: application/views/awards/dxcc/index.php:51 #: application/views/gridmap/index.php:28 -#: application/views/logbookadvanced/index.php:276 +#: application/views/logbookadvanced/index.php:278 msgid "Date Presets" msgstr "日付プリセット" @@ -5479,55 +5494,55 @@ msgstr "日付プリセット" #: application/views/dashboard/index.php:408 #: application/views/dashboard/index.php:429 #: application/views/gridmap/index.php:31 -#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:280 msgid "Today" msgstr "本日" #: application/views/awards/cq/index.php:58 #: application/views/awards/dxcc/index.php:54 #: application/views/gridmap/index.php:32 -#: application/views/logbookadvanced/index.php:279 +#: application/views/logbookadvanced/index.php:281 msgid "Yesterday" msgstr "昨日" #: application/views/awards/cq/index.php:59 #: application/views/awards/dxcc/index.php:55 #: application/views/gridmap/index.php:33 -#: application/views/logbookadvanced/index.php:280 +#: application/views/logbookadvanced/index.php:282 msgid "Last 7 Days" msgstr "過去7日間" #: application/views/awards/cq/index.php:60 #: application/views/awards/dxcc/index.php:56 #: application/views/gridmap/index.php:34 -#: application/views/logbookadvanced/index.php:281 +#: application/views/logbookadvanced/index.php:283 msgid "Last 30 Days" msgstr "過去30日間" #: application/views/awards/cq/index.php:61 #: application/views/awards/dxcc/index.php:57 #: application/views/gridmap/index.php:35 -#: application/views/logbookadvanced/index.php:282 +#: application/views/logbookadvanced/index.php:284 msgid "This Month" msgstr "今月" #: application/views/awards/cq/index.php:62 #: application/views/awards/dxcc/index.php:58 #: application/views/gridmap/index.php:36 -#: application/views/logbookadvanced/index.php:283 +#: application/views/logbookadvanced/index.php:285 msgid "Last Month" msgstr "先月" #: application/views/awards/cq/index.php:63 #: application/views/awards/dxcc/index.php:59 #: application/views/gridmap/index.php:37 -#: application/views/logbookadvanced/index.php:284 +#: application/views/logbookadvanced/index.php:286 msgid "This Year" msgstr "今年" #: application/views/awards/cq/index.php:64 #: application/views/awards/dxcc/index.php:60 -#: application/views/logbookadvanced/index.php:285 +#: application/views/logbookadvanced/index.php:287 msgid "Last Year" msgstr "去年" @@ -5535,7 +5550,7 @@ msgstr "去年" #: application/views/awards/dxcc/index.php:61 #: application/views/gridmap/index.php:38 #: application/views/interface_assets/footer.php:52 -#: application/views/logbookadvanced/index.php:286 +#: application/views/logbookadvanced/index.php:288 #: application/views/qso/index.php:757 msgid "Clear" msgstr "クリア" @@ -5683,7 +5698,7 @@ msgstr "テーブル" #: application/views/awards/waja/index.php:135 #: application/views/awards/wap/index.php:129 #: application/views/awards/was/index.php:133 -#: application/views/logbookadvanced/index.php:813 +#: application/views/logbookadvanced/index.php:821 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "地図" @@ -5841,8 +5856,8 @@ msgstr "どのバンドも" #: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:828 -#: application/views/logbookadvanced/index.php:829 +#: application/views/logbookadvanced/index.php:839 +#: application/views/logbookadvanced/index.php:840 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:43 application/views/user/edit.php:723 @@ -5915,7 +5930,7 @@ msgstr "削除済みを含める" #: application/views/bandmap/list.php:339 #: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:217 -#: application/views/logbookadvanced/index.php:473 +#: application/views/logbookadvanced/index.php:475 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:480 @@ -5929,7 +5944,7 @@ msgstr "南極大陸" #: application/views/bandmap/list.php:338 #: application/views/bandmap/list.php:352 #: application/views/logbookadvanced/edit.php:216 -#: application/views/logbookadvanced/index.php:472 +#: application/views/logbookadvanced/index.php:474 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:479 @@ -5943,7 +5958,7 @@ msgstr "アフリカ" #: application/views/bandmap/list.php:340 #: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 -#: application/views/logbookadvanced/index.php:475 +#: application/views/logbookadvanced/index.php:477 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:481 @@ -5957,7 +5972,7 @@ msgstr "アジア" #: application/views/bandmap/list.php:341 #: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:220 -#: application/views/logbookadvanced/index.php:476 +#: application/views/logbookadvanced/index.php:478 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:482 @@ -5971,7 +5986,7 @@ msgstr "ヨーロッパ" #: application/views/bandmap/list.php:342 #: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:218 -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:476 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:483 @@ -5985,7 +6000,7 @@ msgstr "北米" #: application/views/bandmap/list.php:344 #: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:221 -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:479 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:485 @@ -5999,7 +6014,7 @@ msgstr "南アメリカ" #: application/views/bandmap/list.php:343 #: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:222 -#: application/views/logbookadvanced/index.php:478 +#: application/views/logbookadvanced/index.php:480 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:484 @@ -6048,6 +6063,7 @@ msgstr "DXCC 名称" #: application/views/awards/dxcc/index.php:276 #: application/views/awards/iota/index.php:199 #: application/views/awards/wae/index.php:163 +#: application/views/logbookadvanced/statecheckresult.php:10 #: application/views/timeline/index.php:199 #: application/views/timeline/index.php:297 msgid "Prefix" @@ -6316,7 +6332,7 @@ msgstr "IOTAマップを表示" #: application/views/contesting/index.php:229 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:872 +#: application/views/logbookadvanced/index.php:883 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:58 #: application/views/lotw/satupdate.php:7 @@ -6344,8 +6360,8 @@ msgstr "削除済み" #: application/views/gridmap/index.php:231 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 -#: application/views/logbookadvanced/index.php:414 -#: application/views/logbookadvanced/index.php:917 +#: application/views/logbookadvanced/index.php:416 +#: application/views/logbookadvanced/index.php:928 #: application/views/logbookadvanced/useroptions.php:118 #: application/views/lookup/index.php:8 application/views/qso/edit_ajax.php:316 #: application/views/qso/index.php:515 @@ -6634,7 +6650,8 @@ msgid "Band Categories" msgstr "バンドカテゴリー" #: application/views/awards/pl_polska/index.php:372 -#: application/views/logbookadvanced/index.php:772 +#: application/views/logbookadvanced/dbtoolsdialog.php:47 +#: application/views/logbookadvanced/index.php:773 msgid "Fix State" msgstr "状態を修正" @@ -6780,8 +6797,10 @@ msgid "Reference" msgstr "参照" #: application/views/awards/sig/qso_list.php:10 -#: application/views/logbookadvanced/index.php:845 +#: application/views/logbookadvanced/index.php:856 #: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/logbookadvanced/showMissingDxccQsos.php:11 +#: application/views/logbookadvanced/showStateQsos.php:22 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 #: application/views/qso/components/previous_contacts.php:6 @@ -6934,8 +6953,8 @@ msgstr "アワード - すべての大陸で活動(WAC)" #: application/views/bandmap/list.php:571 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 -#: application/views/logbookadvanced/index.php:468 -#: application/views/logbookadvanced/index.php:956 +#: application/views/logbookadvanced/index.php:470 +#: application/views/logbookadvanced/index.php:967 #: application/views/logbookadvanced/useroptions.php:170 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:476 @@ -7594,8 +7613,8 @@ msgstr "新しいスポット(5分未満)" #: application/views/bandmap/list.php:510 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 -#: application/views/logbookadvanced/index.php:464 -#: application/views/logbookadvanced/index.php:950 +#: application/views/logbookadvanced/index.php:466 +#: application/views/logbookadvanced/index.php:961 #: application/views/logbookadvanced/useroptions.php:162 #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 @@ -7702,8 +7721,8 @@ msgstr "スポッター" #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:485 -#: application/views/logbookadvanced/index.php:944 +#: application/views/logbookadvanced/index.php:487 +#: application/views/logbookadvanced/index.php:955 #: application/views/logbookadvanced/useroptions.php:154 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:379 #: application/views/view_log/qso.php:228 @@ -8227,7 +8246,6 @@ msgstr "" #: application/views/bands/edit.php:2 #: application/views/logbookadvanced/index.php:53 -#: application/views/update/index.php:35 msgid "WARNING" msgstr "警告" @@ -8413,7 +8431,7 @@ msgstr "" "ん) が含まれます。" #: application/views/cabrillo/index.php:48 -#: application/views/logbookadvanced/index.php:787 +#: application/views/logbookadvanced/index.php:795 #: application/views/oqrs/showrequests.php:31 #: application/views/qso/index.php:362 #: application/views/station_profile/edit.php:96 @@ -8527,19 +8545,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:187 #: application/views/logbookadvanced/edit.php:193 #: application/views/logbookadvanced/edit.php:199 -#: application/views/logbookadvanced/index.php:509 -#: application/views/logbookadvanced/index.php:520 -#: application/views/logbookadvanced/index.php:553 -#: application/views/logbookadvanced/index.php:564 -#: application/views/logbookadvanced/index.php:576 -#: application/views/logbookadvanced/index.php:587 -#: application/views/logbookadvanced/index.php:600 -#: application/views/logbookadvanced/index.php:611 -#: application/views/logbookadvanced/index.php:622 -#: application/views/logbookadvanced/index.php:631 -#: application/views/logbookadvanced/index.php:646 -#: application/views/logbookadvanced/index.php:654 -#: application/views/logbookadvanced/index.php:663 +#: application/views/logbookadvanced/index.php:511 +#: application/views/logbookadvanced/index.php:522 +#: application/views/logbookadvanced/index.php:555 +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/index.php:578 +#: application/views/logbookadvanced/index.php:589 +#: application/views/logbookadvanced/index.php:602 +#: application/views/logbookadvanced/index.php:613 +#: application/views/logbookadvanced/index.php:624 +#: application/views/logbookadvanced/index.php:633 +#: application/views/logbookadvanced/index.php:648 +#: application/views/logbookadvanced/index.php:656 +#: application/views/logbookadvanced/index.php:665 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:444 #: application/views/qso/edit_ajax.php:477 @@ -8592,19 +8610,19 @@ msgstr "はい" #: application/views/logbookadvanced/edit.php:188 #: application/views/logbookadvanced/edit.php:194 #: application/views/logbookadvanced/edit.php:200 -#: application/views/logbookadvanced/index.php:510 -#: application/views/logbookadvanced/index.php:521 -#: application/views/logbookadvanced/index.php:554 -#: application/views/logbookadvanced/index.php:565 -#: application/views/logbookadvanced/index.php:577 -#: application/views/logbookadvanced/index.php:588 -#: application/views/logbookadvanced/index.php:601 -#: application/views/logbookadvanced/index.php:612 -#: application/views/logbookadvanced/index.php:623 -#: application/views/logbookadvanced/index.php:632 -#: application/views/logbookadvanced/index.php:647 -#: application/views/logbookadvanced/index.php:655 -#: application/views/logbookadvanced/index.php:664 +#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:567 +#: application/views/logbookadvanced/index.php:579 +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/index.php:603 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/index.php:625 +#: application/views/logbookadvanced/index.php:634 +#: application/views/logbookadvanced/index.php:649 +#: application/views/logbookadvanced/index.php:657 +#: application/views/logbookadvanced/index.php:666 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:443 #: application/views/qso/edit_ajax.php:476 @@ -8737,6 +8755,7 @@ msgstr "利用可能な権限" #: application/views/club/permissions.php:26 #: application/views/eqsl/download.php:45 +#: application/views/logbookadvanced/statecheckresult.php:13 msgid "Action" msgstr "アクション" @@ -8938,7 +8957,7 @@ msgstr "" #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 -#: application/views/logbookadvanced/index.php:968 +#: application/views/logbookadvanced/index.php:979 #: application/views/logbookadvanced/useroptions.php:186 #: application/views/qrz/export.php:39 #: application/views/qslprint/qslprint.php:32 @@ -9401,7 +9420,7 @@ msgid "Locator" msgstr "ロケータ" #: application/views/contesting/index.php:69 -#: application/views/logbookadvanced/index.php:875 +#: application/views/logbookadvanced/index.php:886 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/qso/edit_ajax.php:177 msgid "QTH" @@ -9892,14 +9911,14 @@ msgstr "受領" #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 -#: application/views/logbookadvanced/index.php:511 -#: application/views/logbookadvanced/index.php:522 -#: application/views/logbookadvanced/index.php:555 -#: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/index.php:578 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/index.php:602 -#: application/views/logbookadvanced/index.php:613 +#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:557 +#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:591 +#: application/views/logbookadvanced/index.php:604 +#: application/views/logbookadvanced/index.php:615 #: application/views/oqrs/qsolist.php:57 application/views/oqrs/qsolist.php:99 #: application/views/qslprint/qsolist.php:68 #: application/views/qslprint/qsolist.php:110 @@ -10463,6 +10482,11 @@ msgid "Check for new version" msgstr "新しいバージョンを確認する" #: application/views/debug/index.php:495 +#: application/views/logbookadvanced/checkresult.php:37 +#: application/views/logbookadvanced/checkresult.php:53 +#: application/views/logbookadvanced/checkresult.php:76 +#: application/views/logbookadvanced/checkresult.php:87 +#: application/views/logbookadvanced/checkresult.php:97 #: application/views/logbookadvanced/index.php:57 msgid "Update now" msgstr "今すぐ更新" @@ -11678,7 +11702,7 @@ msgstr "" "さい。" #: application/views/interface_assets/footer.php:878 -#: application/views/logbookadvanced/index.php:792 +#: application/views/logbookadvanced/index.php:800 msgid "Callsign: " msgstr "コールサイン: " @@ -11931,7 +11955,7 @@ msgid "Log" msgstr "ログ" #: application/views/interface_assets/header.php:398 -#: application/views/logbookadvanced/index.php:689 +#: application/views/logbookadvanced/index.php:691 #: application/views/oqrs/index.php:28 application/views/user/edit.php:491 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" @@ -12012,7 +12036,7 @@ msgid "DCL Export" msgstr "DCLエクスポート" #: application/views/interface_assets/header.php:536 -#: application/views/logbookadvanced/index.php:831 +#: application/views/logbookadvanced/index.php:842 msgid "Help" msgstr "ヘルプ" @@ -12275,6 +12299,7 @@ msgid "Label types" msgstr "ラベルの種類" #: application/views/labels/index.php:81 +#: application/views/logbookadvanced/statecheckresult.php:12 #: application/views/statistics/index.php:70 #: application/views/statistics/index.php:114 msgid "QSOs" @@ -12345,20 +12370,20 @@ msgstr "" "元の値を保持し、一致が確実な場合はより正確なロケーター (例: JO90AB または " "JO90AB12) を追加します。" -#: application/views/logbookadvanced/continentdialog.php:2 -msgid "" -"Update all QSOs with the continent based on the DXCC country of the QSO." -msgstr "QSOのDXCC国に基づいて、すべての大陸情報を更新してください。" +#: application/views/logbookadvanced/checkresult.php:27 +msgid "Distance Check Results" +msgstr "" -#: application/views/logbookadvanced/continentdialog.php:3 -msgid "This is useful if you have imported QSOs without continent information." -msgstr "大陸情報が含まれていないQSOをインポートした場合に便利です。" - -#: application/views/logbookadvanced/continentdialog.php:4 -msgid "" -"Update will only set the continent for QSOs where the continent is empty." -msgstr "更新は、大陸が空欄のQSOに対してのみ大陸を設定します。" +#: application/views/logbookadvanced/checkresult.php:28 +#: application/views/logbookadvanced/checkresult.php:44 +#: application/views/logbookadvanced/checkresult.php:60 +#: application/views/logbookadvanced/checkresult.php:72 +#: application/views/logbookadvanced/checkresult.php:83 +#: application/views/logbookadvanced/checkresult.php:94 +msgid "QSOs to update found:" +msgstr "" +#: application/views/logbookadvanced/checkresult.php:31 #: application/views/logbookadvanced/distancedialog.php:2 msgid "" "Update all QSOs with the distance based on your gridsquare set in the " @@ -12369,14 +12394,151 @@ msgstr "" "に基づき、全QSOの距離を更新します。距離はショートパスまたはロングパスの設定に" "応じて計算されます。" +#: application/views/logbookadvanced/checkresult.php:32 #: application/views/logbookadvanced/distancedialog.php:3 msgid "This is useful if you have imported QSOs without distance information." msgstr "距離情報のないQSOをインポートした場合に便利です。" +#: application/views/logbookadvanced/checkresult.php:33 #: application/views/logbookadvanced/distancedialog.php:4 msgid "Update will only set the distance for QSOs where the distance is empty." msgstr "更新は、距離が空欄のQSOに対してのみ距離を設定します。" +#: application/views/logbookadvanced/checkresult.php:43 +msgid "Continent Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:47 +#: application/views/logbookadvanced/continentdialog.php:2 +msgid "" +"Update all QSOs with the continent based on the DXCC country of the QSO." +msgstr "QSOのDXCC国に基づいて、すべての大陸情報を更新してください。" + +#: application/views/logbookadvanced/checkresult.php:48 +#: application/views/logbookadvanced/continentdialog.php:3 +msgid "This is useful if you have imported QSOs without continent information." +msgstr "大陸情報が含まれていないQSOをインポートした場合に便利です。" + +#: application/views/logbookadvanced/checkresult.php:49 +#: application/views/logbookadvanced/continentdialog.php:4 +msgid "" +"Update will only set the continent for QSOs where the continent is empty." +msgstr "更新は、大陸が空欄のQSOに対してのみ大陸を設定します。" + +#: application/views/logbookadvanced/checkresult.php:59 +msgid "DXCC Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:64 +#: application/views/logbookadvanced/statecheckresult.php:30 +msgid "Run fix" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:71 +msgid "CQ Zone Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:82 +msgid "ITU Zone Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:93 +msgid "Gridsquare Check Results" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:4 +msgid "Data Repair Tools" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:6 +msgid "Wiki Help" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:11 +#: application/views/logbookadvanced/index.php:771 +msgid "Fix CQ Zones" +msgstr "CQゾーンを修正" + +#: application/views/logbookadvanced/dbtoolsdialog.php:12 +msgid "Update missing CQ zone information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:16 +#: application/views/logbookadvanced/dbtoolsdialog.php:28 +#: application/views/logbookadvanced/dbtoolsdialog.php:40 +#: application/views/logbookadvanced/dbtoolsdialog.php:52 +#: application/views/logbookadvanced/dbtoolsdialog.php:64 +#: application/views/logbookadvanced/dbtoolsdialog.php:76 +#: application/views/logbookadvanced/dbtoolsdialog.php:102 +msgid "Check" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:23 +#: application/views/logbookadvanced/index.php:772 +msgid "Fix ITU Zones" +msgstr "ITUゾーンを修正" + +#: application/views/logbookadvanced/dbtoolsdialog.php:24 +msgid "Update missing ITU zone information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:35 +msgid "Fix Continent" +msgstr "大陸を修正" + +#: application/views/logbookadvanced/dbtoolsdialog.php:36 +msgid "Update missing or incorrect continent information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:48 +msgid "Update missing state/province information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:59 +#: application/views/logbookadvanced/index.php:68 +msgid "Update Distances" +msgstr "距離を更新する" + +#: application/views/logbookadvanced/dbtoolsdialog.php:60 +msgid "Calculate and update distance information for QSOs" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:71 +msgid "Check QSOs missing DXCC data" +msgstr "DXCCデータが欠落しているQSOを確認する" + +#: application/views/logbookadvanced/dbtoolsdialog.php:72 +msgid "Identify QSOs that are missing DXCC information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:83 +msgid "Re-check DXCC for all QSOs in the logbook" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:84 +msgid "Use Wavelog to determine DXCC for all QSOs." +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:85 +msgid "This will overwrite ALL existing DXCC information!" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:89 +msgid "Run" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:96 +msgid "Lookup QSOs with missing grid in callbook" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:97 +msgid "Use callbook lookup to set gridsquare" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:98 +msgid "This is limited to 250 callsigns for each run!" +msgstr "" + #: application/views/logbookadvanced/edit.php:1 msgid "Please choose the column to be edited:" msgstr "編集する列を選択してください:" @@ -12394,7 +12556,7 @@ msgid "Station Power" msgstr "ステーションの出力" #: application/views/logbookadvanced/edit.php:31 -#: application/views/logbookadvanced/index.php:938 +#: application/views/logbookadvanced/index.php:949 #: application/views/logbookadvanced/useroptions.php:146 #: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:489 #: application/views/view_log/qso.php:481 @@ -12466,8 +12628,8 @@ msgid "QSL Sent Method" msgstr "QSL送付方法" #: application/views/logbookadvanced/edit.php:53 -#: application/views/logbookadvanced/index.php:639 -#: application/views/logbookadvanced/index.php:878 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/index.php:889 #: application/views/logbookadvanced/useroptions.php:66 msgid "QSL via" msgstr "QSL経由" @@ -12492,23 +12654,23 @@ msgstr "バンドRX" #: application/views/logbookadvanced/edit.php:189 #: application/views/logbookadvanced/edit.php:195 #: application/views/logbookadvanced/edit.php:202 -#: application/views/logbookadvanced/index.php:479 -#: application/views/logbookadvanced/index.php:804 +#: application/views/logbookadvanced/index.php:481 +#: application/views/logbookadvanced/index.php:812 msgid "Invalid" msgstr "無効" #: application/views/logbookadvanced/edit.php:177 #: application/views/logbookadvanced/edit.php:203 -#: application/views/logbookadvanced/index.php:524 -#: application/views/logbookadvanced/index.php:568 -#: application/views/logbookadvanced/index.php:591 -#: application/views/logbookadvanced/index.php:615 +#: application/views/logbookadvanced/index.php:526 +#: application/views/logbookadvanced/index.php:570 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:617 msgid "Verified" msgstr "検証済み" #: application/views/logbookadvanced/edit.php:208 -#: application/views/logbookadvanced/index.php:532 -#: application/views/logbookadvanced/index.php:542 +#: application/views/logbookadvanced/index.php:534 +#: application/views/logbookadvanced/index.php:544 #: application/views/oqrs/qsolist.php:73 application/views/oqrs/qsolist.php:115 #: application/views/oqrs/showrequests.php:8 #: application/views/qslprint/qslprint.php:7 @@ -12526,8 +12688,8 @@ msgid "Direct" msgstr "直接" #: application/views/logbookadvanced/edit.php:209 -#: application/views/logbookadvanced/index.php:531 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/index.php:543 #: application/views/oqrs/qsolist.php:70 application/views/oqrs/qsolist.php:112 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:48 @@ -12547,8 +12709,8 @@ msgid "Bureau" msgstr "局" #: application/views/logbookadvanced/edit.php:210 -#: application/views/logbookadvanced/index.php:533 -#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:545 #: application/views/oqrs/qsolist.php:79 application/views/oqrs/qsolist.php:121 #: application/views/oqrs/showrequests.php:9 #: application/views/qslprint/qslprint.php:8 @@ -12566,8 +12728,8 @@ msgid "Electronic" msgstr "電子" #: application/views/logbookadvanced/edit.php:211 -#: application/views/logbookadvanced/index.php:534 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/index.php:546 #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 @@ -12888,11 +13050,6 @@ msgstr "リクエスト中にエラーが発生しました" msgid "You need to select at least 1 location to do a search!" msgstr "検索を行うには、少なくとも1つの場所を選択する必要があります!" -#: application/views/logbookadvanced/index.php:68 -#: application/views/logbookadvanced/index.php:773 -msgid "Update Distances" -msgstr "距離を更新する" - #: application/views/logbookadvanced/index.php:69 msgid "QSO records updated." msgstr "QSO記録を更新しました。" @@ -12905,61 +13062,67 @@ msgstr "距離の更新に問題が発生しました。" msgid "Distances updated successfully!" msgstr "距離の更新に成功しました!" -#: application/views/logbookadvanced/index.php:292 +#: application/views/logbookadvanced/index.php:73 +msgid "" +"Are you sure you want to fix all QSOs with missing DXCC information? This " +"action cannot be undone." +msgstr "" + +#: application/views/logbookadvanced/index.php:294 msgid "From" msgstr "から" -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:298 msgid "To" msgstr "To" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:851 +#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:862 #: application/views/logbookadvanced/useroptions.php:30 msgid "Dx" msgstr "Dx" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:326 -#: application/views/logbookadvanced/index.php:332 -#: application/views/logbookadvanced/index.php:403 -#: application/views/logbookadvanced/index.php:417 -#: application/views/logbookadvanced/index.php:427 -#: application/views/logbookadvanced/index.php:431 -#: application/views/logbookadvanced/index.php:435 -#: application/views/logbookadvanced/index.php:439 -#: application/views/logbookadvanced/index.php:457 -#: application/views/logbookadvanced/index.php:461 -#: application/views/logbookadvanced/index.php:465 -#: application/views/logbookadvanced/index.php:486 -#: application/views/logbookadvanced/index.php:490 -#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:303 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:419 +#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:441 +#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:467 +#: application/views/logbookadvanced/index.php:488 +#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:642 msgid "Empty" msgstr "空" -#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:380 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "なし/空" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:491 msgid "" "Distance in kilometers. Search will look for distances greater than or equal " "to this value." msgstr "距離(キロメートル単位)。この値以上の距離を検索します。" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:502 msgid "QSL Filters" msgstr "QSLフィルター" -#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/index.php:508 msgid "QSL sent" msgstr "QSLを送信しました" -#: application/views/logbookadvanced/index.php:512 -#: application/views/logbookadvanced/index.php:556 -#: application/views/logbookadvanced/index.php:579 -#: application/views/logbookadvanced/index.php:603 +#: application/views/logbookadvanced/index.php:514 +#: application/views/logbookadvanced/index.php:558 +#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/index.php:605 #: application/views/oqrs/qsolist.php:54 application/views/oqrs/qsolist.php:96 #: application/views/qslprint/qsolist.php:65 #: application/views/qslprint/qsolist.php:107 @@ -12986,18 +13149,18 @@ msgstr "QSLを送信しました" msgid "Queued" msgstr "キュー" -#: application/views/logbookadvanced/index.php:513 -#: application/views/logbookadvanced/index.php:523 -#: application/views/logbookadvanced/index.php:557 -#: application/views/logbookadvanced/index.php:567 -#: application/views/logbookadvanced/index.php:580 -#: application/views/logbookadvanced/index.php:590 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/index.php:614 -#: application/views/logbookadvanced/index.php:624 -#: application/views/logbookadvanced/index.php:633 -#: application/views/logbookadvanced/index.php:656 -#: application/views/logbookadvanced/index.php:665 +#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:525 +#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/index.php:582 +#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:606 +#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:626 +#: application/views/logbookadvanced/index.php:635 +#: application/views/logbookadvanced/index.php:658 +#: application/views/logbookadvanced/index.php:667 #: application/views/oqrs/qsolist.php:60 application/views/oqrs/qsolist.php:102 #: application/views/oqrs/qsolist.php:167 #: application/views/oqrs/qsolist.php:182 @@ -13042,272 +13205,269 @@ msgstr "キュー" msgid "Invalid (Ignore)" msgstr "無効(無視)" -#: application/views/logbookadvanced/index.php:517 +#: application/views/logbookadvanced/index.php:519 msgid "QSL received" msgstr "QSLを受信" -#: application/views/logbookadvanced/index.php:528 +#: application/views/logbookadvanced/index.php:530 msgid "QSL send. method" msgstr "QSL送信方法" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:540 msgid "QSL recv. method" msgstr "QSL受信方法" -#: application/views/logbookadvanced/index.php:550 +#: application/views/logbookadvanced/index.php:552 msgid "LoTW sent" msgstr "LoTWが送信されました" -#: application/views/logbookadvanced/index.php:561 +#: application/views/logbookadvanced/index.php:563 msgid "LoTW received" msgstr "LoTWを受信" -#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:575 msgid "Clublog sent" msgstr "Clublogを送信しました" -#: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/index.php:586 msgid "Clublog received" msgstr "Clublog 受信" -#: application/views/logbookadvanced/index.php:597 +#: application/views/logbookadvanced/index.php:599 msgid "eQSL sent" msgstr "eQSLを送信しました" -#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/index.php:610 msgid "eQSL received" msgstr "eQSLを受信" -#: application/views/logbookadvanced/index.php:619 +#: application/views/logbookadvanced/index.php:621 msgid "DCL sent" msgstr "DCL送信" -#: application/views/logbookadvanced/index.php:628 +#: application/views/logbookadvanced/index.php:630 msgid "DCL received" msgstr "DCLを受信" -#: application/views/logbookadvanced/index.php:643 +#: application/views/logbookadvanced/index.php:645 msgid "QSL Images" msgstr "QSL画像" -#: application/views/logbookadvanced/index.php:651 +#: application/views/logbookadvanced/index.php:653 msgid "QRZ sent" msgstr "QRZを送信しました" -#: application/views/logbookadvanced/index.php:660 +#: application/views/logbookadvanced/index.php:662 msgid "QRZ received" msgstr "QRZを受信" -#: application/views/logbookadvanced/index.php:676 +#: application/views/logbookadvanced/index.php:678 msgid "Quickfilters" msgstr "クイックフィルター" -#: application/views/logbookadvanced/index.php:681 +#: application/views/logbookadvanced/index.php:683 msgid "Quicksearch with selected: " msgstr "選択したクイック検索: " -#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:688 msgid "Search Date" msgstr "検索日" -#: application/views/logbookadvanced/index.php:692 +#: application/views/logbookadvanced/index.php:694 msgid "Search DXCC" msgstr "DXCCを検索" -#: application/views/logbookadvanced/index.php:695 +#: application/views/logbookadvanced/index.php:697 msgid "Search State" msgstr "検索状態" -#: application/views/logbookadvanced/index.php:698 +#: application/views/logbookadvanced/index.php:700 msgid "Search Gridsquare" msgstr "Gridsquareを検索" -#: application/views/logbookadvanced/index.php:701 +#: application/views/logbookadvanced/index.php:703 msgid "Search CQ Zone" msgstr "CQゾーンを検索" -#: application/views/logbookadvanced/index.php:704 +#: application/views/logbookadvanced/index.php:706 msgid "Search ITU Zone" msgstr "ITUゾーンを検索" -#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:709 msgid "Search Mode" msgstr "検索モード" -#: application/views/logbookadvanced/index.php:710 +#: application/views/logbookadvanced/index.php:712 msgid "Search Band" msgstr "検索バンド" -#: application/views/logbookadvanced/index.php:713 +#: application/views/logbookadvanced/index.php:715 msgid "Search IOTA" msgstr "IOTAを検索" -#: application/views/logbookadvanced/index.php:716 +#: application/views/logbookadvanced/index.php:718 msgid "Search SOTA" msgstr "SOTAを検索" -#: application/views/logbookadvanced/index.php:719 +#: application/views/logbookadvanced/index.php:721 msgid "Search POTA" msgstr "POTAを検索" -#: application/views/logbookadvanced/index.php:722 +#: application/views/logbookadvanced/index.php:724 msgid "Search WWFF" msgstr "WWFFを検索" -#: application/views/logbookadvanced/index.php:725 +#: application/views/logbookadvanced/index.php:727 msgid "Search Operator" msgstr "検索演算子" -#: application/views/logbookadvanced/index.php:744 +#: application/views/logbookadvanced/index.php:746 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "警告! マークされたQSOを削除してもよろしいですか?" -#: application/views/logbookadvanced/index.php:745 +#: application/views/logbookadvanced/index.php:747 msgid " QSO(s) will be deleted" msgstr " QSOは削除されます" -#: application/views/logbookadvanced/index.php:749 +#: application/views/logbookadvanced/index.php:751 msgid "With selected: " msgstr "選択した場合: " -#: application/views/logbookadvanced/index.php:753 +#: application/views/logbookadvanced/index.php:755 #: application/views/qso/edit_ajax.php:725 msgid "Update from Callbook" msgstr "コールブックからの更新" -#: application/views/logbookadvanced/index.php:754 +#: application/views/logbookadvanced/index.php:756 msgid "Queue Bureau" msgstr "列 ビューロー" -#: application/views/logbookadvanced/index.php:755 +#: application/views/logbookadvanced/index.php:757 msgid "Queue Direct" msgstr "列 ダイレクト" -#: application/views/logbookadvanced/index.php:756 +#: application/views/logbookadvanced/index.php:758 msgid "Queue Electronic" msgstr "列 ネット" -#: application/views/logbookadvanced/index.php:757 +#: application/views/logbookadvanced/index.php:759 msgid "Sent (Bureau)" msgstr "送信(局)" -#: application/views/logbookadvanced/index.php:758 +#: application/views/logbookadvanced/index.php:760 msgid "Sent (Direct)" msgstr "送信(直接)" -#: application/views/logbookadvanced/index.php:759 +#: application/views/logbookadvanced/index.php:761 msgid "Sent (Electronic)" msgstr "送信済み(電子)" -#: application/views/logbookadvanced/index.php:760 +#: application/views/logbookadvanced/index.php:762 msgid "Not Sent" msgstr "未送信" -#: application/views/logbookadvanced/index.php:761 +#: application/views/logbookadvanced/index.php:763 msgid "QSL Not Required" msgstr "QSLは不要" -#: application/views/logbookadvanced/index.php:762 +#: application/views/logbookadvanced/index.php:764 msgid "Not Received" msgstr "未受信" -#: application/views/logbookadvanced/index.php:763 +#: application/views/logbookadvanced/index.php:765 msgid "Received (Bureau)" msgstr "受領(局)" -#: application/views/logbookadvanced/index.php:764 +#: application/views/logbookadvanced/index.php:766 msgid "Received (Direct)" msgstr "受信(直接)" -#: application/views/logbookadvanced/index.php:765 +#: application/views/logbookadvanced/index.php:767 msgid "Received (Electronic)" msgstr "受信済み(電子)" -#: application/views/logbookadvanced/index.php:766 +#: application/views/logbookadvanced/index.php:768 msgid "Create ADIF" msgstr "ADIFを作成する" -#: application/views/logbookadvanced/index.php:767 +#: application/views/logbookadvanced/index.php:769 msgid "Print Label" msgstr "ラベルを印刷" -#: application/views/logbookadvanced/index.php:768 +#: application/views/logbookadvanced/index.php:770 msgid "QSL Slideshow" msgstr "QSLスライドショー" -#: application/views/logbookadvanced/index.php:769 -msgid "Fix CQ Zones" -msgstr "CQゾーンを修正" +#: application/views/logbookadvanced/index.php:777 +msgid "With ALL QSOs: " +msgstr "" -#: application/views/logbookadvanced/index.php:770 -msgid "Fix ITU Zones" -msgstr "ITUゾーンを修正" +#: application/views/logbookadvanced/index.php:781 +#: application/views/logbookadvanced/index.php:832 +msgid "Database Tools" +msgstr "" -#: application/views/logbookadvanced/index.php:771 -msgid "Fix Continent" -msgstr "大陸を修正" - -#: application/views/logbookadvanced/index.php:780 +#: application/views/logbookadvanced/index.php:788 #: application/views/oqrs/showrequests.php:58 msgid "# Results" msgstr "# 結果" -#: application/views/logbookadvanced/index.php:801 +#: application/views/logbookadvanced/index.php:809 msgid "Dupes" msgstr "複製" -#: application/views/logbookadvanced/index.php:817 +#: application/views/logbookadvanced/index.php:825 msgid "Globe map" msgstr "地球地図" -#: application/views/logbookadvanced/index.php:848 +#: application/views/logbookadvanced/index.php:859 #: application/views/logbookadvanced/useroptions.php:26 msgid "De" msgstr "De" -#: application/views/logbookadvanced/index.php:893 +#: application/views/logbookadvanced/index.php:904 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 #: application/views/timeline/index.php:72 application/views/user/edit.php:627 msgid "QRZ" msgstr "QRZ" -#: application/views/logbookadvanced/index.php:899 +#: application/views/logbookadvanced/index.php:910 #: application/views/logbookadvanced/useroptions.php:94 #: application/views/qso/edit_ajax.php:527 msgid "QSL Msg (S)" msgstr "QSLメッセージ(S)" -#: application/views/logbookadvanced/index.php:902 +#: application/views/logbookadvanced/index.php:913 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/qso/edit_ajax.php:536 msgid "QSL Msg (R)" msgstr "QSLメッセージ(R)" -#: application/views/logbookadvanced/index.php:953 +#: application/views/logbookadvanced/index.php:964 #: application/views/logbookadvanced/useroptions.php:166 msgid "My Refs" msgstr "私の参照先" -#: application/views/logbookadvanced/index.php:962 +#: application/views/logbookadvanced/index.php:973 msgid "Ant az" msgstr "Ant az" -#: application/views/logbookadvanced/index.php:962 +#: application/views/logbookadvanced/index.php:973 #: application/views/logbookadvanced/useroptions.php:178 msgid "Antenna azimuth" msgstr "アンテナ方位角" -#: application/views/logbookadvanced/index.php:965 +#: application/views/logbookadvanced/index.php:976 msgid "Ant el" msgstr "Ant el" -#: application/views/logbookadvanced/index.php:965 +#: application/views/logbookadvanced/index.php:976 #: application/views/logbookadvanced/useroptions.php:182 msgid "Antenna elevation" msgstr "アンテナの仰角" -#: application/views/logbookadvanced/index.php:971 +#: application/views/logbookadvanced/index.php:982 #: application/views/logbookadvanced/useroptions.php:190 msgid "Station power" msgstr "ステーション電力" @@ -13327,6 +13487,130 @@ msgstr "以前" msgid "Next" msgstr "次" +#: application/views/logbookadvanced/showMissingDxccQsos.php:5 +#, php-format +msgid "Found %s QSO(s) missing DXCC information." +msgstr "" + +#: application/views/logbookadvanced/showMissingDxccQsos.php:17 +#: application/views/logbookadvanced/showStateQsos.php:28 +#: application/views/oqrs/qsolist.php:11 +#: application/views/qslprint/qslprint.php:31 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 +#: application/views/search/cqzones_result.php:16 +#: application/views/search/ituzones_result.php:16 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/search_result_ajax.php:130 +#: application/views/user/edit.php:529 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:228 +#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:672 +#: application/views/view_log/qso.php:676 +#: application/views/view_log/qso.php:680 +#: application/views/view_log/qso.php:686 +#: application/views/view_log/qso.php:693 +#: application/views/view_log/qso.php:700 +#: application/views/view_log/qso.php:707 +#: application/views/view_log/qso.php:714 +#: application/views/view_log/qso.php:721 +#: application/views/view_log/qso.php:728 +#: application/views/view_log/qso.php:735 +#: application/views/view_log/qso.php:742 +#: application/views/view_log/qso.php:747 +msgid "Station" +msgstr "ステーション" + +#: application/views/logbookadvanced/showMissingDxccQsos.php:38 +#: application/views/logbookadvanced/showStateQsos.php:49 +msgid "No Issues Found" +msgstr "" + +#: application/views/logbookadvanced/showStateQsos.php:16 +#, php-format +msgid "Found %s QSO(s) missing state information for DXCC %s." +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:31 +msgid "Results for DXCC update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:34 +#: application/views/logbookadvanced/showUpdateResult.php:40 +msgid "The number of QSOs updated for missing DXCC IDs was" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:36 +#: application/views/logbookadvanced/showUpdateResult.php:42 +msgid "The number of QSOs re-checked for DXCC was" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:55 +#: application/views/logbookadvanced/showUpdateResult.php:99 +msgid "These QSOs could not be updated:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:61 +#: application/views/logbookadvanced/showUpdateResult.php:107 +msgid "Reason" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:62 +#: application/views/logbookadvanced/showUpdateResult.php:106 +#: application/views/search/lotw_unconfirmed.php:32 +msgid "Station location" +msgstr "ステーションの場所" + +#: application/views/logbookadvanced/showUpdateResult.php:83 +msgid "Results for state update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:85 +#: application/views/logbookadvanced/showUpdateResult.php:87 +msgid "The number of QSOs updated for state/province in" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:130 +msgid "Results for continent update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:131 +msgid "The number of QSOs updated for continent is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:135 +msgid "Results for distance update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:136 +msgid "The number of QSOs updated for distance is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:140 +msgid "Results for CQ zone update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:141 +msgid "The number of QSOs updated for CQ zone is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:145 +msgid "Results for ITU zone update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:146 +msgid "The number of QSOs updated for ITU zone is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:150 +msgid "Results for gridsquare update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:151 +msgid "The number of QSOs updated for gridsquare is" +msgstr "" + #: application/views/logbookadvanced/startatform.php:15 msgid "Include Via" msgstr "経由を含める" @@ -13339,6 +13623,21 @@ msgstr "QSLMSGを含める" msgid "Include TNX message" msgstr "TNXメッセージを含める" +#: application/views/logbookadvanced/statecheckresult.php:3 +#: application/views/logbookadvanced/statecheckresult.php:42 +msgid "State Check Results" +msgstr "" + +#: application/views/logbookadvanced/statecheckresult.php:4 +msgid "" +"QSOs with missing state and gridsquares with 6 or more characters found for " +"the following DXCCs:" +msgstr "" + +#: application/views/logbookadvanced/statecheckresult.php:43 +msgid "No QSOs were found where state information can be fixed." +msgstr "" + #: application/views/logbookadvanced/statedialog.php:2 msgid "" "Update QSOs with state/province information based on gridsquare and DXCC " @@ -14165,34 +14464,6 @@ msgstr "ご連絡可能なメールアドレス" msgid "Send not in log request" msgstr "ログにないリクエストを送信する" -#: application/views/oqrs/qsolist.php:11 -#: application/views/qslprint/qslprint.php:31 -#: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 -#: application/views/search/cqzones_result.php:16 -#: application/views/search/ituzones_result.php:16 -#: application/views/search/lotw_unconfirmed_result.php:11 -#: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:529 -#: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:228 -#: application/views/view_log/qso.php:668 -#: application/views/view_log/qso.php:672 -#: application/views/view_log/qso.php:676 -#: application/views/view_log/qso.php:680 -#: application/views/view_log/qso.php:686 -#: application/views/view_log/qso.php:693 -#: application/views/view_log/qso.php:700 -#: application/views/view_log/qso.php:707 -#: application/views/view_log/qso.php:714 -#: application/views/view_log/qso.php:721 -#: application/views/view_log/qso.php:728 -#: application/views/view_log/qso.php:735 -#: application/views/view_log/qso.php:742 -#: application/views/view_log/qso.php:747 -msgid "Station" -msgstr "ステーション" - #: application/views/oqrs/qsolist.php:76 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 @@ -15707,10 +15978,6 @@ msgstr "" "検索では、LoTW で未確認の QSO が表示されますが、機能したコールサインは QSO 日" "付以降に LoTW にアップロードされています。" -#: application/views/search/lotw_unconfirmed.php:32 -msgid "Station location" -msgstr "ステーションの場所" - #: application/views/search/lotw_unconfirmed_result.php:10 msgid "Last LoTW upload" msgstr "最後のLoTWアップロード" @@ -16563,6 +16830,10 @@ msgid "" "analytics. Great for when you're operating in multiple locations but they " "are part of the same DXCC or VUCC Circle." msgstr "" +"ステーションログブックではステーション位置をグループ化できます。これにより、" +"ログブック領域から分析まで、1回のセッションにおける全位置を確認可能です。複数" +"の場所で運用しているが、それらが同一のDXCCまたはVUCCサークルに属する場合に最" +"適です。" #: application/views/stationsetup/stationsetup.php:35 msgid "Edit Linked locations" @@ -16961,42 +17232,6 @@ msgstr "DXCCデータの更新" msgid "Status:" msgstr "状態:" -#: application/views/update/index.php:30 -msgid "Apply DXCC Data to Logbook" -msgstr "DXCCデータをログブックに適用する" - -#: application/views/update/index.php:32 -msgid "" -"After updating, Wavelog can fill in missing callsign information in the " -"logbook using the newly-obtained DXCC data.\n" -"\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that are " -"missing DXCC metadata or to re-check the entire logbook\n" -"\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." -msgstr "" -"アップデート後、Wavelog は新しく取得した DXCC データを使用して、ログブック内" -"の欠落しているコールサイン情報を入力できるようになります。\n" -"\t\t\t\t\t\t\tログブック内のDXCCメタデータが欠落しているQSOだけをチェックする" -"か、ログブック全体を再チェックするかを選択できます。\n" -"\t\t\t\t\t\t\t変更があった場合には、既存のメタデータも更新します。" - -#: application/views/update/index.php:35 -msgid "" -"This affects ALL QSOs of ANY user on this instance. The function is " -"deprectated and will be removed in a future version of Wavelog. As " -"replacement use the Logbook-Advanced!" -msgstr "" -"この変更は、このインスタンス上の全ユーザーの全QSOに影響します。この機能は非推" -"奨となり、Wavelogの将来のバージョンで削除されます。代替としてLogbook-Advanced" -"をご利用ください!" - -#: application/views/update/index.php:42 -msgid "Check QSOs missing DXCC data" -msgstr "DXCCデータが欠落しているQSOを確認する" - -#: application/views/update/index.php:51 -msgid "Re-check all QSOs in logbook" -msgstr "ログブックのすべてのQSOを再確認する" - #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "ユーザーアカウントの削除" @@ -17224,7 +17459,7 @@ msgstr "DXウォーターフォール" #: application/views/user/edit.php:450 msgid "squelched" -msgstr "" +msgstr "押しつぶされた" #: application/views/user/edit.php:453 msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." @@ -17382,7 +17617,7 @@ msgstr "" #: application/views/user/edit.php:688 msgid "Show Fields on QSO Tab" -msgstr "" +msgstr "QSOタブにフィールドを表示" #: application/views/user/edit.php:692 msgid "" @@ -18343,8 +18578,34 @@ msgstr "リクエストを送信" msgid "Rcvd" msgstr "受信" -#~ msgid "Show Reference Fields on QSO Tab" -#~ msgstr "QSOタブに参照フィールドを表示する" +#~ msgid "Apply DXCC Data to Logbook" +#~ msgstr "DXCCデータをログブックに適用する" + +#~ msgid "" +#~ "After updating, Wavelog can fill in missing callsign information in the " +#~ "logbook using the newly-obtained DXCC data.\n" +#~ "\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that " +#~ "are missing DXCC metadata or to re-check the entire logbook\n" +#~ "\t\t\t\t\t\t\tand update existing metadata as well, in case it has " +#~ "changed." +#~ msgstr "" +#~ "アップデート後、Wavelog は新しく取得した DXCC データを使用して、ログブック" +#~ "内の欠落しているコールサイン情報を入力できるようになります。\n" +#~ "\t\t\t\t\t\t\tログブック内のDXCCメタデータが欠落しているQSOだけをチェック" +#~ "するか、ログブック全体を再チェックするかを選択できます。\n" +#~ "\t\t\t\t\t\t\t変更があった場合には、既存のメタデータも更新します。" + +#~ msgid "" +#~ "This affects ALL QSOs of ANY user on this instance. The function is " +#~ "deprectated and will be removed in a future version of Wavelog. As " +#~ "replacement use the Logbook-Advanced!" +#~ msgstr "" +#~ "この変更は、このインスタンス上の全ユーザーの全QSOに影響します。この機能は" +#~ "非推奨となり、Wavelogの将来のバージョンで削除されます。代替としてLogbook-" +#~ "Advancedをご利用ください!" + +#~ msgid "Re-check all QSOs in logbook" +#~ msgstr "ログブックのすべてのQSOを再確認する" #~ msgid "" #~ "Station Logbooks allow you to group Station Locations, this allows you to " @@ -18357,6 +18618,9 @@ msgstr "受信" #~ "ションですべてのロケーションを確認できます。複数のロケーションで運用してい" #~ "るが、それらが同じDXCCまたはVUCCサークルの一部である場合に最適です。" +#~ msgid "Show Reference Fields on QSO Tab" +#~ msgstr "QSOタブに参照フィールドを表示する" + #~ msgid "" #~ "You might have ADIF errors, the QSOs have still been added. Please check " #~ "the following information:" diff --git a/application/locale/lt/LC_MESSAGES/messages.po b/application/locale/lt/LC_MESSAGES/messages.po index 5caa79f7f..f52c099c2 100644 --- a/application/locale/lt/LC_MESSAGES/messages.po +++ b/application/locale/lt/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-12-13 14:06+0000\n" +"POT-Creation-Date: 2025-12-19 07:34+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" "Language-Team: Dutch \n" @@ -113,8 +113,7 @@ msgstr "" #: application/controllers/Themes.php:17 #: application/controllers/Timeline.php:10 #: application/controllers/Timeplotter.php:11 -#: application/controllers/Update.php:22 application/controllers/Update.php:333 -#: application/controllers/Update.php:344 application/controllers/User.php:14 +#: application/controllers/Update.php:22 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 #: application/controllers/User.php:384 application/controllers/User.php:385 @@ -335,8 +334,8 @@ msgstr "Awards - %s" #: application/views/contesting/index.php:63 #: application/views/interface_assets/header.php:240 #: application/views/logbookadvanced/edit.php:25 -#: application/views/logbookadvanced/index.php:430 -#: application/views/logbookadvanced/index.php:929 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:940 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 @@ -353,9 +352,12 @@ msgstr "DOK" #: application/views/interface_assets/header.php:192 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:26 -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:905 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:916 #: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/logbookadvanced/showMissingDxccQsos.php:16 +#: application/views/logbookadvanced/showStateQsos.php:27 +#: application/views/logbookadvanced/statecheckresult.php:11 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 @@ -440,7 +442,7 @@ msgstr " en " #: 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 -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:436 #: application/views/logbookadvanced/useroptions.php:130 #: application/views/lookup/index.php:10 #: application/views/qslcard/searchresult.php:17 @@ -467,7 +469,7 @@ msgstr "SOTA" #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:458 #: application/views/logbookadvanced/useroptions.php:138 #: application/views/lookup/index.php:12 #: application/views/qso/award_tabs.php:65 @@ -489,8 +491,8 @@ msgstr "WWFF" #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 #: application/views/logbookadvanced/edit.php:30 -#: application/views/logbookadvanced/index.php:438 -#: application/views/logbookadvanced/index.php:923 +#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:934 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 @@ -689,8 +691,8 @@ msgstr "Club Lid ADIF" msgid "Club Member" msgstr "Club lid" -#: application/controllers/Club.php:45 application/models/Club_model.php:75 -#: application/models/Club_model.php:149 application/models/Club_model.php:191 +#: application/controllers/Club.php:45 application/models/Club_model.php:107 +#: application/models/Club_model.php:181 application/models/Club_model.php:223 msgid "Invalid User ID!" msgstr "Ongeldig gebruikers-ID!" @@ -706,8 +708,8 @@ msgstr "Clubrechten" #: application/controllers/Club.php:119 application/controllers/Club.php:148 #: application/controllers/Club.php:175 application/models/Club_model.php:22 -#: application/models/Club_model.php:70 application/models/Club_model.php:144 -#: application/models/Club_model.php:186 +#: application/models/Club_model.php:102 application/models/Club_model.php:176 +#: application/models/Club_model.php:218 msgid "Invalid Club ID!" msgstr "Ongeldig club-ID!" @@ -908,7 +910,7 @@ msgstr "DCL-sleutelimport" #: application/controllers/Dcl.php:68 application/views/dcl_views/import.php:3 #: application/views/dcl_views/index.php:3 -#: application/views/logbookadvanced/index.php:896 +#: application/views/logbookadvanced/index.php:907 #: application/views/logbookadvanced/useroptions.php:90 #: application/views/qso/edit_ajax.php:434 #: application/views/search/search_result_ajax.php:127 @@ -1059,27 +1061,27 @@ msgstr "Geen eQSL QTH Bijnaam: %s" #: application/controllers/Eqsl.php:312 msgid "QSO not found or not accessible" -msgstr "" +msgstr "QSO niet gevonden of niet toegankelijk" #: application/controllers/Eqsl.php:330 msgid "User not found" -msgstr "" +msgstr "Gebruiker niet gevonden" #: application/controllers/Eqsl.php:339 msgid "eQSL password not configured for this user" -msgstr "" +msgstr "eQSL-wachtwoord niet geconfigureerd voor deze gebruiker" #: application/controllers/Eqsl.php:357 msgid "Failed to fetch eQSL image data" -msgstr "" +msgstr "Het ophalen van eQSL-afbeeldingsgegevens is mislukt" #: application/controllers/Eqsl.php:376 msgid "eQSL image not available" -msgstr "" +msgstr "eQSL-afbeelding niet beschikbaar" #: application/controllers/Eqsl.php:395 msgid "Failed to download eQSL image" -msgstr "" +msgstr "Kon niet eQSL-afbeelding downloaden" #: application/controllers/Eqsl.php:495 msgid "eQSL Tools" @@ -1318,7 +1320,7 @@ msgstr "Logboek" #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:171 #: application/views/interface_assets/footer.php:106 -#: application/views/logbookadvanced/index.php:884 +#: application/views/logbookadvanced/index.php:895 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:30 @@ -1452,9 +1454,11 @@ msgstr "eQSL" #: application/views/interface_assets/footer.php:121 #: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:335 -#: application/views/logbookadvanced/index.php:854 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:865 #: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/logbookadvanced/showMissingDxccQsos.php:12 +#: application/views/logbookadvanced/showStateQsos.php:23 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:40 #: application/views/oqrs/notinlogform.php:11 @@ -1503,7 +1507,7 @@ msgstr "Modus" #: application/views/contesting/index.php:180 #: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:857 +#: application/views/logbookadvanced/index.php:868 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -1532,7 +1536,7 @@ msgstr "RST (S)" #: application/views/contesting/index.php:204 #: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:860 +#: application/views/logbookadvanced/index.php:871 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1582,8 +1586,8 @@ msgstr "Land" #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/edit.php:28 -#: application/views/logbookadvanced/index.php:444 -#: application/views/logbookadvanced/index.php:920 +#: application/views/logbookadvanced/index.php:446 +#: application/views/logbookadvanced/index.php:931 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/lookup/index.php:7 @@ -1614,9 +1618,11 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 #: application/views/logbookadvanced/edit.php:96 -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:908 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:919 #: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/logbookadvanced/showMissingDxccQsos.php:14 +#: application/views/logbookadvanced/showStateQsos.php:25 #: application/views/logbookadvanced/useroptions.php:106 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 @@ -1646,9 +1652,12 @@ msgstr "Staat/Provincie" #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:869 +#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:880 #: application/views/logbookadvanced/qslcarousel.php:39 +#: application/views/logbookadvanced/showMissingDxccQsos.php:15 +#: application/views/logbookadvanced/showStateQsos.php:26 +#: application/views/logbookadvanced/showUpdateResult.php:105 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/lookup/index.php:6 #: application/views/qslcard/confirmationresult.php:19 @@ -1689,8 +1698,8 @@ msgstr "Locatorvak" #: application/views/gridmap/index.php:225 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 -#: application/views/logbookadvanced/index.php:489 -#: application/views/logbookadvanced/index.php:959 +#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:970 #: application/views/logbookadvanced/useroptions.php:174 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 @@ -1750,9 +1759,11 @@ msgstr "Afstand" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:56 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:863 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:874 #: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/logbookadvanced/showMissingDxccQsos.php:13 +#: application/views/logbookadvanced/showStateQsos.php:24 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 #: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 @@ -1800,7 +1811,7 @@ msgstr "Band" #: application/views/bandmap/list.php:567 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 -#: application/views/logbookadvanced/index.php:866 +#: application/views/logbookadvanced/index.php:877 #: application/views/logbookadvanced/useroptions.php:50 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 @@ -1826,8 +1837,8 @@ msgstr "Frequentie" #: application/controllers/Radio.php:43 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:460 -#: application/views/logbookadvanced/index.php:941 +#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:952 #: application/views/logbookadvanced/useroptions.php:150 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 @@ -1855,7 +1866,7 @@ msgstr "Operator" #: application/views/dxatlas/index.php:65 #: application/views/interface_assets/footer.php:822 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:319 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 @@ -2338,7 +2349,7 @@ msgid "Timestamp" msgstr "Tijdstempel" #: application/controllers/Radio.php:49 -#: application/views/logbookadvanced/index.php:821 +#: application/views/logbookadvanced/index.php:829 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:185 @@ -2377,7 +2388,7 @@ msgstr "Standaard (klik om vrij te geven)" #: application/views/interface_assets/footer.php:682 #: application/views/interface_assets/footer.php:691 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:808 +#: application/views/logbookadvanced/index.php:816 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 #: application/views/satellite/index.php:58 #: application/views/search/stored_queries.php:21 @@ -2400,7 +2411,7 @@ msgstr "Bewerken" #: application/views/interface_assets/footer.php:2800 #: application/views/interface_assets/footer.php:2818 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:824 +#: application/views/logbookadvanced/index.php:835 #: application/views/lotw_views/index.php:134 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 @@ -2508,7 +2519,7 @@ msgstr "Satelliet timers" #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 #: application/views/interface_assets/header.php:399 -#: application/views/logbookadvanced/index.php:797 +#: application/views/logbookadvanced/index.php:805 #: application/views/oqrs/index.php:30 #: application/views/oqrs/showrequests.php:69 #: application/views/qslcard/searchform.php:8 @@ -2851,83 +2862,83 @@ msgstr "Dxcc uitzonderingen:" msgid "Dxcc Prefixes:" msgstr "Dxcc-prefixen:" -#: application/controllers/Update.php:362 +#: application/controllers/Update.php:340 msgid "SCP Update complete. Result: " msgstr "SCP-update voltooid. Resultaat: " -#: application/controllers/Update.php:364 +#: application/controllers/Update.php:342 msgid "SCP Update failed. Result: " msgstr "SCP-update mislukt. Resultaat: " -#: application/controllers/Update.php:401 +#: application/controllers/Update.php:379 msgid "LoTW Users Update complete. Result: " msgstr "LoTW-gebruikersupdate voltooid. Resultaat: " -#: application/controllers/Update.php:403 +#: application/controllers/Update.php:381 msgid "LoTW Users Update failed. Result: " msgstr "LoTW-gebruikersupdate mislukt. Resultaat: " -#: application/controllers/Update.php:438 +#: application/controllers/Update.php:416 msgid "DOK Update complete. Result: " msgstr "DOK-update voltooid. Resultaat: " -#: application/controllers/Update.php:440 +#: application/controllers/Update.php:418 msgid "DOK Update failed. Result: " msgstr "DOK-update mislukt. Resultaat: " -#: application/controllers/Update.php:473 +#: application/controllers/Update.php:451 msgid "SOTA Update complete. Result: " msgstr "SOTA-update voltooid. Resultaat: " -#: application/controllers/Update.php:475 +#: application/controllers/Update.php:453 msgid "SOTA Update failed. Result: " msgstr "SOTA-update mislukt. Resultaat: " -#: application/controllers/Update.php:508 +#: application/controllers/Update.php:486 msgid "WWFF Update complete. Result: " msgstr "WWFF-update voltooid. Resultaat: " -#: application/controllers/Update.php:510 +#: application/controllers/Update.php:488 msgid "WWFF Update failed. Result: " msgstr "WWFF-update mislukt. Resultaat: " -#: application/controllers/Update.php:544 +#: application/controllers/Update.php:522 msgid "HAMqsl Update complete. Result: " msgstr "HAMqsl-update voltooid. Resultaat: " -#: application/controllers/Update.php:546 +#: application/controllers/Update.php:524 msgid "HAMqsl Update failed. Result: " msgstr "HAMqsl-update mislukt. Resultaat: " -#: application/controllers/Update.php:579 +#: application/controllers/Update.php:557 msgid "POTA Update complete. Result: " msgstr "POTA-update voltooid. Resultaat: " -#: application/controllers/Update.php:581 +#: application/controllers/Update.php:559 msgid "POTA Update failed. Result: " msgstr "POTA-update mislukt. Resultaat: " -#: application/controllers/Update.php:610 +#: application/controllers/Update.php:588 msgid "TLE Update complete. Result: " msgstr "TLE-update voltooid. Resultaat: " -#: application/controllers/Update.php:612 +#: application/controllers/Update.php:590 msgid "TLE Update failed. Result: " msgstr "TLE-update mislukt. Resultaat: " -#: application/controllers/Update.php:639 +#: application/controllers/Update.php:617 msgid "LoTW SAT Update" msgstr "LoTW SAT update" -#: application/controllers/Update.php:667 +#: application/controllers/Update.php:645 msgid "Update of Hams of Note" msgstr "Update van Vermeldenswaardige Radiozendamateurs" -#: application/controllers/Update.php:707 +#: application/controllers/Update.php:685 msgid "VUCC Grid file update complete. Result: " msgstr "VUCC-vakken bestand update voltooid. Resultaat: " -#: application/controllers/Update.php:709 +#: application/controllers/Update.php:687 msgid "VUCC Grid file update failed. Result: " msgstr "VUCC-vakken bestandsupdate mislukt. Resultaat: " @@ -3292,7 +3303,7 @@ msgstr "QRZCQ Fout" #: application/libraries/Callbook.php:155 msgid "Error obtaining a session key for HamQTH query" -msgstr "" +msgstr "Fout bij het verkrijgen van een sessiesleutel voor HamQTH-query" #: application/libraries/Cbr_parser.php:111 #: application/libraries/Cbr_parser.php:160 @@ -3385,11 +3396,11 @@ msgctxt "Division Name (States in various countries)." msgid "City / Ku / Gun" msgstr "Stad / Ku / Gun" -#: application/models/Club_model.php:154 +#: application/models/Club_model.php:186 msgid "Invalid Permission Level!" msgstr "Ongeldig machtigingsniveau!" -#: application/models/Club_model.php:169 +#: application/models/Club_model.php:201 msgid "Error adding Club Member!" msgstr "Fout bij het toevoegen van clublid!" @@ -3549,7 +3560,7 @@ msgstr "POTA-referentie al in logboek" msgid "QSO updated" msgstr "QSO bijgewerkt" -#: application/models/Logbook_model.php:6405 +#: application/models/Logbook_model.php:6331 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3764,28 +3775,28 @@ msgstr "Verschil" #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:337 -#: application/views/logbookadvanced/index.php:348 -#: application/views/logbookadvanced/index.php:359 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:402 -#: application/views/logbookadvanced/index.php:416 -#: application/views/logbookadvanced/index.php:470 -#: application/views/logbookadvanced/index.php:508 -#: application/views/logbookadvanced/index.php:519 -#: application/views/logbookadvanced/index.php:530 -#: application/views/logbookadvanced/index.php:540 -#: application/views/logbookadvanced/index.php:552 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/index.php:575 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/index.php:599 -#: application/views/logbookadvanced/index.php:610 -#: application/views/logbookadvanced/index.php:621 -#: application/views/logbookadvanced/index.php:630 -#: application/views/logbookadvanced/index.php:653 -#: application/views/logbookadvanced/index.php:662 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:418 +#: application/views/logbookadvanced/index.php:472 +#: application/views/logbookadvanced/index.php:510 +#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/index.php:532 +#: application/views/logbookadvanced/index.php:542 +#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/index.php:565 +#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:588 +#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:612 +#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/index.php:655 +#: application/views/logbookadvanced/index.php:664 #: application/views/lotw/import.php:55 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -3851,8 +3862,8 @@ msgstr "Periode" #: application/views/distances/index.php:53 #: application/views/gridmap/index.php:71 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:947 +#: application/views/logbookadvanced/index.php:377 +#: application/views/logbookadvanced/index.php:958 #: application/views/logbookadvanced/useroptions.php:158 #: application/views/timeline/index.php:79 application/views/user/edit.php:351 #: application/views/view_log/partial/log_ajax.php:21 @@ -3872,7 +3883,7 @@ msgstr "Alles behalve SAT" #: application/views/gridmap/index.php:75 #: application/views/logbookadvanced/edit.php:207 #: application/views/logbookadvanced/edit.php:215 -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:473 #: application/views/timeline/index.php:84 msgid "None/Empty" msgstr "Geen/Leeg" @@ -3882,7 +3893,7 @@ msgstr "Geen/Leeg" #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:77 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:381 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:532 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 @@ -3896,7 +3907,7 @@ msgstr "Aircraft Scatter" #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:78 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:382 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:533 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 @@ -3910,7 +3921,7 @@ msgstr "Aurora" #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:79 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:383 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:534 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 @@ -3924,7 +3935,7 @@ msgstr "Aurora-E" #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:80 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:384 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:535 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 @@ -3938,7 +3949,7 @@ msgstr "Back scatter" #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:81 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:385 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:536 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 @@ -3952,7 +3963,7 @@ msgstr "EchoLink" #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:82 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:386 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:537 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 @@ -3966,7 +3977,7 @@ msgstr "Earth-Moon-Earth" #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:83 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:385 +#: application/views/logbookadvanced/index.php:387 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:538 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 @@ -3980,7 +3991,7 @@ msgstr "Sporadic E" #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:84 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:386 +#: application/views/logbookadvanced/index.php:388 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:539 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 @@ -3994,7 +4005,7 @@ msgstr "Field Aligned Irregularities" #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:85 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:387 +#: application/views/logbookadvanced/index.php:389 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:540 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 @@ -4008,7 +4019,7 @@ msgstr "F2 Reflection" #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:86 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:388 +#: application/views/logbookadvanced/index.php:390 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:541 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 @@ -4022,7 +4033,7 @@ msgstr "Internet-ondersteund" #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:87 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:391 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:542 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 @@ -4036,7 +4047,7 @@ msgstr "Ionoscatter" #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:88 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:392 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:543 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 @@ -4050,7 +4061,7 @@ msgstr "IRLP" #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:89 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:393 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:544 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 @@ -4064,7 +4075,7 @@ msgstr "Meteor scatter" #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:90 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:394 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:545 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 @@ -4078,7 +4089,7 @@ msgstr "Terrestrische of atmosferische repeater of transponder" #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:91 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:395 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:546 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 @@ -4092,7 +4103,7 @@ msgstr "Regen scatter" #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:92 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:396 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:547 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 @@ -4106,7 +4117,7 @@ msgstr "Satelliet" #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:93 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:397 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:548 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 @@ -4120,7 +4131,7 @@ msgstr "Trans-equatoriaal" #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:94 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:398 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:549 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 @@ -4181,7 +4192,7 @@ msgstr "Toon" #: application/views/hamsat/index.php:32 #: application/views/interface_assets/header.php:210 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:357 +#: application/views/logbookadvanced/index.php:359 #: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 @@ -4202,7 +4213,7 @@ msgstr "Satelliet" #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:118 -#: application/views/logbookadvanced/index.php:366 +#: application/views/logbookadvanced/index.php:368 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:54 @@ -4332,6 +4343,8 @@ msgstr "Niets gevonden!" #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/logbookadvanced/showUpdateResult.php:60 +#: application/views/logbookadvanced/showUpdateResult.php:104 #: application/views/lotw_views/index.php:32 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 @@ -4513,6 +4526,8 @@ msgstr "Tijd" #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 +#: application/views/logbookadvanced/showMissingDxccQsos.php:10 +#: application/views/logbookadvanced/showStateQsos.php:21 #: application/views/public_search/result.php:14 #: application/views/qslcard/searchresult.php:8 #: application/views/qso/components/previous_contacts.php:7 @@ -5183,7 +5198,7 @@ msgstr "Machtigingen" #: application/views/club/permissions.php:250 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:740 +#: application/views/logbookadvanced/index.php:742 #: application/views/notes/main.php:77 application/views/qrz/export.php:44 #: application/views/user/index.php:33 application/views/user/index.php:160 #: application/views/webadif/export.php:45 @@ -5318,8 +5333,8 @@ msgid "Filtering on" msgstr "Filteren op" #: application/views/awards/counties/details.php:13 -#: application/views/logbookadvanced/index.php:426 -#: application/views/logbookadvanced/index.php:911 +#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:922 #: application/views/logbookadvanced/useroptions.php:110 msgid "County" msgstr "County" @@ -5413,8 +5428,8 @@ msgstr "Totaal" #: application/views/gridmap/index.php:229 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 -#: application/views/logbookadvanced/index.php:400 -#: application/views/logbookadvanced/index.php:914 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:925 #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:308 @@ -5478,7 +5493,7 @@ msgstr "Awards - CQ WAZ" #: application/views/awards/dxcc/index.php:41 #: application/views/awards/wpx/index.php:13 #: application/views/gridmap/index.php:19 -#: application/views/logbookadvanced/index.php:270 +#: application/views/logbookadvanced/index.php:272 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" msgstr "Filters" @@ -5490,7 +5505,7 @@ msgstr "Toon CQ Zone-kaart" #: application/views/awards/cq/index.php:55 #: application/views/awards/dxcc/index.php:51 #: application/views/gridmap/index.php:28 -#: application/views/logbookadvanced/index.php:276 +#: application/views/logbookadvanced/index.php:278 msgid "Date Presets" msgstr "Datumvoorkeuren" @@ -5502,55 +5517,55 @@ msgstr "Datumvoorkeuren" #: application/views/dashboard/index.php:408 #: application/views/dashboard/index.php:429 #: application/views/gridmap/index.php:31 -#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:280 msgid "Today" msgstr "Vandaag" #: application/views/awards/cq/index.php:58 #: application/views/awards/dxcc/index.php:54 #: application/views/gridmap/index.php:32 -#: application/views/logbookadvanced/index.php:279 +#: application/views/logbookadvanced/index.php:281 msgid "Yesterday" msgstr "Gisteren" #: application/views/awards/cq/index.php:59 #: application/views/awards/dxcc/index.php:55 #: application/views/gridmap/index.php:33 -#: application/views/logbookadvanced/index.php:280 +#: application/views/logbookadvanced/index.php:282 msgid "Last 7 Days" msgstr "Laatste 7 dagen" #: application/views/awards/cq/index.php:60 #: application/views/awards/dxcc/index.php:56 #: application/views/gridmap/index.php:34 -#: application/views/logbookadvanced/index.php:281 +#: application/views/logbookadvanced/index.php:283 msgid "Last 30 Days" msgstr "Laatste 30 dagen" #: application/views/awards/cq/index.php:61 #: application/views/awards/dxcc/index.php:57 #: application/views/gridmap/index.php:35 -#: application/views/logbookadvanced/index.php:282 +#: application/views/logbookadvanced/index.php:284 msgid "This Month" msgstr "Deze maand" #: application/views/awards/cq/index.php:62 #: application/views/awards/dxcc/index.php:58 #: application/views/gridmap/index.php:36 -#: application/views/logbookadvanced/index.php:283 +#: application/views/logbookadvanced/index.php:285 msgid "Last Month" msgstr "Vorige maand" #: application/views/awards/cq/index.php:63 #: application/views/awards/dxcc/index.php:59 #: application/views/gridmap/index.php:37 -#: application/views/logbookadvanced/index.php:284 +#: application/views/logbookadvanced/index.php:286 msgid "This Year" msgstr "Dit jaar" #: application/views/awards/cq/index.php:64 #: application/views/awards/dxcc/index.php:60 -#: application/views/logbookadvanced/index.php:285 +#: application/views/logbookadvanced/index.php:287 msgid "Last Year" msgstr "Vorig jaar" @@ -5558,7 +5573,7 @@ msgstr "Vorig jaar" #: application/views/awards/dxcc/index.php:61 #: application/views/gridmap/index.php:38 #: application/views/interface_assets/footer.php:52 -#: application/views/logbookadvanced/index.php:286 +#: application/views/logbookadvanced/index.php:288 #: application/views/qso/index.php:757 msgid "Clear" msgstr "Wissen" @@ -5706,7 +5721,7 @@ msgstr "Tabel" #: application/views/awards/waja/index.php:135 #: application/views/awards/wap/index.php:129 #: application/views/awards/was/index.php:133 -#: application/views/logbookadvanced/index.php:813 +#: application/views/logbookadvanced/index.php:821 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Kaart" @@ -5866,8 +5881,8 @@ msgstr "Elke band" #: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:828 -#: application/views/logbookadvanced/index.php:829 +#: application/views/logbookadvanced/index.php:839 +#: application/views/logbookadvanced/index.php:840 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:43 application/views/user/edit.php:723 @@ -5942,7 +5957,7 @@ msgstr "Inclusief verwijderd" #: application/views/bandmap/list.php:339 #: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:217 -#: application/views/logbookadvanced/index.php:473 +#: application/views/logbookadvanced/index.php:475 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:480 @@ -5956,7 +5971,7 @@ msgstr "Antarctica" #: application/views/bandmap/list.php:338 #: application/views/bandmap/list.php:352 #: application/views/logbookadvanced/edit.php:216 -#: application/views/logbookadvanced/index.php:472 +#: application/views/logbookadvanced/index.php:474 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:479 @@ -5970,7 +5985,7 @@ msgstr "Afrika" #: application/views/bandmap/list.php:340 #: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 -#: application/views/logbookadvanced/index.php:475 +#: application/views/logbookadvanced/index.php:477 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:481 @@ -5984,7 +5999,7 @@ msgstr "Azië" #: application/views/bandmap/list.php:341 #: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:220 -#: application/views/logbookadvanced/index.php:476 +#: application/views/logbookadvanced/index.php:478 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:482 @@ -5998,7 +6013,7 @@ msgstr "Europa" #: application/views/bandmap/list.php:342 #: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:218 -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:476 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:483 @@ -6012,7 +6027,7 @@ msgstr "Noord-Amerika" #: application/views/bandmap/list.php:344 #: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:221 -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:479 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:485 @@ -6026,7 +6041,7 @@ msgstr "Zuid-Amerika" #: application/views/bandmap/list.php:343 #: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:222 -#: application/views/logbookadvanced/index.php:478 +#: application/views/logbookadvanced/index.php:480 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:484 @@ -6075,6 +6090,7 @@ msgstr "DXCC-naam" #: application/views/awards/dxcc/index.php:276 #: application/views/awards/iota/index.php:199 #: application/views/awards/wae/index.php:163 +#: application/views/logbookadvanced/statecheckresult.php:10 #: application/views/timeline/index.php:199 #: application/views/timeline/index.php:297 msgid "Prefix" @@ -6353,7 +6369,7 @@ msgstr "Toon IOTA-kaart" #: application/views/contesting/index.php:229 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:872 +#: application/views/logbookadvanced/index.php:883 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:58 #: application/views/lotw/satupdate.php:7 @@ -6381,8 +6397,8 @@ msgstr "Verwijderd" #: application/views/gridmap/index.php:231 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 -#: application/views/logbookadvanced/index.php:414 -#: application/views/logbookadvanced/index.php:917 +#: application/views/logbookadvanced/index.php:416 +#: application/views/logbookadvanced/index.php:928 #: application/views/logbookadvanced/useroptions.php:118 #: application/views/lookup/index.php:8 application/views/qso/edit_ajax.php:316 #: application/views/qso/index.php:515 @@ -6675,7 +6691,8 @@ msgid "Band Categories" msgstr "Banden Categorieën" #: application/views/awards/pl_polska/index.php:372 -#: application/views/logbookadvanced/index.php:772 +#: application/views/logbookadvanced/dbtoolsdialog.php:47 +#: application/views/logbookadvanced/index.php:773 msgid "Fix State" msgstr "Herstel Staat/Provincie" @@ -6825,8 +6842,10 @@ msgid "Reference" msgstr "Referentie" #: application/views/awards/sig/qso_list.php:10 -#: application/views/logbookadvanced/index.php:845 +#: application/views/logbookadvanced/index.php:856 #: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/logbookadvanced/showMissingDxccQsos.php:11 +#: application/views/logbookadvanced/showStateQsos.php:22 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 #: application/views/qso/components/previous_contacts.php:6 @@ -6982,8 +7001,8 @@ msgstr "Awards - Worked All Continents (WAC)" #: application/views/bandmap/list.php:571 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 -#: application/views/logbookadvanced/index.php:468 -#: application/views/logbookadvanced/index.php:956 +#: application/views/logbookadvanced/index.php:470 +#: application/views/logbookadvanced/index.php:967 #: application/views/logbookadvanced/useroptions.php:170 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:476 @@ -7657,8 +7676,8 @@ msgstr "Verse spot (< 5 minuten oud)" #: application/views/bandmap/list.php:510 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 -#: application/views/logbookadvanced/index.php:464 -#: application/views/logbookadvanced/index.php:950 +#: application/views/logbookadvanced/index.php:466 +#: application/views/logbookadvanced/index.php:961 #: application/views/logbookadvanced/useroptions.php:162 #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 @@ -7766,8 +7785,8 @@ msgstr "Spotter" #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:485 -#: application/views/logbookadvanced/index.php:944 +#: application/views/logbookadvanced/index.php:487 +#: application/views/logbookadvanced/index.php:955 #: application/views/logbookadvanced/useroptions.php:154 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:379 #: application/views/view_log/qso.php:228 @@ -8291,7 +8310,6 @@ msgstr "" #: application/views/bands/edit.php:2 #: application/views/logbookadvanced/index.php:53 -#: application/views/update/index.php:35 msgid "WARNING" msgstr "WAARSCHUWING" @@ -8478,7 +8496,7 @@ msgstr "" "referentiecode)." #: application/views/cabrillo/index.php:48 -#: application/views/logbookadvanced/index.php:787 +#: application/views/logbookadvanced/index.php:795 #: application/views/oqrs/showrequests.php:31 #: application/views/qso/index.php:362 #: application/views/station_profile/edit.php:96 @@ -8592,19 +8610,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:187 #: application/views/logbookadvanced/edit.php:193 #: application/views/logbookadvanced/edit.php:199 -#: application/views/logbookadvanced/index.php:509 -#: application/views/logbookadvanced/index.php:520 -#: application/views/logbookadvanced/index.php:553 -#: application/views/logbookadvanced/index.php:564 -#: application/views/logbookadvanced/index.php:576 -#: application/views/logbookadvanced/index.php:587 -#: application/views/logbookadvanced/index.php:600 -#: application/views/logbookadvanced/index.php:611 -#: application/views/logbookadvanced/index.php:622 -#: application/views/logbookadvanced/index.php:631 -#: application/views/logbookadvanced/index.php:646 -#: application/views/logbookadvanced/index.php:654 -#: application/views/logbookadvanced/index.php:663 +#: application/views/logbookadvanced/index.php:511 +#: application/views/logbookadvanced/index.php:522 +#: application/views/logbookadvanced/index.php:555 +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/index.php:578 +#: application/views/logbookadvanced/index.php:589 +#: application/views/logbookadvanced/index.php:602 +#: application/views/logbookadvanced/index.php:613 +#: application/views/logbookadvanced/index.php:624 +#: application/views/logbookadvanced/index.php:633 +#: application/views/logbookadvanced/index.php:648 +#: application/views/logbookadvanced/index.php:656 +#: application/views/logbookadvanced/index.php:665 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:444 #: application/views/qso/edit_ajax.php:477 @@ -8657,19 +8675,19 @@ msgstr "Ja" #: application/views/logbookadvanced/edit.php:188 #: application/views/logbookadvanced/edit.php:194 #: application/views/logbookadvanced/edit.php:200 -#: application/views/logbookadvanced/index.php:510 -#: application/views/logbookadvanced/index.php:521 -#: application/views/logbookadvanced/index.php:554 -#: application/views/logbookadvanced/index.php:565 -#: application/views/logbookadvanced/index.php:577 -#: application/views/logbookadvanced/index.php:588 -#: application/views/logbookadvanced/index.php:601 -#: application/views/logbookadvanced/index.php:612 -#: application/views/logbookadvanced/index.php:623 -#: application/views/logbookadvanced/index.php:632 -#: application/views/logbookadvanced/index.php:647 -#: application/views/logbookadvanced/index.php:655 -#: application/views/logbookadvanced/index.php:664 +#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:567 +#: application/views/logbookadvanced/index.php:579 +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/index.php:603 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/index.php:625 +#: application/views/logbookadvanced/index.php:634 +#: application/views/logbookadvanced/index.php:649 +#: application/views/logbookadvanced/index.php:657 +#: application/views/logbookadvanced/index.php:666 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:443 #: application/views/qso/edit_ajax.php:476 @@ -8802,6 +8820,7 @@ msgstr "Beschikbare machtigingen" #: application/views/club/permissions.php:26 #: application/views/eqsl/download.php:45 +#: application/views/logbookadvanced/statecheckresult.php:13 msgid "Action" msgstr "Actie" @@ -9009,7 +9028,7 @@ msgstr "" #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 -#: application/views/logbookadvanced/index.php:968 +#: application/views/logbookadvanced/index.php:979 #: application/views/logbookadvanced/useroptions.php:186 #: application/views/qrz/export.php:39 #: application/views/qslprint/qslprint.php:32 @@ -9474,7 +9493,7 @@ msgid "Locator" msgstr "Locator" #: application/views/contesting/index.php:69 -#: application/views/logbookadvanced/index.php:875 +#: application/views/logbookadvanced/index.php:886 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/qso/edit_ajax.php:177 msgid "QTH" @@ -9961,14 +9980,14 @@ msgstr "Ontvangen" #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 -#: application/views/logbookadvanced/index.php:511 -#: application/views/logbookadvanced/index.php:522 -#: application/views/logbookadvanced/index.php:555 -#: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/index.php:578 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/index.php:602 -#: application/views/logbookadvanced/index.php:613 +#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:557 +#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:591 +#: application/views/logbookadvanced/index.php:604 +#: application/views/logbookadvanced/index.php:615 #: application/views/oqrs/qsolist.php:57 application/views/oqrs/qsolist.php:99 #: application/views/qslprint/qsolist.php:68 #: application/views/qslprint/qsolist.php:110 @@ -10536,6 +10555,11 @@ msgid "Check for new version" msgstr "Controleer op nieuwe versie" #: application/views/debug/index.php:495 +#: application/views/logbookadvanced/checkresult.php:37 +#: application/views/logbookadvanced/checkresult.php:53 +#: application/views/logbookadvanced/checkresult.php:76 +#: application/views/logbookadvanced/checkresult.php:87 +#: application/views/logbookadvanced/checkresult.php:97 #: application/views/logbookadvanced/index.php:57 msgid "Update now" msgstr "Nu bijwerken" @@ -11756,7 +11780,7 @@ msgstr "" "DXCC wel de correcte is. Bent u zeker, negeer dan deze waarschuwing." #: application/views/interface_assets/footer.php:878 -#: application/views/logbookadvanced/index.php:792 +#: application/views/logbookadvanced/index.php:800 msgid "Callsign: " msgstr "Roepnaam: " @@ -12009,7 +12033,7 @@ msgid "Log" msgstr "Logboek" #: application/views/interface_assets/header.php:398 -#: application/views/logbookadvanced/index.php:689 +#: application/views/logbookadvanced/index.php:691 #: application/views/oqrs/index.php:28 application/views/user/edit.php:491 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" @@ -12090,7 +12114,7 @@ msgid "DCL Export" msgstr "DCL exporteren" #: application/views/interface_assets/header.php:536 -#: application/views/logbookadvanced/index.php:831 +#: application/views/logbookadvanced/index.php:842 msgid "Help" msgstr "Help" @@ -12351,6 +12375,7 @@ msgid "Label types" msgstr "Labeltypen" #: application/views/labels/index.php:81 +#: application/views/logbookadvanced/statecheckresult.php:12 #: application/views/statistics/index.php:70 #: application/views/statistics/index.php:114 msgid "QSOs" @@ -12422,24 +12447,20 @@ msgstr "" "We zullen de oorspronkelijke waarde behouden en een preciezere locator " "toevoegen (bv. JO90AB of JO90AB12) wanneer een overeenkomst zeker is." -#: application/views/logbookadvanced/continentdialog.php:2 -msgid "" -"Update all QSOs with the continent based on the DXCC country of the QSO." +#: application/views/logbookadvanced/checkresult.php:27 +msgid "Distance Check Results" msgstr "" -"Werk alle QSO's bij met het continent op basis van het DXCC-land van het QSO." -#: application/views/logbookadvanced/continentdialog.php:3 -msgid "This is useful if you have imported QSOs without continent information." +#: application/views/logbookadvanced/checkresult.php:28 +#: application/views/logbookadvanced/checkresult.php:44 +#: application/views/logbookadvanced/checkresult.php:60 +#: application/views/logbookadvanced/checkresult.php:72 +#: application/views/logbookadvanced/checkresult.php:83 +#: application/views/logbookadvanced/checkresult.php:94 +msgid "QSOs to update found:" msgstr "" -"Dit is handig als je QSO's hebt geïmporteerd zonder continentinformatie." - -#: application/views/logbookadvanced/continentdialog.php:4 -msgid "" -"Update will only set the continent for QSOs where the continent is empty." -msgstr "" -"Update zal alleen het continent instellen voor QSO's waar het continent leeg " -"is." +#: application/views/logbookadvanced/checkresult.php:31 #: application/views/logbookadvanced/distancedialog.php:2 msgid "" "Update all QSOs with the distance based on your gridsquare set in the " @@ -12450,16 +12471,157 @@ msgstr "" "het stationprofiel, en het locatorvak van de QSO-partner. Afstand wordt " "berekend op basis van of korte route of lange route is ingesteld." +#: application/views/logbookadvanced/checkresult.php:32 #: application/views/logbookadvanced/distancedialog.php:3 msgid "This is useful if you have imported QSOs without distance information." msgstr "" "Dit is handig als je QSO's hebt geïmporteerd zonder afstandsinformatie." +#: application/views/logbookadvanced/checkresult.php:33 #: application/views/logbookadvanced/distancedialog.php:4 msgid "Update will only set the distance for QSOs where the distance is empty." msgstr "" "Bijwerken stelt alleen de afstand in voor QSO's waarbij de afstand leeg is." +#: application/views/logbookadvanced/checkresult.php:43 +msgid "Continent Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:47 +#: application/views/logbookadvanced/continentdialog.php:2 +msgid "" +"Update all QSOs with the continent based on the DXCC country of the QSO." +msgstr "" +"Werk alle QSO's bij met het continent op basis van het DXCC-land van het QSO." + +#: application/views/logbookadvanced/checkresult.php:48 +#: application/views/logbookadvanced/continentdialog.php:3 +msgid "This is useful if you have imported QSOs without continent information." +msgstr "" +"Dit is handig als je QSO's hebt geïmporteerd zonder continentinformatie." + +#: application/views/logbookadvanced/checkresult.php:49 +#: application/views/logbookadvanced/continentdialog.php:4 +msgid "" +"Update will only set the continent for QSOs where the continent is empty." +msgstr "" +"Update zal alleen het continent instellen voor QSO's waar het continent leeg " +"is." + +#: application/views/logbookadvanced/checkresult.php:59 +msgid "DXCC Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:64 +#: application/views/logbookadvanced/statecheckresult.php:30 +msgid "Run fix" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:71 +msgid "CQ Zone Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:82 +msgid "ITU Zone Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:93 +msgid "Gridsquare Check Results" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:4 +msgid "Data Repair Tools" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:6 +msgid "Wiki Help" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:11 +#: application/views/logbookadvanced/index.php:771 +msgid "Fix CQ Zones" +msgstr "Repareer CQ-zones" + +#: application/views/logbookadvanced/dbtoolsdialog.php:12 +msgid "Update missing CQ zone information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:16 +#: application/views/logbookadvanced/dbtoolsdialog.php:28 +#: application/views/logbookadvanced/dbtoolsdialog.php:40 +#: application/views/logbookadvanced/dbtoolsdialog.php:52 +#: application/views/logbookadvanced/dbtoolsdialog.php:64 +#: application/views/logbookadvanced/dbtoolsdialog.php:76 +#: application/views/logbookadvanced/dbtoolsdialog.php:102 +msgid "Check" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:23 +#: application/views/logbookadvanced/index.php:772 +msgid "Fix ITU Zones" +msgstr "Repareer ITU-zones" + +#: application/views/logbookadvanced/dbtoolsdialog.php:24 +msgid "Update missing ITU zone information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:35 +msgid "Fix Continent" +msgstr "Repareer Continent" + +#: application/views/logbookadvanced/dbtoolsdialog.php:36 +msgid "Update missing or incorrect continent information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:48 +msgid "Update missing state/province information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:59 +#: application/views/logbookadvanced/index.php:68 +msgid "Update Distances" +msgstr "Afstanden bijwerken" + +#: application/views/logbookadvanced/dbtoolsdialog.php:60 +msgid "Calculate and update distance information for QSOs" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:71 +msgid "Check QSOs missing DXCC data" +msgstr "Controleer QSOs zonder DXCC-gegevens" + +#: application/views/logbookadvanced/dbtoolsdialog.php:72 +msgid "Identify QSOs that are missing DXCC information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:83 +msgid "Re-check DXCC for all QSOs in the logbook" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:84 +msgid "Use Wavelog to determine DXCC for all QSOs." +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:85 +msgid "This will overwrite ALL existing DXCC information!" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:89 +msgid "Run" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:96 +msgid "Lookup QSOs with missing grid in callbook" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:97 +msgid "Use callbook lookup to set gridsquare" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:98 +msgid "This is limited to 250 callsigns for each run!" +msgstr "" + #: application/views/logbookadvanced/edit.php:1 msgid "Please choose the column to be edited:" msgstr "Kies de kolom die bewerkt moet worden:" @@ -12477,7 +12639,7 @@ msgid "Station Power" msgstr "Zendvermogen" #: application/views/logbookadvanced/edit.php:31 -#: application/views/logbookadvanced/index.php:938 +#: application/views/logbookadvanced/index.php:949 #: application/views/logbookadvanced/useroptions.php:146 #: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:489 #: application/views/view_log/qso.php:481 @@ -12549,8 +12711,8 @@ msgid "QSL Sent Method" msgstr "Wijze van QSL verzending" #: application/views/logbookadvanced/edit.php:53 -#: application/views/logbookadvanced/index.php:639 -#: application/views/logbookadvanced/index.php:878 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/index.php:889 #: application/views/logbookadvanced/useroptions.php:66 msgid "QSL via" msgstr "QSL via" @@ -12575,23 +12737,23 @@ msgstr "Band RX" #: application/views/logbookadvanced/edit.php:189 #: application/views/logbookadvanced/edit.php:195 #: application/views/logbookadvanced/edit.php:202 -#: application/views/logbookadvanced/index.php:479 -#: application/views/logbookadvanced/index.php:804 +#: application/views/logbookadvanced/index.php:481 +#: application/views/logbookadvanced/index.php:812 msgid "Invalid" msgstr "Ongeldig" #: application/views/logbookadvanced/edit.php:177 #: application/views/logbookadvanced/edit.php:203 -#: application/views/logbookadvanced/index.php:524 -#: application/views/logbookadvanced/index.php:568 -#: application/views/logbookadvanced/index.php:591 -#: application/views/logbookadvanced/index.php:615 +#: application/views/logbookadvanced/index.php:526 +#: application/views/logbookadvanced/index.php:570 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:617 msgid "Verified" msgstr "Geverifieerd" #: application/views/logbookadvanced/edit.php:208 -#: application/views/logbookadvanced/index.php:532 -#: application/views/logbookadvanced/index.php:542 +#: application/views/logbookadvanced/index.php:534 +#: application/views/logbookadvanced/index.php:544 #: application/views/oqrs/qsolist.php:73 application/views/oqrs/qsolist.php:115 #: application/views/oqrs/showrequests.php:8 #: application/views/qslprint/qslprint.php:7 @@ -12609,8 +12771,8 @@ msgid "Direct" msgstr "Direct" #: application/views/logbookadvanced/edit.php:209 -#: application/views/logbookadvanced/index.php:531 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/index.php:543 #: application/views/oqrs/qsolist.php:70 application/views/oqrs/qsolist.php:112 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:48 @@ -12630,8 +12792,8 @@ msgid "Bureau" msgstr "Bureau" #: application/views/logbookadvanced/edit.php:210 -#: application/views/logbookadvanced/index.php:533 -#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:545 #: application/views/oqrs/qsolist.php:79 application/views/oqrs/qsolist.php:121 #: application/views/oqrs/showrequests.php:9 #: application/views/qslprint/qslprint.php:8 @@ -12649,8 +12811,8 @@ msgid "Electronic" msgstr "Elektronisch" #: application/views/logbookadvanced/edit.php:211 -#: application/views/logbookadvanced/index.php:534 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/index.php:546 #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 @@ -12974,11 +13136,6 @@ msgstr "Er is een fout opgetreden bij het maken van het verzoek" msgid "You need to select at least 1 location to do a search!" msgstr "Je moet minstens 1 locatie selecteren om te zoeken!" -#: application/views/logbookadvanced/index.php:68 -#: application/views/logbookadvanced/index.php:773 -msgid "Update Distances" -msgstr "Afstanden bijwerken" - #: application/views/logbookadvanced/index.php:69 msgid "QSO records updated." msgstr "QSO-gegevens bijgewerkt." @@ -12991,44 +13148,50 @@ msgstr "Er was een probleem bij het bijwerken van de afstanden." msgid "Distances updated successfully!" msgstr "Afstanden succesvol bijgewerkt!" -#: application/views/logbookadvanced/index.php:292 +#: application/views/logbookadvanced/index.php:73 +msgid "" +"Are you sure you want to fix all QSOs with missing DXCC information? This " +"action cannot be undone." +msgstr "" + +#: application/views/logbookadvanced/index.php:294 msgid "From" msgstr "Van" -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:298 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:851 +#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:862 #: application/views/logbookadvanced/useroptions.php:30 msgid "Dx" msgstr "Dx" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:326 -#: application/views/logbookadvanced/index.php:332 -#: application/views/logbookadvanced/index.php:403 -#: application/views/logbookadvanced/index.php:417 -#: application/views/logbookadvanced/index.php:427 -#: application/views/logbookadvanced/index.php:431 -#: application/views/logbookadvanced/index.php:435 -#: application/views/logbookadvanced/index.php:439 -#: application/views/logbookadvanced/index.php:457 -#: application/views/logbookadvanced/index.php:461 -#: application/views/logbookadvanced/index.php:465 -#: application/views/logbookadvanced/index.php:486 -#: application/views/logbookadvanced/index.php:490 -#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:303 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:419 +#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:441 +#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:467 +#: application/views/logbookadvanced/index.php:488 +#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:642 msgid "Empty" msgstr "Leeg" -#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:380 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Geen/Leeg" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:491 msgid "" "Distance in kilometers. Search will look for distances greater than or equal " "to this value." @@ -13036,18 +13199,18 @@ msgstr "" "Afstand in kilometers. Zoeken zal naar afstanden groter dan of gelijk aan " "deze waarde kijken." -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:502 msgid "QSL Filters" msgstr "QSL-filters" -#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/index.php:508 msgid "QSL sent" msgstr "QSL verzonden" -#: application/views/logbookadvanced/index.php:512 -#: application/views/logbookadvanced/index.php:556 -#: application/views/logbookadvanced/index.php:579 -#: application/views/logbookadvanced/index.php:603 +#: application/views/logbookadvanced/index.php:514 +#: application/views/logbookadvanced/index.php:558 +#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/index.php:605 #: application/views/oqrs/qsolist.php:54 application/views/oqrs/qsolist.php:96 #: application/views/qslprint/qsolist.php:65 #: application/views/qslprint/qsolist.php:107 @@ -13074,18 +13237,18 @@ msgstr "QSL verzonden" msgid "Queued" msgstr "In de wachtrij geplaatst" -#: application/views/logbookadvanced/index.php:513 -#: application/views/logbookadvanced/index.php:523 -#: application/views/logbookadvanced/index.php:557 -#: application/views/logbookadvanced/index.php:567 -#: application/views/logbookadvanced/index.php:580 -#: application/views/logbookadvanced/index.php:590 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/index.php:614 -#: application/views/logbookadvanced/index.php:624 -#: application/views/logbookadvanced/index.php:633 -#: application/views/logbookadvanced/index.php:656 -#: application/views/logbookadvanced/index.php:665 +#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:525 +#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/index.php:582 +#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:606 +#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:626 +#: application/views/logbookadvanced/index.php:635 +#: application/views/logbookadvanced/index.php:658 +#: application/views/logbookadvanced/index.php:667 #: application/views/oqrs/qsolist.php:60 application/views/oqrs/qsolist.php:102 #: application/views/oqrs/qsolist.php:167 #: application/views/oqrs/qsolist.php:182 @@ -13130,273 +13293,270 @@ msgstr "In de wachtrij geplaatst" msgid "Invalid (Ignore)" msgstr "Ongeldig (Negeren)" -#: application/views/logbookadvanced/index.php:517 +#: application/views/logbookadvanced/index.php:519 msgid "QSL received" msgstr "QSL ontvangen" -#: application/views/logbookadvanced/index.php:528 +#: application/views/logbookadvanced/index.php:530 msgid "QSL send. method" msgstr "QSL verzendmethode" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:540 msgid "QSL recv. method" msgstr "QSL ontvangstmethode" -#: application/views/logbookadvanced/index.php:550 +#: application/views/logbookadvanced/index.php:552 msgid "LoTW sent" msgstr "LoTW verzonden" -#: application/views/logbookadvanced/index.php:561 +#: application/views/logbookadvanced/index.php:563 msgid "LoTW received" msgstr "LoTW ontvangen" -#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:575 msgid "Clublog sent" msgstr "Clublog verzonden" -#: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/index.php:586 msgid "Clublog received" msgstr "Clublog ontvangen" -#: application/views/logbookadvanced/index.php:597 +#: application/views/logbookadvanced/index.php:599 msgid "eQSL sent" msgstr "eQSL verzonden" -#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/index.php:610 msgid "eQSL received" msgstr "eQSL ontvangen" -#: application/views/logbookadvanced/index.php:619 +#: application/views/logbookadvanced/index.php:621 msgid "DCL sent" msgstr "DCL verzonden" -#: application/views/logbookadvanced/index.php:628 +#: application/views/logbookadvanced/index.php:630 msgid "DCL received" msgstr "DCL ontvangen" -#: application/views/logbookadvanced/index.php:643 +#: application/views/logbookadvanced/index.php:645 msgid "QSL Images" msgstr "QSL-afbeeldingen" -#: application/views/logbookadvanced/index.php:651 +#: application/views/logbookadvanced/index.php:653 msgid "QRZ sent" msgstr "QRZ verzonden" -#: application/views/logbookadvanced/index.php:660 +#: application/views/logbookadvanced/index.php:662 msgid "QRZ received" msgstr "QRZ ontvangen" -#: application/views/logbookadvanced/index.php:676 +#: application/views/logbookadvanced/index.php:678 msgid "Quickfilters" msgstr "Snelfilters" -#: application/views/logbookadvanced/index.php:681 +#: application/views/logbookadvanced/index.php:683 msgid "Quicksearch with selected: " msgstr "Snelzoeken met geselecteerd: " -#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:688 msgid "Search Date" msgstr "Zoek op datum" -#: application/views/logbookadvanced/index.php:692 +#: application/views/logbookadvanced/index.php:694 msgid "Search DXCC" msgstr "Zoek DXCC" -#: application/views/logbookadvanced/index.php:695 +#: application/views/logbookadvanced/index.php:697 msgid "Search State" msgstr "Zoek op Staat/Provincie" -#: application/views/logbookadvanced/index.php:698 +#: application/views/logbookadvanced/index.php:700 msgid "Search Gridsquare" msgstr "Zoek locatorvak" -#: application/views/logbookadvanced/index.php:701 +#: application/views/logbookadvanced/index.php:703 msgid "Search CQ Zone" msgstr "Zoek CQ Zone" -#: application/views/logbookadvanced/index.php:704 +#: application/views/logbookadvanced/index.php:706 msgid "Search ITU Zone" msgstr "Zoek ITU-zone" -#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:709 msgid "Search Mode" msgstr "Zoek op modus" -#: application/views/logbookadvanced/index.php:710 +#: application/views/logbookadvanced/index.php:712 msgid "Search Band" msgstr "Zoek op band" -#: application/views/logbookadvanced/index.php:713 +#: application/views/logbookadvanced/index.php:715 msgid "Search IOTA" msgstr "Zoek IOTA" -#: application/views/logbookadvanced/index.php:716 +#: application/views/logbookadvanced/index.php:718 msgid "Search SOTA" msgstr "Zoek SOTA" -#: application/views/logbookadvanced/index.php:719 +#: application/views/logbookadvanced/index.php:721 msgid "Search POTA" msgstr "Zoek POTA" -#: application/views/logbookadvanced/index.php:722 +#: application/views/logbookadvanced/index.php:724 msgid "Search WWFF" msgstr "Zoek WWFF" -#: application/views/logbookadvanced/index.php:725 +#: application/views/logbookadvanced/index.php:727 msgid "Search Operator" msgstr "Zoek op operator" -#: application/views/logbookadvanced/index.php:744 +#: application/views/logbookadvanced/index.php:746 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" "Waarschuwing! Weet je zeker dat je de gemarkeerde QSO's wilt verwijderen?" -#: application/views/logbookadvanced/index.php:745 +#: application/views/logbookadvanced/index.php:747 msgid " QSO(s) will be deleted" msgstr " QSO(s) worden verwijderd" -#: application/views/logbookadvanced/index.php:749 +#: application/views/logbookadvanced/index.php:751 msgid "With selected: " msgstr "Met geselecteerd: " -#: application/views/logbookadvanced/index.php:753 +#: application/views/logbookadvanced/index.php:755 #: application/views/qso/edit_ajax.php:725 msgid "Update from Callbook" msgstr "Update van Callbook" -#: application/views/logbookadvanced/index.php:754 +#: application/views/logbookadvanced/index.php:756 msgid "Queue Bureau" msgstr "Wachtrij Bureau" -#: application/views/logbookadvanced/index.php:755 +#: application/views/logbookadvanced/index.php:757 msgid "Queue Direct" msgstr "Wachtrij Direct" -#: application/views/logbookadvanced/index.php:756 +#: application/views/logbookadvanced/index.php:758 msgid "Queue Electronic" msgstr "Wachtrij Elektronisch" -#: application/views/logbookadvanced/index.php:757 +#: application/views/logbookadvanced/index.php:759 msgid "Sent (Bureau)" msgstr "Verzonden (Bureau)" -#: application/views/logbookadvanced/index.php:758 +#: application/views/logbookadvanced/index.php:760 msgid "Sent (Direct)" msgstr "Verzonden (Direct)" -#: application/views/logbookadvanced/index.php:759 +#: application/views/logbookadvanced/index.php:761 msgid "Sent (Electronic)" msgstr "Verzonden (Elektronisch)" -#: application/views/logbookadvanced/index.php:760 +#: application/views/logbookadvanced/index.php:762 msgid "Not Sent" msgstr "Niet verzonden" -#: application/views/logbookadvanced/index.php:761 +#: application/views/logbookadvanced/index.php:763 msgid "QSL Not Required" msgstr "QSL niet vereist" -#: application/views/logbookadvanced/index.php:762 +#: application/views/logbookadvanced/index.php:764 msgid "Not Received" msgstr "Niet ontvangen" -#: application/views/logbookadvanced/index.php:763 +#: application/views/logbookadvanced/index.php:765 msgid "Received (Bureau)" msgstr "Ontvangen (Bureau)" -#: application/views/logbookadvanced/index.php:764 +#: application/views/logbookadvanced/index.php:766 msgid "Received (Direct)" msgstr "Ontvangen (Direct)" -#: application/views/logbookadvanced/index.php:765 +#: application/views/logbookadvanced/index.php:767 msgid "Received (Electronic)" msgstr "Ontvangen (Elektronisch)" -#: application/views/logbookadvanced/index.php:766 +#: application/views/logbookadvanced/index.php:768 msgid "Create ADIF" msgstr "Maak ADIF" -#: application/views/logbookadvanced/index.php:767 +#: application/views/logbookadvanced/index.php:769 msgid "Print Label" msgstr "Label afdrukken" -#: application/views/logbookadvanced/index.php:768 +#: application/views/logbookadvanced/index.php:770 msgid "QSL Slideshow" msgstr "QSL Diavoorstelling" -#: application/views/logbookadvanced/index.php:769 -msgid "Fix CQ Zones" -msgstr "Repareer CQ-zones" +#: application/views/logbookadvanced/index.php:777 +msgid "With ALL QSOs: " +msgstr "" -#: application/views/logbookadvanced/index.php:770 -msgid "Fix ITU Zones" -msgstr "Repareer ITU-zones" +#: application/views/logbookadvanced/index.php:781 +#: application/views/logbookadvanced/index.php:832 +msgid "Database Tools" +msgstr "" -#: application/views/logbookadvanced/index.php:771 -msgid "Fix Continent" -msgstr "Repareer Continent" - -#: application/views/logbookadvanced/index.php:780 +#: application/views/logbookadvanced/index.php:788 #: application/views/oqrs/showrequests.php:58 msgid "# Results" msgstr "Hoeveelheid resultaten" -#: application/views/logbookadvanced/index.php:801 +#: application/views/logbookadvanced/index.php:809 msgid "Dupes" msgstr "Duplicaten" -#: application/views/logbookadvanced/index.php:817 +#: application/views/logbookadvanced/index.php:825 msgid "Globe map" msgstr "Wereldbol" -#: application/views/logbookadvanced/index.php:848 +#: application/views/logbookadvanced/index.php:859 #: application/views/logbookadvanced/useroptions.php:26 msgid "De" msgstr "Van" -#: application/views/logbookadvanced/index.php:893 +#: application/views/logbookadvanced/index.php:904 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 #: application/views/timeline/index.php:72 application/views/user/edit.php:627 msgid "QRZ" msgstr "QRZ" -#: application/views/logbookadvanced/index.php:899 +#: application/views/logbookadvanced/index.php:910 #: application/views/logbookadvanced/useroptions.php:94 #: application/views/qso/edit_ajax.php:527 msgid "QSL Msg (S)" msgstr "QSL Bericht (S)" -#: application/views/logbookadvanced/index.php:902 +#: application/views/logbookadvanced/index.php:913 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/qso/edit_ajax.php:536 msgid "QSL Msg (R)" msgstr "QSL Bericht (R)" -#: application/views/logbookadvanced/index.php:953 +#: application/views/logbookadvanced/index.php:964 #: application/views/logbookadvanced/useroptions.php:166 msgid "My Refs" msgstr "Mijn referenties" -#: application/views/logbookadvanced/index.php:962 +#: application/views/logbookadvanced/index.php:973 msgid "Ant az" msgstr "Ant Az" -#: application/views/logbookadvanced/index.php:962 +#: application/views/logbookadvanced/index.php:973 #: application/views/logbookadvanced/useroptions.php:178 msgid "Antenna azimuth" msgstr "Antenne-azimut" -#: application/views/logbookadvanced/index.php:965 +#: application/views/logbookadvanced/index.php:976 msgid "Ant el" msgstr "Ant El" -#: application/views/logbookadvanced/index.php:965 +#: application/views/logbookadvanced/index.php:976 #: application/views/logbookadvanced/useroptions.php:182 msgid "Antenna elevation" msgstr "Antenne elevatie" -#: application/views/logbookadvanced/index.php:971 +#: application/views/logbookadvanced/index.php:982 #: application/views/logbookadvanced/useroptions.php:190 msgid "Station power" msgstr "Station vermogen" @@ -13416,6 +13576,130 @@ msgstr "Vorige" msgid "Next" msgstr "Volgende" +#: application/views/logbookadvanced/showMissingDxccQsos.php:5 +#, php-format +msgid "Found %s QSO(s) missing DXCC information." +msgstr "" + +#: application/views/logbookadvanced/showMissingDxccQsos.php:17 +#: application/views/logbookadvanced/showStateQsos.php:28 +#: application/views/oqrs/qsolist.php:11 +#: application/views/qslprint/qslprint.php:31 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 +#: application/views/search/cqzones_result.php:16 +#: application/views/search/ituzones_result.php:16 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/search_result_ajax.php:130 +#: application/views/user/edit.php:529 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:228 +#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:672 +#: application/views/view_log/qso.php:676 +#: application/views/view_log/qso.php:680 +#: application/views/view_log/qso.php:686 +#: application/views/view_log/qso.php:693 +#: application/views/view_log/qso.php:700 +#: application/views/view_log/qso.php:707 +#: application/views/view_log/qso.php:714 +#: application/views/view_log/qso.php:721 +#: application/views/view_log/qso.php:728 +#: application/views/view_log/qso.php:735 +#: application/views/view_log/qso.php:742 +#: application/views/view_log/qso.php:747 +msgid "Station" +msgstr "Station" + +#: application/views/logbookadvanced/showMissingDxccQsos.php:38 +#: application/views/logbookadvanced/showStateQsos.php:49 +msgid "No Issues Found" +msgstr "" + +#: application/views/logbookadvanced/showStateQsos.php:16 +#, php-format +msgid "Found %s QSO(s) missing state information for DXCC %s." +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:31 +msgid "Results for DXCC update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:34 +#: application/views/logbookadvanced/showUpdateResult.php:40 +msgid "The number of QSOs updated for missing DXCC IDs was" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:36 +#: application/views/logbookadvanced/showUpdateResult.php:42 +msgid "The number of QSOs re-checked for DXCC was" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:55 +#: application/views/logbookadvanced/showUpdateResult.php:99 +msgid "These QSOs could not be updated:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:61 +#: application/views/logbookadvanced/showUpdateResult.php:107 +msgid "Reason" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:62 +#: application/views/logbookadvanced/showUpdateResult.php:106 +#: application/views/search/lotw_unconfirmed.php:32 +msgid "Station location" +msgstr "Locatie van het station" + +#: application/views/logbookadvanced/showUpdateResult.php:83 +msgid "Results for state update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:85 +#: application/views/logbookadvanced/showUpdateResult.php:87 +msgid "The number of QSOs updated for state/province in" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:130 +msgid "Results for continent update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:131 +msgid "The number of QSOs updated for continent is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:135 +msgid "Results for distance update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:136 +msgid "The number of QSOs updated for distance is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:140 +msgid "Results for CQ zone update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:141 +msgid "The number of QSOs updated for CQ zone is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:145 +msgid "Results for ITU zone update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:146 +msgid "The number of QSOs updated for ITU zone is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:150 +msgid "Results for gridsquare update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:151 +msgid "The number of QSOs updated for gridsquare is" +msgstr "" + #: application/views/logbookadvanced/startatform.php:15 msgid "Include Via" msgstr "Inclusief Via" @@ -13428,6 +13712,21 @@ msgstr "Inclusief QSLMSG" msgid "Include TNX message" msgstr "Inclusief TNX-bericht" +#: application/views/logbookadvanced/statecheckresult.php:3 +#: application/views/logbookadvanced/statecheckresult.php:42 +msgid "State Check Results" +msgstr "" + +#: application/views/logbookadvanced/statecheckresult.php:4 +msgid "" +"QSOs with missing state and gridsquares with 6 or more characters found for " +"the following DXCCs:" +msgstr "" + +#: application/views/logbookadvanced/statecheckresult.php:43 +msgid "No QSOs were found where state information can be fixed." +msgstr "" + #: application/views/logbookadvanced/statedialog.php:2 msgid "" "Update QSOs with state/province information based on gridsquare and DXCC " @@ -14269,34 +14568,6 @@ msgstr "Je e-mailadres waar we je kunnen bereiken" msgid "Send not in log request" msgstr "Verzoek niet in logboek opnemen" -#: application/views/oqrs/qsolist.php:11 -#: application/views/qslprint/qslprint.php:31 -#: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 -#: application/views/search/cqzones_result.php:16 -#: application/views/search/ituzones_result.php:16 -#: application/views/search/lotw_unconfirmed_result.php:11 -#: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:529 -#: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:228 -#: application/views/view_log/qso.php:668 -#: application/views/view_log/qso.php:672 -#: application/views/view_log/qso.php:676 -#: application/views/view_log/qso.php:680 -#: application/views/view_log/qso.php:686 -#: application/views/view_log/qso.php:693 -#: application/views/view_log/qso.php:700 -#: application/views/view_log/qso.php:707 -#: application/views/view_log/qso.php:714 -#: application/views/view_log/qso.php:721 -#: application/views/view_log/qso.php:728 -#: application/views/view_log/qso.php:735 -#: application/views/view_log/qso.php:742 -#: application/views/view_log/qso.php:747 -msgid "Station" -msgstr "Station" - #: application/views/oqrs/qsolist.php:76 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 @@ -15832,10 +16103,6 @@ msgstr "" "De zoekopdracht toont QSO's die niet bevestigd zijn op LoTW, maar de " "gewerkte roepnaam is na jouw QSO-datum geüpload naar LoTW." -#: application/views/search/lotw_unconfirmed.php:32 -msgid "Station location" -msgstr "Locatie van het station" - #: application/views/search/lotw_unconfirmed_result.php:10 msgid "Last LoTW upload" msgstr "Laatste LoTW-upload" @@ -16703,6 +16970,10 @@ msgid "" "analytics. Great for when you're operating in multiple locations but they " "are part of the same DXCC or VUCC Circle." msgstr "" +"Stationlogboeken stellen je in staat om stationlocaties te groeperen, zodat " +"je alle locaties in één sessie kunt zien van de logboekgebieden tot de " +"analyses. Geweldig voor wanneer je op meerdere locaties werkt, maar ze deel " +"uitmaken van dezelfde DXCC of VUCC-cirkel." #: application/views/stationsetup/stationsetup.php:35 msgid "Edit Linked locations" @@ -17103,42 +17374,6 @@ msgstr "DXCC-gegevens bijwerken" msgid "Status:" msgstr "Status:" -#: application/views/update/index.php:30 -msgid "Apply DXCC Data to Logbook" -msgstr "DXCC-gegevens toepassen op logboek" - -#: application/views/update/index.php:32 -msgid "" -"After updating, Wavelog can fill in missing callsign information in the " -"logbook using the newly-obtained DXCC data.\n" -"\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that are " -"missing DXCC metadata or to re-check the entire logbook\n" -"\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." -msgstr "" -"Na de update kan Wavelog ontbrekende roepnaaminformatie in het logboek " -"invullen met de nieuw verkregen DXCC-gegevens. Je kunt ervoor kiezen om " -"alleen de QSO's in het logboek te controleren die DXCC-metadata missen, of " -"om het hele logboek opnieuw te controleren en bestaande metadata bij te " -"werken, voor het geval deze is gewijzigd." - -#: application/views/update/index.php:35 -msgid "" -"This affects ALL QSOs of ANY user on this instance. The function is " -"deprectated and will be removed in a future version of Wavelog. As " -"replacement use the Logbook-Advanced!" -msgstr "" -"Dit beïnvloedt ALLE QSO's van ELKE gebruiker op deze server. De functie is " -"verouderd en zal in een toekomstige versie van Wavelog worden verwijderd. " -"Gebruik als vervanging het Logboek-Geavanceerd!" - -#: application/views/update/index.php:42 -msgid "Check QSOs missing DXCC data" -msgstr "Controleer QSOs zonder DXCC-gegevens" - -#: application/views/update/index.php:51 -msgid "Re-check all QSOs in logbook" -msgstr "Controleer alle QSOs in het logboek opnieuw" - #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "Verwijder gebruikersaccount" @@ -17371,7 +17606,7 @@ msgstr "DX-waterval" #: application/views/user/edit.php:450 msgid "squelched" -msgstr "" +msgstr "onderdrukt" #: application/views/user/edit.php:453 msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." @@ -17529,7 +17764,7 @@ msgstr "" #: application/views/user/edit.php:688 msgid "Show Fields on QSO Tab" -msgstr "" +msgstr "Velden tonen op QSO-tabblad" #: application/views/user/edit.php:692 msgid "" @@ -18510,6 +18745,35 @@ msgstr "Verzoek indienen" msgid "Rcvd" msgstr "Ontvangen" +#~ msgid "Apply DXCC Data to Logbook" +#~ msgstr "DXCC-gegevens toepassen op logboek" + +#~ msgid "" +#~ "After updating, Wavelog can fill in missing callsign information in the " +#~ "logbook using the newly-obtained DXCC data.\n" +#~ "\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that " +#~ "are missing DXCC metadata or to re-check the entire logbook\n" +#~ "\t\t\t\t\t\t\tand update existing metadata as well, in case it has " +#~ "changed." +#~ msgstr "" +#~ "Na de update kan Wavelog ontbrekende roepnaaminformatie in het logboek " +#~ "invullen met de nieuw verkregen DXCC-gegevens. Je kunt ervoor kiezen om " +#~ "alleen de QSO's in het logboek te controleren die DXCC-metadata missen, " +#~ "of om het hele logboek opnieuw te controleren en bestaande metadata bij " +#~ "te werken, voor het geval deze is gewijzigd." + +#~ msgid "" +#~ "This affects ALL QSOs of ANY user on this instance. The function is " +#~ "deprectated and will be removed in a future version of Wavelog. As " +#~ "replacement use the Logbook-Advanced!" +#~ msgstr "" +#~ "Dit beïnvloedt ALLE QSO's van ELKE gebruiker op deze server. De functie " +#~ "is verouderd en zal in een toekomstige versie van Wavelog worden " +#~ "verwijderd. Gebruik als vervanging het Logboek-Geavanceerd!" + +#~ msgid "Re-check all QSOs in logbook" +#~ msgstr "Controleer alle QSOs in het logboek opnieuw" + #~ msgid "Show Reference Fields on QSO Tab" #~ msgstr "Toon referentievelden op QSO-tabblad" diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.mo b/application/locale/pl_PL/LC_MESSAGES/messages.mo index 4e1cdd1f8..75965fbb7 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 456484ef1..ff3a057fe 100644 --- a/application/locale/pl_PL/LC_MESSAGES/messages.po +++ b/application/locale/pl_PL/LC_MESSAGES/messages.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-12-13 14:06+0000\n" +"POT-Creation-Date: 2025-12-19 07:34+0000\n" "PO-Revision-Date: 2025-12-03 07:44+0000\n" "Last-Translator: Szymon \n" "Language-Team: Polish \n" "Language-Team: Portuguese (Portugal) \n" "Language-Team: Russian \n" "Language-Team: Slovak \n" "Language-Team: Albanian \n" "Language-Team: Serbian \n" "Language-Team: Swedish \n" @@ -111,8 +111,7 @@ msgstr "" #: application/controllers/Themes.php:17 #: application/controllers/Timeline.php:10 #: application/controllers/Timeplotter.php:11 -#: application/controllers/Update.php:22 application/controllers/Update.php:333 -#: application/controllers/Update.php:344 application/controllers/User.php:14 +#: application/controllers/Update.php:22 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 #: application/controllers/User.php:384 application/controllers/User.php:385 @@ -333,8 +332,8 @@ msgstr "Diplom - %s" #: application/views/contesting/index.php:63 #: application/views/interface_assets/header.php:240 #: application/views/logbookadvanced/edit.php:25 -#: application/views/logbookadvanced/index.php:430 -#: application/views/logbookadvanced/index.php:929 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:940 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 @@ -351,9 +350,12 @@ msgstr "DOK" #: application/views/interface_assets/header.php:192 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:26 -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:905 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:916 #: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/logbookadvanced/showMissingDxccQsos.php:16 +#: application/views/logbookadvanced/showStateQsos.php:27 +#: application/views/logbookadvanced/statecheckresult.php:11 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 @@ -438,7 +440,7 @@ msgstr " och " #: 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 -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:436 #: application/views/logbookadvanced/useroptions.php:130 #: application/views/lookup/index.php:10 #: application/views/qslcard/searchresult.php:17 @@ -465,7 +467,7 @@ msgstr "SOTA" #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:458 #: application/views/logbookadvanced/useroptions.php:138 #: application/views/lookup/index.php:12 #: application/views/qso/award_tabs.php:65 @@ -487,8 +489,8 @@ msgstr "WWFF" #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 #: application/views/logbookadvanced/edit.php:30 -#: application/views/logbookadvanced/index.php:438 -#: application/views/logbookadvanced/index.php:923 +#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:934 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 @@ -687,8 +689,8 @@ msgstr "Klubbmedlem ADIF" msgid "Club Member" msgstr "Klubbmedlem" -#: application/controllers/Club.php:45 application/models/Club_model.php:75 -#: application/models/Club_model.php:149 application/models/Club_model.php:191 +#: application/controllers/Club.php:45 application/models/Club_model.php:107 +#: application/models/Club_model.php:181 application/models/Club_model.php:223 msgid "Invalid User ID!" msgstr "Ogiltigt användar-ID!" @@ -704,8 +706,8 @@ msgstr "Klubbbehörigheter" #: application/controllers/Club.php:119 application/controllers/Club.php:148 #: application/controllers/Club.php:175 application/models/Club_model.php:22 -#: application/models/Club_model.php:70 application/models/Club_model.php:144 -#: application/models/Club_model.php:186 +#: application/models/Club_model.php:102 application/models/Club_model.php:176 +#: application/models/Club_model.php:218 msgid "Invalid Club ID!" msgstr "Ogiltigt klubb-ID!" @@ -904,7 +906,7 @@ msgstr "DCL-nyckelimport" #: application/controllers/Dcl.php:68 application/views/dcl_views/import.php:3 #: application/views/dcl_views/index.php:3 -#: application/views/logbookadvanced/index.php:896 +#: application/views/logbookadvanced/index.php:907 #: application/views/logbookadvanced/useroptions.php:90 #: application/views/qso/edit_ajax.php:434 #: application/views/search/search_result_ajax.php:127 @@ -1055,27 +1057,27 @@ msgstr "Inget sådant eQSL QTH Smeknamn: %s" #: application/controllers/Eqsl.php:312 msgid "QSO not found or not accessible" -msgstr "" +msgstr "QSO hittades inte eller är inte tillgängligt" #: application/controllers/Eqsl.php:330 msgid "User not found" -msgstr "" +msgstr "Användare hittades inte" #: application/controllers/Eqsl.php:339 msgid "eQSL password not configured for this user" -msgstr "" +msgstr "eQSL-lösenord är inte konfigurerat för den här användaren" #: application/controllers/Eqsl.php:357 msgid "Failed to fetch eQSL image data" -msgstr "" +msgstr "Det gick inte att hämta eQSL-bilddata" #: application/controllers/Eqsl.php:376 msgid "eQSL image not available" -msgstr "" +msgstr "eQSL-bild inte tillgänglig" #: application/controllers/Eqsl.php:395 msgid "Failed to download eQSL image" -msgstr "" +msgstr "Det gick inte att ladda ner eQSL-bild" #: application/controllers/Eqsl.php:495 msgid "eQSL Tools" @@ -1314,7 +1316,7 @@ msgstr "Loggbok" #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:171 #: application/views/interface_assets/footer.php:106 -#: application/views/logbookadvanced/index.php:884 +#: application/views/logbookadvanced/index.php:895 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:30 @@ -1448,9 +1450,11 @@ msgstr "eQSL" #: application/views/interface_assets/footer.php:121 #: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:335 -#: application/views/logbookadvanced/index.php:854 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:865 #: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/logbookadvanced/showMissingDxccQsos.php:12 +#: application/views/logbookadvanced/showStateQsos.php:23 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:40 #: application/views/oqrs/notinlogform.php:11 @@ -1499,7 +1503,7 @@ msgstr "Trafiksätt" #: application/views/contesting/index.php:180 #: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:857 +#: application/views/logbookadvanced/index.php:868 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -1528,7 +1532,7 @@ msgstr "RST (S)" #: application/views/contesting/index.php:204 #: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:860 +#: application/views/logbookadvanced/index.php:871 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1578,8 +1582,8 @@ msgstr "Land" #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/edit.php:28 -#: application/views/logbookadvanced/index.php:444 -#: application/views/logbookadvanced/index.php:920 +#: application/views/logbookadvanced/index.php:446 +#: application/views/logbookadvanced/index.php:931 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/lookup/index.php:7 @@ -1610,9 +1614,11 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 #: application/views/logbookadvanced/edit.php:96 -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:908 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:919 #: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/logbookadvanced/showMissingDxccQsos.php:14 +#: application/views/logbookadvanced/showStateQsos.php:25 #: application/views/logbookadvanced/useroptions.php:106 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 @@ -1642,9 +1648,12 @@ msgstr "Delstat" #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:869 +#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:880 #: application/views/logbookadvanced/qslcarousel.php:39 +#: application/views/logbookadvanced/showMissingDxccQsos.php:15 +#: application/views/logbookadvanced/showStateQsos.php:26 +#: application/views/logbookadvanced/showUpdateResult.php:105 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/lookup/index.php:6 #: application/views/qslcard/confirmationresult.php:19 @@ -1685,8 +1694,8 @@ msgstr "Lokatorruta" #: application/views/gridmap/index.php:225 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 -#: application/views/logbookadvanced/index.php:489 -#: application/views/logbookadvanced/index.php:959 +#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:970 #: application/views/logbookadvanced/useroptions.php:174 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 @@ -1746,9 +1755,11 @@ msgstr "Avstånd" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:56 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:863 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:874 #: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/logbookadvanced/showMissingDxccQsos.php:13 +#: application/views/logbookadvanced/showStateQsos.php:24 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 #: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 @@ -1796,7 +1807,7 @@ msgstr "Band" #: application/views/bandmap/list.php:567 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 -#: application/views/logbookadvanced/index.php:866 +#: application/views/logbookadvanced/index.php:877 #: application/views/logbookadvanced/useroptions.php:50 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 @@ -1822,8 +1833,8 @@ msgstr "Frekvens" #: application/controllers/Radio.php:43 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:460 -#: application/views/logbookadvanced/index.php:941 +#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:952 #: application/views/logbookadvanced/useroptions.php:150 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 @@ -1851,7 +1862,7 @@ msgstr "Operatör" #: application/views/dxatlas/index.php:65 #: application/views/interface_assets/footer.php:822 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:319 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 @@ -2330,7 +2341,7 @@ msgid "Timestamp" msgstr "Tidsstämpel" #: application/controllers/Radio.php:49 -#: application/views/logbookadvanced/index.php:821 +#: application/views/logbookadvanced/index.php:829 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:185 @@ -2369,7 +2380,7 @@ msgstr "Standard (klicka för att släppa)" #: application/views/interface_assets/footer.php:682 #: application/views/interface_assets/footer.php:691 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:808 +#: application/views/logbookadvanced/index.php:816 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 #: application/views/satellite/index.php:58 #: application/views/search/stored_queries.php:21 @@ -2392,7 +2403,7 @@ msgstr "Redigera" #: application/views/interface_assets/footer.php:2800 #: application/views/interface_assets/footer.php:2818 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:824 +#: application/views/logbookadvanced/index.php:835 #: application/views/lotw_views/index.php:134 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 @@ -2500,7 +2511,7 @@ msgstr "Satellittimers" #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 #: application/views/interface_assets/header.php:399 -#: application/views/logbookadvanced/index.php:797 +#: application/views/logbookadvanced/index.php:805 #: application/views/oqrs/index.php:30 #: application/views/oqrs/showrequests.php:69 #: application/views/qslcard/searchform.php:8 @@ -2843,83 +2854,83 @@ msgstr "Dxcc-undantag:" msgid "Dxcc Prefixes:" msgstr "Dxcc-prefix:" -#: application/controllers/Update.php:362 +#: application/controllers/Update.php:340 msgid "SCP Update complete. Result: " msgstr "SCP-uppdatering slutförd. Resultat: " -#: application/controllers/Update.php:364 +#: application/controllers/Update.php:342 msgid "SCP Update failed. Result: " msgstr "SCP-uppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:401 +#: application/controllers/Update.php:379 msgid "LoTW Users Update complete. Result: " msgstr "LoTW-användaruppdatering slutförd. Resultat: " -#: application/controllers/Update.php:403 +#: application/controllers/Update.php:381 msgid "LoTW Users Update failed. Result: " msgstr "LoTW-användaruppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:438 +#: application/controllers/Update.php:416 msgid "DOK Update complete. Result: " msgstr "DOK-uppdatering slutförd. Resultat: " -#: application/controllers/Update.php:440 +#: application/controllers/Update.php:418 msgid "DOK Update failed. Result: " msgstr "DOK-uppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:473 +#: application/controllers/Update.php:451 msgid "SOTA Update complete. Result: " msgstr "SOTA-uppdatering slutförd. Resultat: " -#: application/controllers/Update.php:475 +#: application/controllers/Update.php:453 msgid "SOTA Update failed. Result: " msgstr "SOTA-uppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:508 +#: application/controllers/Update.php:486 msgid "WWFF Update complete. Result: " msgstr "WWFF-uppdatering slutförd. Resultat: " -#: application/controllers/Update.php:510 +#: application/controllers/Update.php:488 msgid "WWFF Update failed. Result: " msgstr "WWFF-uppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:544 +#: application/controllers/Update.php:522 msgid "HAMqsl Update complete. Result: " msgstr "HAMqsl-uppdatering klar. Resultat: " -#: application/controllers/Update.php:546 +#: application/controllers/Update.php:524 msgid "HAMqsl Update failed. Result: " msgstr "HAMqsl-uppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:579 +#: application/controllers/Update.php:557 msgid "POTA Update complete. Result: " msgstr "POTA-uppdatering slutförd. Resultat: " -#: application/controllers/Update.php:581 +#: application/controllers/Update.php:559 msgid "POTA Update failed. Result: " msgstr "POTA-uppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:610 +#: application/controllers/Update.php:588 msgid "TLE Update complete. Result: " msgstr "TLE-uppdatering slutförd. Resultat: " -#: application/controllers/Update.php:612 +#: application/controllers/Update.php:590 msgid "TLE Update failed. Result: " msgstr "TLE-uppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:639 +#: application/controllers/Update.php:617 msgid "LoTW SAT Update" msgstr "LoTW SAT-uppdatering" -#: application/controllers/Update.php:667 +#: application/controllers/Update.php:645 msgid "Update of Hams of Note" msgstr "Uppdatering av Hams of Note" -#: application/controllers/Update.php:707 +#: application/controllers/Update.php:685 msgid "VUCC Grid file update complete. Result: " msgstr "VUCC-locatorfiluppdatering slutförd. Resultat: " -#: application/controllers/Update.php:709 +#: application/controllers/Update.php:687 msgid "VUCC Grid file update failed. Result: " msgstr "VUCC-lokatorfiluppdatering misslyckades. Resultat: " @@ -3284,7 +3295,7 @@ msgstr "QRZCQ-fel" #: application/libraries/Callbook.php:155 msgid "Error obtaining a session key for HamQTH query" -msgstr "" +msgstr "Fel vid erhållande av en sessionsnyckel för HamQTH-fråga" #: application/libraries/Cbr_parser.php:111 #: application/libraries/Cbr_parser.php:160 @@ -3377,11 +3388,11 @@ msgctxt "Division Name (States in various countries)." msgid "City / Ku / Gun" msgstr "Stad / Ku / Gun" -#: application/models/Club_model.php:154 +#: application/models/Club_model.php:186 msgid "Invalid Permission Level!" msgstr "Ogiltig behörighetsnivå!" -#: application/models/Club_model.php:169 +#: application/models/Club_model.php:201 msgid "Error adding Club Member!" msgstr "Fel vid tillägg av klubbmedlem!" @@ -3537,7 +3548,7 @@ msgstr "POTA-referens redan i loggen" msgid "QSO updated" msgstr "QSO uppdaterad" -#: application/models/Logbook_model.php:6405 +#: application/models/Logbook_model.php:6331 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3752,28 +3763,28 @@ msgstr "Skillnad" #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:337 -#: application/views/logbookadvanced/index.php:348 -#: application/views/logbookadvanced/index.php:359 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:402 -#: application/views/logbookadvanced/index.php:416 -#: application/views/logbookadvanced/index.php:470 -#: application/views/logbookadvanced/index.php:508 -#: application/views/logbookadvanced/index.php:519 -#: application/views/logbookadvanced/index.php:530 -#: application/views/logbookadvanced/index.php:540 -#: application/views/logbookadvanced/index.php:552 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/index.php:575 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/index.php:599 -#: application/views/logbookadvanced/index.php:610 -#: application/views/logbookadvanced/index.php:621 -#: application/views/logbookadvanced/index.php:630 -#: application/views/logbookadvanced/index.php:653 -#: application/views/logbookadvanced/index.php:662 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:418 +#: application/views/logbookadvanced/index.php:472 +#: application/views/logbookadvanced/index.php:510 +#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/index.php:532 +#: application/views/logbookadvanced/index.php:542 +#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/index.php:565 +#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:588 +#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:612 +#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/index.php:655 +#: application/views/logbookadvanced/index.php:664 #: application/views/lotw/import.php:55 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -3839,8 +3850,8 @@ msgstr "Period" #: application/views/distances/index.php:53 #: application/views/gridmap/index.php:71 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:947 +#: application/views/logbookadvanced/index.php:377 +#: application/views/logbookadvanced/index.php:958 #: application/views/logbookadvanced/useroptions.php:158 #: application/views/timeline/index.php:79 application/views/user/edit.php:351 #: application/views/view_log/partial/log_ajax.php:21 @@ -3860,7 +3871,7 @@ msgstr "Alla utom SAT" #: application/views/gridmap/index.php:75 #: application/views/logbookadvanced/edit.php:207 #: application/views/logbookadvanced/edit.php:215 -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:473 #: application/views/timeline/index.php:84 msgid "None/Empty" msgstr "Inget" @@ -3870,7 +3881,7 @@ msgstr "Inget" #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:77 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:381 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:532 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 @@ -3884,7 +3895,7 @@ msgstr "Flygplans Scatter" #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:78 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:382 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:533 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 @@ -3898,7 +3909,7 @@ msgstr "Aurora" #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:79 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:383 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:534 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 @@ -3912,7 +3923,7 @@ msgstr "Aurora-E" #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:80 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:384 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:535 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 @@ -3926,7 +3937,7 @@ msgstr "Back scatter" #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:81 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:385 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:536 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 @@ -3940,7 +3951,7 @@ msgstr "EchoLink" #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:82 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:386 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:537 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 @@ -3954,7 +3965,7 @@ msgstr "Earth-Moon-Earth" #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:83 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:385 +#: application/views/logbookadvanced/index.php:387 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:538 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 @@ -3968,7 +3979,7 @@ msgstr "Sporadisk E" #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:84 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:386 +#: application/views/logbookadvanced/index.php:388 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:539 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 @@ -3982,7 +3993,7 @@ msgstr "Fältjusterade oregelbundenheter" #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:85 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:387 +#: application/views/logbookadvanced/index.php:389 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:540 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 @@ -3996,7 +4007,7 @@ msgstr "F2-reflektion" #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:86 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:388 +#: application/views/logbookadvanced/index.php:390 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:541 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 @@ -4010,7 +4021,7 @@ msgstr "Internet-assisterad" #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:87 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:391 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:542 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 @@ -4024,7 +4035,7 @@ msgstr "Ionoscatter" #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:88 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:392 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:543 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 @@ -4038,7 +4049,7 @@ msgstr "IRLP" #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:89 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:393 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:544 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 @@ -4052,7 +4063,7 @@ msgstr "Meteor scatter" #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:90 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:394 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:545 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 @@ -4066,7 +4077,7 @@ msgstr "Markbunden eller atmosfärisk repeater eller transponder" #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:91 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:395 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:546 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 @@ -4080,7 +4091,7 @@ msgstr "Regnscatter" #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:92 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:396 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:547 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 @@ -4094,7 +4105,7 @@ msgstr "Satellit" #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:93 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:397 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:548 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 @@ -4108,7 +4119,7 @@ msgstr "Trans-ekvatoriell" #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:94 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:398 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:549 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 @@ -4169,7 +4180,7 @@ msgstr "Visa" #: application/views/hamsat/index.php:32 #: application/views/interface_assets/header.php:210 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:357 +#: application/views/logbookadvanced/index.php:359 #: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 @@ -4190,7 +4201,7 @@ msgstr "Satellit" #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:118 -#: application/views/logbookadvanced/index.php:366 +#: application/views/logbookadvanced/index.php:368 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:54 @@ -4320,6 +4331,8 @@ msgstr "Inget hittades!" #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/logbookadvanced/showUpdateResult.php:60 +#: application/views/logbookadvanced/showUpdateResult.php:104 #: application/views/lotw_views/index.php:32 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 @@ -4500,6 +4513,8 @@ msgstr "Tid" #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 +#: application/views/logbookadvanced/showMissingDxccQsos.php:10 +#: application/views/logbookadvanced/showStateQsos.php:21 #: application/views/public_search/result.php:14 #: application/views/qslcard/searchresult.php:8 #: application/views/qso/components/previous_contacts.php:7 @@ -5164,7 +5179,7 @@ msgstr "Behörighet" #: application/views/club/permissions.php:250 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:740 +#: application/views/logbookadvanced/index.php:742 #: application/views/notes/main.php:77 application/views/qrz/export.php:44 #: application/views/user/index.php:33 application/views/user/index.php:160 #: application/views/webadif/export.php:45 @@ -5299,8 +5314,8 @@ msgid "Filtering on" msgstr "Filtrering på" #: application/views/awards/counties/details.php:13 -#: application/views/logbookadvanced/index.php:426 -#: application/views/logbookadvanced/index.php:911 +#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:922 #: application/views/logbookadvanced/useroptions.php:110 msgid "County" msgstr "Län" @@ -5393,8 +5408,8 @@ msgstr "Totalt" #: application/views/gridmap/index.php:229 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 -#: application/views/logbookadvanced/index.php:400 -#: application/views/logbookadvanced/index.php:914 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:925 #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:308 @@ -5457,7 +5472,7 @@ msgstr "Diplom - CQ WAZ" #: application/views/awards/dxcc/index.php:41 #: application/views/awards/wpx/index.php:13 #: application/views/gridmap/index.php:19 -#: application/views/logbookadvanced/index.php:270 +#: application/views/logbookadvanced/index.php:272 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" msgstr "Filter" @@ -5469,7 +5484,7 @@ msgstr "Visa CQ-zonkarta" #: application/views/awards/cq/index.php:55 #: application/views/awards/dxcc/index.php:51 #: application/views/gridmap/index.php:28 -#: application/views/logbookadvanced/index.php:276 +#: application/views/logbookadvanced/index.php:278 msgid "Date Presets" msgstr "Datum presets" @@ -5481,55 +5496,55 @@ msgstr "Datum presets" #: application/views/dashboard/index.php:408 #: application/views/dashboard/index.php:429 #: application/views/gridmap/index.php:31 -#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:280 msgid "Today" msgstr "Idag" #: application/views/awards/cq/index.php:58 #: application/views/awards/dxcc/index.php:54 #: application/views/gridmap/index.php:32 -#: application/views/logbookadvanced/index.php:279 +#: application/views/logbookadvanced/index.php:281 msgid "Yesterday" msgstr "Igår" #: application/views/awards/cq/index.php:59 #: application/views/awards/dxcc/index.php:55 #: application/views/gridmap/index.php:33 -#: application/views/logbookadvanced/index.php:280 +#: application/views/logbookadvanced/index.php:282 msgid "Last 7 Days" msgstr "Senaste 7 dagarna" #: application/views/awards/cq/index.php:60 #: application/views/awards/dxcc/index.php:56 #: application/views/gridmap/index.php:34 -#: application/views/logbookadvanced/index.php:281 +#: application/views/logbookadvanced/index.php:283 msgid "Last 30 Days" msgstr "Senaste 30 dagarna" #: application/views/awards/cq/index.php:61 #: application/views/awards/dxcc/index.php:57 #: application/views/gridmap/index.php:35 -#: application/views/logbookadvanced/index.php:282 +#: application/views/logbookadvanced/index.php:284 msgid "This Month" msgstr "Den här månaden" #: application/views/awards/cq/index.php:62 #: application/views/awards/dxcc/index.php:58 #: application/views/gridmap/index.php:36 -#: application/views/logbookadvanced/index.php:283 +#: application/views/logbookadvanced/index.php:285 msgid "Last Month" msgstr "Förra månaden" #: application/views/awards/cq/index.php:63 #: application/views/awards/dxcc/index.php:59 #: application/views/gridmap/index.php:37 -#: application/views/logbookadvanced/index.php:284 +#: application/views/logbookadvanced/index.php:286 msgid "This Year" msgstr "Det här året" #: application/views/awards/cq/index.php:64 #: application/views/awards/dxcc/index.php:60 -#: application/views/logbookadvanced/index.php:285 +#: application/views/logbookadvanced/index.php:287 msgid "Last Year" msgstr "Förra året" @@ -5537,7 +5552,7 @@ msgstr "Förra året" #: application/views/awards/dxcc/index.php:61 #: application/views/gridmap/index.php:38 #: application/views/interface_assets/footer.php:52 -#: application/views/logbookadvanced/index.php:286 +#: application/views/logbookadvanced/index.php:288 #: application/views/qso/index.php:757 msgid "Clear" msgstr "Rensa" @@ -5685,7 +5700,7 @@ msgstr "Tabell" #: application/views/awards/waja/index.php:135 #: application/views/awards/wap/index.php:129 #: application/views/awards/was/index.php:133 -#: application/views/logbookadvanced/index.php:813 +#: application/views/logbookadvanced/index.php:821 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Karta" @@ -5844,8 +5859,8 @@ msgstr "Alla band" #: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:828 -#: application/views/logbookadvanced/index.php:829 +#: application/views/logbookadvanced/index.php:839 +#: application/views/logbookadvanced/index.php:840 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:43 application/views/user/edit.php:723 @@ -5919,7 +5934,7 @@ msgstr "Inkludera strukna" #: application/views/bandmap/list.php:339 #: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:217 -#: application/views/logbookadvanced/index.php:473 +#: application/views/logbookadvanced/index.php:475 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:480 @@ -5933,7 +5948,7 @@ msgstr "Antarktis" #: application/views/bandmap/list.php:338 #: application/views/bandmap/list.php:352 #: application/views/logbookadvanced/edit.php:216 -#: application/views/logbookadvanced/index.php:472 +#: application/views/logbookadvanced/index.php:474 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:479 @@ -5947,7 +5962,7 @@ msgstr "Afrika" #: application/views/bandmap/list.php:340 #: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 -#: application/views/logbookadvanced/index.php:475 +#: application/views/logbookadvanced/index.php:477 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:481 @@ -5961,7 +5976,7 @@ msgstr "Asien" #: application/views/bandmap/list.php:341 #: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:220 -#: application/views/logbookadvanced/index.php:476 +#: application/views/logbookadvanced/index.php:478 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:482 @@ -5975,7 +5990,7 @@ msgstr "Europa" #: application/views/bandmap/list.php:342 #: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:218 -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:476 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:483 @@ -5989,7 +6004,7 @@ msgstr "Nordamerika" #: application/views/bandmap/list.php:344 #: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:221 -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:479 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:485 @@ -6003,7 +6018,7 @@ msgstr "Sydamerika" #: application/views/bandmap/list.php:343 #: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:222 -#: application/views/logbookadvanced/index.php:478 +#: application/views/logbookadvanced/index.php:480 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:484 @@ -6052,6 +6067,7 @@ msgstr "DXCC-namn" #: application/views/awards/dxcc/index.php:276 #: application/views/awards/iota/index.php:199 #: application/views/awards/wae/index.php:163 +#: application/views/logbookadvanced/statecheckresult.php:10 #: application/views/timeline/index.php:199 #: application/views/timeline/index.php:297 msgid "Prefix" @@ -6323,7 +6339,7 @@ msgstr "Visa IOTA-karta" #: application/views/contesting/index.php:229 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:872 +#: application/views/logbookadvanced/index.php:883 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:58 #: application/views/lotw/satupdate.php:7 @@ -6351,8 +6367,8 @@ msgstr "Raderad" #: application/views/gridmap/index.php:231 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 -#: application/views/logbookadvanced/index.php:414 -#: application/views/logbookadvanced/index.php:917 +#: application/views/logbookadvanced/index.php:416 +#: application/views/logbookadvanced/index.php:928 #: application/views/logbookadvanced/useroptions.php:118 #: application/views/lookup/index.php:8 application/views/qso/edit_ajax.php:316 #: application/views/qso/index.php:515 @@ -6643,7 +6659,8 @@ msgid "Band Categories" msgstr "Bandkategorier" #: application/views/awards/pl_polska/index.php:372 -#: application/views/logbookadvanced/index.php:772 +#: application/views/logbookadvanced/dbtoolsdialog.php:47 +#: application/views/logbookadvanced/index.php:773 msgid "Fix State" msgstr "Åtgärda Delstat" @@ -6791,8 +6808,10 @@ msgid "Reference" msgstr "Referens" #: application/views/awards/sig/qso_list.php:10 -#: application/views/logbookadvanced/index.php:845 +#: application/views/logbookadvanced/index.php:856 #: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/logbookadvanced/showMissingDxccQsos.php:11 +#: application/views/logbookadvanced/showStateQsos.php:22 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 #: application/views/qso/components/previous_contacts.php:6 @@ -6946,8 +6965,8 @@ msgstr "Diplom - Worked All Continents (WAC)" #: application/views/bandmap/list.php:571 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 -#: application/views/logbookadvanced/index.php:468 -#: application/views/logbookadvanced/index.php:956 +#: application/views/logbookadvanced/index.php:470 +#: application/views/logbookadvanced/index.php:967 #: application/views/logbookadvanced/useroptions.php:170 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:476 @@ -7619,8 +7638,8 @@ msgstr "Färsk spot (< 5 minuter gammal)" #: application/views/bandmap/list.php:510 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 -#: application/views/logbookadvanced/index.php:464 -#: application/views/logbookadvanced/index.php:950 +#: application/views/logbookadvanced/index.php:466 +#: application/views/logbookadvanced/index.php:961 #: application/views/logbookadvanced/useroptions.php:162 #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 @@ -7726,8 +7745,8 @@ msgstr "Spotter" #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:485 -#: application/views/logbookadvanced/index.php:944 +#: application/views/logbookadvanced/index.php:487 +#: application/views/logbookadvanced/index.php:955 #: application/views/logbookadvanced/useroptions.php:154 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:379 #: application/views/view_log/qso.php:228 @@ -8254,7 +8273,6 @@ msgstr "" #: application/views/bands/edit.php:2 #: application/views/logbookadvanced/index.php:53 -#: application/views/update/index.php:35 msgid "WARNING" msgstr "VARNING" @@ -8440,7 +8458,7 @@ msgstr "" "referenskoden)." #: application/views/cabrillo/index.php:48 -#: application/views/logbookadvanced/index.php:787 +#: application/views/logbookadvanced/index.php:795 #: application/views/oqrs/showrequests.php:31 #: application/views/qso/index.php:362 #: application/views/station_profile/edit.php:96 @@ -8554,19 +8572,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:187 #: application/views/logbookadvanced/edit.php:193 #: application/views/logbookadvanced/edit.php:199 -#: application/views/logbookadvanced/index.php:509 -#: application/views/logbookadvanced/index.php:520 -#: application/views/logbookadvanced/index.php:553 -#: application/views/logbookadvanced/index.php:564 -#: application/views/logbookadvanced/index.php:576 -#: application/views/logbookadvanced/index.php:587 -#: application/views/logbookadvanced/index.php:600 -#: application/views/logbookadvanced/index.php:611 -#: application/views/logbookadvanced/index.php:622 -#: application/views/logbookadvanced/index.php:631 -#: application/views/logbookadvanced/index.php:646 -#: application/views/logbookadvanced/index.php:654 -#: application/views/logbookadvanced/index.php:663 +#: application/views/logbookadvanced/index.php:511 +#: application/views/logbookadvanced/index.php:522 +#: application/views/logbookadvanced/index.php:555 +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/index.php:578 +#: application/views/logbookadvanced/index.php:589 +#: application/views/logbookadvanced/index.php:602 +#: application/views/logbookadvanced/index.php:613 +#: application/views/logbookadvanced/index.php:624 +#: application/views/logbookadvanced/index.php:633 +#: application/views/logbookadvanced/index.php:648 +#: application/views/logbookadvanced/index.php:656 +#: application/views/logbookadvanced/index.php:665 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:444 #: application/views/qso/edit_ajax.php:477 @@ -8619,19 +8637,19 @@ msgstr "Ja" #: application/views/logbookadvanced/edit.php:188 #: application/views/logbookadvanced/edit.php:194 #: application/views/logbookadvanced/edit.php:200 -#: application/views/logbookadvanced/index.php:510 -#: application/views/logbookadvanced/index.php:521 -#: application/views/logbookadvanced/index.php:554 -#: application/views/logbookadvanced/index.php:565 -#: application/views/logbookadvanced/index.php:577 -#: application/views/logbookadvanced/index.php:588 -#: application/views/logbookadvanced/index.php:601 -#: application/views/logbookadvanced/index.php:612 -#: application/views/logbookadvanced/index.php:623 -#: application/views/logbookadvanced/index.php:632 -#: application/views/logbookadvanced/index.php:647 -#: application/views/logbookadvanced/index.php:655 -#: application/views/logbookadvanced/index.php:664 +#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:567 +#: application/views/logbookadvanced/index.php:579 +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/index.php:603 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/index.php:625 +#: application/views/logbookadvanced/index.php:634 +#: application/views/logbookadvanced/index.php:649 +#: application/views/logbookadvanced/index.php:657 +#: application/views/logbookadvanced/index.php:666 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:443 #: application/views/qso/edit_ajax.php:476 @@ -8763,6 +8781,7 @@ msgstr "Tillgängliga behörigheter" #: application/views/club/permissions.php:26 #: application/views/eqsl/download.php:45 +#: application/views/logbookadvanced/statecheckresult.php:13 msgid "Action" msgstr "Åtgärd" @@ -8967,7 +8986,7 @@ msgstr "" #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 -#: application/views/logbookadvanced/index.php:968 +#: application/views/logbookadvanced/index.php:979 #: application/views/logbookadvanced/useroptions.php:186 #: application/views/qrz/export.php:39 #: application/views/qslprint/qslprint.php:32 @@ -9424,7 +9443,7 @@ msgid "Locator" msgstr "Lokator" #: application/views/contesting/index.php:69 -#: application/views/logbookadvanced/index.php:875 +#: application/views/logbookadvanced/index.php:886 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/qso/edit_ajax.php:177 msgid "QTH" @@ -9911,14 +9930,14 @@ msgstr "Mottagen" #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 -#: application/views/logbookadvanced/index.php:511 -#: application/views/logbookadvanced/index.php:522 -#: application/views/logbookadvanced/index.php:555 -#: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/index.php:578 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/index.php:602 -#: application/views/logbookadvanced/index.php:613 +#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:557 +#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:591 +#: application/views/logbookadvanced/index.php:604 +#: application/views/logbookadvanced/index.php:615 #: application/views/oqrs/qsolist.php:57 application/views/oqrs/qsolist.php:99 #: application/views/qslprint/qsolist.php:68 #: application/views/qslprint/qsolist.php:110 @@ -10485,6 +10504,11 @@ msgid "Check for new version" msgstr "Kontrollera om det finns en ny version" #: application/views/debug/index.php:495 +#: application/views/logbookadvanced/checkresult.php:37 +#: application/views/logbookadvanced/checkresult.php:53 +#: application/views/logbookadvanced/checkresult.php:76 +#: application/views/logbookadvanced/checkresult.php:87 +#: application/views/logbookadvanced/checkresult.php:97 #: application/views/logbookadvanced/index.php:57 msgid "Update now" msgstr "Uppdatera nu" @@ -11703,7 +11727,7 @@ msgstr "" "ignorera denna varning." #: application/views/interface_assets/footer.php:878 -#: application/views/logbookadvanced/index.php:792 +#: application/views/logbookadvanced/index.php:800 msgid "Callsign: " msgstr "Anropssignal: " @@ -11956,7 +11980,7 @@ msgid "Log" msgstr "Logg" #: application/views/interface_assets/header.php:398 -#: application/views/logbookadvanced/index.php:689 +#: application/views/logbookadvanced/index.php:691 #: application/views/oqrs/index.php:28 application/views/user/edit.php:491 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" @@ -12037,7 +12061,7 @@ msgid "DCL Export" msgstr "DCL-export" #: application/views/interface_assets/header.php:536 -#: application/views/logbookadvanced/index.php:831 +#: application/views/logbookadvanced/index.php:842 msgid "Help" msgstr "Hjälp" @@ -12297,6 +12321,7 @@ msgid "Label types" msgstr "Etikettyper" #: application/views/labels/index.php:81 +#: application/views/logbookadvanced/statecheckresult.php:12 #: application/views/statistics/index.php:70 #: application/views/statistics/index.php:114 msgid "QSOs" @@ -12368,23 +12393,20 @@ msgstr "" "Vi behåller det ursprungliga värdet och lägger till en mer exakt lokator (t." "ex. JO90AB eller JO90AB12) när en matchning är säker." -#: application/views/logbookadvanced/continentdialog.php:2 -msgid "" -"Update all QSOs with the continent based on the DXCC country of the QSO." -msgstr "Uppdatera alla QSOs med kontinenten baserat på DXCC-landet för QSO:t." - -#: application/views/logbookadvanced/continentdialog.php:3 -msgid "This is useful if you have imported QSOs without continent information." +#: application/views/logbookadvanced/checkresult.php:27 +msgid "Distance Check Results" msgstr "" -"Detta är användbart om du har importerat QSOs utan kontinentinformation." -#: application/views/logbookadvanced/continentdialog.php:4 -msgid "" -"Update will only set the continent for QSOs where the continent is empty." +#: application/views/logbookadvanced/checkresult.php:28 +#: application/views/logbookadvanced/checkresult.php:44 +#: application/views/logbookadvanced/checkresult.php:60 +#: application/views/logbookadvanced/checkresult.php:72 +#: application/views/logbookadvanced/checkresult.php:83 +#: application/views/logbookadvanced/checkresult.php:94 +msgid "QSOs to update found:" msgstr "" -"Uppdateringen kommer bara att uppdatera kontinenten för QSOs där kontinenten " -"är tom." +#: application/views/logbookadvanced/checkresult.php:31 #: application/views/logbookadvanced/distancedialog.php:2 msgid "" "Update all QSOs with the distance based on your gridsquare set in the " @@ -12395,17 +12417,157 @@ msgstr "" "stationsprofilen och QSO-partnerns lokatorruta. Avståndet beräknas baserat " "på om kort väg eller lång väg är inställd." +#: application/views/logbookadvanced/checkresult.php:32 #: application/views/logbookadvanced/distancedialog.php:3 msgid "This is useful if you have imported QSOs without distance information." msgstr "" "Detta är användbart om du har importerat QSOs utan avståndsinformation." +#: application/views/logbookadvanced/checkresult.php:33 #: application/views/logbookadvanced/distancedialog.php:4 msgid "Update will only set the distance for QSOs where the distance is empty." msgstr "" "Uppdateringen kommer bara att uppdatera avståndet för QSOs där avståndet är " "tomt." +#: application/views/logbookadvanced/checkresult.php:43 +msgid "Continent Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:47 +#: application/views/logbookadvanced/continentdialog.php:2 +msgid "" +"Update all QSOs with the continent based on the DXCC country of the QSO." +msgstr "Uppdatera alla QSOs med kontinenten baserat på DXCC-landet för QSO:t." + +#: application/views/logbookadvanced/checkresult.php:48 +#: application/views/logbookadvanced/continentdialog.php:3 +msgid "This is useful if you have imported QSOs without continent information." +msgstr "" +"Detta är användbart om du har importerat QSOs utan kontinentinformation." + +#: application/views/logbookadvanced/checkresult.php:49 +#: application/views/logbookadvanced/continentdialog.php:4 +msgid "" +"Update will only set the continent for QSOs where the continent is empty." +msgstr "" +"Uppdateringen kommer bara att uppdatera kontinenten för QSOs där kontinenten " +"är tom." + +#: application/views/logbookadvanced/checkresult.php:59 +msgid "DXCC Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:64 +#: application/views/logbookadvanced/statecheckresult.php:30 +msgid "Run fix" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:71 +msgid "CQ Zone Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:82 +msgid "ITU Zone Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:93 +msgid "Gridsquare Check Results" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:4 +msgid "Data Repair Tools" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:6 +msgid "Wiki Help" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:11 +#: application/views/logbookadvanced/index.php:771 +msgid "Fix CQ Zones" +msgstr "Åtgärda CQ-zoner" + +#: application/views/logbookadvanced/dbtoolsdialog.php:12 +msgid "Update missing CQ zone information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:16 +#: application/views/logbookadvanced/dbtoolsdialog.php:28 +#: application/views/logbookadvanced/dbtoolsdialog.php:40 +#: application/views/logbookadvanced/dbtoolsdialog.php:52 +#: application/views/logbookadvanced/dbtoolsdialog.php:64 +#: application/views/logbookadvanced/dbtoolsdialog.php:76 +#: application/views/logbookadvanced/dbtoolsdialog.php:102 +msgid "Check" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:23 +#: application/views/logbookadvanced/index.php:772 +msgid "Fix ITU Zones" +msgstr "Åtgärda ITU-zoner" + +#: application/views/logbookadvanced/dbtoolsdialog.php:24 +msgid "Update missing ITU zone information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:35 +msgid "Fix Continent" +msgstr "Åtgärda Kontinent" + +#: application/views/logbookadvanced/dbtoolsdialog.php:36 +msgid "Update missing or incorrect continent information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:48 +msgid "Update missing state/province information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:59 +#: application/views/logbookadvanced/index.php:68 +msgid "Update Distances" +msgstr "Uppdatera avstånd" + +#: application/views/logbookadvanced/dbtoolsdialog.php:60 +msgid "Calculate and update distance information for QSOs" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:71 +msgid "Check QSOs missing DXCC data" +msgstr "Kontrollera QSOs som saknar DXCC-data" + +#: application/views/logbookadvanced/dbtoolsdialog.php:72 +msgid "Identify QSOs that are missing DXCC information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:83 +msgid "Re-check DXCC for all QSOs in the logbook" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:84 +msgid "Use Wavelog to determine DXCC for all QSOs." +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:85 +msgid "This will overwrite ALL existing DXCC information!" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:89 +msgid "Run" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:96 +msgid "Lookup QSOs with missing grid in callbook" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:97 +msgid "Use callbook lookup to set gridsquare" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:98 +msgid "This is limited to 250 callsigns for each run!" +msgstr "" + #: application/views/logbookadvanced/edit.php:1 msgid "Please choose the column to be edited:" msgstr "Välj kolumnen som ska redigeras:" @@ -12423,7 +12585,7 @@ msgid "Station Power" msgstr "Stationens uteffekt" #: application/views/logbookadvanced/edit.php:31 -#: application/views/logbookadvanced/index.php:938 +#: application/views/logbookadvanced/index.php:949 #: application/views/logbookadvanced/useroptions.php:146 #: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:489 #: application/views/view_log/qso.php:481 @@ -12495,8 +12657,8 @@ msgid "QSL Sent Method" msgstr "QSL Skickat Via" #: application/views/logbookadvanced/edit.php:53 -#: application/views/logbookadvanced/index.php:639 -#: application/views/logbookadvanced/index.php:878 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/index.php:889 #: application/views/logbookadvanced/useroptions.php:66 msgid "QSL via" msgstr "QSL via" @@ -12521,23 +12683,23 @@ msgstr "Band RX" #: application/views/logbookadvanced/edit.php:189 #: application/views/logbookadvanced/edit.php:195 #: application/views/logbookadvanced/edit.php:202 -#: application/views/logbookadvanced/index.php:479 -#: application/views/logbookadvanced/index.php:804 +#: application/views/logbookadvanced/index.php:481 +#: application/views/logbookadvanced/index.php:812 msgid "Invalid" msgstr "Ogiltig" #: application/views/logbookadvanced/edit.php:177 #: application/views/logbookadvanced/edit.php:203 -#: application/views/logbookadvanced/index.php:524 -#: application/views/logbookadvanced/index.php:568 -#: application/views/logbookadvanced/index.php:591 -#: application/views/logbookadvanced/index.php:615 +#: application/views/logbookadvanced/index.php:526 +#: application/views/logbookadvanced/index.php:570 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:617 msgid "Verified" msgstr "Verifierad" #: application/views/logbookadvanced/edit.php:208 -#: application/views/logbookadvanced/index.php:532 -#: application/views/logbookadvanced/index.php:542 +#: application/views/logbookadvanced/index.php:534 +#: application/views/logbookadvanced/index.php:544 #: application/views/oqrs/qsolist.php:73 application/views/oqrs/qsolist.php:115 #: application/views/oqrs/showrequests.php:8 #: application/views/qslprint/qslprint.php:7 @@ -12555,8 +12717,8 @@ msgid "Direct" msgstr "Direkt" #: application/views/logbookadvanced/edit.php:209 -#: application/views/logbookadvanced/index.php:531 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/index.php:543 #: application/views/oqrs/qsolist.php:70 application/views/oqrs/qsolist.php:112 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:48 @@ -12576,8 +12738,8 @@ msgid "Bureau" msgstr "Byrå" #: application/views/logbookadvanced/edit.php:210 -#: application/views/logbookadvanced/index.php:533 -#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:545 #: application/views/oqrs/qsolist.php:79 application/views/oqrs/qsolist.php:121 #: application/views/oqrs/showrequests.php:9 #: application/views/qslprint/qslprint.php:8 @@ -12595,8 +12757,8 @@ msgid "Electronic" msgstr "Elektroniskt" #: application/views/logbookadvanced/edit.php:211 -#: application/views/logbookadvanced/index.php:534 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/index.php:546 #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 @@ -12919,11 +13081,6 @@ msgstr "Ett fel inträffade när förfrågan gjordes" msgid "You need to select at least 1 location to do a search!" msgstr "Du måste välja minst 1 plats för att kunna söka!" -#: application/views/logbookadvanced/index.php:68 -#: application/views/logbookadvanced/index.php:773 -msgid "Update Distances" -msgstr "Uppdatera avstånd" - #: application/views/logbookadvanced/index.php:69 msgid "QSO records updated." msgstr "QSO-poster har uppdaterats." @@ -12936,44 +13093,50 @@ msgstr "Ett problem uppstod vid uppdatering av avstånd." msgid "Distances updated successfully!" msgstr "Avstånd uppdaterade framgångsrikt!" -#: application/views/logbookadvanced/index.php:292 +#: application/views/logbookadvanced/index.php:73 +msgid "" +"Are you sure you want to fix all QSOs with missing DXCC information? This " +"action cannot be undone." +msgstr "" + +#: application/views/logbookadvanced/index.php:294 msgid "From" msgstr "Från" -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:298 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:851 +#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:862 #: application/views/logbookadvanced/useroptions.php:30 msgid "Dx" msgstr "Dx" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:326 -#: application/views/logbookadvanced/index.php:332 -#: application/views/logbookadvanced/index.php:403 -#: application/views/logbookadvanced/index.php:417 -#: application/views/logbookadvanced/index.php:427 -#: application/views/logbookadvanced/index.php:431 -#: application/views/logbookadvanced/index.php:435 -#: application/views/logbookadvanced/index.php:439 -#: application/views/logbookadvanced/index.php:457 -#: application/views/logbookadvanced/index.php:461 -#: application/views/logbookadvanced/index.php:465 -#: application/views/logbookadvanced/index.php:486 -#: application/views/logbookadvanced/index.php:490 -#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:303 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:419 +#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:441 +#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:467 +#: application/views/logbookadvanced/index.php:488 +#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:642 msgid "Empty" msgstr "Tom" -#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:380 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Inget" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:491 msgid "" "Distance in kilometers. Search will look for distances greater than or equal " "to this value." @@ -12981,18 +13144,18 @@ msgstr "" "Avstånd i kilometer. Sökningen kommer att leta efter avstånd som är större " "än eller lika med detta värde." -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:502 msgid "QSL Filters" msgstr "QSL-filter" -#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/index.php:508 msgid "QSL sent" msgstr "QSL skickat" -#: application/views/logbookadvanced/index.php:512 -#: application/views/logbookadvanced/index.php:556 -#: application/views/logbookadvanced/index.php:579 -#: application/views/logbookadvanced/index.php:603 +#: application/views/logbookadvanced/index.php:514 +#: application/views/logbookadvanced/index.php:558 +#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/index.php:605 #: application/views/oqrs/qsolist.php:54 application/views/oqrs/qsolist.php:96 #: application/views/qslprint/qsolist.php:65 #: application/views/qslprint/qsolist.php:107 @@ -13019,18 +13182,18 @@ msgstr "QSL skickat" msgid "Queued" msgstr "Köad" -#: application/views/logbookadvanced/index.php:513 -#: application/views/logbookadvanced/index.php:523 -#: application/views/logbookadvanced/index.php:557 -#: application/views/logbookadvanced/index.php:567 -#: application/views/logbookadvanced/index.php:580 -#: application/views/logbookadvanced/index.php:590 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/index.php:614 -#: application/views/logbookadvanced/index.php:624 -#: application/views/logbookadvanced/index.php:633 -#: application/views/logbookadvanced/index.php:656 -#: application/views/logbookadvanced/index.php:665 +#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:525 +#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/index.php:582 +#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:606 +#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:626 +#: application/views/logbookadvanced/index.php:635 +#: application/views/logbookadvanced/index.php:658 +#: application/views/logbookadvanced/index.php:667 #: application/views/oqrs/qsolist.php:60 application/views/oqrs/qsolist.php:102 #: application/views/oqrs/qsolist.php:167 #: application/views/oqrs/qsolist.php:182 @@ -13075,272 +13238,269 @@ msgstr "Köad" msgid "Invalid (Ignore)" msgstr "Ogiltig (Ignorera)" -#: application/views/logbookadvanced/index.php:517 +#: application/views/logbookadvanced/index.php:519 msgid "QSL received" msgstr "QSL mottaget" -#: application/views/logbookadvanced/index.php:528 +#: application/views/logbookadvanced/index.php:530 msgid "QSL send. method" msgstr "QSL skickat via" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:540 msgid "QSL recv. method" msgstr "QSL mottaget via" -#: application/views/logbookadvanced/index.php:550 +#: application/views/logbookadvanced/index.php:552 msgid "LoTW sent" msgstr "LoTW skickat" -#: application/views/logbookadvanced/index.php:561 +#: application/views/logbookadvanced/index.php:563 msgid "LoTW received" msgstr "LoTW mottaget" -#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:575 msgid "Clublog sent" msgstr "Clublog skickat" -#: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/index.php:586 msgid "Clublog received" msgstr "Clublog mottaget" -#: application/views/logbookadvanced/index.php:597 +#: application/views/logbookadvanced/index.php:599 msgid "eQSL sent" msgstr "eQSL skickat" -#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/index.php:610 msgid "eQSL received" msgstr "eQSL mottaget" -#: application/views/logbookadvanced/index.php:619 +#: application/views/logbookadvanced/index.php:621 msgid "DCL sent" msgstr "DCL skickat" -#: application/views/logbookadvanced/index.php:628 +#: application/views/logbookadvanced/index.php:630 msgid "DCL received" msgstr "DCL mottaget" -#: application/views/logbookadvanced/index.php:643 +#: application/views/logbookadvanced/index.php:645 msgid "QSL Images" msgstr "QSL-bilder" -#: application/views/logbookadvanced/index.php:651 +#: application/views/logbookadvanced/index.php:653 msgid "QRZ sent" msgstr "QRZ skickat" -#: application/views/logbookadvanced/index.php:660 +#: application/views/logbookadvanced/index.php:662 msgid "QRZ received" msgstr "QRZ mottaget" -#: application/views/logbookadvanced/index.php:676 +#: application/views/logbookadvanced/index.php:678 msgid "Quickfilters" msgstr "Snabbfilter" -#: application/views/logbookadvanced/index.php:681 +#: application/views/logbookadvanced/index.php:683 msgid "Quicksearch with selected: " msgstr "Snabbsökning med vald: " -#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:688 msgid "Search Date" msgstr "Sökdatum" -#: application/views/logbookadvanced/index.php:692 +#: application/views/logbookadvanced/index.php:694 msgid "Search DXCC" msgstr "Sök DXCC" -#: application/views/logbookadvanced/index.php:695 +#: application/views/logbookadvanced/index.php:697 msgid "Search State" msgstr "Sök Delstat" -#: application/views/logbookadvanced/index.php:698 +#: application/views/logbookadvanced/index.php:700 msgid "Search Gridsquare" msgstr "Sök Lokatorruta" -#: application/views/logbookadvanced/index.php:701 +#: application/views/logbookadvanced/index.php:703 msgid "Search CQ Zone" msgstr "Sök CQ-zon" -#: application/views/logbookadvanced/index.php:704 +#: application/views/logbookadvanced/index.php:706 msgid "Search ITU Zone" msgstr "Sök ITU-zon" -#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:709 msgid "Search Mode" msgstr "Sök Trafiksätt" -#: application/views/logbookadvanced/index.php:710 +#: application/views/logbookadvanced/index.php:712 msgid "Search Band" msgstr "Sök Band" -#: application/views/logbookadvanced/index.php:713 +#: application/views/logbookadvanced/index.php:715 msgid "Search IOTA" msgstr "Sök IOTA" -#: application/views/logbookadvanced/index.php:716 +#: application/views/logbookadvanced/index.php:718 msgid "Search SOTA" msgstr "Sök SOTA" -#: application/views/logbookadvanced/index.php:719 +#: application/views/logbookadvanced/index.php:721 msgid "Search POTA" msgstr "Sök POTA" -#: application/views/logbookadvanced/index.php:722 +#: application/views/logbookadvanced/index.php:724 msgid "Search WWFF" msgstr "Sök WWFF" -#: application/views/logbookadvanced/index.php:725 +#: application/views/logbookadvanced/index.php:727 msgid "Search Operator" msgstr "Sök Operatör" -#: application/views/logbookadvanced/index.php:744 +#: application/views/logbookadvanced/index.php:746 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "Varning! Är du säker på att du vill ta bort de markerade QSO:erna?" -#: application/views/logbookadvanced/index.php:745 +#: application/views/logbookadvanced/index.php:747 msgid " QSO(s) will be deleted" msgstr " QSO(n) kommer att raderas" -#: application/views/logbookadvanced/index.php:749 +#: application/views/logbookadvanced/index.php:751 msgid "With selected: " msgstr "Med vald: " -#: application/views/logbookadvanced/index.php:753 +#: application/views/logbookadvanced/index.php:755 #: application/views/qso/edit_ajax.php:725 msgid "Update from Callbook" msgstr "Uppdatera från Callbook" -#: application/views/logbookadvanced/index.php:754 +#: application/views/logbookadvanced/index.php:756 msgid "Queue Bureau" msgstr "Kö-byrå" -#: application/views/logbookadvanced/index.php:755 +#: application/views/logbookadvanced/index.php:757 msgid "Queue Direct" msgstr "Kö-direkt" -#: application/views/logbookadvanced/index.php:756 +#: application/views/logbookadvanced/index.php:758 msgid "Queue Electronic" msgstr "Kö-elektroniskt" -#: application/views/logbookadvanced/index.php:757 +#: application/views/logbookadvanced/index.php:759 msgid "Sent (Bureau)" msgstr "Skickat (Byrå)" -#: application/views/logbookadvanced/index.php:758 +#: application/views/logbookadvanced/index.php:760 msgid "Sent (Direct)" msgstr "Skickat (Direkt)" -#: application/views/logbookadvanced/index.php:759 +#: application/views/logbookadvanced/index.php:761 msgid "Sent (Electronic)" msgstr "Skickat (Elektroniskt)" -#: application/views/logbookadvanced/index.php:760 +#: application/views/logbookadvanced/index.php:762 msgid "Not Sent" msgstr "Ej skickat" -#: application/views/logbookadvanced/index.php:761 +#: application/views/logbookadvanced/index.php:763 msgid "QSL Not Required" msgstr "QSL Ej Nödvändigt" -#: application/views/logbookadvanced/index.php:762 +#: application/views/logbookadvanced/index.php:764 msgid "Not Received" msgstr "Ej mottaget" -#: application/views/logbookadvanced/index.php:763 +#: application/views/logbookadvanced/index.php:765 msgid "Received (Bureau)" msgstr "Mottaget (Byrå)" -#: application/views/logbookadvanced/index.php:764 +#: application/views/logbookadvanced/index.php:766 msgid "Received (Direct)" msgstr "Mottaget (Direkt)" -#: application/views/logbookadvanced/index.php:765 +#: application/views/logbookadvanced/index.php:767 msgid "Received (Electronic)" msgstr "Mottaget (Elektroniskt)" -#: application/views/logbookadvanced/index.php:766 +#: application/views/logbookadvanced/index.php:768 msgid "Create ADIF" msgstr "Skapa ADIF" -#: application/views/logbookadvanced/index.php:767 +#: application/views/logbookadvanced/index.php:769 msgid "Print Label" msgstr "Skriv ut etikett" -#: application/views/logbookadvanced/index.php:768 +#: application/views/logbookadvanced/index.php:770 msgid "QSL Slideshow" msgstr "QSL-bildspel" -#: application/views/logbookadvanced/index.php:769 -msgid "Fix CQ Zones" -msgstr "Åtgärda CQ-zoner" +#: application/views/logbookadvanced/index.php:777 +msgid "With ALL QSOs: " +msgstr "" -#: application/views/logbookadvanced/index.php:770 -msgid "Fix ITU Zones" -msgstr "Åtgärda ITU-zoner" +#: application/views/logbookadvanced/index.php:781 +#: application/views/logbookadvanced/index.php:832 +msgid "Database Tools" +msgstr "" -#: application/views/logbookadvanced/index.php:771 -msgid "Fix Continent" -msgstr "Åtgärda Kontinent" - -#: application/views/logbookadvanced/index.php:780 +#: application/views/logbookadvanced/index.php:788 #: application/views/oqrs/showrequests.php:58 msgid "# Results" msgstr "# Resultat" -#: application/views/logbookadvanced/index.php:801 +#: application/views/logbookadvanced/index.php:809 msgid "Dupes" msgstr "Dubbletter" -#: application/views/logbookadvanced/index.php:817 +#: application/views/logbookadvanced/index.php:825 msgid "Globe map" msgstr "Världskarta" -#: application/views/logbookadvanced/index.php:848 +#: application/views/logbookadvanced/index.php:859 #: application/views/logbookadvanced/useroptions.php:26 msgid "De" msgstr "De" -#: application/views/logbookadvanced/index.php:893 +#: application/views/logbookadvanced/index.php:904 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 #: application/views/timeline/index.php:72 application/views/user/edit.php:627 msgid "QRZ" msgstr "QRZ" -#: application/views/logbookadvanced/index.php:899 +#: application/views/logbookadvanced/index.php:910 #: application/views/logbookadvanced/useroptions.php:94 #: application/views/qso/edit_ajax.php:527 msgid "QSL Msg (S)" msgstr "QSL Meddelande (S)" -#: application/views/logbookadvanced/index.php:902 +#: application/views/logbookadvanced/index.php:913 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/qso/edit_ajax.php:536 msgid "QSL Msg (R)" msgstr "QSL Meddelande (R)" -#: application/views/logbookadvanced/index.php:953 +#: application/views/logbookadvanced/index.php:964 #: application/views/logbookadvanced/useroptions.php:166 msgid "My Refs" msgstr "Mina referenser" -#: application/views/logbookadvanced/index.php:962 +#: application/views/logbookadvanced/index.php:973 msgid "Ant az" msgstr "Ant az" -#: application/views/logbookadvanced/index.php:962 +#: application/views/logbookadvanced/index.php:973 #: application/views/logbookadvanced/useroptions.php:178 msgid "Antenna azimuth" msgstr "Antenn azimuth" -#: application/views/logbookadvanced/index.php:965 +#: application/views/logbookadvanced/index.php:976 msgid "Ant el" msgstr "Ant el" -#: application/views/logbookadvanced/index.php:965 +#: application/views/logbookadvanced/index.php:976 #: application/views/logbookadvanced/useroptions.php:182 msgid "Antenna elevation" msgstr "Antenn elevation" -#: application/views/logbookadvanced/index.php:971 +#: application/views/logbookadvanced/index.php:982 #: application/views/logbookadvanced/useroptions.php:190 msgid "Station power" msgstr "Stationens uteffekt" @@ -13360,6 +13520,130 @@ msgstr "Föregående" msgid "Next" msgstr "Nästa" +#: application/views/logbookadvanced/showMissingDxccQsos.php:5 +#, php-format +msgid "Found %s QSO(s) missing DXCC information." +msgstr "" + +#: application/views/logbookadvanced/showMissingDxccQsos.php:17 +#: application/views/logbookadvanced/showStateQsos.php:28 +#: application/views/oqrs/qsolist.php:11 +#: application/views/qslprint/qslprint.php:31 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 +#: application/views/search/cqzones_result.php:16 +#: application/views/search/ituzones_result.php:16 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/search_result_ajax.php:130 +#: application/views/user/edit.php:529 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:228 +#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:672 +#: application/views/view_log/qso.php:676 +#: application/views/view_log/qso.php:680 +#: application/views/view_log/qso.php:686 +#: application/views/view_log/qso.php:693 +#: application/views/view_log/qso.php:700 +#: application/views/view_log/qso.php:707 +#: application/views/view_log/qso.php:714 +#: application/views/view_log/qso.php:721 +#: application/views/view_log/qso.php:728 +#: application/views/view_log/qso.php:735 +#: application/views/view_log/qso.php:742 +#: application/views/view_log/qso.php:747 +msgid "Station" +msgstr "Station" + +#: application/views/logbookadvanced/showMissingDxccQsos.php:38 +#: application/views/logbookadvanced/showStateQsos.php:49 +msgid "No Issues Found" +msgstr "" + +#: application/views/logbookadvanced/showStateQsos.php:16 +#, php-format +msgid "Found %s QSO(s) missing state information for DXCC %s." +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:31 +msgid "Results for DXCC update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:34 +#: application/views/logbookadvanced/showUpdateResult.php:40 +msgid "The number of QSOs updated for missing DXCC IDs was" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:36 +#: application/views/logbookadvanced/showUpdateResult.php:42 +msgid "The number of QSOs re-checked for DXCC was" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:55 +#: application/views/logbookadvanced/showUpdateResult.php:99 +msgid "These QSOs could not be updated:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:61 +#: application/views/logbookadvanced/showUpdateResult.php:107 +msgid "Reason" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:62 +#: application/views/logbookadvanced/showUpdateResult.php:106 +#: application/views/search/lotw_unconfirmed.php:32 +msgid "Station location" +msgstr "Stationsplats" + +#: application/views/logbookadvanced/showUpdateResult.php:83 +msgid "Results for state update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:85 +#: application/views/logbookadvanced/showUpdateResult.php:87 +msgid "The number of QSOs updated for state/province in" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:130 +msgid "Results for continent update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:131 +msgid "The number of QSOs updated for continent is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:135 +msgid "Results for distance update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:136 +msgid "The number of QSOs updated for distance is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:140 +msgid "Results for CQ zone update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:141 +msgid "The number of QSOs updated for CQ zone is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:145 +msgid "Results for ITU zone update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:146 +msgid "The number of QSOs updated for ITU zone is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:150 +msgid "Results for gridsquare update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:151 +msgid "The number of QSOs updated for gridsquare is" +msgstr "" + #: application/views/logbookadvanced/startatform.php:15 msgid "Include Via" msgstr "Inkludera Via" @@ -13372,6 +13656,21 @@ msgstr "Inkludera QSLMSG" msgid "Include TNX message" msgstr "Inkludera TNX-meddelande" +#: application/views/logbookadvanced/statecheckresult.php:3 +#: application/views/logbookadvanced/statecheckresult.php:42 +msgid "State Check Results" +msgstr "" + +#: application/views/logbookadvanced/statecheckresult.php:4 +msgid "" +"QSOs with missing state and gridsquares with 6 or more characters found for " +"the following DXCCs:" +msgstr "" + +#: application/views/logbookadvanced/statecheckresult.php:43 +msgid "No QSOs were found where state information can be fixed." +msgstr "" + #: application/views/logbookadvanced/statedialog.php:2 msgid "" "Update QSOs with state/province information based on gridsquare and DXCC " @@ -14199,34 +14498,6 @@ msgstr "Din e-postadress där vi kan kontakta dig" msgid "Send not in log request" msgstr "Skicka inte in loggförfrågan" -#: application/views/oqrs/qsolist.php:11 -#: application/views/qslprint/qslprint.php:31 -#: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 -#: application/views/search/cqzones_result.php:16 -#: application/views/search/ituzones_result.php:16 -#: application/views/search/lotw_unconfirmed_result.php:11 -#: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:529 -#: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:228 -#: application/views/view_log/qso.php:668 -#: application/views/view_log/qso.php:672 -#: application/views/view_log/qso.php:676 -#: application/views/view_log/qso.php:680 -#: application/views/view_log/qso.php:686 -#: application/views/view_log/qso.php:693 -#: application/views/view_log/qso.php:700 -#: application/views/view_log/qso.php:707 -#: application/views/view_log/qso.php:714 -#: application/views/view_log/qso.php:721 -#: application/views/view_log/qso.php:728 -#: application/views/view_log/qso.php:735 -#: application/views/view_log/qso.php:742 -#: application/views/view_log/qso.php:747 -msgid "Station" -msgstr "Station" - #: application/views/oqrs/qsolist.php:76 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 @@ -14313,7 +14584,7 @@ msgstr "Inte i loggen?" #: application/views/oqrs/showrequests.php:50 #: application/views/oqrs/status_info.php:10 msgid "Open request" -msgstr "Öppna förfrågan" +msgstr "Öppen förfrågan" #: application/views/oqrs/showrequests.php:3 #: application/views/oqrs/showrequests.php:51 @@ -15753,10 +16024,6 @@ msgstr "" "Sökningen visar QSOs som är obekräftade på LoTW, men den kontaktade " "anropssignalen har laddats upp till LoTW efter ditt QSO-datum." -#: application/views/search/lotw_unconfirmed.php:32 -msgid "Station location" -msgstr "Stationsplats" - #: application/views/search/lotw_unconfirmed_result.php:10 msgid "Last LoTW upload" msgstr "Senaste LoTW-uppladdning" @@ -16614,6 +16881,9 @@ msgid "" "analytics. Great for when you're operating in multiple locations but they " "are part of the same DXCC or VUCC Circle." msgstr "" +"Stationsloggar låter dig gruppera stationsplatser, detta gör att du kan se " +"alla platser under en session när stations loggen analyseras. Perfekt när du " +"opererar på flera platser som är en del av samma DXCC- eller VUCC-cirkel." #: application/views/stationsetup/stationsetup.php:35 msgid "Edit Linked locations" @@ -17012,42 +17282,6 @@ msgstr "Uppdatera DXCC-data" msgid "Status:" msgstr "Status:" -#: application/views/update/index.php:30 -msgid "Apply DXCC Data to Logbook" -msgstr "Tillämpa DXCC-data på loggbok" - -#: application/views/update/index.php:32 -msgid "" -"After updating, Wavelog can fill in missing callsign information in the " -"logbook using the newly-obtained DXCC data.\n" -"\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that are " -"missing DXCC metadata or to re-check the entire logbook\n" -"\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." -msgstr "" -"Efter uppdatering så kan Wavelog fylla i saknad anropssignalinformation i " -"loggboken med den nyförvärvade DXCC-datan.\n" -"Du kan välja att kontrollera bara de QSOs i loggboken som saknar DXCC-" -"metadata eller att kontrollera hela loggboken igen\n" -"och uppdatera all befintlig metadata ifall den har ändrats." - -#: application/views/update/index.php:35 -msgid "" -"This affects ALL QSOs of ANY user on this instance. The function is " -"deprectated and will be removed in a future version of Wavelog. As " -"replacement use the Logbook-Advanced!" -msgstr "" -"Detta påverkar ALLA QSOs för ALLA användare på denna instans. Funktionen är " -"föråldrad och kommer att tas bort i en framtida version av Wavelog. Använd " -"istället Avancerad Loggbok!" - -#: application/views/update/index.php:42 -msgid "Check QSOs missing DXCC data" -msgstr "Kontrollera QSOs som saknar DXCC-data" - -#: application/views/update/index.php:51 -msgid "Re-check all QSOs in logbook" -msgstr "Kontrollera alla QSOs i loggboken igen" - #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "Ta bort användarkonto" @@ -17276,7 +17510,7 @@ msgstr "DX-vattenfall" #: application/views/user/edit.php:450 msgid "squelched" -msgstr "" +msgstr "dämpad" #: application/views/user/edit.php:453 msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." @@ -17430,7 +17664,7 @@ msgstr "" #: application/views/user/edit.php:688 msgid "Show Fields on QSO Tab" -msgstr "" +msgstr "Visa fält på QSO-fliken" #: application/views/user/edit.php:692 msgid "" @@ -18399,8 +18633,34 @@ msgstr "Skicka förfrågan" msgid "Rcvd" msgstr "Mottagen" -#~ msgid "Show Reference Fields on QSO Tab" -#~ msgstr "Visa referensfält på QSO-fliken" +#~ msgid "Apply DXCC Data to Logbook" +#~ msgstr "Tillämpa DXCC-data på loggbok" + +#~ msgid "" +#~ "After updating, Wavelog can fill in missing callsign information in the " +#~ "logbook using the newly-obtained DXCC data.\n" +#~ "\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that " +#~ "are missing DXCC metadata or to re-check the entire logbook\n" +#~ "\t\t\t\t\t\t\tand update existing metadata as well, in case it has " +#~ "changed." +#~ msgstr "" +#~ "Efter uppdatering så kan Wavelog fylla i saknad anropssignalinformation i " +#~ "loggboken med den nyförvärvade DXCC-datan.\n" +#~ "Du kan välja att kontrollera bara de QSOs i loggboken som saknar DXCC-" +#~ "metadata eller att kontrollera hela loggboken igen\n" +#~ "och uppdatera all befintlig metadata ifall den har ändrats." + +#~ msgid "" +#~ "This affects ALL QSOs of ANY user on this instance. The function is " +#~ "deprectated and will be removed in a future version of Wavelog. As " +#~ "replacement use the Logbook-Advanced!" +#~ msgstr "" +#~ "Detta påverkar ALLA QSOs för ALLA användare på denna instans. Funktionen " +#~ "är föråldrad och kommer att tas bort i en framtida version av Wavelog. " +#~ "Använd istället Avancerad Loggbok!" + +#~ msgid "Re-check all QSOs in logbook" +#~ msgstr "Kontrollera alla QSOs i loggboken igen" #~ msgid "" #~ "Station Logbooks allow you to group Station Locations, this allows you to " @@ -18413,6 +18673,9 @@ msgstr "Mottagen" #~ "när du opererar på flera platser som är en del av samma DXCC- eller VUCC-" #~ "cirkel." +#~ msgid "Show Reference Fields on QSO Tab" +#~ msgstr "Visa referensfält på QSO-fliken" + #~ msgid "" #~ "You might have ADIF errors, the QSOs have still been added. Please check " #~ "the following information:" diff --git a/application/locale/tr_TR/LC_MESSAGES/messages.mo b/application/locale/tr_TR/LC_MESSAGES/messages.mo index 199f1579f..f06ba911f 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 c83e5bf7b..c3a206958 100644 --- a/application/locale/tr_TR/LC_MESSAGES/messages.po +++ b/application/locale/tr_TR/LC_MESSAGES/messages.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-12-13 14:06+0000\n" +"POT-Creation-Date: 2025-12-19 07:34+0000\n" "PO-Revision-Date: 2025-12-08 16:35+0000\n" "Last-Translator: \"Erkin Mercan (TA4AQG-SP9AQG)\" \n" "Language-Team: Turkish , 2025. # "ShenRQ(BH4FJN)" , 2025. # Jerry , 2025. +# MCyiqiehuanying , 2025. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-12-13 14:06+0000\n" -"PO-Revision-Date: 2025-12-03 07:44+0000\n" -"Last-Translator: hellofinch <543933756@qq.com>\n" +"POT-Creation-Date: 2025-12-19 07:34+0000\n" +"PO-Revision-Date: 2025-12-12 09:26+0000\n" +"Last-Translator: Jerry \n" "Language-Team: Chinese (Simplified Han script) \n" "Language: zh_CN\n" @@ -127,8 +128,7 @@ msgstr "" #: application/controllers/Themes.php:17 #: application/controllers/Timeline.php:10 #: application/controllers/Timeplotter.php:11 -#: application/controllers/Update.php:22 application/controllers/Update.php:333 -#: application/controllers/Update.php:344 application/controllers/User.php:14 +#: application/controllers/Update.php:22 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 #: application/controllers/User.php:384 application/controllers/User.php:385 @@ -217,7 +217,7 @@ msgstr "激活的地图" #: application/controllers/Adif.php:61 application/controllers/Adif.php:73 msgid "You're not allowed to access this functionality!" -msgstr "" +msgstr "你无权访问此功能!" #: application/controllers/Adif.php:80 msgid "valid date" @@ -349,8 +349,8 @@ msgstr "奖项 - %s" #: application/views/contesting/index.php:63 #: application/views/interface_assets/header.php:240 #: application/views/logbookadvanced/edit.php:25 -#: application/views/logbookadvanced/index.php:430 -#: application/views/logbookadvanced/index.php:929 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:940 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 @@ -367,9 +367,12 @@ msgstr "DOK" #: application/views/interface_assets/header.php:192 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:26 -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:905 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:916 #: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/logbookadvanced/showMissingDxccQsos.php:16 +#: application/views/logbookadvanced/showStateQsos.php:27 +#: application/views/logbookadvanced/statecheckresult.php:11 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 @@ -454,7 +457,7 @@ msgstr " 并且 " #: 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 -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:436 #: application/views/logbookadvanced/useroptions.php:130 #: application/views/lookup/index.php:10 #: application/views/qslcard/searchresult.php:17 @@ -481,7 +484,7 @@ msgstr "SOTA" #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:458 #: application/views/logbookadvanced/useroptions.php:138 #: application/views/lookup/index.php:12 #: application/views/qso/award_tabs.php:65 @@ -503,8 +506,8 @@ msgstr "WWFF" #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 #: application/views/logbookadvanced/edit.php:30 -#: application/views/logbookadvanced/index.php:438 -#: application/views/logbookadvanced/index.php:923 +#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:934 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 @@ -697,14 +700,14 @@ msgstr "集体台站管理员" #: application/controllers/Club.php:24 msgid "Club Member ADIF" -msgstr "" +msgstr "俱乐部成员 ADIF" #: application/controllers/Club.php:25 msgid "Club Member" msgstr "集体台站成员" -#: application/controllers/Club.php:45 application/models/Club_model.php:75 -#: application/models/Club_model.php:149 application/models/Club_model.php:191 +#: application/controllers/Club.php:45 application/models/Club_model.php:107 +#: application/models/Club_model.php:181 application/models/Club_model.php:223 msgid "Invalid User ID!" msgstr "用户 ID 无效!" @@ -720,8 +723,8 @@ msgstr "集体台站权限" #: application/controllers/Club.php:119 application/controllers/Club.php:148 #: application/controllers/Club.php:175 application/models/Club_model.php:22 -#: application/models/Club_model.php:70 application/models/Club_model.php:144 -#: application/models/Club_model.php:186 +#: application/models/Club_model.php:102 application/models/Club_model.php:176 +#: application/models/Club_model.php:218 msgid "Invalid Club ID!" msgstr "集体台站 ID 无效!" @@ -919,7 +922,7 @@ msgstr "DCL密钥导入" #: application/controllers/Dcl.php:68 application/views/dcl_views/import.php:3 #: application/views/dcl_views/index.php:3 -#: application/views/logbookadvanced/index.php:896 +#: application/views/logbookadvanced/index.php:907 #: application/views/logbookadvanced/useroptions.php:90 #: application/views/qso/edit_ajax.php:434 #: application/views/search/search_result_ajax.php:127 @@ -1109,7 +1112,7 @@ msgstr "eQSL 卡片图片下载" #: application/controllers/Eqsl.php:576 msgid "All eQSLs marked as uploaded" -msgstr "" +msgstr "所有标记为已上传的 eQSL" #: application/controllers/Generic_qsl.php:18 msgid "Confirmations" @@ -1321,7 +1324,7 @@ msgstr "日志簿" #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:171 #: application/views/interface_assets/footer.php:106 -#: application/views/logbookadvanced/index.php:884 +#: application/views/logbookadvanced/index.php:895 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:30 @@ -1455,9 +1458,11 @@ msgstr "eQSL" #: application/views/interface_assets/footer.php:121 #: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:335 -#: application/views/logbookadvanced/index.php:854 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:865 #: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/logbookadvanced/showMissingDxccQsos.php:12 +#: application/views/logbookadvanced/showStateQsos.php:23 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:40 #: application/views/oqrs/notinlogform.php:11 @@ -1506,7 +1511,7 @@ msgstr "模式" #: application/views/contesting/index.php:180 #: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:857 +#: application/views/logbookadvanced/index.php:868 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -1535,7 +1540,7 @@ msgstr "我收对方" #: application/views/contesting/index.php:204 #: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:860 +#: application/views/logbookadvanced/index.php:871 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1585,8 +1590,8 @@ msgstr "DXCC 实体" #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/edit.php:28 -#: application/views/logbookadvanced/index.php:444 -#: application/views/logbookadvanced/index.php:920 +#: application/views/logbookadvanced/index.php:446 +#: application/views/logbookadvanced/index.php:931 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/lookup/index.php:7 @@ -1617,9 +1622,11 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 #: application/views/logbookadvanced/edit.php:96 -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:908 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:919 #: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/logbookadvanced/showMissingDxccQsos.php:14 +#: application/views/logbookadvanced/showStateQsos.php:25 #: application/views/logbookadvanced/useroptions.php:106 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 @@ -1649,9 +1656,12 @@ msgstr "州" #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:869 +#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:880 #: application/views/logbookadvanced/qslcarousel.php:39 +#: application/views/logbookadvanced/showMissingDxccQsos.php:15 +#: application/views/logbookadvanced/showStateQsos.php:26 +#: application/views/logbookadvanced/showUpdateResult.php:105 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/lookup/index.php:6 #: application/views/qslcard/confirmationresult.php:19 @@ -1692,8 +1702,8 @@ msgstr "网格坐标" #: application/views/gridmap/index.php:225 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 -#: application/views/logbookadvanced/index.php:489 -#: application/views/logbookadvanced/index.php:959 +#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:970 #: application/views/logbookadvanced/useroptions.php:174 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 @@ -1753,9 +1763,11 @@ msgstr "距离" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:56 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:863 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:874 #: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/logbookadvanced/showMissingDxccQsos.php:13 +#: application/views/logbookadvanced/showStateQsos.php:24 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 #: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 @@ -1803,7 +1815,7 @@ msgstr "频段" #: application/views/bandmap/list.php:567 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 -#: application/views/logbookadvanced/index.php:866 +#: application/views/logbookadvanced/index.php:877 #: application/views/logbookadvanced/useroptions.php:50 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 @@ -1829,8 +1841,8 @@ msgstr "频率" #: application/controllers/Radio.php:43 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:460 -#: application/views/logbookadvanced/index.php:941 +#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:952 #: application/views/logbookadvanced/useroptions.php:150 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 @@ -1858,7 +1870,7 @@ msgstr "操作员" #: application/views/dxatlas/index.php:65 #: application/views/interface_assets/footer.php:822 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:319 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 @@ -2325,7 +2337,7 @@ msgid "Timestamp" msgstr "时间戳" #: application/controllers/Radio.php:49 -#: application/views/logbookadvanced/index.php:821 +#: application/views/logbookadvanced/index.php:829 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:185 @@ -2364,7 +2376,7 @@ msgstr "默认(点击释放)" #: application/views/interface_assets/footer.php:682 #: application/views/interface_assets/footer.php:691 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:808 +#: application/views/logbookadvanced/index.php:816 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 #: application/views/satellite/index.php:58 #: application/views/search/stored_queries.php:21 @@ -2387,7 +2399,7 @@ msgstr "编辑" #: application/views/interface_assets/footer.php:2800 #: application/views/interface_assets/footer.php:2818 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:824 +#: application/views/logbookadvanced/index.php:835 #: application/views/lotw_views/index.php:134 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 @@ -2406,7 +2418,7 @@ msgstr "删除" #: application/controllers/Radio.php:122 msgid "No CAT interfaced radios found." -msgstr "无 CAT 控制电台。" +msgstr "未检测到与 CAT 相连的电台设备。" #: application/controllers/Radio.php:137 application/views/radio/index.php:2 msgid "Edit CAT Settings" @@ -2495,7 +2507,7 @@ msgstr "卫星时钟" #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 #: application/views/interface_assets/header.php:399 -#: application/views/logbookadvanced/index.php:797 +#: application/views/logbookadvanced/index.php:805 #: application/views/oqrs/index.php:30 #: application/views/oqrs/showrequests.php:69 #: application/views/qslcard/searchform.php:8 @@ -2832,83 +2844,83 @@ msgstr "DXCC 例外:" msgid "Dxcc Prefixes:" msgstr "DXCC 前缀:" -#: application/controllers/Update.php:362 +#: application/controllers/Update.php:340 msgid "SCP Update complete. Result: " msgstr "SCP 更新已完成。结果为: " -#: application/controllers/Update.php:364 +#: application/controllers/Update.php:342 msgid "SCP Update failed. Result: " msgstr "SCP 更新失败。结果为: " -#: application/controllers/Update.php:401 +#: application/controllers/Update.php:379 msgid "LoTW Users Update complete. Result: " msgstr "LoTW 用户更新完成。结果为: " -#: application/controllers/Update.php:403 +#: application/controllers/Update.php:381 msgid "LoTW Users Update failed. Result: " msgstr "LoTW 用户更新失败。结果为: " -#: application/controllers/Update.php:438 +#: application/controllers/Update.php:416 msgid "DOK Update complete. Result: " msgstr "DOK 更新完成。结果为: " -#: application/controllers/Update.php:440 +#: application/controllers/Update.php:418 msgid "DOK Update failed. Result: " msgstr "DOK 更新失败。结果为: " -#: application/controllers/Update.php:473 +#: application/controllers/Update.php:451 msgid "SOTA Update complete. Result: " msgstr "SOTA 更新完成。结果为: " -#: application/controllers/Update.php:475 +#: application/controllers/Update.php:453 msgid "SOTA Update failed. Result: " msgstr "SOTA 更新失败。结果为: " -#: application/controllers/Update.php:508 +#: application/controllers/Update.php:486 msgid "WWFF Update complete. Result: " msgstr "WWFF 更新成功。结果为: " -#: application/controllers/Update.php:510 +#: application/controllers/Update.php:488 msgid "WWFF Update failed. Result: " msgstr "WWFF 更新失败。结果为: " -#: application/controllers/Update.php:544 +#: application/controllers/Update.php:522 msgid "HAMqsl Update complete. Result: " msgstr "HAMqsl 更新完成。结果: " -#: application/controllers/Update.php:546 +#: application/controllers/Update.php:524 msgid "HAMqsl Update failed. Result: " msgstr "HAMqsl 更新失败。结果: " -#: application/controllers/Update.php:579 +#: application/controllers/Update.php:557 msgid "POTA Update complete. Result: " msgstr "POTA 更新完成。结果为: " -#: application/controllers/Update.php:581 +#: application/controllers/Update.php:559 msgid "POTA Update failed. Result: " msgstr "POTA 更新失败。结果为: " -#: application/controllers/Update.php:610 +#: application/controllers/Update.php:588 msgid "TLE Update complete. Result: " msgstr "TLE 更新完成。结果为: " -#: application/controllers/Update.php:612 +#: application/controllers/Update.php:590 msgid "TLE Update failed. Result: " msgstr "TLE 更新失败。结果为: " -#: application/controllers/Update.php:639 +#: application/controllers/Update.php:617 msgid "LoTW SAT Update" msgstr "LoTW 卫星数据更新" -#: application/controllers/Update.php:667 +#: application/controllers/Update.php:645 msgid "Update of Hams of Note" msgstr "Hams of Note 更新" -#: application/controllers/Update.php:707 +#: application/controllers/Update.php:685 msgid "VUCC Grid file update complete. Result: " msgstr "VUCC 网格文件更新完成。结果: " -#: application/controllers/Update.php:709 +#: application/controllers/Update.php:687 msgid "VUCC Grid file update failed. Result: " msgstr "VUCC 网格文件更新失败。结果: " @@ -3341,11 +3353,11 @@ msgctxt "Division Name (States in various countries)." msgid "City / Ku / Gun" msgstr "郡" -#: application/models/Club_model.php:154 +#: application/models/Club_model.php:186 msgid "Invalid Permission Level!" msgstr "无效的角色!" -#: application/models/Club_model.php:169 +#: application/models/Club_model.php:201 msgid "Error adding Club Member!" msgstr "添加集体台站成员错误!" @@ -3493,7 +3505,7 @@ msgstr "日志中已存在POTA数据" msgid "QSO updated" msgstr "QSO已上传" -#: application/models/Logbook_model.php:6405 +#: application/models/Logbook_model.php:6331 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3707,28 +3719,28 @@ msgstr "差异" #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:337 -#: application/views/logbookadvanced/index.php:348 -#: application/views/logbookadvanced/index.php:359 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:402 -#: application/views/logbookadvanced/index.php:416 -#: application/views/logbookadvanced/index.php:470 -#: application/views/logbookadvanced/index.php:508 -#: application/views/logbookadvanced/index.php:519 -#: application/views/logbookadvanced/index.php:530 -#: application/views/logbookadvanced/index.php:540 -#: application/views/logbookadvanced/index.php:552 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/index.php:575 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/index.php:599 -#: application/views/logbookadvanced/index.php:610 -#: application/views/logbookadvanced/index.php:621 -#: application/views/logbookadvanced/index.php:630 -#: application/views/logbookadvanced/index.php:653 -#: application/views/logbookadvanced/index.php:662 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:418 +#: application/views/logbookadvanced/index.php:472 +#: application/views/logbookadvanced/index.php:510 +#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/index.php:532 +#: application/views/logbookadvanced/index.php:542 +#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/index.php:565 +#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:588 +#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:612 +#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/index.php:655 +#: application/views/logbookadvanced/index.php:664 #: application/views/lotw/import.php:55 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -3794,8 +3806,8 @@ msgstr "周期" #: application/views/distances/index.php:53 #: application/views/gridmap/index.php:71 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:947 +#: application/views/logbookadvanced/index.php:377 +#: application/views/logbookadvanced/index.php:958 #: application/views/logbookadvanced/useroptions.php:158 #: application/views/timeline/index.php:79 application/views/user/edit.php:351 #: application/views/view_log/partial/log_ajax.php:21 @@ -3815,7 +3827,7 @@ msgstr "全部(除卫星以外)" #: application/views/gridmap/index.php:75 #: application/views/logbookadvanced/edit.php:207 #: application/views/logbookadvanced/edit.php:215 -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:473 #: application/views/timeline/index.php:84 msgid "None/Empty" msgstr "无/空" @@ -3825,7 +3837,7 @@ msgstr "无/空" #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:77 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:381 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:532 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 @@ -3839,7 +3851,7 @@ msgstr "Aircraft Scatter" #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:78 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:382 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:533 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 @@ -3853,7 +3865,7 @@ msgstr "Aurora" #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:79 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:383 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:534 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 @@ -3867,7 +3879,7 @@ msgstr "Aurora-E" #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:80 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:384 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:535 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 @@ -3881,7 +3893,7 @@ msgstr "Back scatter" #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:81 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:385 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:536 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 @@ -3895,7 +3907,7 @@ msgstr "EchoLink" #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:82 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:386 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:537 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 @@ -3909,7 +3921,7 @@ msgstr "EME" #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:83 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:385 +#: application/views/logbookadvanced/index.php:387 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:538 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 @@ -3923,7 +3935,7 @@ msgstr "Sporadic E" #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:84 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:386 +#: application/views/logbookadvanced/index.php:388 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:539 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 @@ -3937,7 +3949,7 @@ msgstr "Field Aligned Irregularities" #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:85 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:387 +#: application/views/logbookadvanced/index.php:389 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:540 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 @@ -3951,7 +3963,7 @@ msgstr "F2 Reflection" #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:86 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:388 +#: application/views/logbookadvanced/index.php:390 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:541 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 @@ -3965,7 +3977,7 @@ msgstr "Internet-assisted" #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:87 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:391 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:542 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 @@ -3979,7 +3991,7 @@ msgstr "Ionoscatter" #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:88 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:392 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:543 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 @@ -3993,7 +4005,7 @@ msgstr "IRLP" #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:89 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:393 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:544 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 @@ -4007,7 +4019,7 @@ msgstr "Meteor scatter" #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:90 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:394 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:545 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 @@ -4021,7 +4033,7 @@ msgstr "Terrestrial or atmospheric repeater or transponder" #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:91 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:395 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:546 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 @@ -4035,7 +4047,7 @@ msgstr "Rain scatter" #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:92 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:396 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:547 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 @@ -4049,7 +4061,7 @@ msgstr "Satellite" #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:93 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:397 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:548 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 @@ -4063,7 +4075,7 @@ msgstr "Trans-equatorial" #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:94 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:398 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:549 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 @@ -4124,7 +4136,7 @@ msgstr "显示" #: application/views/hamsat/index.php:32 #: application/views/interface_assets/header.php:210 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:357 +#: application/views/logbookadvanced/index.php:359 #: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 @@ -4145,7 +4157,7 @@ msgstr "卫星" #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:118 -#: application/views/logbookadvanced/index.php:366 +#: application/views/logbookadvanced/index.php:368 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:54 @@ -4275,6 +4287,8 @@ msgstr "未找到!" #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/logbookadvanced/showUpdateResult.php:60 +#: application/views/logbookadvanced/showUpdateResult.php:104 #: application/views/lotw_views/index.php:32 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 @@ -4455,6 +4469,8 @@ msgstr "时间" #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 +#: application/views/logbookadvanced/showMissingDxccQsos.php:10 +#: application/views/logbookadvanced/showStateQsos.php:21 #: application/views/public_search/result.php:14 #: application/views/qslcard/searchresult.php:8 #: application/views/qso/components/previous_contacts.php:7 @@ -4897,7 +4913,7 @@ msgstr "请查看 ADIF 错误提示 %s。" #: application/views/adif/import_success.php:59 msgid "You might have ADIF errors. Please check the following information:" -msgstr "" +msgstr "ADIF 文件出现错误,请检查以下信息:" #: application/views/adif/mark_lotw.php:12 #: application/views/hrdlog/mark_hrdlog.php:12 @@ -5083,7 +5099,7 @@ msgstr "权限" #: application/views/club/permissions.php:250 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:740 +#: application/views/logbookadvanced/index.php:742 #: application/views/notes/main.php:77 application/views/qrz/export.php:44 #: application/views/user/index.php:33 application/views/user/index.php:160 #: application/views/webadif/export.php:45 @@ -5218,8 +5234,8 @@ msgid "Filtering on" msgstr "筛选打开" #: application/views/awards/counties/details.php:13 -#: application/views/logbookadvanced/index.php:426 -#: application/views/logbookadvanced/index.php:911 +#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:922 #: application/views/logbookadvanced/useroptions.php:110 msgid "County" msgstr "县" @@ -5310,8 +5326,8 @@ msgstr "总计" #: application/views/gridmap/index.php:229 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 -#: application/views/logbookadvanced/index.php:400 -#: application/views/logbookadvanced/index.php:914 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:925 #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:308 @@ -5373,7 +5389,7 @@ msgstr "CQ WAZ 奖" #: application/views/awards/dxcc/index.php:41 #: application/views/awards/wpx/index.php:13 #: application/views/gridmap/index.php:19 -#: application/views/logbookadvanced/index.php:270 +#: application/views/logbookadvanced/index.php:272 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" msgstr "筛选器" @@ -5385,7 +5401,7 @@ msgstr "查看 CQ 分区地图" #: application/views/awards/cq/index.php:55 #: application/views/awards/dxcc/index.php:51 #: application/views/gridmap/index.php:28 -#: application/views/logbookadvanced/index.php:276 +#: application/views/logbookadvanced/index.php:278 msgid "Date Presets" msgstr "预设日期" @@ -5397,55 +5413,55 @@ msgstr "预设日期" #: application/views/dashboard/index.php:408 #: application/views/dashboard/index.php:429 #: application/views/gridmap/index.php:31 -#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:280 msgid "Today" msgstr "今天" #: application/views/awards/cq/index.php:58 #: application/views/awards/dxcc/index.php:54 #: application/views/gridmap/index.php:32 -#: application/views/logbookadvanced/index.php:279 +#: application/views/logbookadvanced/index.php:281 msgid "Yesterday" msgstr "昨日" #: application/views/awards/cq/index.php:59 #: application/views/awards/dxcc/index.php:55 #: application/views/gridmap/index.php:33 -#: application/views/logbookadvanced/index.php:280 +#: application/views/logbookadvanced/index.php:282 msgid "Last 7 Days" msgstr "过去7天" #: application/views/awards/cq/index.php:60 #: application/views/awards/dxcc/index.php:56 #: application/views/gridmap/index.php:34 -#: application/views/logbookadvanced/index.php:281 +#: application/views/logbookadvanced/index.php:283 msgid "Last 30 Days" msgstr "过去30天" #: application/views/awards/cq/index.php:61 #: application/views/awards/dxcc/index.php:57 #: application/views/gridmap/index.php:35 -#: application/views/logbookadvanced/index.php:282 +#: application/views/logbookadvanced/index.php:284 msgid "This Month" msgstr "这个月" #: application/views/awards/cq/index.php:62 #: application/views/awards/dxcc/index.php:58 #: application/views/gridmap/index.php:36 -#: application/views/logbookadvanced/index.php:283 +#: application/views/logbookadvanced/index.php:285 msgid "Last Month" msgstr "上个月" #: application/views/awards/cq/index.php:63 #: application/views/awards/dxcc/index.php:59 #: application/views/gridmap/index.php:37 -#: application/views/logbookadvanced/index.php:284 +#: application/views/logbookadvanced/index.php:286 msgid "This Year" msgstr "今年" #: application/views/awards/cq/index.php:64 #: application/views/awards/dxcc/index.php:60 -#: application/views/logbookadvanced/index.php:285 +#: application/views/logbookadvanced/index.php:287 msgid "Last Year" msgstr "去年" @@ -5453,7 +5469,7 @@ msgstr "去年" #: application/views/awards/dxcc/index.php:61 #: application/views/gridmap/index.php:38 #: application/views/interface_assets/footer.php:52 -#: application/views/logbookadvanced/index.php:286 +#: application/views/logbookadvanced/index.php:288 #: application/views/qso/index.php:757 msgid "Clear" msgstr "清除" @@ -5601,7 +5617,7 @@ msgstr "表格" #: application/views/awards/waja/index.php:135 #: application/views/awards/wap/index.php:129 #: application/views/awards/was/index.php:133 -#: application/views/logbookadvanced/index.php:813 +#: application/views/logbookadvanced/index.php:821 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "地图" @@ -5755,8 +5771,8 @@ msgstr "各个频段" #: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:828 -#: application/views/logbookadvanced/index.php:829 +#: application/views/logbookadvanced/index.php:839 +#: application/views/logbookadvanced/index.php:840 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:43 application/views/user/edit.php:723 @@ -5825,7 +5841,7 @@ msgstr "包括已删除" #: application/views/bandmap/list.php:339 #: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:217 -#: application/views/logbookadvanced/index.php:473 +#: application/views/logbookadvanced/index.php:475 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:480 @@ -5839,7 +5855,7 @@ msgstr "南极洲" #: application/views/bandmap/list.php:338 #: application/views/bandmap/list.php:352 #: application/views/logbookadvanced/edit.php:216 -#: application/views/logbookadvanced/index.php:472 +#: application/views/logbookadvanced/index.php:474 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:479 @@ -5853,7 +5869,7 @@ msgstr "非洲" #: application/views/bandmap/list.php:340 #: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 -#: application/views/logbookadvanced/index.php:475 +#: application/views/logbookadvanced/index.php:477 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:481 @@ -5867,7 +5883,7 @@ msgstr "亚洲" #: application/views/bandmap/list.php:341 #: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:220 -#: application/views/logbookadvanced/index.php:476 +#: application/views/logbookadvanced/index.php:478 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:482 @@ -5881,7 +5897,7 @@ msgstr "欧洲" #: application/views/bandmap/list.php:342 #: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:218 -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:476 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:483 @@ -5895,7 +5911,7 @@ msgstr "北美洲" #: application/views/bandmap/list.php:344 #: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:221 -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:479 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:485 @@ -5909,7 +5925,7 @@ msgstr "南美洲" #: application/views/bandmap/list.php:343 #: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:222 -#: application/views/logbookadvanced/index.php:478 +#: application/views/logbookadvanced/index.php:480 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:484 @@ -5958,6 +5974,7 @@ msgstr "DXCC名称" #: application/views/awards/dxcc/index.php:276 #: application/views/awards/iota/index.php:199 #: application/views/awards/wae/index.php:163 +#: application/views/logbookadvanced/statecheckresult.php:10 #: application/views/timeline/index.php:199 #: application/views/timeline/index.php:297 msgid "Prefix" @@ -6200,7 +6217,7 @@ msgstr "显示IOTA地图" #: application/views/contesting/index.php:229 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:872 +#: application/views/logbookadvanced/index.php:883 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:58 #: application/views/lotw/satupdate.php:7 @@ -6228,8 +6245,8 @@ msgstr "已删除" #: application/views/gridmap/index.php:231 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 -#: application/views/logbookadvanced/index.php:414 -#: application/views/logbookadvanced/index.php:917 +#: application/views/logbookadvanced/index.php:416 +#: application/views/logbookadvanced/index.php:928 #: application/views/logbookadvanced/useroptions.php:118 #: application/views/lookup/index.php:8 application/views/qso/edit_ajax.php:316 #: application/views/qso/index.php:515 @@ -6375,7 +6392,7 @@ msgstr "" #: application/views/awards/pl_polska/index.php:54 msgid "Station Logbook" -msgstr "" +msgstr "台站日志" #: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" @@ -6510,7 +6527,8 @@ msgid "Band Categories" msgstr "频段分类" #: application/views/awards/pl_polska/index.php:372 -#: application/views/logbookadvanced/index.php:772 +#: application/views/logbookadvanced/dbtoolsdialog.php:47 +#: application/views/logbookadvanced/index.php:773 msgid "Fix State" msgstr "修正省/州" @@ -6651,8 +6669,10 @@ msgid "Reference" msgstr "标识符" #: application/views/awards/sig/qso_list.php:10 -#: application/views/logbookadvanced/index.php:845 +#: application/views/logbookadvanced/index.php:856 #: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/logbookadvanced/showMissingDxccQsos.php:11 +#: application/views/logbookadvanced/showStateQsos.php:22 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 #: application/views/qso/components/previous_contacts.php:6 @@ -6793,8 +6813,8 @@ msgstr "奖项 - 通联世界大洲奖(WAC)" #: application/views/bandmap/list.php:571 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 -#: application/views/logbookadvanced/index.php:468 -#: application/views/logbookadvanced/index.php:956 +#: application/views/logbookadvanced/index.php:470 +#: application/views/logbookadvanced/index.php:967 #: application/views/logbookadvanced/useroptions.php:170 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:476 @@ -6976,7 +6996,7 @@ msgstr "鼠标停留到一个州" #: application/views/awards/was/index.php:5 #: application/views/awards/was/index.php:166 msgid "inc." -msgstr "" +msgstr "inc." #: application/views/awards/was/index.php:25 msgid "WAS Award" @@ -7141,7 +7161,7 @@ msgstr "清除筛选条件" #: application/views/bandmap/list.php:19 msgid "Band filter preserved (band lock is active)" -msgstr "" +msgstr "频段筛选已保存(频段锁已激活)" #: application/views/bandmap/list.php:21 msgid "Radio set to None - CAT connection disabled" @@ -7181,27 +7201,27 @@ msgstr "点击以启用 CAT 连接" #: application/views/bandmap/list.php:31 msgid "CAT following radio - Click to disable" -msgstr "" +msgstr "CAT 控制电台 - 点击禁用" #: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 msgid "Click to enable band lock (requires CAT connection)" -msgstr "" +msgstr "点击以启用频段锁定(需连接 CAT 线)" #: application/views/bandmap/list.php:33 msgid "Band lock active - Click to disable" -msgstr "" +msgstr "频段锁已激活 - 点击禁用" #: application/views/bandmap/list.php:34 msgid "Band Lock" -msgstr "" +msgstr "频段锁" #: application/views/bandmap/list.php:35 msgid "Band lock enabled - band filter will track radio band" -msgstr "" +msgstr "频段锁定已启用—频段滤波器将跟踪电台频段" #: application/views/bandmap/list.php:36 msgid "Band filter changed to" -msgstr "" +msgstr "频段筛选器更改为" #: application/views/bandmap/list.php:37 msgid "by transceiver" @@ -7285,35 +7305,35 @@ msgstr "切换语音模式筛选器" #: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 msgid "Favorites" -msgstr "" +msgstr "收藏夹" #: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 msgid "Save Current Filters..." -msgstr "" +msgstr "保存当前筛选器..." #: application/views/bandmap/list.php:62 msgid "Enter a name for this filter preset:" -msgstr "" +msgstr "输入筛选器预设的名称:" #: application/views/bandmap/list.php:63 msgid "Filter preset saved" -msgstr "" +msgstr "筛选器预设已保存" #: application/views/bandmap/list.php:64 msgid "Filter preset loaded" -msgstr "" +msgstr "筛选器预设已加载" #: application/views/bandmap/list.php:65 msgid "Filter preset deleted" -msgstr "" +msgstr "筛选器预设已删除" #: application/views/bandmap/list.php:66 msgid "Are you sure to delete this filter preset?" -msgstr "" +msgstr "您确定要删除此筛选器预设吗?" #: application/views/bandmap/list.php:67 msgid "No saved filter presets" -msgstr "" +msgstr "没有已保存的筛选器预设" #: application/views/bandmap/list.php:68 msgid "" @@ -7428,8 +7448,8 @@ msgstr "新 spot(< 5分钟)" #: application/views/bandmap/list.php:510 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 -#: application/views/logbookadvanced/index.php:464 -#: application/views/logbookadvanced/index.php:950 +#: application/views/logbookadvanced/index.php:466 +#: application/views/logbookadvanced/index.php:961 #: application/views/logbookadvanced/useroptions.php:162 #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 @@ -7535,8 +7555,8 @@ msgstr "Spotter" #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:485 -#: application/views/logbookadvanced/index.php:944 +#: application/views/logbookadvanced/index.php:487 +#: application/views/logbookadvanced/index.php:955 #: application/views/logbookadvanced/useroptions.php:154 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:379 #: application/views/view_log/qso.php:228 @@ -8057,7 +8077,6 @@ msgstr "" #: application/views/bands/edit.php:2 #: application/views/logbookadvanced/index.php:53 -#: application/views/update/index.php:35 msgid "WARNING" msgstr "警告" @@ -8237,7 +8256,7 @@ msgid "" msgstr "RSGB-IOTA 比赛,此信息包含 IOTA 名称(非 IOTA 标识符)。" #: application/views/cabrillo/index.php:48 -#: application/views/logbookadvanced/index.php:787 +#: application/views/logbookadvanced/index.php:795 #: application/views/oqrs/showrequests.php:31 #: application/views/qso/index.php:362 #: application/views/station_profile/edit.php:96 @@ -8350,19 +8369,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:187 #: application/views/logbookadvanced/edit.php:193 #: application/views/logbookadvanced/edit.php:199 -#: application/views/logbookadvanced/index.php:509 -#: application/views/logbookadvanced/index.php:520 -#: application/views/logbookadvanced/index.php:553 -#: application/views/logbookadvanced/index.php:564 -#: application/views/logbookadvanced/index.php:576 -#: application/views/logbookadvanced/index.php:587 -#: application/views/logbookadvanced/index.php:600 -#: application/views/logbookadvanced/index.php:611 -#: application/views/logbookadvanced/index.php:622 -#: application/views/logbookadvanced/index.php:631 -#: application/views/logbookadvanced/index.php:646 -#: application/views/logbookadvanced/index.php:654 -#: application/views/logbookadvanced/index.php:663 +#: application/views/logbookadvanced/index.php:511 +#: application/views/logbookadvanced/index.php:522 +#: application/views/logbookadvanced/index.php:555 +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/index.php:578 +#: application/views/logbookadvanced/index.php:589 +#: application/views/logbookadvanced/index.php:602 +#: application/views/logbookadvanced/index.php:613 +#: application/views/logbookadvanced/index.php:624 +#: application/views/logbookadvanced/index.php:633 +#: application/views/logbookadvanced/index.php:648 +#: application/views/logbookadvanced/index.php:656 +#: application/views/logbookadvanced/index.php:665 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:444 #: application/views/qso/edit_ajax.php:477 @@ -8415,19 +8434,19 @@ msgstr "是" #: application/views/logbookadvanced/edit.php:188 #: application/views/logbookadvanced/edit.php:194 #: application/views/logbookadvanced/edit.php:200 -#: application/views/logbookadvanced/index.php:510 -#: application/views/logbookadvanced/index.php:521 -#: application/views/logbookadvanced/index.php:554 -#: application/views/logbookadvanced/index.php:565 -#: application/views/logbookadvanced/index.php:577 -#: application/views/logbookadvanced/index.php:588 -#: application/views/logbookadvanced/index.php:601 -#: application/views/logbookadvanced/index.php:612 -#: application/views/logbookadvanced/index.php:623 -#: application/views/logbookadvanced/index.php:632 -#: application/views/logbookadvanced/index.php:647 -#: application/views/logbookadvanced/index.php:655 -#: application/views/logbookadvanced/index.php:664 +#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:567 +#: application/views/logbookadvanced/index.php:579 +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/index.php:603 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/index.php:625 +#: application/views/logbookadvanced/index.php:634 +#: application/views/logbookadvanced/index.php:649 +#: application/views/logbookadvanced/index.php:657 +#: application/views/logbookadvanced/index.php:666 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:443 #: application/views/qso/edit_ajax.php:476 @@ -8558,6 +8577,7 @@ msgstr "可用的角色" #: application/views/club/permissions.php:26 #: application/views/eqsl/download.php:45 +#: application/views/logbookadvanced/statecheckresult.php:13 msgid "Action" msgstr "操作" @@ -8753,7 +8773,7 @@ msgstr "请先设置用户名及密码,并且启用台站的日志上传功能 #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 -#: application/views/logbookadvanced/index.php:968 +#: application/views/logbookadvanced/index.php:979 #: application/views/logbookadvanced/useroptions.php:186 #: application/views/qrz/export.php:39 #: application/views/qslprint/qslprint.php:32 @@ -9204,7 +9224,7 @@ msgid "Locator" msgstr "定位地图" #: application/views/contesting/index.php:69 -#: application/views/logbookadvanced/index.php:875 +#: application/views/logbookadvanced/index.php:886 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/qso/edit_ajax.php:177 msgid "QTH" @@ -9669,14 +9689,14 @@ msgstr "已收到" #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 -#: application/views/logbookadvanced/index.php:511 -#: application/views/logbookadvanced/index.php:522 -#: application/views/logbookadvanced/index.php:555 -#: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/index.php:578 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/index.php:602 -#: application/views/logbookadvanced/index.php:613 +#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:557 +#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:591 +#: application/views/logbookadvanced/index.php:604 +#: application/views/logbookadvanced/index.php:615 #: application/views/oqrs/qsolist.php:57 application/views/oqrs/qsolist.php:99 #: application/views/qslprint/qsolist.php:68 #: application/views/qslprint/qsolist.php:110 @@ -10228,6 +10248,11 @@ msgid "Check for new version" msgstr "检查新版本" #: application/views/debug/index.php:495 +#: application/views/logbookadvanced/checkresult.php:37 +#: application/views/logbookadvanced/checkresult.php:53 +#: application/views/logbookadvanced/checkresult.php:76 +#: application/views/logbookadvanced/checkresult.php:87 +#: application/views/logbookadvanced/checkresult.php:97 #: application/views/logbookadvanced/index.php:57 msgid "Update now" msgstr "现在升级" @@ -11406,7 +11431,7 @@ msgstr "" "略该警告。" #: application/views/interface_assets/footer.php:878 -#: application/views/logbookadvanced/index.php:792 +#: application/views/logbookadvanced/index.php:800 msgid "Callsign: " msgstr "呼号: " @@ -11659,7 +11684,7 @@ msgid "Log" msgstr "日志" #: application/views/interface_assets/header.php:398 -#: application/views/logbookadvanced/index.php:689 +#: application/views/logbookadvanced/index.php:691 #: application/views/oqrs/index.php:28 application/views/user/edit.php:491 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" @@ -11740,7 +11765,7 @@ msgid "DCL Export" msgstr "DCL 导出" #: application/views/interface_assets/header.php:536 -#: application/views/logbookadvanced/index.php:831 +#: application/views/logbookadvanced/index.php:842 msgid "Help" msgstr "帮助" @@ -11994,6 +12019,7 @@ msgid "Label types" msgstr "标签类型" #: application/views/labels/index.php:81 +#: application/views/logbookadvanced/statecheckresult.php:12 #: application/views/statistics/index.php:70 #: application/views/statistics/index.php:114 msgid "QSOs" @@ -12059,20 +12085,20 @@ msgid "" "or JO90AB12) when a match is confident." msgstr "" -#: application/views/logbookadvanced/continentdialog.php:2 -msgid "" -"Update all QSOs with the continent based on the DXCC country of the QSO." -msgstr "根据通联的 DXCC 国家更新所有通联的洲。" +#: application/views/logbookadvanced/checkresult.php:27 +msgid "Distance Check Results" +msgstr "" -#: application/views/logbookadvanced/continentdialog.php:3 -msgid "This is useful if you have imported QSOs without continent information." -msgstr "如果你导入的 QSO 没有大洲信息,这将很有用。" - -#: application/views/logbookadvanced/continentdialog.php:4 -msgid "" -"Update will only set the continent for QSOs where the continent is empty." -msgstr "只会为空白大洲的 QSO 更新设置大洲。" +#: application/views/logbookadvanced/checkresult.php:28 +#: application/views/logbookadvanced/checkresult.php:44 +#: application/views/logbookadvanced/checkresult.php:60 +#: application/views/logbookadvanced/checkresult.php:72 +#: application/views/logbookadvanced/checkresult.php:83 +#: application/views/logbookadvanced/checkresult.php:94 +msgid "QSOs to update found:" +msgstr "" +#: application/views/logbookadvanced/checkresult.php:31 #: application/views/logbookadvanced/distancedialog.php:2 msgid "" "Update all QSOs with the distance based on your gridsquare set in the " @@ -12082,14 +12108,151 @@ msgstr "" "根据你在电台配置文件及 QSO 友台所设的网格位置来更新所有 QSO 的距离。距离将根" "据设置的短路径或长路径进行计算。" +#: application/views/logbookadvanced/checkresult.php:32 #: application/views/logbookadvanced/distancedialog.php:3 msgid "This is useful if you have imported QSOs without distance information." msgstr "如果你导入的 QSO 没有距离信息,这将很有用。" +#: application/views/logbookadvanced/checkresult.php:33 #: application/views/logbookadvanced/distancedialog.php:4 msgid "Update will only set the distance for QSOs where the distance is empty." msgstr "更新只会设置距离为空的 QSO。" +#: application/views/logbookadvanced/checkresult.php:43 +msgid "Continent Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:47 +#: application/views/logbookadvanced/continentdialog.php:2 +msgid "" +"Update all QSOs with the continent based on the DXCC country of the QSO." +msgstr "根据通联的 DXCC 国家更新所有通联的洲。" + +#: application/views/logbookadvanced/checkresult.php:48 +#: application/views/logbookadvanced/continentdialog.php:3 +msgid "This is useful if you have imported QSOs without continent information." +msgstr "如果你导入的 QSO 没有大洲信息,这将很有用。" + +#: application/views/logbookadvanced/checkresult.php:49 +#: application/views/logbookadvanced/continentdialog.php:4 +msgid "" +"Update will only set the continent for QSOs where the continent is empty." +msgstr "只会为空白大洲的 QSO 更新设置大洲。" + +#: application/views/logbookadvanced/checkresult.php:59 +msgid "DXCC Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:64 +#: application/views/logbookadvanced/statecheckresult.php:30 +msgid "Run fix" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:71 +msgid "CQ Zone Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:82 +msgid "ITU Zone Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:93 +msgid "Gridsquare Check Results" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:4 +msgid "Data Repair Tools" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:6 +msgid "Wiki Help" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:11 +#: application/views/logbookadvanced/index.php:771 +msgid "Fix CQ Zones" +msgstr "修复 CQ 分区" + +#: application/views/logbookadvanced/dbtoolsdialog.php:12 +msgid "Update missing CQ zone information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:16 +#: application/views/logbookadvanced/dbtoolsdialog.php:28 +#: application/views/logbookadvanced/dbtoolsdialog.php:40 +#: application/views/logbookadvanced/dbtoolsdialog.php:52 +#: application/views/logbookadvanced/dbtoolsdialog.php:64 +#: application/views/logbookadvanced/dbtoolsdialog.php:76 +#: application/views/logbookadvanced/dbtoolsdialog.php:102 +msgid "Check" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:23 +#: application/views/logbookadvanced/index.php:772 +msgid "Fix ITU Zones" +msgstr "修复 ITU 分区" + +#: application/views/logbookadvanced/dbtoolsdialog.php:24 +msgid "Update missing ITU zone information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:35 +msgid "Fix Continent" +msgstr "修正大洲" + +#: application/views/logbookadvanced/dbtoolsdialog.php:36 +msgid "Update missing or incorrect continent information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:48 +msgid "Update missing state/province information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:59 +#: application/views/logbookadvanced/index.php:68 +msgid "Update Distances" +msgstr "更新距离" + +#: application/views/logbookadvanced/dbtoolsdialog.php:60 +msgid "Calculate and update distance information for QSOs" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:71 +msgid "Check QSOs missing DXCC data" +msgstr "检查缺失 DXCC 数据的 QSO" + +#: application/views/logbookadvanced/dbtoolsdialog.php:72 +msgid "Identify QSOs that are missing DXCC information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:83 +msgid "Re-check DXCC for all QSOs in the logbook" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:84 +msgid "Use Wavelog to determine DXCC for all QSOs." +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:85 +msgid "This will overwrite ALL existing DXCC information!" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:89 +msgid "Run" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:96 +msgid "Lookup QSOs with missing grid in callbook" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:97 +msgid "Use callbook lookup to set gridsquare" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:98 +msgid "This is limited to 250 callsigns for each run!" +msgstr "" + #: application/views/logbookadvanced/edit.php:1 msgid "Please choose the column to be edited:" msgstr "请选择需要编辑的列:" @@ -12107,7 +12270,7 @@ msgid "Station Power" msgstr "台站功率" #: application/views/logbookadvanced/edit.php:31 -#: application/views/logbookadvanced/index.php:938 +#: application/views/logbookadvanced/index.php:949 #: application/views/logbookadvanced/useroptions.php:146 #: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:489 #: application/views/view_log/qso.php:481 @@ -12179,8 +12342,8 @@ msgid "QSL Sent Method" msgstr "QSL 发送方式" #: application/views/logbookadvanced/edit.php:53 -#: application/views/logbookadvanced/index.php:639 -#: application/views/logbookadvanced/index.php:878 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/index.php:889 #: application/views/logbookadvanced/useroptions.php:66 msgid "QSL via" msgstr "QSL Via" @@ -12205,23 +12368,23 @@ msgstr "接收频段" #: application/views/logbookadvanced/edit.php:189 #: application/views/logbookadvanced/edit.php:195 #: application/views/logbookadvanced/edit.php:202 -#: application/views/logbookadvanced/index.php:479 -#: application/views/logbookadvanced/index.php:804 +#: application/views/logbookadvanced/index.php:481 +#: application/views/logbookadvanced/index.php:812 msgid "Invalid" msgstr "无效" #: application/views/logbookadvanced/edit.php:177 #: application/views/logbookadvanced/edit.php:203 -#: application/views/logbookadvanced/index.php:524 -#: application/views/logbookadvanced/index.php:568 -#: application/views/logbookadvanced/index.php:591 -#: application/views/logbookadvanced/index.php:615 +#: application/views/logbookadvanced/index.php:526 +#: application/views/logbookadvanced/index.php:570 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:617 msgid "Verified" msgstr "已验证" #: application/views/logbookadvanced/edit.php:208 -#: application/views/logbookadvanced/index.php:532 -#: application/views/logbookadvanced/index.php:542 +#: application/views/logbookadvanced/index.php:534 +#: application/views/logbookadvanced/index.php:544 #: application/views/oqrs/qsolist.php:73 application/views/oqrs/qsolist.php:115 #: application/views/oqrs/showrequests.php:8 #: application/views/qslprint/qslprint.php:7 @@ -12239,8 +12402,8 @@ msgid "Direct" msgstr "直邮" #: application/views/logbookadvanced/edit.php:209 -#: application/views/logbookadvanced/index.php:531 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/index.php:543 #: application/views/oqrs/qsolist.php:70 application/views/oqrs/qsolist.php:112 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:48 @@ -12260,8 +12423,8 @@ msgid "Bureau" msgstr "卡片局" #: application/views/logbookadvanced/edit.php:210 -#: application/views/logbookadvanced/index.php:533 -#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:545 #: application/views/oqrs/qsolist.php:79 application/views/oqrs/qsolist.php:121 #: application/views/oqrs/showrequests.php:9 #: application/views/qslprint/qslprint.php:8 @@ -12279,8 +12442,8 @@ msgid "Electronic" msgstr "电子" #: application/views/logbookadvanced/edit.php:211 -#: application/views/logbookadvanced/index.php:534 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/index.php:546 #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 @@ -12597,11 +12760,6 @@ msgstr "发送请求时发生错误" msgid "You need to select at least 1 location to do a search!" msgstr "你至少需要选择一个地点以进行搜索!" -#: application/views/logbookadvanced/index.php:68 -#: application/views/logbookadvanced/index.php:773 -msgid "Update Distances" -msgstr "更新距离" - #: application/views/logbookadvanced/index.php:69 msgid "QSO records updated." msgstr "QSO 记录已更新。" @@ -12614,61 +12772,67 @@ msgstr "更新距离时出现问题。" msgid "Distances updated successfully!" msgstr "更新距离成功!" -#: application/views/logbookadvanced/index.php:292 +#: application/views/logbookadvanced/index.php:73 +msgid "" +"Are you sure you want to fix all QSOs with missing DXCC information? This " +"action cannot be undone." +msgstr "" + +#: application/views/logbookadvanced/index.php:294 msgid "From" msgstr "开始日期" -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:298 msgid "To" msgstr "截止日期" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:851 +#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:862 #: application/views/logbookadvanced/useroptions.php:30 msgid "Dx" msgstr "对方呼号(Dx)" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:326 -#: application/views/logbookadvanced/index.php:332 -#: application/views/logbookadvanced/index.php:403 -#: application/views/logbookadvanced/index.php:417 -#: application/views/logbookadvanced/index.php:427 -#: application/views/logbookadvanced/index.php:431 -#: application/views/logbookadvanced/index.php:435 -#: application/views/logbookadvanced/index.php:439 -#: application/views/logbookadvanced/index.php:457 -#: application/views/logbookadvanced/index.php:461 -#: application/views/logbookadvanced/index.php:465 -#: application/views/logbookadvanced/index.php:486 -#: application/views/logbookadvanced/index.php:490 -#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:303 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:419 +#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:441 +#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:467 +#: application/views/logbookadvanced/index.php:488 +#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:642 msgid "Empty" msgstr "空" -#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:380 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "无/空" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:491 msgid "" "Distance in kilometers. Search will look for distances greater than or equal " "to this value." msgstr "距离(公里)。搜索将查找大于或等于此值的项目。" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:502 msgid "QSL Filters" msgstr "筛选 QSL" -#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/index.php:508 msgid "QSL sent" msgstr "QSL 已发送" -#: application/views/logbookadvanced/index.php:512 -#: application/views/logbookadvanced/index.php:556 -#: application/views/logbookadvanced/index.php:579 -#: application/views/logbookadvanced/index.php:603 +#: application/views/logbookadvanced/index.php:514 +#: application/views/logbookadvanced/index.php:558 +#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/index.php:605 #: application/views/oqrs/qsolist.php:54 application/views/oqrs/qsolist.php:96 #: application/views/qslprint/qsolist.php:65 #: application/views/qslprint/qsolist.php:107 @@ -12695,18 +12859,18 @@ msgstr "QSL 已发送" msgid "Queued" msgstr "已排队" -#: application/views/logbookadvanced/index.php:513 -#: application/views/logbookadvanced/index.php:523 -#: application/views/logbookadvanced/index.php:557 -#: application/views/logbookadvanced/index.php:567 -#: application/views/logbookadvanced/index.php:580 -#: application/views/logbookadvanced/index.php:590 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/index.php:614 -#: application/views/logbookadvanced/index.php:624 -#: application/views/logbookadvanced/index.php:633 -#: application/views/logbookadvanced/index.php:656 -#: application/views/logbookadvanced/index.php:665 +#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:525 +#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/index.php:582 +#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:606 +#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:626 +#: application/views/logbookadvanced/index.php:635 +#: application/views/logbookadvanced/index.php:658 +#: application/views/logbookadvanced/index.php:667 #: application/views/oqrs/qsolist.php:60 application/views/oqrs/qsolist.php:102 #: application/views/oqrs/qsolist.php:167 #: application/views/oqrs/qsolist.php:182 @@ -12751,272 +12915,269 @@ msgstr "已排队" msgid "Invalid (Ignore)" msgstr "无效(忽略)" -#: application/views/logbookadvanced/index.php:517 +#: application/views/logbookadvanced/index.php:519 msgid "QSL received" msgstr "QSL 接收" -#: application/views/logbookadvanced/index.php:528 +#: application/views/logbookadvanced/index.php:530 msgid "QSL send. method" msgstr "QSL 发送方式" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:540 msgid "QSL recv. method" msgstr "QSL 接收方式" -#: application/views/logbookadvanced/index.php:550 +#: application/views/logbookadvanced/index.php:552 msgid "LoTW sent" msgstr "LoTW 已发送" -#: application/views/logbookadvanced/index.php:561 +#: application/views/logbookadvanced/index.php:563 msgid "LoTW received" msgstr "LoTW 接收" -#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:575 msgid "Clublog sent" msgstr "Clublog 已发送" -#: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/index.php:586 msgid "Clublog received" msgstr "Clublog 已收到" -#: application/views/logbookadvanced/index.php:597 +#: application/views/logbookadvanced/index.php:599 msgid "eQSL sent" msgstr "eQSL 已发送" -#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/index.php:610 msgid "eQSL received" msgstr "eQSL 接收" -#: application/views/logbookadvanced/index.php:619 +#: application/views/logbookadvanced/index.php:621 msgid "DCL sent" msgstr "DCL 发送" -#: application/views/logbookadvanced/index.php:628 +#: application/views/logbookadvanced/index.php:630 msgid "DCL received" msgstr "DCL 接收" -#: application/views/logbookadvanced/index.php:643 +#: application/views/logbookadvanced/index.php:645 msgid "QSL Images" msgstr "QSL 图片" -#: application/views/logbookadvanced/index.php:651 +#: application/views/logbookadvanced/index.php:653 msgid "QRZ sent" msgstr "QRZ 已发送" -#: application/views/logbookadvanced/index.php:660 +#: application/views/logbookadvanced/index.php:662 msgid "QRZ received" msgstr "QRZ 已接收" -#: application/views/logbookadvanced/index.php:676 +#: application/views/logbookadvanced/index.php:678 msgid "Quickfilters" msgstr "快速筛选" -#: application/views/logbookadvanced/index.php:681 +#: application/views/logbookadvanced/index.php:683 msgid "Quicksearch with selected: " msgstr "用选中行的条件进行快速搜索: " -#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:688 msgid "Search Date" msgstr "按照日期搜索" -#: application/views/logbookadvanced/index.php:692 +#: application/views/logbookadvanced/index.php:694 msgid "Search DXCC" msgstr "搜索 DXCC" -#: application/views/logbookadvanced/index.php:695 +#: application/views/logbookadvanced/index.php:697 msgid "Search State" msgstr "搜索 州/省" -#: application/views/logbookadvanced/index.php:698 +#: application/views/logbookadvanced/index.php:700 msgid "Search Gridsquare" msgstr "搜索 网格" -#: application/views/logbookadvanced/index.php:701 +#: application/views/logbookadvanced/index.php:703 msgid "Search CQ Zone" msgstr "搜索 CQ 分区" -#: application/views/logbookadvanced/index.php:704 +#: application/views/logbookadvanced/index.php:706 msgid "Search ITU Zone" msgstr "搜索 ITU 分区" -#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:709 msgid "Search Mode" msgstr "搜索 模式" -#: application/views/logbookadvanced/index.php:710 +#: application/views/logbookadvanced/index.php:712 msgid "Search Band" msgstr "搜索 频段" -#: application/views/logbookadvanced/index.php:713 +#: application/views/logbookadvanced/index.php:715 msgid "Search IOTA" msgstr "搜索 IOTA" -#: application/views/logbookadvanced/index.php:716 +#: application/views/logbookadvanced/index.php:718 msgid "Search SOTA" msgstr "搜索 SOTA" -#: application/views/logbookadvanced/index.php:719 +#: application/views/logbookadvanced/index.php:721 msgid "Search POTA" msgstr "搜索 POTA" -#: application/views/logbookadvanced/index.php:722 +#: application/views/logbookadvanced/index.php:724 msgid "Search WWFF" msgstr "搜索 WWFF" -#: application/views/logbookadvanced/index.php:725 +#: application/views/logbookadvanced/index.php:727 msgid "Search Operator" msgstr "搜索操作符" -#: application/views/logbookadvanced/index.php:744 +#: application/views/logbookadvanced/index.php:746 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "警告!确定要删除选中的 QSO 吗?" -#: application/views/logbookadvanced/index.php:745 +#: application/views/logbookadvanced/index.php:747 msgid " QSO(s) will be deleted" msgstr " 通联将被删除" -#: application/views/logbookadvanced/index.php:749 +#: application/views/logbookadvanced/index.php:751 msgid "With selected: " msgstr "用选中行进行: " -#: application/views/logbookadvanced/index.php:753 +#: application/views/logbookadvanced/index.php:755 #: application/views/qso/edit_ajax.php:725 msgid "Update from Callbook" msgstr "从呼号簿更新" -#: application/views/logbookadvanced/index.php:754 +#: application/views/logbookadvanced/index.php:756 msgid "Queue Bureau" msgstr "卡片局队列" -#: application/views/logbookadvanced/index.php:755 +#: application/views/logbookadvanced/index.php:757 msgid "Queue Direct" msgstr "直邮卡片队列" -#: application/views/logbookadvanced/index.php:756 +#: application/views/logbookadvanced/index.php:758 msgid "Queue Electronic" msgstr "电子卡片队列" -#: application/views/logbookadvanced/index.php:757 +#: application/views/logbookadvanced/index.php:759 msgid "Sent (Bureau)" msgstr "已发送(卡片局)" -#: application/views/logbookadvanced/index.php:758 +#: application/views/logbookadvanced/index.php:760 msgid "Sent (Direct)" msgstr "已发送(直邮)" -#: application/views/logbookadvanced/index.php:759 +#: application/views/logbookadvanced/index.php:761 msgid "Sent (Electronic)" msgstr "已发送(电子)" -#: application/views/logbookadvanced/index.php:760 +#: application/views/logbookadvanced/index.php:762 msgid "Not Sent" msgstr "未发送" -#: application/views/logbookadvanced/index.php:761 +#: application/views/logbookadvanced/index.php:763 msgid "QSL Not Required" msgstr "未获取 QSL" -#: application/views/logbookadvanced/index.php:762 +#: application/views/logbookadvanced/index.php:764 msgid "Not Received" msgstr "未收到" -#: application/views/logbookadvanced/index.php:763 +#: application/views/logbookadvanced/index.php:765 msgid "Received (Bureau)" msgstr "已接收(卡片局)" -#: application/views/logbookadvanced/index.php:764 +#: application/views/logbookadvanced/index.php:766 msgid "Received (Direct)" msgstr "已接收(直邮)" -#: application/views/logbookadvanced/index.php:765 +#: application/views/logbookadvanced/index.php:767 msgid "Received (Electronic)" msgstr "已接收(电子)" -#: application/views/logbookadvanced/index.php:766 +#: application/views/logbookadvanced/index.php:768 msgid "Create ADIF" msgstr "生成 ADIF" -#: application/views/logbookadvanced/index.php:767 +#: application/views/logbookadvanced/index.php:769 msgid "Print Label" msgstr "打印标签" -#: application/views/logbookadvanced/index.php:768 +#: application/views/logbookadvanced/index.php:770 msgid "QSL Slideshow" msgstr "QSL 展示窗" -#: application/views/logbookadvanced/index.php:769 -msgid "Fix CQ Zones" -msgstr "修复 CQ 分区" +#: application/views/logbookadvanced/index.php:777 +msgid "With ALL QSOs: " +msgstr "" -#: application/views/logbookadvanced/index.php:770 -msgid "Fix ITU Zones" -msgstr "修复 ITU 分区" +#: application/views/logbookadvanced/index.php:781 +#: application/views/logbookadvanced/index.php:832 +msgid "Database Tools" +msgstr "" -#: application/views/logbookadvanced/index.php:771 -msgid "Fix Continent" -msgstr "修正大洲" - -#: application/views/logbookadvanced/index.php:780 +#: application/views/logbookadvanced/index.php:788 #: application/views/oqrs/showrequests.php:58 msgid "# Results" msgstr "每页结果数" -#: application/views/logbookadvanced/index.php:801 +#: application/views/logbookadvanced/index.php:809 msgid "Dupes" msgstr "重复的 QSO" -#: application/views/logbookadvanced/index.php:817 +#: application/views/logbookadvanced/index.php:825 msgid "Globe map" msgstr "全球地图" -#: application/views/logbookadvanced/index.php:848 +#: application/views/logbookadvanced/index.php:859 #: application/views/logbookadvanced/useroptions.php:26 msgid "De" msgstr "本台呼号(De)" -#: application/views/logbookadvanced/index.php:893 +#: application/views/logbookadvanced/index.php:904 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 #: application/views/timeline/index.php:72 application/views/user/edit.php:627 msgid "QRZ" msgstr "QRZ" -#: application/views/logbookadvanced/index.php:899 +#: application/views/logbookadvanced/index.php:910 #: application/views/logbookadvanced/useroptions.php:94 #: application/views/qso/edit_ajax.php:527 msgid "QSL Msg (S)" msgstr "QSL 消息(发送)" -#: application/views/logbookadvanced/index.php:902 +#: application/views/logbookadvanced/index.php:913 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/qso/edit_ajax.php:536 msgid "QSL Msg (R)" msgstr "QSL 消息(接收)" -#: application/views/logbookadvanced/index.php:953 +#: application/views/logbookadvanced/index.php:964 #: application/views/logbookadvanced/useroptions.php:166 msgid "My Refs" msgstr "电台网格" -#: application/views/logbookadvanced/index.php:962 +#: application/views/logbookadvanced/index.php:973 msgid "Ant az" msgstr "天线方向角" -#: application/views/logbookadvanced/index.php:962 +#: application/views/logbookadvanced/index.php:973 #: application/views/logbookadvanced/useroptions.php:178 msgid "Antenna azimuth" msgstr "天线方向角" -#: application/views/logbookadvanced/index.php:965 +#: application/views/logbookadvanced/index.php:976 msgid "Ant el" msgstr "天线仰角" -#: application/views/logbookadvanced/index.php:965 +#: application/views/logbookadvanced/index.php:976 #: application/views/logbookadvanced/useroptions.php:182 msgid "Antenna elevation" msgstr "天线仰角" -#: application/views/logbookadvanced/index.php:971 +#: application/views/logbookadvanced/index.php:982 #: application/views/logbookadvanced/useroptions.php:190 msgid "Station power" msgstr "台站功率" @@ -13036,6 +13197,130 @@ msgstr "前一项" msgid "Next" msgstr "后一项" +#: application/views/logbookadvanced/showMissingDxccQsos.php:5 +#, php-format +msgid "Found %s QSO(s) missing DXCC information." +msgstr "" + +#: application/views/logbookadvanced/showMissingDxccQsos.php:17 +#: application/views/logbookadvanced/showStateQsos.php:28 +#: application/views/oqrs/qsolist.php:11 +#: application/views/qslprint/qslprint.php:31 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 +#: application/views/search/cqzones_result.php:16 +#: application/views/search/ituzones_result.php:16 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/search_result_ajax.php:130 +#: application/views/user/edit.php:529 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:228 +#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:672 +#: application/views/view_log/qso.php:676 +#: application/views/view_log/qso.php:680 +#: application/views/view_log/qso.php:686 +#: application/views/view_log/qso.php:693 +#: application/views/view_log/qso.php:700 +#: application/views/view_log/qso.php:707 +#: application/views/view_log/qso.php:714 +#: application/views/view_log/qso.php:721 +#: application/views/view_log/qso.php:728 +#: application/views/view_log/qso.php:735 +#: application/views/view_log/qso.php:742 +#: application/views/view_log/qso.php:747 +msgid "Station" +msgstr "电台站" + +#: application/views/logbookadvanced/showMissingDxccQsos.php:38 +#: application/views/logbookadvanced/showStateQsos.php:49 +msgid "No Issues Found" +msgstr "" + +#: application/views/logbookadvanced/showStateQsos.php:16 +#, php-format +msgid "Found %s QSO(s) missing state information for DXCC %s." +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:31 +msgid "Results for DXCC update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:34 +#: application/views/logbookadvanced/showUpdateResult.php:40 +msgid "The number of QSOs updated for missing DXCC IDs was" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:36 +#: application/views/logbookadvanced/showUpdateResult.php:42 +msgid "The number of QSOs re-checked for DXCC was" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:55 +#: application/views/logbookadvanced/showUpdateResult.php:99 +msgid "These QSOs could not be updated:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:61 +#: application/views/logbookadvanced/showUpdateResult.php:107 +msgid "Reason" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:62 +#: application/views/logbookadvanced/showUpdateResult.php:106 +#: application/views/search/lotw_unconfirmed.php:32 +msgid "Station location" +msgstr "台站地址" + +#: application/views/logbookadvanced/showUpdateResult.php:83 +msgid "Results for state update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:85 +#: application/views/logbookadvanced/showUpdateResult.php:87 +msgid "The number of QSOs updated for state/province in" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:130 +msgid "Results for continent update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:131 +msgid "The number of QSOs updated for continent is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:135 +msgid "Results for distance update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:136 +msgid "The number of QSOs updated for distance is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:140 +msgid "Results for CQ zone update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:141 +msgid "The number of QSOs updated for CQ zone is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:145 +msgid "Results for ITU zone update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:146 +msgid "The number of QSOs updated for ITU zone is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:150 +msgid "Results for gridsquare update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:151 +msgid "The number of QSOs updated for gridsquare is" +msgstr "" + #: application/views/logbookadvanced/startatform.php:15 msgid "Include Via" msgstr "包含通过" @@ -13048,6 +13333,21 @@ msgstr "包含 QSLMSG" msgid "Include TNX message" msgstr "包含 TNX 信息" +#: application/views/logbookadvanced/statecheckresult.php:3 +#: application/views/logbookadvanced/statecheckresult.php:42 +msgid "State Check Results" +msgstr "" + +#: application/views/logbookadvanced/statecheckresult.php:4 +msgid "" +"QSOs with missing state and gridsquares with 6 or more characters found for " +"the following DXCCs:" +msgstr "" + +#: application/views/logbookadvanced/statecheckresult.php:43 +msgid "No QSOs were found where state information can be fixed." +msgstr "" + #: application/views/logbookadvanced/statedialog.php:2 msgid "" "Update QSOs with state/province information based on gridsquare and DXCC " @@ -13822,34 +14122,6 @@ msgstr "其他人可通过 e-mail 地址联系你" msgid "Send not in log request" msgstr "发送“未记录日志”请求" -#: application/views/oqrs/qsolist.php:11 -#: application/views/qslprint/qslprint.php:31 -#: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 -#: application/views/search/cqzones_result.php:16 -#: application/views/search/ituzones_result.php:16 -#: application/views/search/lotw_unconfirmed_result.php:11 -#: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:529 -#: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:228 -#: application/views/view_log/qso.php:668 -#: application/views/view_log/qso.php:672 -#: application/views/view_log/qso.php:676 -#: application/views/view_log/qso.php:680 -#: application/views/view_log/qso.php:686 -#: application/views/view_log/qso.php:693 -#: application/views/view_log/qso.php:700 -#: application/views/view_log/qso.php:707 -#: application/views/view_log/qso.php:714 -#: application/views/view_log/qso.php:721 -#: application/views/view_log/qso.php:728 -#: application/views/view_log/qso.php:735 -#: application/views/view_log/qso.php:742 -#: application/views/view_log/qso.php:747 -msgid "Station" -msgstr "电台站" - #: application/views/oqrs/qsolist.php:76 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 @@ -15338,10 +15610,6 @@ msgstr "" "显示尚未在 LoTW 得到确认的 QSO,但这些呼号在你的 QSO 日期之后又上传了 LoTW" "(可能对方忘记传你的日志了)。" -#: application/views/search/lotw_unconfirmed.php:32 -msgid "Station location" -msgstr "台站地址" - #: application/views/search/lotw_unconfirmed_result.php:10 msgid "Last LoTW upload" msgstr "LoTW 上次更新" @@ -16532,39 +16800,6 @@ msgstr "更新 DXCC 数据" msgid "Status:" msgstr "状态:" -#: application/views/update/index.php:30 -msgid "Apply DXCC Data to Logbook" -msgstr "向日志应用 DXCC 数据" - -#: application/views/update/index.php:32 -msgid "" -"After updating, Wavelog can fill in missing callsign information in the " -"logbook using the newly-obtained DXCC data.\n" -"\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that are " -"missing DXCC metadata or to re-check the entire logbook\n" -"\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." -msgstr "" -"更新后,Wavelog 可使用最新 DXCC 数据补填 QSO 中缺失的内容。\n" -"\t\t\t\t\t\t\t你可以选择仅检查缺失 DXCC 信息的 QSO。\n" -"\t\t\t\t\t\t\t或检查全部 QSO 的 DXCC 信息是否有误。" - -#: application/views/update/index.php:35 -msgid "" -"This affects ALL QSOs of ANY user on this instance. The function is " -"deprectated and will be removed in a future version of Wavelog. As " -"replacement use the Logbook-Advanced!" -msgstr "" -"这会影响此实例上任何用户的所有 QSO。该功能已被弃用,并将在Wavelog的未来版本中" -"移除。请使用 Logbook-Advanced 作为替代!" - -#: application/views/update/index.php:42 -msgid "Check QSOs missing DXCC data" -msgstr "检查缺失 DXCC 数据的 QSO" - -#: application/views/update/index.php:51 -msgid "Re-check all QSOs in logbook" -msgstr "重新检查所有 QSO" - #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "删除用户账户" @@ -17853,8 +18088,31 @@ msgstr "提交请求" msgid "Rcvd" msgstr "收" -#~ msgid "Show Reference Fields on QSO Tab" -#~ msgstr "在 QSO 页面显示标识代号栏" +#~ msgid "Apply DXCC Data to Logbook" +#~ msgstr "向日志应用 DXCC 数据" + +#~ msgid "" +#~ "After updating, Wavelog can fill in missing callsign information in the " +#~ "logbook using the newly-obtained DXCC data.\n" +#~ "\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that " +#~ "are missing DXCC metadata or to re-check the entire logbook\n" +#~ "\t\t\t\t\t\t\tand update existing metadata as well, in case it has " +#~ "changed." +#~ msgstr "" +#~ "更新后,Wavelog 可使用最新 DXCC 数据补填 QSO 中缺失的内容。\n" +#~ "\t\t\t\t\t\t\t你可以选择仅检查缺失 DXCC 信息的 QSO。\n" +#~ "\t\t\t\t\t\t\t或检查全部 QSO 的 DXCC 信息是否有误。" + +#~ msgid "" +#~ "This affects ALL QSOs of ANY user on this instance. The function is " +#~ "deprectated and will be removed in a future version of Wavelog. As " +#~ "replacement use the Logbook-Advanced!" +#~ msgstr "" +#~ "这会影响此实例上任何用户的所有 QSO。该功能已被弃用,并将在Wavelog的未来版" +#~ "本中移除。请使用 Logbook-Advanced 作为替代!" + +#~ msgid "Re-check all QSOs in logbook" +#~ msgstr "重新检查所有 QSO" #~ msgid "" #~ "Station Logbooks allow you to group Station Locations, this allows you to " @@ -17865,6 +18123,9 @@ msgstr "收" #~ "使用多个日志簿可以对日志进行分组管理,例如你的电台想在多个 DXCC 或 VUCC 下" #~ "通联。你可让一个日志簿关联到多个不同的台站地址。" +#~ msgid "Show Reference Fields on QSO Tab" +#~ msgstr "在 QSO 页面显示标识代号栏" + #~ msgid "" #~ "You might have ADIF errors, the QSOs have still been added. Please check " #~ "the following information:" diff --git a/application/models/Club_model.php b/application/models/Club_model.php index 663e86680..a9584c729 100644 --- a/application/models/Club_model.php +++ b/application/models/Club_model.php @@ -56,6 +56,38 @@ class Club_model extends CI_Model { return false; } + /** + * Get Permissionlevel for User in Club in a real model-way without UI + * + * @param int $club_id + * @param int $user_id + * + * @return int + */ + function get_permission_noui($club_id, $user_id) { + + if ($club_id == 0 || !is_numeric($club_id)) { + return 0; + } + + if ($user_id == 0 || !is_numeric($user_id)) { + return 0; + } + + $binding = []; + $sql = 'SELECT p_level FROM `club_permissions` WHERE user_id = ? AND club_id = ?'; + $binding[] = $user_id; + $binding[] = $club_id; + + $query = $this->db->query($sql, $binding); + + if ($query->num_rows() > 0) { + return $query->row()->p_level; + } else { + return 0; + } + } + /** * Get Permissionlevel for User in Club * diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index d14fc0986..ba5a08002 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -5996,80 +5996,6 @@ class Logbook_model extends CI_Model { return ''; } - - public function check_missing_dxcc_id($all) { - ini_set('memory_limit', '-1'); // This consumes a much of Memory! - $this->db->trans_start(); // Transaction has to be started here, because otherwise we're trying to update rows which are locked by the select - $this->db->select("COL_PRIMARY_KEY, COL_CALL, COL_TIME_ON, COL_TIME_OFF"); // get all records with no COL_DXCC - - if (!$all) { // check which to update - records with no dxcc or all records - $this->db->where("COL_DXCC is NULL"); - } - - $r = $this->db->get($this->config->item('table_name')); - - $count = 0; - if ($r->num_rows() > 0) { //query dxcc_prefixes - $sql = "update " . $this->config->item('table_name') . " set COL_COUNTRY = ?, COL_DXCC=? where COL_PRIMARY_KEY=?"; - $q = $this->db->conn_id->prepare($sql); // PREPARE this statement. For DB this means: No parsing overhead, parse once use many (see execute query below) - foreach ($r->result_array() as $row) { - $qso_date = $row['COL_TIME_OFF'] == '' ? $row['COL_TIME_ON'] : $row['COL_TIME_OFF']; - $qso_date = date("Y-m-d", strtotime($qso_date)); - $d = $this->check_dxcc_table($row['COL_CALL'], $qso_date); - if ($d[0] != 'Not Found') { - $q->execute(array(addslashes(ucwords(strtolower($d[1]), "- (/")), $d[0], $row['COL_PRIMARY_KEY'])); - $count++; - } - } - } - $this->db->trans_complete(); - print("$count updated\n"); - } - - public function check_missing_grid_id($all) { - // get all records with no COL_GRIDSQUARE - $this->db->select("COL_PRIMARY_KEY, COL_CALL, COL_TIME_ON, COL_TIME_OFF"); - - $this->db->where("(COL_GRIDSQUARE is NULL or COL_GRIDSQUARE = '') AND (COL_VUCC_GRIDS is NULL or COL_VUCC_GRIDS = '')"); - - $r = $this->db->get($this->config->item('table_name')); - - $count = 0; - $this->db->trans_start(); - if ($r->num_rows() > 0) { - foreach ($r->result_array() as $row) { - $callsign = $row['COL_CALL']; - if (!$this->load->is_loaded('callbook')) { - $this->load->library('callbook'); - } - - $callbook = $this->callbook->getCallbookData($callsign); - - if (isset($callbook)) { - if (isset($callbook['error'])) { - printf("Error: " . $callbook['error'] . "
"); - } else { - $return['callsign_qra'] = $callbook['gridsquare']; - if ($return['callsign_qra'] != '') { - $sql = sprintf( - "update %s set COL_GRIDSQUARE = '%s' where COL_PRIMARY_KEY=%d", - $this->config->item('table_name'), - $return['callsign_qra'], - $row['COL_PRIMARY_KEY'] - ); - $this->db->query($sql); - printf("Updating %s to %s\n
", $row['COL_PRIMARY_KEY'], $return['callsign_qra']); - $count++; - } - } - } - } - } - $this->db->trans_complete(); - - print("$count updated\n"); - } - public function check_for_station_id() { $this->db->select('COL_PRIMARY_KEY, COL_TIME_ON, COL_CALL, COL_MODE, COL_BAND, COL_STATION_CALLSIGN'); $this->db->where('station_id =', NULL); diff --git a/application/models/Logbookadvanced_model.php b/application/models/Logbookadvanced_model.php index f283af058..f5a7522d7 100644 --- a/application/models/Logbookadvanced_model.php +++ b/application/models/Logbookadvanced_model.php @@ -1255,21 +1255,38 @@ class Logbookadvanced_model extends CI_Model { return $query->result(); } - function fixCqZones($ids) { + function fixCqZones($ids = null) { + if ($ids == null) { + $sql = "UPDATE ".$this->config->item('table_name')." JOIN dxcc_entities ON ". $this->config->item('table_name').".col_dxcc = dxcc_entities.adif JOIN station_profile ON ". $this->config->item('table_name').".station_id = station_profile.station_id" . + " SET " . $this->config->item('table_name').".COL_CQZ = dxcc_entities.cqz" . + " WHERE station_profile.user_id = ? and (" . $this->config->item('table_name').".COL_CQZ IS NULL OR " . $this->config->item('table_name').".COL_CQZ = '')"; + + $query = $this->db->query($sql, array($this->session->userdata('user_id'))); + return $this->db->affected_rows(); + } $sql = "UPDATE ".$this->config->item('table_name')." JOIN dxcc_entities ON ". $this->config->item('table_name').".col_dxcc = dxcc_entities.adif JOIN station_profile ON ". $this->config->item('table_name').".station_id = station_profile.station_id" . " SET " . $this->config->item('table_name').".COL_CQZ = dxcc_entities.cqz" . " WHERE " . $this->config->item('table_name').".col_primary_key in ? and station_profile.user_id = ?"; $query = $this->db->query($sql, array(json_decode($ids, true), $this->session->userdata('user_id'))); + return $this->db->affected_rows(); } - function fixItuZones($ids) { + function fixItuZones($ids = null) { + if ($ids == null) { + $sql = "UPDATE ".$this->config->item('table_name')." JOIN dxcc_entities ON ". $this->config->item('table_name').".col_dxcc = dxcc_entities.adif JOIN station_profile ON ". $this->config->item('table_name').".station_id = station_profile.station_id" . + " SET " . $this->config->item('table_name').".COL_ITUZ = dxcc_entities.ituz" . + " WHERE station_profile.user_id = ? and (" . $this->config->item ('table_name').".COL_ITUZ IS NULL OR " . $this->config->item('table_name').".COL_ITUZ = '')"; + $query = $this->db->query($sql, array($this->session->userdata('user_id'))); + return $this->db->affected_rows(); + } $sql = "UPDATE ".$this->config->item('table_name')." JOIN dxcc_entities ON ". $this->config->item('table_name').".col_dxcc = dxcc_entities.adif JOIN station_profile ON ". $this->config->item('table_name').".station_id = station_profile.station_id" . " SET " . $this->config->item('table_name').".COL_ITUZ = dxcc_entities.ituz" . " WHERE " . $this->config->item('table_name').".col_primary_key in ? and station_profile.user_id = ?"; $query = $this->db->query($sql, array(json_decode($ids, true), $this->session->userdata('user_id'))); + return $this->db->affected_rows(); } /** @@ -1397,7 +1414,8 @@ class Logbookadvanced_model extends CI_Model { JOIN dxcc_entities ON " . $this->config->item('table_name') . ".col_dxcc = dxcc_entities.adif JOIN station_profile on " . $this->config->item('table_name') . ".station_id = station_profile.station_id SET col_cont = dxcc_entities.cont - WHERE COALESCE(" . $this->config->item('table_name') . ".col_cont, '') = '' and station_profile.user_id = ?"; + WHERE (COALESCE(" . $this->config->item('table_name') . ".col_cont, '') = '' or " . $this->config->item('table_name') . ".col_cont not in ('AF', 'AN', 'AS', 'EU', 'NA', 'OC', 'SA')) + and station_profile.user_id = ?"; $query = $this->db->query($sql, array($this->session->userdata('user_id'))); $result = $this->db->affected_rows(); @@ -1421,6 +1439,8 @@ class Logbookadvanced_model extends CI_Model { $recordcount = $query->num_rows(); + $count = 0; + if ($recordcount > 0) { $this->load->library('Qra'); @@ -1433,10 +1453,14 @@ class Logbookadvanced_model extends CI_Model { $row->COL_ANT_PATH ?? null ); - $updates[] = [ - 'COL_PRIMARY_KEY' => $row->COL_PRIMARY_KEY, - 'COL_DISTANCE' => $distance, - ]; + if ($distance != 0) { + $updates[] = [ + 'COL_PRIMARY_KEY' => $row->COL_PRIMARY_KEY, + 'COL_DISTANCE' => $distance, + ]; + $count++; + } + } if (!empty($updates)) { @@ -1444,6 +1468,300 @@ class Logbookadvanced_model extends CI_Model { } } - return $recordcount; + return $count; + } + + public function runCheckDb($type) { + switch ($type) { + case 'checkdistance': + return $this->check_missing_distance(); + case 'checkcontinent': + return $this->check_qsos_missing_continent(); + case 'checkdxcc': + return $this->check_missing_dxcc(); + case 'checkstate': + return $this->check_missing_state(); + case 'checkcqzones': + return $this->check_missing_cq_zones(); + case 'checkituzones': + return $this->check_missing_itu_zones(); + case 'checkgrids': + return $this->getMissingGridQsos(); + return null; + } + } + + public function check_missing_dxcc() { + $sql = "select count(*) as count from " . $this->config->item('table_name') . " + join station_profile on " . $this->config->item('table_name') . ".station_id = station_profile.station_id + where user_id = ? and coalesce(col_dxcc, '') = ''"; + + $bindings[] = [$this->session->userdata('user_id')]; + + $query = $this->db->query($sql, $bindings); + return $query->result(); + } + + public function check_qsos_missing_continent() { + $sql = "select count(*) as count from " . $this->config->item('table_name') . " + join station_profile on " . $this->config->item('table_name') . ".station_id = station_profile.station_id + where user_id = ? + and (coalesce(col_cont, '') = '' or col_cont not in ('AF', 'AN', 'AS', 'EU', 'NA', 'OC', 'SA')) + and col_dxcc is not null + and col_dxcc != '' + and col_dxcc != 0"; + + $bindings[] = [$this->session->userdata('user_id')]; + + $query = $this->db->query($sql, $bindings); + return $query->result(); + } + + public function check_missing_distance() { + $sql = "select count(*) as count from " . $this->config->item('table_name') . " + join station_profile on " . $this->config->item('table_name') . ".station_id = station_profile.station_id + where user_id = ? + AND (COL_DISTANCE = '' or COL_DISTANCE is NULL) + and COL_GRIDSQUARE != station_gridsquare + and COL_GRIDSQUARE is NOT NULL + and COL_GRIDSQUARE != ''"; + + $bindings[] = [$this->session->userdata('user_id')]; + + $query = $this->db->query($sql, $bindings); + return $query->result(); + } + + public function check_missing_state() { + $this->load->library('Geojson'); + $supported_dxcc_list = $this->geojson->getSupportedDxccs(); + $supported_dxcc_array = array_keys($supported_dxcc_list); + + $sql = "select count(*) as count, col_dxcc, dxcc_entities.name as dxcc_name, dxcc_entities.prefix from " . $this->config->item('table_name') . " + join station_profile on " . $this->config->item('table_name') . ".station_id = station_profile.station_id + join dxcc_entities on " . $this->config->item('table_name') . ".col_dxcc = dxcc_entities.adif + where user_id = ? and coalesce(col_state, '') = '' + and col_dxcc in (" . implode(',', array_map('intval', $supported_dxcc_array)) . ") + and length(col_gridsquare) >= 6 + group by col_dxcc, dxcc_entities.name, dxcc_entities.prefix + order by dxcc_entities.prefix"; + + $bindings[] = [$this->session->userdata('user_id')]; + + $query = $this->db->query($sql, $bindings); + return $query->result(); + } + + public function check_missing_cq_zones() { + $sql = "select count(*) as count from " . $this->config->item('table_name') . " + join station_profile on " . $this->config->item('table_name') . ".station_id = station_profile.station_id + join dxcc_entities on " . $this->config->item('table_name') . ".col_dxcc = dxcc_entities.adif + where user_id = ? and coalesce(col_cqz, '') = ''"; + + $bindings[] = [$this->session->userdata('user_id')]; + + $query = $this->db->query($sql, $bindings); + return $query->result(); + } + + public function check_missing_itu_zones() { + $sql = "select count(*) as count from " . $this->config->item('table_name') . " + join station_profile on " . $this->config->item('table_name') . ".station_id = station_profile.station_id + join dxcc_entities on " . $this->config->item('table_name') . ".col_dxcc = dxcc_entities.adif + where user_id = ? and coalesce(col_ituz, '') = ''"; + + $bindings[] = [$this->session->userdata('user_id')]; + + $query = $this->db->query($sql, $bindings); + return $query->result(); + } + + /** + * Fix state for a batch of QSOs using GeoJSON lookup + * + * @param int $dxcc DXCC entity number for which to fix states + * @return array Result array with success, dxcc_name, dxcc_number, state_code, skipped + */ + function fixStateBatch($dxcc) { + $this->load->library('Geojson'); + + // Get QSO data + $sql = "SELECT COL_PRIMARY_KEY, COL_CALL, COL_GRIDSQUARE, COL_DXCC, COL_STATE, d.name as dxcc_name, station_profile.station_profile_name + FROM " . $this->config->item('table_name') . " qsos + JOIN station_profile ON qsos.station_id = station_profile.station_id + LEFT JOIN dxcc_entities d ON qsos.COL_DXCC = d.adif + WHERE qsos.COL_DXCC = ? AND station_profile.user_id = ? + AND (qsos.COL_STATE IS NULL OR qsos.COL_STATE = '') + AND LENGTH(COALESCE(qsos.COL_GRIDSQUARE, '')) >= 6"; + + $query = $this->db->query($sql, [$dxcc, $this->session->userdata('user_id')]); + + if ($query->num_rows() === 0) { + return [ + 'success' => false, + 'skipped' => true, + 'reason' => 'QSOs not found' + ]; + } + + $results = []; + + $count = 0; + + foreach ($query->result() as $qso) { + $result = $this->fixStateSingle($qso->COL_PRIMARY_KEY); + if ($result['success']) { + $count++; + } else { + $result['station_profile_name'] = $qso->station_profile_name; + $result['id'] = $qso->COL_PRIMARY_KEY; + $result['gridsquare'] = $qso->COL_GRIDSQUARE; + $results[] = $result; + } + } + + $results['count'] = $count; + + return $results; + } + + function getStateListQsos($dxcc) { + $sql = "SELECT col_primary_key, col_call, col_time_on, col_mode, col_submode, col_band, col_state, col_gridsquare, d.name as dxcc_name, station_profile.station_profile_name FROM " . $this->config->item('table_name') . " qsos + JOIN station_profile ON qsos.station_id = station_profile.station_id + LEFT JOIN dxcc_entities d ON qsos.COL_DXCC = d.adif + WHERE qsos.COL_DXCC = ? AND station_profile.user_id = ? + AND (qsos.COL_STATE IS NULL OR qsos.COL_STATE = '') + AND LENGTH(COALESCE(qsos.COL_GRIDSQUARE, '')) >= 6 + ORDER BY COL_TIME_ON DESC"; + + $query = $this->db->query($sql, [$dxcc, $this->session->userdata('user_id')]); + + return $query->result(); + } + + /* + This was moved from update to the advanced logbook. Maninly because it affected all QSOs in the logbook, without filters on users or stations. + We need to ensure that we only update the relevant QSOs, filtered on user. + */ + public function check_missing_dxcc_id($all = false) { + ini_set('memory_limit', '-1'); // This consumes a lot of Memory! + $this->db->trans_start(); // Transaction has to be started here, because otherwise we're trying to update rows which are locked by the select + $sql = "select COL_PRIMARY_KEY, COL_CALL, COL_TIME_ON, COL_TIME_OFF, station_profile.station_profile_name from " . $this->config->item('table_name') . + " join station_profile on " . $this->config->item('table_name') . ".station_id = station_profile.station_id + where station_profile.user_id = ?"; + + if ($all == 'false') { // check which to update - records with no dxcc or all records + $sql .= " and (COL_DXCC is NULL or COL_DXCC = '')"; + } + $r = $this->db->query($sql, array($this->session->userdata('user_id'))); + $this->load->model('logbook_model'); + + $count = 0; + if ($r->num_rows() > 0) { //query dxcc_prefixes + $sql = "update " . $this->config->item('table_name') . " set COL_COUNTRY = ?, COL_DXCC = ? where COL_PRIMARY_KEY = ?"; + $q = $this->db->conn_id->prepare($sql); // PREPARE this statement. For DB this means: No parsing overhead, parse once use many (see execute query below) + foreach ($r->result_array() as $row) { + $qso_date = $row['COL_TIME_OFF'] == '' ? $row['COL_TIME_ON'] : $row['COL_TIME_OFF']; + $qso_date = date("Y-m-d", strtotime($qso_date)); + $d = $this->logbook_model->check_dxcc_table($row['COL_CALL'], $qso_date); + if ($d[0] == 'Not Found') { + $result[] = [ + 'id' => $row['COL_PRIMARY_KEY'], + 'callsign' => $row['COL_CALL'], + 'reason' => 'DXCC Not Found', + 'location' => $row['station_profile_name'], + 'id' => $row['COL_PRIMARY_KEY'] + ]; + } else { + $q->execute(array(addslashes(ucwords(strtolower($d[1]), "- (/")), $d[0], $row['COL_PRIMARY_KEY'])); + $count++; + } + } + } + $this->db->trans_complete(); + $result['count'] = $count; + + return $result; + } + + function getMissingDxccQsos() { + $sql = "SELECT col_primary_key, col_call, col_time_on, col_mode, col_submode, col_band, col_state, col_gridsquare, d.name as dxcc_name, station_profile.station_profile_name FROM " . $this->config->item('table_name') . " qsos + JOIN station_profile ON qsos.station_id = station_profile.station_id + LEFT JOIN dxcc_entities d ON qsos.COL_DXCC = d.adif + WHERE station_profile.user_id = ? + AND (qsos.COL_DXCC IS NULL OR qsos.COL_DXCC = '') + ORDER BY COL_TIME_ON DESC"; + + $query = $this->db->query($sql, [$this->session->userdata('user_id')]); + + return $query->result(); + } + + function batchFix($type) { + switch ($type) { + case 'dxcc': + return $this->check_missing_dxcc_id('true'); + case 'distance': + return $this->update_distances_batch(); + case 'continent': + return $this->check_missing_continent(); + case 'cqzones': + return $this->fixCqZones(); + case 'ituzones': + return $this->fixItuZones(); + case 'grids': + return $this->check_missing_grid(); + default: + return null; + } + } + + /* + Another function moved from update to the advanced logbook, to be used in the dbtools section. + It did not have filter on user or location. + */ + public function check_missing_grid() { + $result = $this->getMissingGridQsos(); + + $count = 0; + $this->db->trans_start(); + if (count($result) > 0) { + foreach ($result as $row) { + $callsign = $row->col_call; + if (!$this->load->is_loaded('callbook')) { + $this->load->library('callbook'); + } + + $callbook = $this->callbook->getCallbookData($callsign); + + if (isset($callbook)) { + if (isset($callbook['error'])) { + log_message('error', "Error: " . $callbook['error']); + } else { + if ($callbook['gridsquare'] != '') { + $sql = "update " . $this->config->item('table_name') . " set COL_GRIDSQUARE = ? where COL_PRIMARY_KEY = ?"; + $this->db->query($sql, array($callbook['gridsquare'], $row->col_primary_key)); + $count++; + } + } + } + } + } + $this->db->trans_complete(); + + return $count; + } + + public function getMissingGridQsos() { + $sql = "SELECT col_primary_key, col_call, col_time_on, col_mode, col_submode, col_band, col_state, col_gridsquare, station_profile.station_profile_name FROM " . $this->config->item('table_name') . " qsos + JOIN station_profile ON qsos.station_id = station_profile.station_id + WHERE station_profile.user_id = ? + AND (qsos.COL_GRIDSQUARE IS NULL OR qsos.COL_GRIDSQUARE = '') + AND (qsos.COL_VUCC_GRIDS IS NULL OR qsos.COL_VUCC_GRIDS = '') + ORDER BY COL_TIME_ON DESC limit 250"; + + $query = $this->db->query($sql, [$this->session->userdata('user_id')]); + + return $query->result(); } } diff --git a/application/views/logbookadvanced/checkresult.php b/application/views/logbookadvanced/checkresult.php new file mode 100644 index 000000000..2b237ab37 --- /dev/null +++ b/application/views/logbookadvanced/checkresult.php @@ -0,0 +1,99 @@ + +
+ count; ?> +
+
+ +

+ + count > 0) { ?> +
+ + +
+ count; ?> +
+
+ +

+ + count > 0) { ?> +
+ + +
+ count; ?> + count > 0) { ?> +
+ + + +
+ count; ?> + count > 0) { ?> +
+ + +
+ count; ?> + count > 0) { ?> +
+ + +
+ +
+ + +
+
+
+ + +
+
+
+
+
+

+
+
+ +
+
+ +
+
+
+

+
+
+ +
+
+ +
+
+
+

+
+
+ +
+
+ +
+
+
+

+
+
+ +
+
+ +
+
+
+

+
+
+ +
+
+ +
+
+
+

+
+
+ +
+
+ +
+
+
+

+

+
+
+ +
+
+ config->item('callbook_batch_lookup')): ?> +
+
+
+

+

+
+
+ +
+
+ + +
+
+
+ + +
+ diff --git a/application/views/logbookadvanced/index.php b/application/views/logbookadvanced/index.php index 3d636282b..3e8a453c8 100644 --- a/application/views/logbookadvanced/index.php +++ b/application/views/logbookadvanced/index.php @@ -70,6 +70,8 @@ let lang_gen_advanced_logbook_problem_updating_distances = ''; let lang_gen_advanced_logbook_distances_updated = ''; + let lang_gen_advanced_logbook_confirm_fix_missing_dxcc = ''; + let homegrid ='';
- - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + +
+ @@ -821,6 +829,9 @@ $options = json_decode($options); + diff --git a/application/views/logbookadvanced/showMissingDxccQsos.php b/application/views/logbookadvanced/showMissingDxccQsos.php new file mode 100644 index 000000000..f98c3049a --- /dev/null +++ b/application/views/logbookadvanced/showMissingDxccQsos.php @@ -0,0 +1,41 @@ +
+ 0): ?> +
+

+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
col_primary_key . ')">' . htmlspecialchars($qso->col_call) . ''; ?>col_time_on)); ?>col_mode; ?>col_band; ?>col_state; ?>col_gridsquare; ?>dxcc_name; ?>station_profile_name; ?>
+
+ +
+

+
+ +
diff --git a/application/views/logbookadvanced/showStateQsos.php b/application/views/logbookadvanced/showStateQsos.php new file mode 100644 index 000000000..8bbfab6b2 --- /dev/null +++ b/application/views/logbookadvanced/showStateQsos.php @@ -0,0 +1,52 @@ +session->userdata('user_date_format')) { + // If Logged in and session exists + $custom_date_format = $this->session->userdata('user_date_format'); + } else { + // Get Default date format from /config/wavelog.php + $custom_date_format = $this->config->item('qso_date_format'); + } +?> + +
+ 0): ?> +
+

+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
col_primary_key . ')">' . htmlspecialchars($qso->col_call) . ''; ?>col_time_on); echo date($custom_date_format . ' H:i', $timestamp); ?>col_mode; ?>col_band; ?>col_state; ?>col_gridsquare; ?>dxcc_name), "- (/"), ENT_QUOTES, 'UTF-8'); ?>station_profile_name; ?>
+
+ +
+

+
+ +
diff --git a/application/views/logbookadvanced/showUpdateResult.php b/application/views/logbookadvanced/showUpdateResult.php new file mode 100644 index 000000000..987ce22b0 --- /dev/null +++ b/application/views/logbookadvanced/showUpdateResult.php @@ -0,0 +1,152 @@ +' . __("Results for DXCC update:") . ''; + if ($result['count'] == 0) { + if ($all == 'false') { + echo ''; + } else { + echo ''; + } + } else { + if ($all == 'false') { + echo ''; + } else { + echo ''; + } + } + + if ($result) { + $details = []; + foreach ($result as $r) { + if (is_array($r)) { + $details[] = $r; + } + } + + if (!empty($details)) { ?> + +
+ + + + + + + + + + + + + + + + + + + +
+
+ ' . __("Results for state update:") . ''; + if ($result['count'] == 0) { + echo ''; + } else { + echo ''; + } + + if ($result) { + $details = []; + foreach ($result as $r) { + if (is_array($r)) { + $details[] = $r; + } + } + + if (!empty($details)) { ?> + +
+ + + + + + + + + + + + + + + + + + + + + +
+
+ + ' . __("Results for continent update:") . ''; + echo ''; +} + +function showDistanceUpdateResult($result) { + echo '
' . __("Results for distance update:") . '
'; + echo ''; +} + +function showCqzoneUpdateResult($result) { + echo '
' . __("Results for CQ zone update:") . '
'; + echo ''; +} + +function showItuzoneUpdateResult($result) { + echo '
' . __("Results for ITU zone update:") . '
'; + echo ''; +} + +function showGridUpdateResult($result) { + echo '
' . __("Results for gridsquare update:") . '
'; + echo ''; +} diff --git a/application/views/logbookadvanced/statecheckresult.php b/application/views/logbookadvanced/statecheckresult.php new file mode 100644 index 000000000..526d13f2d --- /dev/null +++ b/application/views/logbookadvanced/statecheckresult.php @@ -0,0 +1,45 @@ + 0): ?> +
+
+

+ +
+ + + + + + + + + + + $item): ?> + dxcc_name) ? $item->dxcc_name : ''; + $formattedName = ucwords(strtolower($rawName), "- (/"); + $name = htmlspecialchars($formattedName, ENT_QUOTES, 'UTF-8'); + $qsos = isset($item->count) ? intval($item->count) : 0; + ?> + + + + + + + + +
prefix; ?> + + +
+
+
+ +
+
+

+
+ diff --git a/application/views/update/index.php b/application/views/update/index.php index 76befdc69..06751ad19 100644 --- a/application/views/update/index.php +++ b/application/views/update/index.php @@ -24,39 +24,6 @@ - -
-
-
-

- -

: -

-
- - - - diff --git a/assets/js/sections/logbookadvanced.js b/assets/js/sections/logbookadvanced.js index be429fae7..8573ef84f 100644 --- a/assets/js/sections/logbookadvanced.js +++ b/assets/js/sections/logbookadvanced.js @@ -678,7 +678,7 @@ $(document).ready(function () { callback: function (result) { } }); - return false; + return false; } if(container != null){ @@ -1275,33 +1275,6 @@ $(document).ready(function () { }); }); - function runContinentFix(dialogItself) { - $('#updateContinentButton').prop("disabled", true).addClass("running"); - $('#closeButton').prop("disabled", true); - $.ajax({ - url: base_url + 'index.php/logbookadvanced/fixContinent', - type: 'POST', - success: function (response) { - $('#updateContinentButton').prop("disabled", false).removeClass("running"); - dialogItself.close(); - BootstrapDialog.alert({ - title: lang_gen_advanced_logbook_success, - message: lang_gen_advanced_logbook_continents_updated + ' ' + response + ' ' + lang_gen_advanced_logbook_records_updated, - type: BootstrapDialog.TYPE_SUCCESS - }); - }, - error: function () { - $('#updateContinentButton').prop("disabled", false).removeClass("running"); - dialogItself.close(); - BootstrapDialog.alert({ - title: lang_gen_advanced_logbook_error, - message: lang_gen_advanced_logbook_problem_fixing_continents, - type: BootstrapDialog.TYPE_DANGER - }); - } - }); - } - $('#updateDistances').click(function (event) { $.ajax({ url: base_url + 'index.php/logbookadvanced/distanceDialog', @@ -1335,32 +1308,32 @@ $(document).ready(function () { }); }); - function runUpdateDistancesFix(dialogItself) { - $('#updateDistanceButton').prop("disabled", true).addClass("running"); - $('#closeButton').prop("disabled", true); + $('#dbtools').click(function (event) { $.ajax({ - url: base_url + 'index.php/logbookadvanced/updateDistances', - type: 'POST', - success: function (response) { - $('#updateDistanceButton').prop("disabled", false).removeClass("running"); - dialogItself.close(); - BootstrapDialog.alert({ - title: lang_gen_advanced_logbook_success, - message: lang_gen_advanced_logbook_distances_updated + ' ' + response + ' ' + lang_gen_advanced_logbook_records_updated, - type: BootstrapDialog.TYPE_SUCCESS - }); - }, - error: function () { - $('#updateDistanceButton').prop("disabled", false).removeClass("running"); - dialogItself.close(); - BootstrapDialog.alert({ - title: lang_gen_advanced_logbook_error, - message: lang_gen_advanced_logbook_problem_updating_distances, - type: BootstrapDialog.TYPE_DANGER + url: base_url + 'index.php/logbookadvanced/dbtoolsDialog', + type: 'post', + success: function (html) { + BootstrapDialog.show({ + title: 'Database tools', + size: BootstrapDialog.SIZE_WIDE, + cssClass: 'options', + nl2br: false, + message: html, + buttons: [ + { + label: lang_admin_close, + cssClass: 'btn btn-sm btn-secondary', + id: 'closeButton', + action: function (dialogItself) { + dialogItself.close(); + } + }], }); } }); - } + }); + + $('#fixItuZones').click(function (event) { const id_list = getSelectedIds(); @@ -2002,3 +1975,500 @@ function saveOptions() { dateFrom.value = ''; dateTo.value = ''; } + + function checkUpdateDistances() { + $('#checkUpdateDistancesBtn').prop("disabled", true).addClass("running"); + $('#closeButton').prop("disabled", true); + + $.ajax({ + url: base_url + 'index.php/logbookadvanced/checkDb', + data: { + type: 'checkdistance' + }, + type: 'POST', + success: function(response) { + $('#checkUpdateDistancesBtn').prop("disabled", false).removeClass("running"); + $('#closeButton').prop("disabled", false); + + $('.result').html(response); + }, + error: function(xhr, status, error) { + $('#checkUpdateDistancesBtn').prop("disabled", false).removeClass("running"); + $('#closeButton').prop('disabled', false); + + let errorMsg = 'Error checking distance information'; + if (xhr.responseJSON && xhr.responseJSON.message) { + errorMsg += ': ' + xhr.responseJSON.message; + } + + BootstrapDialog.alert({ + title: 'Error', + message: errorMsg, + type: BootstrapDialog.TYPE_DANGER + }); + } + }); + } + + function checkMissingDxcc() { + $('#checkMissingDxccsBtn').prop("disabled", true).addClass("running"); + $('#closeButton').prop("disabled", true); + + $.ajax({ + url: base_url + 'index.php/logbookadvanced/checkDb', + data: { + type: 'checkdxcc' + }, + type: 'POST', + success: function(response) { + $('#checkMissingDxccsBtn').prop("disabled", false).removeClass("running"); + $('#closeButton').prop("disabled", false); + $('.result').html(response); + }, + error: function(xhr, status, error) { + $('#checkMissingDxccsBtn').prop('disabled', false).text(''); + $('#closeButton').prop('disabled', false); + + let errorMsg = 'Error checking DXCC information'; + if (xhr.responseJSON && xhr.responseJSON.message) { + errorMsg += ': ' + xhr.responseJSON.message; + } + + BootstrapDialog.alert({ + title: 'Error', + message: errorMsg, + type: BootstrapDialog.TYPE_DANGER + }); + } + }); + } + + function checkFixContinent() { + $('#checkFixContinentBtn').prop("disabled", true).addClass("running"); + $('#closeButton').prop("disabled", true); + + $.ajax({ + url: base_url + 'index.php/logbookadvanced/checkDb', + data: { + type: 'checkcontinent' + }, + type: 'POST', + success: function(response) { + $('#checkFixContinentBtn').prop("disabled", false).removeClass("running"); + $('#closeButton').prop("disabled", false); + $('.result').html(response); + }, + error: function(xhr, status, error) { + $('#checkFixContinentBtn').prop('disabled', false).text(''); + $('#closeButton').prop('disabled', false); + + let errorMsg = 'Error checking continent information'; + if (xhr.responseJSON && xhr.responseJSON.message) { + errorMsg += ': ' + xhr.responseJSON.message; + } + + BootstrapDialog.alert({ + title: 'Error', + message: errorMsg, + type: BootstrapDialog.TYPE_DANGER + }); + } + }); + } + + function checkFixState() { + $('#checkFixStateBtn').prop("disabled", true).addClass("running"); + $('#closeButton').prop("disabled", true); + + $.ajax({ + url: base_url + 'index.php/logbookadvanced/checkDb', + data: { + type: 'checkstate' + }, + type: 'POST', + success: function(response) { + $('#checkFixStateBtn').prop("disabled", false).removeClass("running"); + $('#closeButton').prop("disabled", false); + + $('.result').html(response); + }, + error: function(xhr, status, error) { + $('#checkFixStateBtn').prop('disabled', false).text(''); + $('#closeButton').prop('disabled', false); + + let errorMsg = 'Error checking state information'; + if (xhr.responseJSON && xhr.responseJSON.message) { + errorMsg += ': ' + xhr.responseJSON.message; + } + + BootstrapDialog.alert({ + title: 'Error', + message: errorMsg, + type: BootstrapDialog.TYPE_DANGER + }); + } + }); + } + + function checkFixCqZones() { + $('#checkFixCqZonesBtn').prop("disabled", true).addClass("running"); + $('#closeButton').prop("disabled", true); + + $.ajax({ + url: base_url + 'index.php/logbookadvanced/checkDb', + data: { + type: 'checkcqzones' + }, + type: 'POST', + success: function(response) { + $('#checkFixCqZonesBtn').prop("disabled", false).removeClass("running"); + $('#closeButton').prop("disabled", false); + $('.result').html(response); + }, + error: function(xhr, status, error) { + $('#checkFixCqZonesBtn').prop('disabled', false).text(''); + $('#closeButton').prop('disabled', false); + + let errorMsg = ''; + if (xhr.responseJSON && xhr.responseJSON.message) { + errorMsg += ': ' + xhr.responseJSON.message; + } + + BootstrapDialog.alert({ + title: 'Error', + message: errorMsg, + type: BootstrapDialog.TYPE_DANGER + }); + } + }); + } + + function checkFixItuZones() { + $('#checkFixItuZonesBtn').prop("disabled", true).addClass("running"); + $('#closeButton').prop("disabled", true); + + $.ajax({ + url: base_url + 'index.php/logbookadvanced/checkDb', + data: { + type: 'checkituzones' + }, + type: 'POST', + success: function(response) { + $('#checkFixItuZonesBtn').prop("disabled", false).removeClass("running"); + $('#closeButton').prop("disabled", false); + $('.result').html(response); + }, + error: function(xhr, status, error) { + $('#checkFixItuZonesBtn').prop('disabled', false).text(''); + $('#closeButton').prop('disabled', false); + + let errorMsg = ''; + if (xhr.responseJSON && xhr.responseJSON.message) { + errorMsg += ': ' + xhr.responseJSON.message; + } + + BootstrapDialog.alert({ + title: 'Error', + message: errorMsg, + type: BootstrapDialog.TYPE_DANGER + }); + } + }); + } + + function fixState(dxcc, country) { + $('#fixStateBtn_' + dxcc).prop("disabled", true).addClass("running"); + + $.ajax({ + url: base_url + 'index.php/logbookadvanced/fixStateBatch', + type: 'post', + data: { + 'dxcc': dxcc, + 'country': country + }, + success: function (response) { + $('#fixStateBtn_' + dxcc).prop("disabled", false).removeClass("running"); + $('.result').html(response); + }, + error: function () { + $('#fixStateBtn_' + dxcc).prop("disabled", false).removeClass("running"); + } + }); + } + + function openStateList(dxcc, country) { + $('#openStateListBtn_' + dxcc).prop("disabled", true).addClass("running"); + + $.ajax({ + url: base_url + 'index.php/logbookadvanced/OpenStateList', + type: 'post', + data: { + 'dxcc': dxcc, + 'country': country + }, + success: function (response) { + $('#openStateListBtn_' + dxcc).prop("disabled", false).removeClass("running"); + BootstrapDialog.show({ + title: 'QSO List', + size: BootstrapDialog.SIZE_WIDE, + cssClass: 'options', + nl2br: false, + message: response, + buttons: [ + { + label: lang_admin_close, + cssClass: 'btn-sm btn-secondary', + id: 'closeButton', + action: function (dialogItself) { + dialogItself.close(); + } + }], + onhide: function(dialogRef){ + return; + }, + }); + }, + error: function () { + $('#openStateListBtn_' + dxcc).prop("disabled", false).removeClass("running"); + } + }); + } + + function fixMissingDxcc(all) { + if (all === true) { + $('#updateDxccBtn').prop("disabled", true).addClass("running"); + BootstrapDialog.confirm({ + title: lang_general_word_danger, + message: lang_gen_advanced_logbook_confirm_fix_missing_dxcc, + type: BootstrapDialog.TYPE_DANGER, + closable: true, + draggable: true, + btnOKClass: 'btn-danger', + callback: function(result) { + if(result) { + $('#closeButton').prop("disabled", true); + $.ajax({ + url: base_url + 'index.php/logbookadvanced/fixMissingDxcc', + type: 'post', + data: { + all: all + }, + success: function(data) { + $('#updateDxccBtn').prop("disabled", false).removeClass("running"); + $('#closeButton').prop("disabled", false); + $('.result').html(data); + }, + error: function(xhr, status, error) { + $('#updateDxccBtn').prop("disabled", false).removeClass("running"); + $('#closeButton').prop("disabled", false); + $('.result').html(error); + } + }) + } else { + $('#updateDxccBtn').prop("disabled", false).removeClass("running"); + } + + }, + }); + } else { + $('#fixMissingDxccBtn').prop("disabled", true).addClass("running"); + $('#closeButton').prop("disabled", true); + $.ajax({ + url: base_url + 'index.php/logbookadvanced/fixMissingDxcc', + type: 'post', + data: { + all: all + }, + success: function(data) { + $('#fixMissingDxccBtn').prop("disabled", false).removeClass("running"); + $('#closeButton').prop("disabled", false); + $('.result').html(data); + }, + error: function(xhr, status, error) { + $('#fixMissingDxccBtn').prop("disabled", false).removeClass("running"); + $('#closeButton').prop("disabled", false); + $('.result').html(error); + } + }) + } + } + + function runUpdateDistancesFix(dialogItself) { + $('#updateDistanceButton').prop("disabled", true).addClass("running"); + $('#closeButton').prop("disabled", true); + $.ajax({ + url: base_url + 'index.php/logbookadvanced/updateDistances', + type: 'POST', + success: function (response) { + $('#updateDistanceButton').prop("disabled", false).removeClass("running"); + $('#closeButton').prop("disabled", false); + if (dialogItself != '') { + dialogItself.close(); + } + $('.result').html(response); + }, + error: function(xhr, status, error) { + $('#updateDistanceButton').prop("disabled", false).removeClass("running"); + if (dialogItself != '') { + dialogItself.close(); + } + $('.result').html(error); + $('#closeButton').prop("disabled", false); + } + }); + } + + function openMissingDxccList() { + $('#openMissingDxccListBtn').prop("disabled", true).addClass("running"); + + $.ajax({ + url: base_url + 'index.php/logbookadvanced/openMissingDxccList', + type: 'post', + success: function (response) { + $('#openMissingDxccListBtn').prop("disabled", false).removeClass("running"); + BootstrapDialog.show({ + title: 'QSO List', + size: BootstrapDialog.SIZE_WIDE, + cssClass: 'options', + nl2br: false, + message: response, + buttons: [ + { + label: lang_admin_close, + cssClass: 'btn-sm btn-secondary', + id: 'closeButton', + action: function (dialogItself) { + dialogItself.close(); + } + }], + onhide: function(dialogRef){ + return; + }, + }); + }, + error: function () { + $('#openMissingDxccListBtn').prop("disabled", false).removeClass("running"); + } + }); + } + + function runContinentFix(dialogItself) { + $('#updateContinentButton').prop("disabled", true).addClass("running"); + $('#closeButton').prop("disabled", true); + $.ajax({ + url: base_url + 'index.php/logbookadvanced/fixContinent', + type: 'POST', + success: function (response) { + $('#updateContinentButton').prop("disabled", false).removeClass("running"); + if (dialogItself != '') { + dialogItself.close(); + } + $('.result').html(response); + $('#closeButton').prop("disabled", false); + }, + error: function(xhr, status, error) { + $('#updateContinentButton').prop("disabled", false).removeClass("running"); + $('.result').html(error); + $('#closeButton').prop("disabled", false); + } + }); + } + + function fixMissingCqZones() { + $('#updateCqZonesBtn').prop("disabled", true).addClass("running"); + $('#closeButton').prop("disabled", true); + $.ajax({ + url: base_url + 'index.php/logbookadvanced/batchFix', + data: { + type: 'cqzones' + }, + type: 'POST', + success: function (response) { + $('#updateCqZonesBtn').prop("disabled", false).removeClass("running"); + $('#closeButton').prop("disabled", false); + $('.result').html(response); + }, + error: function(xhr, status, error) { + $('#updateCqZonesBtn').prop("disabled", false).removeClass("running"); + $('#closeButton').prop("disabled", false); + $('.result').html(error); + } + }); + } + + function fixMissingItuZones() { + $('#updateItuZonesBtn').prop("disabled", true).addClass("running"); + $('#closeButton').prop("disabled", true); + $.ajax({ + url: base_url + 'index.php/logbookadvanced/batchFix', + data: { + type: 'ituzones' + }, + type: 'POST', + success: function (response) { + $('#updateItuZonesBtn').prop("disabled", false).removeClass("running"); + $('#closeButton').prop("disabled", false); + $('.result').html(response); + }, + error: function(xhr, status, error) { + $('#updateItuZonesBtn').prop("disabled", false).removeClass("running"); + $('#closeButton').prop("disabled", false); + $('.result').html(error); + } + }); + } + + function checkGrids() { + $('#checkGridsBtn').prop("disabled", true).addClass("running"); + $('#closeButton').prop("disabled", true); + + $.ajax({ + url: base_url + 'index.php/logbookadvanced/checkDb', + data: { + type: 'checkgrids' + }, + type: 'POST', + success: function(response) { + $('#checkGridsBtn').prop("disabled", false).removeClass("running"); + $('#closeButton').prop("disabled", false); + $('.result').html(response); + }, + error: function(xhr, status, error) { + $('#checkGridsBtn').prop('disabled', false).text(''); + $('#closeButton').prop('disabled', false); + + let errorMsg = 'Error checking continent information'; + if (xhr.responseJSON && xhr.responseJSON.message) { + errorMsg += ': ' + xhr.responseJSON.message; + } + + BootstrapDialog.alert({ + title: 'Error', + message: errorMsg, + type: BootstrapDialog.TYPE_DANGER + }); + } + }); + } + + function fixMissingGrids() { + $('#updateGridsBtn').prop("disabled", true).addClass("running"); + $('#closeButton').prop("disabled", true); + $.ajax({ + url: base_url + 'index.php/logbookadvanced/batchFix', + data: { + type: 'grids' + }, + type: 'POST', + success: function (response) { + $('#updateGridsBtn').prop("disabled", false).removeClass("running"); + $('#closeButton').prop("disabled", false); + $('.result').html(response); + }, + error: function(xhr, status, error) { + $('#updateGridsBtn').prop("disabled", false).removeClass("running"); + $('#closeButton').prop("disabled", false); + $('.result').html(error); + } + }); + } diff --git a/assets/json/datatables_languages/it-IT.json b/assets/json/datatables_languages/it-IT.json index 6784165b8..0083aeda1 100644 --- a/assets/json/datatables_languages/it-IT.json +++ b/assets/json/datatables_languages/it-IT.json @@ -194,7 +194,7 @@ "title": "Modifica elemento" }, "error": { - "system": "Errore del sistema." + "system": "Errore del sistema (Maggiori informazioni<\\/a>)." }, "multi": { "info": "Gli elementi selezionati contengono valori diversi. Per modificare e impostare tutti gli elementi per questa selezione allo stesso valore, premi o clicca qui, altrimenti ogni cella manterrà il suo valore attuale.", diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index a386f4ba9..5146b104d 100644 --- a/assets/lang_src/messages.pot +++ b/assets/lang_src/messages.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-12-13 14:06+0000\n" +"POT-Creation-Date: 2025-12-19 07:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -107,8 +107,7 @@ msgstr "" #: application/controllers/Themes.php:17 #: application/controllers/Timeline.php:10 #: application/controllers/Timeplotter.php:11 -#: application/controllers/Update.php:22 application/controllers/Update.php:333 -#: application/controllers/Update.php:344 application/controllers/User.php:14 +#: application/controllers/Update.php:22 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 #: application/controllers/User.php:384 application/controllers/User.php:385 @@ -329,8 +328,8 @@ msgstr "" #: application/views/contesting/index.php:63 #: application/views/interface_assets/header.php:240 #: application/views/logbookadvanced/edit.php:25 -#: application/views/logbookadvanced/index.php:430 -#: application/views/logbookadvanced/index.php:929 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:940 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 @@ -347,9 +346,12 @@ msgstr "" #: application/views/interface_assets/header.php:192 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:26 -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:905 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:916 #: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/logbookadvanced/showMissingDxccQsos.php:16 +#: application/views/logbookadvanced/showStateQsos.php:27 +#: application/views/logbookadvanced/statecheckresult.php:11 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 @@ -434,7 +436,7 @@ msgstr "" #: 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 -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:436 #: application/views/logbookadvanced/useroptions.php:130 #: application/views/lookup/index.php:10 #: application/views/qslcard/searchresult.php:17 @@ -461,7 +463,7 @@ msgstr "" #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:458 #: application/views/logbookadvanced/useroptions.php:138 #: application/views/lookup/index.php:12 #: application/views/qso/award_tabs.php:65 @@ -483,8 +485,8 @@ msgstr "" #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 #: application/views/logbookadvanced/edit.php:30 -#: application/views/logbookadvanced/index.php:438 -#: application/views/logbookadvanced/index.php:923 +#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:934 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 @@ -681,8 +683,8 @@ msgstr "" msgid "Club Member" msgstr "" -#: application/controllers/Club.php:45 application/models/Club_model.php:75 -#: application/models/Club_model.php:149 application/models/Club_model.php:191 +#: application/controllers/Club.php:45 application/models/Club_model.php:107 +#: application/models/Club_model.php:181 application/models/Club_model.php:223 msgid "Invalid User ID!" msgstr "" @@ -698,8 +700,8 @@ msgstr "" #: application/controllers/Club.php:119 application/controllers/Club.php:148 #: application/controllers/Club.php:175 application/models/Club_model.php:22 -#: application/models/Club_model.php:70 application/models/Club_model.php:144 -#: application/models/Club_model.php:186 +#: application/models/Club_model.php:102 application/models/Club_model.php:176 +#: application/models/Club_model.php:218 msgid "Invalid Club ID!" msgstr "" @@ -894,7 +896,7 @@ msgstr "" #: application/controllers/Dcl.php:68 application/views/dcl_views/import.php:3 #: application/views/dcl_views/index.php:3 -#: application/views/logbookadvanced/index.php:896 +#: application/views/logbookadvanced/index.php:907 #: application/views/logbookadvanced/useroptions.php:90 #: application/views/qso/edit_ajax.php:434 #: application/views/search/search_result_ajax.php:127 @@ -1295,7 +1297,7 @@ msgstr "" #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:171 #: application/views/interface_assets/footer.php:106 -#: application/views/logbookadvanced/index.php:884 +#: application/views/logbookadvanced/index.php:895 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:30 @@ -1429,9 +1431,11 @@ msgstr "" #: application/views/interface_assets/footer.php:121 #: application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:335 -#: application/views/logbookadvanced/index.php:854 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:865 #: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/logbookadvanced/showMissingDxccQsos.php:12 +#: application/views/logbookadvanced/showStateQsos.php:23 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:40 #: application/views/oqrs/notinlogform.php:11 @@ -1480,7 +1484,7 @@ msgstr "" #: application/views/contesting/index.php:180 #: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:857 +#: application/views/logbookadvanced/index.php:868 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -1509,7 +1513,7 @@ msgstr "" #: application/views/contesting/index.php:204 #: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:860 +#: application/views/logbookadvanced/index.php:871 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1559,8 +1563,8 @@ msgstr "" #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/edit.php:28 -#: application/views/logbookadvanced/index.php:444 -#: application/views/logbookadvanced/index.php:920 +#: application/views/logbookadvanced/index.php:446 +#: application/views/logbookadvanced/index.php:931 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/lookup/index.php:7 @@ -1591,9 +1595,11 @@ msgstr "" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 #: application/views/logbookadvanced/edit.php:96 -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:908 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:919 #: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/logbookadvanced/showMissingDxccQsos.php:14 +#: application/views/logbookadvanced/showStateQsos.php:25 #: application/views/logbookadvanced/useroptions.php:106 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 @@ -1623,9 +1629,12 @@ msgstr "" #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:869 +#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:880 #: application/views/logbookadvanced/qslcarousel.php:39 +#: application/views/logbookadvanced/showMissingDxccQsos.php:15 +#: application/views/logbookadvanced/showStateQsos.php:26 +#: application/views/logbookadvanced/showUpdateResult.php:105 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/lookup/index.php:6 #: application/views/qslcard/confirmationresult.php:19 @@ -1666,8 +1675,8 @@ msgstr "" #: application/views/gridmap/index.php:225 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 -#: application/views/logbookadvanced/index.php:489 -#: application/views/logbookadvanced/index.php:959 +#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:970 #: application/views/logbookadvanced/useroptions.php:174 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 @@ -1727,9 +1736,11 @@ msgstr "" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:56 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:863 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:874 #: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/logbookadvanced/showMissingDxccQsos.php:13 +#: application/views/logbookadvanced/showStateQsos.php:24 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 #: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 @@ -1777,7 +1788,7 @@ msgstr "" #: application/views/bandmap/list.php:567 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 -#: application/views/logbookadvanced/index.php:866 +#: application/views/logbookadvanced/index.php:877 #: application/views/logbookadvanced/useroptions.php:50 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 @@ -1803,8 +1814,8 @@ msgstr "" #: application/controllers/Radio.php:43 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:460 -#: application/views/logbookadvanced/index.php:941 +#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:952 #: application/views/logbookadvanced/useroptions.php:150 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 @@ -1832,7 +1843,7 @@ msgstr "" #: application/views/dxatlas/index.php:65 #: application/views/interface_assets/footer.php:822 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:317 +#: application/views/logbookadvanced/index.php:319 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 @@ -2300,7 +2311,7 @@ msgid "Timestamp" msgstr "" #: application/controllers/Radio.php:49 -#: application/views/logbookadvanced/index.php:821 +#: application/views/logbookadvanced/index.php:829 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:185 @@ -2339,7 +2350,7 @@ msgstr "" #: application/views/interface_assets/footer.php:682 #: application/views/interface_assets/footer.php:691 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:808 +#: application/views/logbookadvanced/index.php:816 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 #: application/views/satellite/index.php:58 #: application/views/search/stored_queries.php:21 @@ -2362,7 +2373,7 @@ msgstr "" #: application/views/interface_assets/footer.php:2800 #: application/views/interface_assets/footer.php:2818 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:824 +#: application/views/logbookadvanced/index.php:835 #: application/views/lotw_views/index.php:134 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 @@ -2470,7 +2481,7 @@ msgstr "" #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 #: application/views/interface_assets/header.php:399 -#: application/views/logbookadvanced/index.php:797 +#: application/views/logbookadvanced/index.php:805 #: application/views/oqrs/index.php:30 #: application/views/oqrs/showrequests.php:69 #: application/views/qslcard/searchform.php:8 @@ -2805,83 +2816,83 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/Update.php:362 +#: application/controllers/Update.php:340 msgid "SCP Update complete. Result: " msgstr "" -#: application/controllers/Update.php:364 +#: application/controllers/Update.php:342 msgid "SCP Update failed. Result: " msgstr "" -#: application/controllers/Update.php:401 +#: application/controllers/Update.php:379 msgid "LoTW Users Update complete. Result: " msgstr "" -#: application/controllers/Update.php:403 +#: application/controllers/Update.php:381 msgid "LoTW Users Update failed. Result: " msgstr "" -#: application/controllers/Update.php:438 +#: application/controllers/Update.php:416 msgid "DOK Update complete. Result: " msgstr "" -#: application/controllers/Update.php:440 +#: application/controllers/Update.php:418 msgid "DOK Update failed. Result: " msgstr "" -#: application/controllers/Update.php:473 +#: application/controllers/Update.php:451 msgid "SOTA Update complete. Result: " msgstr "" -#: application/controllers/Update.php:475 +#: application/controllers/Update.php:453 msgid "SOTA Update failed. Result: " msgstr "" -#: application/controllers/Update.php:508 +#: application/controllers/Update.php:486 msgid "WWFF Update complete. Result: " msgstr "" -#: application/controllers/Update.php:510 +#: application/controllers/Update.php:488 msgid "WWFF Update failed. Result: " msgstr "" -#: application/controllers/Update.php:544 +#: application/controllers/Update.php:522 msgid "HAMqsl Update complete. Result: " msgstr "" -#: application/controllers/Update.php:546 +#: application/controllers/Update.php:524 msgid "HAMqsl Update failed. Result: " msgstr "" -#: application/controllers/Update.php:579 +#: application/controllers/Update.php:557 msgid "POTA Update complete. Result: " msgstr "" -#: application/controllers/Update.php:581 +#: application/controllers/Update.php:559 msgid "POTA Update failed. Result: " msgstr "" -#: application/controllers/Update.php:610 +#: application/controllers/Update.php:588 msgid "TLE Update complete. Result: " msgstr "" -#: application/controllers/Update.php:612 +#: application/controllers/Update.php:590 msgid "TLE Update failed. Result: " msgstr "" -#: application/controllers/Update.php:639 +#: application/controllers/Update.php:617 msgid "LoTW SAT Update" msgstr "" -#: application/controllers/Update.php:667 +#: application/controllers/Update.php:645 msgid "Update of Hams of Note" msgstr "" -#: application/controllers/Update.php:707 +#: application/controllers/Update.php:685 msgid "VUCC Grid file update complete. Result: " msgstr "" -#: application/controllers/Update.php:709 +#: application/controllers/Update.php:687 msgid "VUCC Grid file update failed. Result: " msgstr "" @@ -3310,11 +3321,11 @@ msgctxt "Division Name (States in various countries)." msgid "City / Ku / Gun" msgstr "" -#: application/models/Club_model.php:154 +#: application/models/Club_model.php:186 msgid "Invalid Permission Level!" msgstr "" -#: application/models/Club_model.php:169 +#: application/models/Club_model.php:201 msgid "Error adding Club Member!" msgstr "" @@ -3461,7 +3472,7 @@ msgstr "" msgid "QSO updated" msgstr "" -#: application/models/Logbook_model.php:6405 +#: application/models/Logbook_model.php:6331 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3676,28 +3687,28 @@ msgstr "" #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:337 -#: application/views/logbookadvanced/index.php:348 -#: application/views/logbookadvanced/index.php:359 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:402 -#: application/views/logbookadvanced/index.php:416 -#: application/views/logbookadvanced/index.php:470 -#: application/views/logbookadvanced/index.php:508 -#: application/views/logbookadvanced/index.php:519 -#: application/views/logbookadvanced/index.php:530 -#: application/views/logbookadvanced/index.php:540 -#: application/views/logbookadvanced/index.php:552 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/index.php:575 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/index.php:599 -#: application/views/logbookadvanced/index.php:610 -#: application/views/logbookadvanced/index.php:621 -#: application/views/logbookadvanced/index.php:630 -#: application/views/logbookadvanced/index.php:653 -#: application/views/logbookadvanced/index.php:662 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:418 +#: application/views/logbookadvanced/index.php:472 +#: application/views/logbookadvanced/index.php:510 +#: application/views/logbookadvanced/index.php:521 +#: application/views/logbookadvanced/index.php:532 +#: application/views/logbookadvanced/index.php:542 +#: application/views/logbookadvanced/index.php:554 +#: application/views/logbookadvanced/index.php:565 +#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:588 +#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:612 +#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/index.php:655 +#: application/views/logbookadvanced/index.php:664 #: application/views/lotw/import.php:55 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -3763,8 +3774,8 @@ msgstr "" #: application/views/distances/index.php:53 #: application/views/gridmap/index.php:71 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:947 +#: application/views/logbookadvanced/index.php:377 +#: application/views/logbookadvanced/index.php:958 #: application/views/logbookadvanced/useroptions.php:158 #: application/views/timeline/index.php:79 application/views/user/edit.php:351 #: application/views/view_log/partial/log_ajax.php:21 @@ -3784,7 +3795,7 @@ msgstr "" #: application/views/gridmap/index.php:75 #: application/views/logbookadvanced/edit.php:207 #: application/views/logbookadvanced/edit.php:215 -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:473 #: application/views/timeline/index.php:84 msgid "None/Empty" msgstr "" @@ -3794,7 +3805,7 @@ msgstr "" #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:77 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:381 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:532 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 @@ -3808,7 +3819,7 @@ msgstr "" #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:78 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:382 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:533 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 @@ -3822,7 +3833,7 @@ msgstr "" #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:79 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:383 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:534 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 @@ -3836,7 +3847,7 @@ msgstr "" #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:80 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:384 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:535 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 @@ -3850,7 +3861,7 @@ msgstr "" #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:81 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:385 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:536 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 @@ -3864,7 +3875,7 @@ msgstr "" #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:82 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:386 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:537 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 @@ -3878,7 +3889,7 @@ msgstr "" #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:83 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:385 +#: application/views/logbookadvanced/index.php:387 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:538 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 @@ -3892,7 +3903,7 @@ msgstr "" #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:84 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:386 +#: application/views/logbookadvanced/index.php:388 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:539 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 @@ -3906,7 +3917,7 @@ msgstr "" #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:85 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:387 +#: application/views/logbookadvanced/index.php:389 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:540 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 @@ -3920,7 +3931,7 @@ msgstr "" #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:86 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:388 +#: application/views/logbookadvanced/index.php:390 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:541 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 @@ -3934,7 +3945,7 @@ msgstr "" #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:87 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:391 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:542 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 @@ -3948,7 +3959,7 @@ msgstr "" #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:88 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:392 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:543 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 @@ -3962,7 +3973,7 @@ msgstr "" #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:89 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:393 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:544 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 @@ -3976,7 +3987,7 @@ msgstr "" #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:90 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:394 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:545 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 @@ -3990,7 +4001,7 @@ msgstr "" #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:91 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:395 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:546 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 @@ -4004,7 +4015,7 @@ msgstr "" #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:92 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:396 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:547 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 @@ -4018,7 +4029,7 @@ msgstr "" #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:93 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:397 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:548 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 @@ -4032,7 +4043,7 @@ msgstr "" #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:94 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:398 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:549 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 @@ -4093,7 +4104,7 @@ msgstr "" #: application/views/hamsat/index.php:32 #: application/views/interface_assets/header.php:210 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:357 +#: application/views/logbookadvanced/index.php:359 #: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 @@ -4114,7 +4125,7 @@ msgstr "" #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:118 -#: application/views/logbookadvanced/index.php:366 +#: application/views/logbookadvanced/index.php:368 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:54 @@ -4244,6 +4255,8 @@ msgstr "" #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/logbookadvanced/showUpdateResult.php:60 +#: application/views/logbookadvanced/showUpdateResult.php:104 #: application/views/lotw_views/index.php:32 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 @@ -4424,6 +4437,8 @@ msgstr "" #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 +#: application/views/logbookadvanced/showMissingDxccQsos.php:10 +#: application/views/logbookadvanced/showStateQsos.php:21 #: application/views/public_search/result.php:14 #: application/views/qslcard/searchresult.php:8 #: application/views/qso/components/previous_contacts.php:7 @@ -5027,7 +5042,7 @@ msgstr "" #: application/views/club/permissions.php:250 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:740 +#: application/views/logbookadvanced/index.php:742 #: application/views/notes/main.php:77 application/views/qrz/export.php:44 #: application/views/user/index.php:33 application/views/user/index.php:160 #: application/views/webadif/export.php:45 @@ -5158,8 +5173,8 @@ msgid "Filtering on" msgstr "" #: application/views/awards/counties/details.php:13 -#: application/views/logbookadvanced/index.php:426 -#: application/views/logbookadvanced/index.php:911 +#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:922 #: application/views/logbookadvanced/useroptions.php:110 msgid "County" msgstr "" @@ -5243,8 +5258,8 @@ msgstr "" #: application/views/gridmap/index.php:229 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 -#: application/views/logbookadvanced/index.php:400 -#: application/views/logbookadvanced/index.php:914 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:925 #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:308 @@ -5300,7 +5315,7 @@ msgstr "" #: application/views/awards/dxcc/index.php:41 #: application/views/awards/wpx/index.php:13 #: application/views/gridmap/index.php:19 -#: application/views/logbookadvanced/index.php:270 +#: application/views/logbookadvanced/index.php:272 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" msgstr "" @@ -5312,7 +5327,7 @@ msgstr "" #: application/views/awards/cq/index.php:55 #: application/views/awards/dxcc/index.php:51 #: application/views/gridmap/index.php:28 -#: application/views/logbookadvanced/index.php:276 +#: application/views/logbookadvanced/index.php:278 msgid "Date Presets" msgstr "" @@ -5324,55 +5339,55 @@ msgstr "" #: application/views/dashboard/index.php:408 #: application/views/dashboard/index.php:429 #: application/views/gridmap/index.php:31 -#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:280 msgid "Today" msgstr "" #: application/views/awards/cq/index.php:58 #: application/views/awards/dxcc/index.php:54 #: application/views/gridmap/index.php:32 -#: application/views/logbookadvanced/index.php:279 +#: application/views/logbookadvanced/index.php:281 msgid "Yesterday" msgstr "" #: application/views/awards/cq/index.php:59 #: application/views/awards/dxcc/index.php:55 #: application/views/gridmap/index.php:33 -#: application/views/logbookadvanced/index.php:280 +#: application/views/logbookadvanced/index.php:282 msgid "Last 7 Days" msgstr "" #: application/views/awards/cq/index.php:60 #: application/views/awards/dxcc/index.php:56 #: application/views/gridmap/index.php:34 -#: application/views/logbookadvanced/index.php:281 +#: application/views/logbookadvanced/index.php:283 msgid "Last 30 Days" msgstr "" #: application/views/awards/cq/index.php:61 #: application/views/awards/dxcc/index.php:57 #: application/views/gridmap/index.php:35 -#: application/views/logbookadvanced/index.php:282 +#: application/views/logbookadvanced/index.php:284 msgid "This Month" msgstr "" #: application/views/awards/cq/index.php:62 #: application/views/awards/dxcc/index.php:58 #: application/views/gridmap/index.php:36 -#: application/views/logbookadvanced/index.php:283 +#: application/views/logbookadvanced/index.php:285 msgid "Last Month" msgstr "" #: application/views/awards/cq/index.php:63 #: application/views/awards/dxcc/index.php:59 #: application/views/gridmap/index.php:37 -#: application/views/logbookadvanced/index.php:284 +#: application/views/logbookadvanced/index.php:286 msgid "This Year" msgstr "" #: application/views/awards/cq/index.php:64 #: application/views/awards/dxcc/index.php:60 -#: application/views/logbookadvanced/index.php:285 +#: application/views/logbookadvanced/index.php:287 msgid "Last Year" msgstr "" @@ -5380,7 +5395,7 @@ msgstr "" #: application/views/awards/dxcc/index.php:61 #: application/views/gridmap/index.php:38 #: application/views/interface_assets/footer.php:52 -#: application/views/logbookadvanced/index.php:286 +#: application/views/logbookadvanced/index.php:288 #: application/views/qso/index.php:757 msgid "Clear" msgstr "" @@ -5528,7 +5543,7 @@ msgstr "" #: application/views/awards/waja/index.php:135 #: application/views/awards/wap/index.php:129 #: application/views/awards/was/index.php:133 -#: application/views/logbookadvanced/index.php:813 +#: application/views/logbookadvanced/index.php:821 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "" @@ -5675,8 +5690,8 @@ msgstr "" #: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:828 -#: application/views/logbookadvanced/index.php:829 +#: application/views/logbookadvanced/index.php:839 +#: application/views/logbookadvanced/index.php:840 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:43 application/views/user/edit.php:723 @@ -5740,7 +5755,7 @@ msgstr "" #: application/views/bandmap/list.php:339 #: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:217 -#: application/views/logbookadvanced/index.php:473 +#: application/views/logbookadvanced/index.php:475 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:480 @@ -5754,7 +5769,7 @@ msgstr "" #: application/views/bandmap/list.php:338 #: application/views/bandmap/list.php:352 #: application/views/logbookadvanced/edit.php:216 -#: application/views/logbookadvanced/index.php:472 +#: application/views/logbookadvanced/index.php:474 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:479 @@ -5768,7 +5783,7 @@ msgstr "" #: application/views/bandmap/list.php:340 #: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 -#: application/views/logbookadvanced/index.php:475 +#: application/views/logbookadvanced/index.php:477 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:481 @@ -5782,7 +5797,7 @@ msgstr "" #: application/views/bandmap/list.php:341 #: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:220 -#: application/views/logbookadvanced/index.php:476 +#: application/views/logbookadvanced/index.php:478 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:482 @@ -5796,7 +5811,7 @@ msgstr "" #: application/views/bandmap/list.php:342 #: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:218 -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:476 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:483 @@ -5810,7 +5825,7 @@ msgstr "" #: application/views/bandmap/list.php:344 #: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:221 -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:479 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:485 @@ -5824,7 +5839,7 @@ msgstr "" #: application/views/bandmap/list.php:343 #: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:222 -#: application/views/logbookadvanced/index.php:478 +#: application/views/logbookadvanced/index.php:480 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:484 @@ -5873,6 +5888,7 @@ msgstr "" #: application/views/awards/dxcc/index.php:276 #: application/views/awards/iota/index.php:199 #: application/views/awards/wae/index.php:163 +#: application/views/logbookadvanced/statecheckresult.php:10 #: application/views/timeline/index.php:199 #: application/views/timeline/index.php:297 msgid "Prefix" @@ -6088,7 +6104,7 @@ msgstr "" #: application/views/contesting/index.php:229 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:872 +#: application/views/logbookadvanced/index.php:883 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:58 #: application/views/lotw/satupdate.php:7 @@ -6116,8 +6132,8 @@ msgstr "" #: application/views/gridmap/index.php:231 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 -#: application/views/logbookadvanced/index.php:414 -#: application/views/logbookadvanced/index.php:917 +#: application/views/logbookadvanced/index.php:416 +#: application/views/logbookadvanced/index.php:928 #: application/views/logbookadvanced/useroptions.php:118 #: application/views/lookup/index.php:8 application/views/qso/edit_ajax.php:316 #: application/views/qso/index.php:515 @@ -6383,7 +6399,8 @@ msgid "Band Categories" msgstr "" #: application/views/awards/pl_polska/index.php:372 -#: application/views/logbookadvanced/index.php:772 +#: application/views/logbookadvanced/dbtoolsdialog.php:47 +#: application/views/logbookadvanced/index.php:773 msgid "Fix State" msgstr "" @@ -6510,8 +6527,10 @@ msgid "Reference" msgstr "" #: application/views/awards/sig/qso_list.php:10 -#: application/views/logbookadvanced/index.php:845 +#: application/views/logbookadvanced/index.php:856 #: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/logbookadvanced/showMissingDxccQsos.php:11 +#: application/views/logbookadvanced/showStateQsos.php:22 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 #: application/views/qso/components/previous_contacts.php:6 @@ -6641,8 +6660,8 @@ msgstr "" #: application/views/bandmap/list.php:571 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 -#: application/views/logbookadvanced/index.php:468 -#: application/views/logbookadvanced/index.php:956 +#: application/views/logbookadvanced/index.php:470 +#: application/views/logbookadvanced/index.php:967 #: application/views/logbookadvanced/useroptions.php:170 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:476 @@ -7243,8 +7262,8 @@ msgstr "" #: application/views/bandmap/list.php:510 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 -#: application/views/logbookadvanced/index.php:464 -#: application/views/logbookadvanced/index.php:950 +#: application/views/logbookadvanced/index.php:466 +#: application/views/logbookadvanced/index.php:961 #: application/views/logbookadvanced/useroptions.php:162 #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 @@ -7350,8 +7369,8 @@ msgstr "" #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:485 -#: application/views/logbookadvanced/index.php:944 +#: application/views/logbookadvanced/index.php:487 +#: application/views/logbookadvanced/index.php:955 #: application/views/logbookadvanced/useroptions.php:154 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:379 #: application/views/view_log/qso.php:228 @@ -7870,7 +7889,6 @@ msgstr "" #: application/views/bands/edit.php:2 #: application/views/logbookadvanced/index.php:53 -#: application/views/update/index.php:35 msgid "WARNING" msgstr "" @@ -8047,7 +8065,7 @@ msgid "" msgstr "" #: application/views/cabrillo/index.php:48 -#: application/views/logbookadvanced/index.php:787 +#: application/views/logbookadvanced/index.php:795 #: application/views/oqrs/showrequests.php:31 #: application/views/qso/index.php:362 #: application/views/station_profile/edit.php:96 @@ -8158,19 +8176,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:187 #: application/views/logbookadvanced/edit.php:193 #: application/views/logbookadvanced/edit.php:199 -#: application/views/logbookadvanced/index.php:509 -#: application/views/logbookadvanced/index.php:520 -#: application/views/logbookadvanced/index.php:553 -#: application/views/logbookadvanced/index.php:564 -#: application/views/logbookadvanced/index.php:576 -#: application/views/logbookadvanced/index.php:587 -#: application/views/logbookadvanced/index.php:600 -#: application/views/logbookadvanced/index.php:611 -#: application/views/logbookadvanced/index.php:622 -#: application/views/logbookadvanced/index.php:631 -#: application/views/logbookadvanced/index.php:646 -#: application/views/logbookadvanced/index.php:654 -#: application/views/logbookadvanced/index.php:663 +#: application/views/logbookadvanced/index.php:511 +#: application/views/logbookadvanced/index.php:522 +#: application/views/logbookadvanced/index.php:555 +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/index.php:578 +#: application/views/logbookadvanced/index.php:589 +#: application/views/logbookadvanced/index.php:602 +#: application/views/logbookadvanced/index.php:613 +#: application/views/logbookadvanced/index.php:624 +#: application/views/logbookadvanced/index.php:633 +#: application/views/logbookadvanced/index.php:648 +#: application/views/logbookadvanced/index.php:656 +#: application/views/logbookadvanced/index.php:665 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:444 #: application/views/qso/edit_ajax.php:477 @@ -8223,19 +8241,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:188 #: application/views/logbookadvanced/edit.php:194 #: application/views/logbookadvanced/edit.php:200 -#: application/views/logbookadvanced/index.php:510 -#: application/views/logbookadvanced/index.php:521 -#: application/views/logbookadvanced/index.php:554 -#: application/views/logbookadvanced/index.php:565 -#: application/views/logbookadvanced/index.php:577 -#: application/views/logbookadvanced/index.php:588 -#: application/views/logbookadvanced/index.php:601 -#: application/views/logbookadvanced/index.php:612 -#: application/views/logbookadvanced/index.php:623 -#: application/views/logbookadvanced/index.php:632 -#: application/views/logbookadvanced/index.php:647 -#: application/views/logbookadvanced/index.php:655 -#: application/views/logbookadvanced/index.php:664 +#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:567 +#: application/views/logbookadvanced/index.php:579 +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/index.php:603 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/index.php:625 +#: application/views/logbookadvanced/index.php:634 +#: application/views/logbookadvanced/index.php:649 +#: application/views/logbookadvanced/index.php:657 +#: application/views/logbookadvanced/index.php:666 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:443 #: application/views/qso/edit_ajax.php:476 @@ -8364,6 +8382,7 @@ msgstr "" #: application/views/club/permissions.php:26 #: application/views/eqsl/download.php:45 +#: application/views/logbookadvanced/statecheckresult.php:13 msgid "Action" msgstr "" @@ -8559,7 +8578,7 @@ msgstr "" #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 -#: application/views/logbookadvanced/index.php:968 +#: application/views/logbookadvanced/index.php:979 #: application/views/logbookadvanced/useroptions.php:186 #: application/views/qrz/export.php:39 #: application/views/qslprint/qslprint.php:32 @@ -9008,7 +9027,7 @@ msgid "Locator" msgstr "" #: application/views/contesting/index.php:69 -#: application/views/logbookadvanced/index.php:875 +#: application/views/logbookadvanced/index.php:886 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/qso/edit_ajax.php:177 msgid "QTH" @@ -9473,14 +9492,14 @@ msgstr "" #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 -#: application/views/logbookadvanced/index.php:511 -#: application/views/logbookadvanced/index.php:522 -#: application/views/logbookadvanced/index.php:555 -#: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/index.php:578 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/index.php:602 -#: application/views/logbookadvanced/index.php:613 +#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:557 +#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:591 +#: application/views/logbookadvanced/index.php:604 +#: application/views/logbookadvanced/index.php:615 #: application/views/oqrs/qsolist.php:57 application/views/oqrs/qsolist.php:99 #: application/views/qslprint/qsolist.php:68 #: application/views/qslprint/qsolist.php:110 @@ -10025,6 +10044,11 @@ msgid "Check for new version" msgstr "" #: application/views/debug/index.php:495 +#: application/views/logbookadvanced/checkresult.php:37 +#: application/views/logbookadvanced/checkresult.php:53 +#: application/views/logbookadvanced/checkresult.php:76 +#: application/views/logbookadvanced/checkresult.php:87 +#: application/views/logbookadvanced/checkresult.php:97 #: application/views/logbookadvanced/index.php:57 msgid "Update now" msgstr "" @@ -11145,7 +11169,7 @@ msgid "" msgstr "" #: application/views/interface_assets/footer.php:878 -#: application/views/logbookadvanced/index.php:792 +#: application/views/logbookadvanced/index.php:800 msgid "Callsign: " msgstr "" @@ -11398,7 +11422,7 @@ msgid "Log" msgstr "" #: application/views/interface_assets/header.php:398 -#: application/views/logbookadvanced/index.php:689 +#: application/views/logbookadvanced/index.php:691 #: application/views/oqrs/index.php:28 application/views/user/edit.php:491 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" @@ -11479,7 +11503,7 @@ msgid "DCL Export" msgstr "" #: application/views/interface_assets/header.php:536 -#: application/views/logbookadvanced/index.php:831 +#: application/views/logbookadvanced/index.php:842 msgid "Help" msgstr "" @@ -11733,6 +11757,7 @@ msgid "Label types" msgstr "" #: application/views/labels/index.php:81 +#: application/views/logbookadvanced/statecheckresult.php:12 #: application/views/statistics/index.php:70 #: application/views/statistics/index.php:114 msgid "QSOs" @@ -11798,20 +11823,20 @@ msgid "" "or JO90AB12) when a match is confident." msgstr "" -#: application/views/logbookadvanced/continentdialog.php:2 -msgid "" -"Update all QSOs with the continent based on the DXCC country of the QSO." +#: application/views/logbookadvanced/checkresult.php:27 +msgid "Distance Check Results" msgstr "" -#: application/views/logbookadvanced/continentdialog.php:3 -msgid "This is useful if you have imported QSOs without continent information." -msgstr "" - -#: application/views/logbookadvanced/continentdialog.php:4 -msgid "" -"Update will only set the continent for QSOs where the continent is empty." +#: application/views/logbookadvanced/checkresult.php:28 +#: application/views/logbookadvanced/checkresult.php:44 +#: application/views/logbookadvanced/checkresult.php:60 +#: application/views/logbookadvanced/checkresult.php:72 +#: application/views/logbookadvanced/checkresult.php:83 +#: application/views/logbookadvanced/checkresult.php:94 +msgid "QSOs to update found:" msgstr "" +#: application/views/logbookadvanced/checkresult.php:31 #: application/views/logbookadvanced/distancedialog.php:2 msgid "" "Update all QSOs with the distance based on your gridsquare set in the " @@ -11819,14 +11844,151 @@ msgid "" "calculated based on if short path or long path is set." msgstr "" +#: application/views/logbookadvanced/checkresult.php:32 #: application/views/logbookadvanced/distancedialog.php:3 msgid "This is useful if you have imported QSOs without distance information." msgstr "" +#: application/views/logbookadvanced/checkresult.php:33 #: application/views/logbookadvanced/distancedialog.php:4 msgid "Update will only set the distance for QSOs where the distance is empty." msgstr "" +#: application/views/logbookadvanced/checkresult.php:43 +msgid "Continent Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:47 +#: application/views/logbookadvanced/continentdialog.php:2 +msgid "" +"Update all QSOs with the continent based on the DXCC country of the QSO." +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:48 +#: application/views/logbookadvanced/continentdialog.php:3 +msgid "This is useful if you have imported QSOs without continent information." +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:49 +#: application/views/logbookadvanced/continentdialog.php:4 +msgid "" +"Update will only set the continent for QSOs where the continent is empty." +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:59 +msgid "DXCC Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:64 +#: application/views/logbookadvanced/statecheckresult.php:30 +msgid "Run fix" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:71 +msgid "CQ Zone Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:82 +msgid "ITU Zone Check Results" +msgstr "" + +#: application/views/logbookadvanced/checkresult.php:93 +msgid "Gridsquare Check Results" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:4 +msgid "Data Repair Tools" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:6 +msgid "Wiki Help" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:11 +#: application/views/logbookadvanced/index.php:771 +msgid "Fix CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:12 +msgid "Update missing CQ zone information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:16 +#: application/views/logbookadvanced/dbtoolsdialog.php:28 +#: application/views/logbookadvanced/dbtoolsdialog.php:40 +#: application/views/logbookadvanced/dbtoolsdialog.php:52 +#: application/views/logbookadvanced/dbtoolsdialog.php:64 +#: application/views/logbookadvanced/dbtoolsdialog.php:76 +#: application/views/logbookadvanced/dbtoolsdialog.php:102 +msgid "Check" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:23 +#: application/views/logbookadvanced/index.php:772 +msgid "Fix ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:24 +msgid "Update missing ITU zone information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:35 +msgid "Fix Continent" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:36 +msgid "Update missing or incorrect continent information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:48 +msgid "Update missing state/province information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:59 +#: application/views/logbookadvanced/index.php:68 +msgid "Update Distances" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:60 +msgid "Calculate and update distance information for QSOs" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:71 +msgid "Check QSOs missing DXCC data" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:72 +msgid "Identify QSOs that are missing DXCC information" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:83 +msgid "Re-check DXCC for all QSOs in the logbook" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:84 +msgid "Use Wavelog to determine DXCC for all QSOs." +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:85 +msgid "This will overwrite ALL existing DXCC information!" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:89 +msgid "Run" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:96 +msgid "Lookup QSOs with missing grid in callbook" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:97 +msgid "Use callbook lookup to set gridsquare" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:98 +msgid "This is limited to 250 callsigns for each run!" +msgstr "" + #: application/views/logbookadvanced/edit.php:1 msgid "Please choose the column to be edited:" msgstr "" @@ -11844,7 +12006,7 @@ msgid "Station Power" msgstr "" #: application/views/logbookadvanced/edit.php:31 -#: application/views/logbookadvanced/index.php:938 +#: application/views/logbookadvanced/index.php:949 #: application/views/logbookadvanced/useroptions.php:146 #: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:489 #: application/views/view_log/qso.php:481 @@ -11916,8 +12078,8 @@ msgid "QSL Sent Method" msgstr "" #: application/views/logbookadvanced/edit.php:53 -#: application/views/logbookadvanced/index.php:639 -#: application/views/logbookadvanced/index.php:878 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/index.php:889 #: application/views/logbookadvanced/useroptions.php:66 msgid "QSL via" msgstr "" @@ -11942,23 +12104,23 @@ msgstr "" #: application/views/logbookadvanced/edit.php:189 #: application/views/logbookadvanced/edit.php:195 #: application/views/logbookadvanced/edit.php:202 -#: application/views/logbookadvanced/index.php:479 -#: application/views/logbookadvanced/index.php:804 +#: application/views/logbookadvanced/index.php:481 +#: application/views/logbookadvanced/index.php:812 msgid "Invalid" msgstr "" #: application/views/logbookadvanced/edit.php:177 #: application/views/logbookadvanced/edit.php:203 -#: application/views/logbookadvanced/index.php:524 -#: application/views/logbookadvanced/index.php:568 -#: application/views/logbookadvanced/index.php:591 -#: application/views/logbookadvanced/index.php:615 +#: application/views/logbookadvanced/index.php:526 +#: application/views/logbookadvanced/index.php:570 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:617 msgid "Verified" msgstr "" #: application/views/logbookadvanced/edit.php:208 -#: application/views/logbookadvanced/index.php:532 -#: application/views/logbookadvanced/index.php:542 +#: application/views/logbookadvanced/index.php:534 +#: application/views/logbookadvanced/index.php:544 #: application/views/oqrs/qsolist.php:73 application/views/oqrs/qsolist.php:115 #: application/views/oqrs/showrequests.php:8 #: application/views/qslprint/qslprint.php:7 @@ -11976,8 +12138,8 @@ msgid "Direct" msgstr "" #: application/views/logbookadvanced/edit.php:209 -#: application/views/logbookadvanced/index.php:531 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:533 +#: application/views/logbookadvanced/index.php:543 #: application/views/oqrs/qsolist.php:70 application/views/oqrs/qsolist.php:112 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:48 @@ -11997,8 +12159,8 @@ msgid "Bureau" msgstr "" #: application/views/logbookadvanced/edit.php:210 -#: application/views/logbookadvanced/index.php:533 -#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:545 #: application/views/oqrs/qsolist.php:79 application/views/oqrs/qsolist.php:121 #: application/views/oqrs/showrequests.php:9 #: application/views/qslprint/qslprint.php:8 @@ -12016,8 +12178,8 @@ msgid "Electronic" msgstr "" #: application/views/logbookadvanced/edit.php:211 -#: application/views/logbookadvanced/index.php:534 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:536 +#: application/views/logbookadvanced/index.php:546 #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 @@ -12324,11 +12486,6 @@ msgstr "" msgid "You need to select at least 1 location to do a search!" msgstr "" -#: application/views/logbookadvanced/index.php:68 -#: application/views/logbookadvanced/index.php:773 -msgid "Update Distances" -msgstr "" - #: application/views/logbookadvanced/index.php:69 msgid "QSO records updated." msgstr "" @@ -12341,61 +12498,67 @@ msgstr "" msgid "Distances updated successfully!" msgstr "" -#: application/views/logbookadvanced/index.php:292 +#: application/views/logbookadvanced/index.php:73 +msgid "" +"Are you sure you want to fix all QSOs with missing DXCC information? This " +"action cannot be undone." +msgstr "" + +#: application/views/logbookadvanced/index.php:294 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:298 msgid "To" msgstr "" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:851 +#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:862 #: application/views/logbookadvanced/useroptions.php:30 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:326 -#: application/views/logbookadvanced/index.php:332 -#: application/views/logbookadvanced/index.php:403 -#: application/views/logbookadvanced/index.php:417 -#: application/views/logbookadvanced/index.php:427 -#: application/views/logbookadvanced/index.php:431 -#: application/views/logbookadvanced/index.php:435 -#: application/views/logbookadvanced/index.php:439 -#: application/views/logbookadvanced/index.php:457 -#: application/views/logbookadvanced/index.php:461 -#: application/views/logbookadvanced/index.php:465 -#: application/views/logbookadvanced/index.php:486 -#: application/views/logbookadvanced/index.php:490 -#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:303 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:419 +#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:441 +#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:467 +#: application/views/logbookadvanced/index.php:488 +#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:642 msgid "Empty" msgstr "" -#: application/views/logbookadvanced/index.php:378 +#: application/views/logbookadvanced/index.php:380 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:491 msgid "" "Distance in kilometers. Search will look for distances greater than or equal " "to this value." msgstr "" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:502 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:506 +#: application/views/logbookadvanced/index.php:508 msgid "QSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:512 -#: application/views/logbookadvanced/index.php:556 -#: application/views/logbookadvanced/index.php:579 -#: application/views/logbookadvanced/index.php:603 +#: application/views/logbookadvanced/index.php:514 +#: application/views/logbookadvanced/index.php:558 +#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/index.php:605 #: application/views/oqrs/qsolist.php:54 application/views/oqrs/qsolist.php:96 #: application/views/qslprint/qsolist.php:65 #: application/views/qslprint/qsolist.php:107 @@ -12422,18 +12585,18 @@ msgstr "" msgid "Queued" msgstr "" -#: application/views/logbookadvanced/index.php:513 -#: application/views/logbookadvanced/index.php:523 -#: application/views/logbookadvanced/index.php:557 -#: application/views/logbookadvanced/index.php:567 -#: application/views/logbookadvanced/index.php:580 -#: application/views/logbookadvanced/index.php:590 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/index.php:614 -#: application/views/logbookadvanced/index.php:624 -#: application/views/logbookadvanced/index.php:633 -#: application/views/logbookadvanced/index.php:656 -#: application/views/logbookadvanced/index.php:665 +#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:525 +#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/index.php:582 +#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:606 +#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:626 +#: application/views/logbookadvanced/index.php:635 +#: application/views/logbookadvanced/index.php:658 +#: application/views/logbookadvanced/index.php:667 #: application/views/oqrs/qsolist.php:60 application/views/oqrs/qsolist.php:102 #: application/views/oqrs/qsolist.php:167 #: application/views/oqrs/qsolist.php:182 @@ -12478,272 +12641,269 @@ msgstr "" msgid "Invalid (Ignore)" msgstr "" -#: application/views/logbookadvanced/index.php:517 +#: application/views/logbookadvanced/index.php:519 msgid "QSL received" msgstr "" -#: application/views/logbookadvanced/index.php:528 +#: application/views/logbookadvanced/index.php:530 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:540 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:550 +#: application/views/logbookadvanced/index.php:552 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:561 +#: application/views/logbookadvanced/index.php:563 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:575 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/index.php:586 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:597 +#: application/views/logbookadvanced/index.php:599 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/index.php:610 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:619 +#: application/views/logbookadvanced/index.php:621 msgid "DCL sent" msgstr "" -#: application/views/logbookadvanced/index.php:628 +#: application/views/logbookadvanced/index.php:630 msgid "DCL received" msgstr "" -#: application/views/logbookadvanced/index.php:643 +#: application/views/logbookadvanced/index.php:645 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:651 +#: application/views/logbookadvanced/index.php:653 msgid "QRZ sent" msgstr "" -#: application/views/logbookadvanced/index.php:660 +#: application/views/logbookadvanced/index.php:662 msgid "QRZ received" msgstr "" -#: application/views/logbookadvanced/index.php:676 +#: application/views/logbookadvanced/index.php:678 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:681 +#: application/views/logbookadvanced/index.php:683 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:688 msgid "Search Date" msgstr "" -#: application/views/logbookadvanced/index.php:692 +#: application/views/logbookadvanced/index.php:694 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:695 +#: application/views/logbookadvanced/index.php:697 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:698 +#: application/views/logbookadvanced/index.php:700 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:701 +#: application/views/logbookadvanced/index.php:703 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:704 +#: application/views/logbookadvanced/index.php:706 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:709 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:710 +#: application/views/logbookadvanced/index.php:712 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:713 +#: application/views/logbookadvanced/index.php:715 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:716 +#: application/views/logbookadvanced/index.php:718 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:719 +#: application/views/logbookadvanced/index.php:721 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:722 +#: application/views/logbookadvanced/index.php:724 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:725 +#: application/views/logbookadvanced/index.php:727 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:744 +#: application/views/logbookadvanced/index.php:746 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" -#: application/views/logbookadvanced/index.php:745 +#: application/views/logbookadvanced/index.php:747 msgid " QSO(s) will be deleted" msgstr "" -#: application/views/logbookadvanced/index.php:749 +#: application/views/logbookadvanced/index.php:751 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:753 +#: application/views/logbookadvanced/index.php:755 #: application/views/qso/edit_ajax.php:725 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:754 +#: application/views/logbookadvanced/index.php:756 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:755 +#: application/views/logbookadvanced/index.php:757 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:756 +#: application/views/logbookadvanced/index.php:758 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:757 +#: application/views/logbookadvanced/index.php:759 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:758 +#: application/views/logbookadvanced/index.php:760 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:759 +#: application/views/logbookadvanced/index.php:761 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:760 +#: application/views/logbookadvanced/index.php:762 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:761 +#: application/views/logbookadvanced/index.php:763 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:762 +#: application/views/logbookadvanced/index.php:764 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:763 +#: application/views/logbookadvanced/index.php:765 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:764 +#: application/views/logbookadvanced/index.php:766 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:765 +#: application/views/logbookadvanced/index.php:767 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:766 +#: application/views/logbookadvanced/index.php:768 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:767 +#: application/views/logbookadvanced/index.php:769 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:768 +#: application/views/logbookadvanced/index.php:770 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:769 -msgid "Fix CQ Zones" +#: application/views/logbookadvanced/index.php:777 +msgid "With ALL QSOs: " msgstr "" -#: application/views/logbookadvanced/index.php:770 -msgid "Fix ITU Zones" +#: application/views/logbookadvanced/index.php:781 +#: application/views/logbookadvanced/index.php:832 +msgid "Database Tools" msgstr "" -#: application/views/logbookadvanced/index.php:771 -msgid "Fix Continent" -msgstr "" - -#: application/views/logbookadvanced/index.php:780 +#: application/views/logbookadvanced/index.php:788 #: application/views/oqrs/showrequests.php:58 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:801 +#: application/views/logbookadvanced/index.php:809 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:817 +#: application/views/logbookadvanced/index.php:825 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:848 +#: application/views/logbookadvanced/index.php:859 #: application/views/logbookadvanced/useroptions.php:26 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:893 +#: application/views/logbookadvanced/index.php:904 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 #: application/views/timeline/index.php:72 application/views/user/edit.php:627 msgid "QRZ" msgstr "" -#: application/views/logbookadvanced/index.php:899 +#: application/views/logbookadvanced/index.php:910 #: application/views/logbookadvanced/useroptions.php:94 #: application/views/qso/edit_ajax.php:527 msgid "QSL Msg (S)" msgstr "" -#: application/views/logbookadvanced/index.php:902 +#: application/views/logbookadvanced/index.php:913 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/qso/edit_ajax.php:536 msgid "QSL Msg (R)" msgstr "" -#: application/views/logbookadvanced/index.php:953 +#: application/views/logbookadvanced/index.php:964 #: application/views/logbookadvanced/useroptions.php:166 msgid "My Refs" msgstr "" -#: application/views/logbookadvanced/index.php:962 +#: application/views/logbookadvanced/index.php:973 msgid "Ant az" msgstr "" -#: application/views/logbookadvanced/index.php:962 +#: application/views/logbookadvanced/index.php:973 #: application/views/logbookadvanced/useroptions.php:178 msgid "Antenna azimuth" msgstr "" -#: application/views/logbookadvanced/index.php:965 +#: application/views/logbookadvanced/index.php:976 msgid "Ant el" msgstr "" -#: application/views/logbookadvanced/index.php:965 +#: application/views/logbookadvanced/index.php:976 #: application/views/logbookadvanced/useroptions.php:182 msgid "Antenna elevation" msgstr "" -#: application/views/logbookadvanced/index.php:971 +#: application/views/logbookadvanced/index.php:982 #: application/views/logbookadvanced/useroptions.php:190 msgid "Station power" msgstr "" @@ -12763,6 +12923,130 @@ msgstr "" msgid "Next" msgstr "" +#: application/views/logbookadvanced/showMissingDxccQsos.php:5 +#, php-format +msgid "Found %s QSO(s) missing DXCC information." +msgstr "" + +#: application/views/logbookadvanced/showMissingDxccQsos.php:17 +#: application/views/logbookadvanced/showStateQsos.php:28 +#: application/views/oqrs/qsolist.php:11 +#: application/views/qslprint/qslprint.php:31 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 +#: application/views/search/cqzones_result.php:16 +#: application/views/search/ituzones_result.php:16 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/search_result_ajax.php:130 +#: application/views/user/edit.php:529 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:228 +#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:672 +#: application/views/view_log/qso.php:676 +#: application/views/view_log/qso.php:680 +#: application/views/view_log/qso.php:686 +#: application/views/view_log/qso.php:693 +#: application/views/view_log/qso.php:700 +#: application/views/view_log/qso.php:707 +#: application/views/view_log/qso.php:714 +#: application/views/view_log/qso.php:721 +#: application/views/view_log/qso.php:728 +#: application/views/view_log/qso.php:735 +#: application/views/view_log/qso.php:742 +#: application/views/view_log/qso.php:747 +msgid "Station" +msgstr "" + +#: application/views/logbookadvanced/showMissingDxccQsos.php:38 +#: application/views/logbookadvanced/showStateQsos.php:49 +msgid "No Issues Found" +msgstr "" + +#: application/views/logbookadvanced/showStateQsos.php:16 +#, php-format +msgid "Found %s QSO(s) missing state information for DXCC %s." +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:31 +msgid "Results for DXCC update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:34 +#: application/views/logbookadvanced/showUpdateResult.php:40 +msgid "The number of QSOs updated for missing DXCC IDs was" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:36 +#: application/views/logbookadvanced/showUpdateResult.php:42 +msgid "The number of QSOs re-checked for DXCC was" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:55 +#: application/views/logbookadvanced/showUpdateResult.php:99 +msgid "These QSOs could not be updated:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:61 +#: application/views/logbookadvanced/showUpdateResult.php:107 +msgid "Reason" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:62 +#: application/views/logbookadvanced/showUpdateResult.php:106 +#: application/views/search/lotw_unconfirmed.php:32 +msgid "Station location" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:83 +msgid "Results for state update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:85 +#: application/views/logbookadvanced/showUpdateResult.php:87 +msgid "The number of QSOs updated for state/province in" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:130 +msgid "Results for continent update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:131 +msgid "The number of QSOs updated for continent is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:135 +msgid "Results for distance update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:136 +msgid "The number of QSOs updated for distance is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:140 +msgid "Results for CQ zone update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:141 +msgid "The number of QSOs updated for CQ zone is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:145 +msgid "Results for ITU zone update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:146 +msgid "The number of QSOs updated for ITU zone is" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:150 +msgid "Results for gridsquare update:" +msgstr "" + +#: application/views/logbookadvanced/showUpdateResult.php:151 +msgid "The number of QSOs updated for gridsquare is" +msgstr "" + #: application/views/logbookadvanced/startatform.php:15 msgid "Include Via" msgstr "" @@ -12775,6 +13059,21 @@ msgstr "" msgid "Include TNX message" msgstr "" +#: application/views/logbookadvanced/statecheckresult.php:3 +#: application/views/logbookadvanced/statecheckresult.php:42 +msgid "State Check Results" +msgstr "" + +#: application/views/logbookadvanced/statecheckresult.php:4 +msgid "" +"QSOs with missing state and gridsquares with 6 or more characters found for " +"the following DXCCs:" +msgstr "" + +#: application/views/logbookadvanced/statecheckresult.php:43 +msgid "No QSOs were found where state information can be fixed." +msgstr "" + #: application/views/logbookadvanced/statedialog.php:2 msgid "" "Update QSOs with state/province information based on gridsquare and DXCC " @@ -13540,34 +13839,6 @@ msgstr "" msgid "Send not in log request" msgstr "" -#: application/views/oqrs/qsolist.php:11 -#: application/views/qslprint/qslprint.php:31 -#: application/views/qslprint/qsolist.php:14 -#: application/views/qso/edit_ajax.php:41 application/views/qso/index.php:90 -#: application/views/search/cqzones_result.php:16 -#: application/views/search/ituzones_result.php:16 -#: application/views/search/lotw_unconfirmed_result.php:11 -#: application/views/search/search_result_ajax.php:130 -#: application/views/user/edit.php:529 -#: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:228 -#: application/views/view_log/qso.php:668 -#: application/views/view_log/qso.php:672 -#: application/views/view_log/qso.php:676 -#: application/views/view_log/qso.php:680 -#: application/views/view_log/qso.php:686 -#: application/views/view_log/qso.php:693 -#: application/views/view_log/qso.php:700 -#: application/views/view_log/qso.php:707 -#: application/views/view_log/qso.php:714 -#: application/views/view_log/qso.php:721 -#: application/views/view_log/qso.php:728 -#: application/views/view_log/qso.php:735 -#: application/views/view_log/qso.php:742 -#: application/views/view_log/qso.php:747 -msgid "Station" -msgstr "" - #: application/views/oqrs/qsolist.php:76 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 @@ -15038,10 +15309,6 @@ msgid "" "worked has uploaded to LoTW after your QSO date." msgstr "" -#: application/views/search/lotw_unconfirmed.php:32 -msgid "Station location" -msgstr "" - #: application/views/search/lotw_unconfirmed_result.php:10 msgid "Last LoTW upload" msgstr "" @@ -16189,34 +16456,6 @@ msgstr "" msgid "Status:" msgstr "" -#: application/views/update/index.php:30 -msgid "Apply DXCC Data to Logbook" -msgstr "" - -#: application/views/update/index.php:32 -msgid "" -"After updating, Wavelog can fill in missing callsign information in the " -"logbook using the newly-obtained DXCC data.\n" -"\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that are " -"missing DXCC metadata or to re-check the entire logbook\n" -"\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." -msgstr "" - -#: application/views/update/index.php:35 -msgid "" -"This affects ALL QSOs of ANY user on this instance. The function is " -"deprectated and will be removed in a future version of Wavelog. As " -"replacement use the Logbook-Advanced!" -msgstr "" - -#: application/views/update/index.php:42 -msgid "Check QSOs missing DXCC data" -msgstr "" - -#: application/views/update/index.php:51 -msgid "Re-check all QSOs in logbook" -msgstr "" - #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr ""