diff --git a/README.md b/README.md index d16cdacf4..c2a6f135f 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Wavelog is a self-hosted PHP application that allows you to log your amateur radio contacts anywhere. All you need is a web browser and active internet connection. -Wavelog itself is an enhanced fork of Cloudlog by 2M0SQL. +Wavelog itself is an enhanced fork of Cloudlog by MM9SQL (ex 2M0SQL). If you would like to contribute to Wavelog please see the [Contributing](#contributing) section below. The Core-Dev-Team for Wavelog are (in Alphabetic order of the Call): @@ -41,8 +41,8 @@ https://demo.wavelog.org ### Recommended: Classic-LAMP-Stack: * Linux based Operating System (Windows stack may also work) * Apache (Nginx should work) -* PHP Version 8.0 up to PHP 8.2 (PHP 8.4. in friendly Usertest) -* MySQL or MariaDB (MySQL 5.7 or higher // MariaDB 10.1 or higher) +* PHP Version 8.0 up to PHP 8.3 (PHP 8.4. in friendly Usertest) +* MySQL or MariaDB (MySQL 8 or higher // MariaDB 10.2 or higher) ### Alternative - Easy start with prebuilt Docker-image: * [Docker Support](https://github.com/wavelog/wavelog/wiki/Installation-via-Docker) @@ -68,7 +68,7 @@ Wavelog-support can be reached by creating an issue here at github. If you've an Special thanks to our contributors, who are part of Wavelog by improving code! -[F4ANS](https://github.com/abarrau), [DG0TM](https://github.com/dg0tm), [DG9VH](https://github.com/dg9vh), [DJ3CE](https://github.com/dj3ce), [R1BLH](https://github.com/r1blh), [BG2ELG](https://github.com/violarulan), [DF1ASH](https://github.com/derFogel), [DB4SCW](https://github.com/DB4SCW), [VE2HEW](https://github.com/anthonydiiorio), [OK1GOD](https://github.com/filipmelik), [DJ1PW](https://github.com/winnieXY), [toseppo](https://github.com/toseppo), [N7DSB](https://github.com/desertblade), [BA7LAC](https://github.com/imlonghao), [AE4CE](https://github.com/ethancedwards8), [K1AF](https://github.com/patrickrb), [OE4BAM](https://github.com/MatykoBr), [HB9HJQ](https://github.com/zone11), [R3DHX](https://github.com/AleksdemSA), [uiolee](https://github.com/uiolee), [VK3ARR](https://github.com/VK3ARR), [BI7BST](https://github.com/Cryolitia), [ludoux](https://github.com/ludoux), [BG5ATV](https://github.com/tallcode), [BH6SKD](https://github.com/xiaosuan2b), [VK7TO](https://github.com/RhinoLance), [IU2FRL](https://github.com/iu2frl), [szporwolik](https://github.com/szporwolik), [agrif](https://github.com/agrif) +[F4ANS](https://github.com/abarrau), [DG0TM](https://github.com/dg0tm), [DG9VH](https://github.com/dg9vh), [DJ3CE](https://github.com/dj3ce), [R1BLH](https://github.com/r1blh), [BG2ELG](https://github.com/violarulan), [DF1ASH](https://github.com/derFogel), [DB4SCW](https://github.com/DB4SCW), [VE2HEW](https://github.com/anthonydiiorio), [OK1GOD](https://github.com/filipmelik), [DJ1PW](https://github.com/winnieXY), [toseppo](https://github.com/toseppo), [N7DSB](https://github.com/desertblade), [BA7LAC](https://github.com/imlonghao), [AE4CE](https://github.com/ethancedwards8), [K1AF](https://github.com/patrickrb), [OE4BAM](https://github.com/MatykoBr), [HB9HJQ](https://github.com/zone11), [R3DHX](https://github.com/AleksdemSA), [uiolee](https://github.com/uiolee), [VK3ARR](https://github.com/VK3ARR), [BI7BST](https://github.com/Cryolitia), [ludoux](https://github.com/ludoux), [BG5ATV](https://github.com/tallcode), [BH6SKD](https://github.com/xiaosuan2b), [VK7TO](https://github.com/RhinoLance), [IU2FRL](https://github.com/iu2frl), [szporwolik](https://github.com/szporwolik), [agrif](https://github.com/agrif), [goodspeed34](https://github.com/goodspeed34) Translators: diff --git a/application/config/migration.php b/application/config/migration.php index 799667887..4e2bbf83c 100644 --- a/application/config/migration.php +++ b/application/config/migration.php @@ -22,7 +22,7 @@ $config['migration_enabled'] = TRUE; | */ -$config['migration_version'] = 260; +$config['migration_version'] = 262; /* |-------------------------------------------------------------------------- diff --git a/application/controllers/Activated_gridmap.php b/application/controllers/Activated_gridmap.php index 8c59248ac..fdc44ebdd 100644 --- a/application/controllers/Activated_gridmap.php +++ b/application/controllers/Activated_gridmap.php @@ -42,7 +42,8 @@ class Activated_gridmap extends CI_Controller { $footerData['scripts'] = [ 'assets/js/leaflet/geocoding.js', 'assets/js/leaflet/L.MaidenheadColouredGridMap.js', - 'assets/js/sections/gridmap.js?' + 'assets/js/sections/gridmap.js?', + 'assets/js/bootstrap-multiselect.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/bootstrap-multiselect.js")), ]; $this->load->view('interface_assets/header', $data); @@ -194,6 +195,7 @@ class Activated_gridmap extends CI_Controller { $data['grid_2char'] = ($array_grid_2char); $data['grid_4char'] = ($array_grid_4char); $data['grid_6char'] = ($array_grid_6char); + $data['grids'] = array(); header('Content-Type: application/json'); echo json_encode($data); diff --git a/application/controllers/Dashboard.php b/application/controllers/Dashboard.php index ff8e0772e..ba49a97bf 100644 --- a/application/controllers/Dashboard.php +++ b/application/controllers/Dashboard.php @@ -19,6 +19,8 @@ class Dashboard extends CI_Controller { $current_date = date('Y-m-d H:i:s'); $data['lotw_cert_expired'] = $this->Lotw_model->lotw_cert_expired($this->session->userdata('user_id'), $current_date); $data['lotw_cert_expiring'] = $this->Lotw_model->lotw_cert_expiring($this->session->userdata('user_id'), $current_date); + $data['lotw_cert_qsoenddate_expired'] = $this->Lotw_model->lotw_cert_qsoenddate_expired($this->session->userdata('user_id'), $current_date); + $data['lotw_cert_qsoenddate_expiring'] = $this->Lotw_model->lotw_cert_qsoenddate_expiring($this->session->userdata('user_id'), $current_date); $this->load->model('logbooks_model'); diff --git a/application/controllers/Debug.php b/application/controllers/Debug.php index 2668fc4ae..7d5b5fd94 100644 --- a/application/controllers/Debug.php +++ b/application/controllers/Debug.php @@ -113,6 +113,7 @@ class Debug extends CI_Controller $data['tle_update'] = $this->cron_model->cron('update_update_tle')->row(); $data['hon_update'] = $this->cron_model->cron('update_update_hamsofnote')->row(); $data['hamqsl_update'] = $this->cron_model->cron('update_update_hamqsl')->row(); + $data['vucc_grids_update'] = $this->cron_model->cron('vucc_grid_file')->row(); $data['page_title'] = __("Debug"); diff --git a/application/controllers/Gridmap.php b/application/controllers/Gridmap.php index 4343b87b2..fbca27ea6 100644 --- a/application/controllers/Gridmap.php +++ b/application/controllers/Gridmap.php @@ -20,6 +20,7 @@ class Gridmap extends CI_Controller { $data['bands'] = $this->bands->get_worked_bands(); $data['orbits'] = $this->bands->get_worked_orbits(); $data['sats_available'] = $this->bands->get_worked_sats(); + $data['countries'] = $this->gridmap_model->get_countries(); $data['user_default_band'] = $this->session->userdata('user_default_band'); $data['user_default_confirmation'] = $this->session->userdata('user_default_confirmation'); @@ -42,7 +43,10 @@ class Gridmap extends CI_Controller { $footerData['scripts'] = [ 'assets/js/leaflet/geocoding.js', 'assets/js/leaflet/L.MaidenheadColouredGridMap.js', - 'assets/js/sections/gridmap.js?' + 'assets/js/sections/gridmap.js?', + 'assets/js/sections/itumap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/itumap_geojson.js")), + 'assets/js/sections/cqmap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/cqmap_geojson.js")), + 'assets/js/bootstrap-multiselect.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/bootstrap-multiselect.js")), ]; $this->load->view('interface_assets/header', $data); @@ -60,8 +64,12 @@ class Gridmap extends CI_Controller { $sat = $this->input->post('sat', TRUE); $orbit = $this->input->post('orbit', TRUE); $propagation = $this->input->post('propagation', TRUE); + $dxcc = $this->input->post('dxcc', TRUE); $this->load->model('gridmap_model'); + $data['grids'] = $this->gridmap_model->get_grids_for_country($dxcc); + $data['grid_count'] = count($data['grids']); + $array_grid_2char = array(); $array_grid_4char = array(); $array_grid_6char = array(); @@ -78,7 +86,7 @@ class Gridmap extends CI_Controller { $grid_4char_confirmed = ""; $grid_6char_confirmed = ""; - $query = $this->gridmap_model->get_band_confirmed($band, $mode, $qsl, $lotw, $eqsl, $qrz, $sat, $orbit, $propagation); + $query = $this->gridmap_model->get_band_confirmed($band, $mode, $qsl, $lotw, $eqsl, $qrz, $sat, $orbit, $propagation, $dxcc, $data['grids']); if ($query && $query->num_rows() > 0) { foreach ($query->result() as $row) { @@ -105,7 +113,7 @@ class Gridmap extends CI_Controller { } } - $query = $this->gridmap_model->get_band($band, $mode, $qsl, $lotw, $eqsl, $qrz, $sat, $orbit, $propagation); + $query = $this->gridmap_model->get_band($band, $mode, $qsl, $lotw, $eqsl, $qrz, $sat, $orbit, $propagation, $dxcc, $data['grids']); if ($query && $query->num_rows() > 0) { foreach ($query->result() as $row) { @@ -139,19 +147,40 @@ class Gridmap extends CI_Controller { $grids = explode(",", $row->COL_VUCC_GRIDS); + if (!empty($data['grids'])) { + $filtered = []; + foreach ($grids as $g6) { + foreach ($data['grids'] as $g4) { + if (strpos($g6, $g4) === 0) { + $filtered[] = $g6; + break; + } + } + } + $grids = $filtered; + } + foreach($grids as $key) { $grid_two = strtoupper(substr(trim($key),0,2)); $grid_four = strtoupper(substr(trim($key),0,4)); + if ($this->config->item('map_6digit_grids')) { + $grid_six = strtoupper(substr(trim($key),0,6)); + } // Check if 2 Char is in array if(!in_array($grid_two, $array_grid_2char)){ array_push($array_grid_2char, $grid_two); } - if(!in_array($grid_four, $array_grid_4char)){ array_push($array_grid_4char, $grid_four); } + + if ($this->config->item('map_6digit_grids')) { + if(!in_array($grid_six, $array_grid_6char)){ + array_push($array_grid_6char, $grid_six); + } + } } } } @@ -164,19 +193,41 @@ class Gridmap extends CI_Controller { $grids = explode(",", $row->COL_VUCC_GRIDS); + if (!empty($data['grids'])) { + $filtered = []; + foreach ($grids as $g6) { + foreach ($data['grids'] as $g4) { + if (strpos($g6, $g4) === 0) { + $filtered[] = $g6; + break; + } + } + } + $grids = $filtered; + } + foreach($grids as $key) { $grid_2char_confirmed = strtoupper(substr(trim($key),0,2)); $grid_4char_confirmed = strtoupper(substr(trim($key),0,4)); + if ($this->config->item('map_6digit_grids')) { + $grid_6char_confirmed = strtoupper(substr(trim($key),0,6)); + } + // Check if 2 Char is in array if(!in_array($grid_2char_confirmed, $array_grid_2char_confirmed)){ array_push($array_grid_2char_confirmed, $grid_2char_confirmed); } - if(!in_array($grid_4char_confirmed, $array_grid_4char_confirmed)){ array_push($array_grid_4char_confirmed, $grid_4char_confirmed); } + + if ($this->config->item('map_6digit_grids')) { + if(!in_array($grid_6char_confirmed, $array_grid_6char_confirmed)){ + array_push($array_grid_6char_confirmed, $grid_6char_confirmed); + } + } } } } diff --git a/application/controllers/Lotw.php b/application/controllers/Lotw.php index 0c87d82df..966ee3e54 100644 --- a/application/controllers/Lotw.php +++ b/application/controllers/Lotw.php @@ -222,11 +222,19 @@ class Lotw extends CI_Controller { // Check if LoTW certificate itself is valid // Validty of QSO dates will be checked later $current_date = date('Y-m-d H:i:s'); - if ($current_date <= $data['lotw_cert_info']->date_created) { + if ($current_date < $data['lotw_cert_info']->qso_start_date) { + echo $data['lotw_cert_info']->callsign.": QSO start date of LoTW certificate not reached yet!
"; + continue; + } + if ($current_date > $data['lotw_cert_info']->qso_end_date) { + echo $data['lotw_cert_info']->callsign.": QSO end date of LoTW certificate exceeded!
"; + continue; + } + if ($current_date < $data['lotw_cert_info']->date_created) { echo $data['lotw_cert_info']->callsign.": LoTW certificate not valid yet!
"; continue; } - if ($current_date >= $data['lotw_cert_info']->date_expires) { + if ($current_date > $data['lotw_cert_info']->date_expires) { echo $data['lotw_cert_info']->callsign.": LoTW certificate expired!
"; continue; } diff --git a/application/controllers/Qso.php b/application/controllers/Qso.php index 1c1216aed..e0e7ca8b8 100644 --- a/application/controllers/Qso.php +++ b/application/controllers/Qso.php @@ -212,65 +212,96 @@ class QSO extends CI_Controller { } function winkeysettings() { + $this->load->model('user_options_model'); - // Load model Winkey - $this->load->model('winkey'); + $cwmacros = []; + for ($i = 1; $i <= 10; $i++) { + $row = $this->user_options_model + ->get_options('cwmacros', ['option_name' => "macro{$i}"]) + ->row(); - // call settings from model winkey - $data['result'] = $this->winkey->settings($this->session->userdata('user_id'), $this->stations->find_active()); + $decoded = json_decode($row->option_value ?? ''); - $this->load->view('qso/components/winkeysettings', $data); + $name = isset($decoded->name) ? $decoded->name : ''; + $macro = isset($decoded->macro) ? $decoded->macro : ''; + + $cwmacros["macro{$i}"] = [ + 'name' => $name, + 'macro' => $macro, + ]; + } + + // Check if all are empty + $allEmpty = true; + foreach ($cwmacros as $macro) { + if (!empty($macro['name']) || !empty($macro['macro'])) { + $allEmpty = false; + break; + } + } + + // Apply defaults to first 5 if all are empty + if ($allEmpty) { + $cwmacros['macro1'] = ['name' => 'CQ', 'macro' => 'CQ CQ CQ DE [MYCALL] [MYCALL] K']; + $cwmacros['macro2'] = ['name' => 'REPT', 'macro' => '[CALL] DE [MYCALL] [RSTS] [RSTS] K']; + $cwmacros['macro3'] = ['name' => 'TU', 'macro' => '[CALL] TU 73 DE [MYCALL] K']; + $cwmacros['macro4'] = ['name' => 'QRZ', 'macro' => 'QRZ DE [MYCALL] K']; + $cwmacros['macro5'] = ['name' => 'TEST', 'macro' => 'TEST DE [MYCALL] K']; + } + + $this->load->view('qso/components/winkeysettings', $cwmacros); } + function cwmacrosave(){ - // Get the data from the form - $function1_name = $this->input->post('function1_name', TRUE); - $function1_macro = $this->input->post('function1_macro', TRUE); + $this->load->model('user_options_model'); + for ($i = 1; $i <= 10; $i++) { + $data = [ + 'name' => $this->input->post("function{$i}_name", TRUE), + 'macro' => $this->input->post("function{$i}_macro", TRUE), + ]; - $function2_name = $this->input->post('function2_name', TRUE); - $function2_macro = $this->input->post('function2_macro', TRUE); - - $function3_name = $this->input->post('function3_name', TRUE); - $function3_macro = $this->input->post('function3_macro', TRUE); - - $function4_name = $this->input->post('function4_name', TRUE); - $function4_macro = $this->input->post('function4_macro', TRUE); - - $function5_name = $this->input->post('function5_name', TRUE); - $function5_macro = $this->input->post('function5_macro', TRUE); - - $data = [ - 'user_id' => $this->session->userdata('user_id'), - 'station_location_id' => $this->stations->find_active(), - 'function1_name' => $function1_name, - 'function1_macro' => $function1_macro, - 'function2_name' => $function2_name, - 'function2_macro' => $function2_macro, - 'function3_name' => $function3_name, - 'function3_macro' => $function3_macro, - 'function4_name' => $function4_name, - 'function4_macro' => $function4_macro, - 'function5_name' => $function5_name, - 'function5_macro' => $function5_macro, - ]; - - // Load model Winkey - $this->load->model('winkey'); - - // save the data - $this->winkey->save($data); + $this->user_options_model->set_option('cwmacros', "macro{$i}", array("macro{$i}" => json_encode($data))); + } echo "Macros Saved, Press Close and lets get sending!"; } function cwmacros_json() { - // Load model Winkey - $this->load->model('winkey'); + $this->load->model('user_options_model'); + $cwmacros = []; + for ($i = 1; $i <= 10; $i++) { + $row = $this->user_options_model + ->get_options('cwmacros', ['option_name' => "macro{$i}"]) + ->row(); + + // Decode JSON stored in option_value + $decoded = json_decode($row->option_value ?? ''); + + // Make sure it's an object (in case it's null) + $name = isset($decoded->name) ? $decoded->name : ''; + $macro = isset($decoded->macro) ? $decoded->macro : ''; + + $cwmacros["macro{$i}"] = [ + 'name' => $name, + 'macro' => $macro, + ]; + } + + // Build the JSON result structure + $result = []; + $i = 1; + foreach ($cwmacros as $macro) { + $result["function{$i}_name"] = $macro['name']; + $result["function{$i}_macro"] = $macro['macro']; + $i++; + } + + // Output as JSON header('Content-Type: application/json; charset=utf-8'); + echo json_encode($result, JSON_PRETTY_PRINT); - // Call settings_json from model winkey - echo $this->winkey->settings_json($this->session->userdata('user_id'), $this->stations->find_active()); } function edit_ajax() { @@ -616,7 +647,9 @@ class QSO extends CI_Controller { $this->load->model('stations'); $this->load->library('qra'); $stationProfile = $this->input->post('stationProfile', TRUE); - $data = array('station_power' => $this->stations->get_station_power($stationProfile)); + $result = $this->stations->get_station_power($stationProfile); + $data['station_power'] = $result['station_power']; + $data['station_callsign'] = $result['station_callsign']; [$data['lat'], $data['lng']] = $this->qra->qra2latlong($this->stations->gridsquare_from_station($stationProfile)); header('Content-Type: application/json'); diff --git a/application/controllers/Update.php b/application/controllers/Update.php index ca7ebf33d..f1a24d501 100644 --- a/application/controllers/Update.php +++ b/application/controllers/Update.php @@ -704,5 +704,40 @@ class Update extends CI_Controller { $this->load->model('Update_model'); $this->Update_model->update_check(); } + + public function update_vucc_grids() { + $lockfilename='/tmp/.update_vucc_grids_running'; + if (!file_exists($lockfilename)) { + touch($lockfilename); + $this->load->model('Update_model'); + $result = $this->Update_model->update_vucc_grids(); + unlink($lockfilename); + + if($this->session->userdata('user_type') == '99') { + if (substr($result, 0, 4) == 'DONE') { + $this->session->set_flashdata('success', __("VUCC Grid file update complete. Result: ") . "'" . $result . "'"); + } else { + $this->session->set_flashdata('error', __("VUCC Grid file update failed. Result: ") . "'" . $result . "'"); + } + + + redirect('debug'); + } else { + echo $result; + } + } else { + log_message('debug', 'There is a lockfile for this job. Checking the age...'); + $lockfile_time = filemtime($lockfilename); + $tdiff = time() - $lockfile_time; + if ($tdiff > 120) { + unlink($lockfilename); + log_message('debug', 'Deleted lockfile because it was older then 120seconds.'); + } else { + log_message('debug', 'Process is currently locked. Further calls are ignored.'); + echo 'locked - running'; + } + } + + } } ?> diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.mo b/application/locale/bg_BG/LC_MESSAGES/messages.mo index 0a2bb5c77..812634915 100644 Binary files a/application/locale/bg_BG/LC_MESSAGES/messages.mo and b/application/locale/bg_BG/LC_MESSAGES/messages.mo differ diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index 90f0786b0..b2a134f69 100644 --- a/application/locale/bg_BG/LC_MESSAGES/messages.po +++ b/application/locale/bg_BG/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" "PO-Revision-Date: 2024-11-01 08:53+0000\n" "Last-Translator: Plamen Panteleev \n" "Language-Team: Bulgarian 1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6534,7 +6551,7 @@ msgstr "" msgid "Message" msgstr "" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "" @@ -6933,7 +6950,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -6996,7 +7013,7 @@ msgstr "Да" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7042,7 +7059,7 @@ msgid "No contests were found in your log." msgstr "" #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "" @@ -7383,7 +7400,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7448,10 +7465,10 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "" @@ -7604,7 +7621,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "" @@ -7680,54 +7697,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "Нулиране на QSO" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "Запазване на QSO" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "Предложения за инициали" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "Дневник на състезанието" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "" @@ -7889,7 +7906,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "" @@ -7974,45 +7991,58 @@ msgid "" "themes." msgstr "" -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" msgstr "" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" msgstr "" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" msgstr[0] "" msgstr[1] "" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "Разбивка на QSO-тата" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "Необходими" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8023,7 +8053,7 @@ msgstr "Необходими" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8046,10 +8076,10 @@ msgstr "Необходими" msgid "Sent" msgstr "Изпратени" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8082,7 +8112,7 @@ msgstr "Изпратени" msgid "Received" msgstr "Получени" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8108,7 +8138,7 @@ msgstr "Получени" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8122,25 +8152,25 @@ msgstr "Получени" msgid "Requested" msgstr "Заявени" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "" -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "" @@ -8305,12 +8335,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "" #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "Ръчно синхронизиране" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "" @@ -8655,6 +8685,7 @@ msgstr "" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "" @@ -8695,11 +8726,15 @@ msgstr "" msgid "HAMqsl" msgstr "" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -8707,140 +8742,140 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "Албански" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "Босненски" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "Български" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "Китайски(Опростен)" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "Хърватски" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "Чешки" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "Холандски" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "Английски" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "Естонски" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "Финландски" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "Френски" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "Немски" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "Гръцки" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "Италиански" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "Латвийски" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "Черногорски" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "Полски" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "Португалски" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "Руски" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "Сръбски" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "Испански" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "Шведски" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "Турски" @@ -9226,10 +9261,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9327,7 +9362,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "" @@ -9520,62 +9555,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "" @@ -10169,7 +10204,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "" @@ -10289,7 +10324,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10310,7 +10345,7 @@ msgstr "Директено" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10329,7 +10364,7 @@ msgstr "Бюро" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10344,49 +10379,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "" @@ -10548,7 +10583,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10585,7 +10620,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11024,38 +11059,42 @@ msgstr "Дата изтичане" msgid "Last Upload" msgstr "Last upload" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "Изтекъл" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" msgstr "" -#: application/views/lotw_views/index.php:88 -msgid "Valid" -msgstr "Валиден" - #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "Не е синхронизиран" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" "Трябва да качите някои LoTW p12 сертификати, за да използвате тази област." -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "" @@ -11593,7 +11632,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -11641,7 +11680,7 @@ msgstr "Станция" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12178,20 +12217,12 @@ msgstr "" msgid "Toot on Mastodon" msgstr "" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "" @@ -12216,11 +12247,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Посочете стойността на мощността във ватове. Въведете само цифри." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12230,25 +12261,25 @@ msgstr "Мощност на предавателя (W)" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "" @@ -12261,38 +12292,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12301,8 +12332,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "Метод" @@ -12323,7 +12354,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12367,7 +12398,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "Предишни контакти" @@ -12434,7 +12465,7 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -12442,7 +12473,7 @@ msgstr "" msgid "IOTA Reference" msgstr "IOTA референция" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -12450,91 +12481,95 @@ msgstr "IOTA референция" msgid "SOTA Reference" msgstr "SOTA референция" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "Честота (RX)" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "Обхват (RX)" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "Например: GM/NS-001." -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "Например: DLFF-0069." -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "Например: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "Например: GMA" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "Например: DA/NW-357" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "Например: Q03" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "Име на сателита" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "Режим на сателита" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:769 -msgid "Send" +#: application/views/qso/index.php:778 +msgid "Stop" msgstr "" #: application/views/qso/index.php:779 +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:785 +msgid "Enter text..." +msgstr "" + +#: application/views/qso/index.php:786 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:798 msgid "Suggestions" msgstr "Предложения" -#: application/views/qso/index.php:786 +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "" @@ -13822,6 +13857,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14828,10 +14864,6 @@ msgstr "" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "" @@ -15506,6 +15538,12 @@ msgstr "" msgid "Rcvd" msgstr "" +#~ msgid "Expired" +#~ msgstr "Изтекъл" + +#~ msgid "Valid" +#~ msgstr "Валиден" + #~ msgid "" #~ "You don't currently have any notes, these are a fantastic way of storing " #~ "data like ATU settings, beacons and general station notes and its better " diff --git a/application/locale/bs/LC_MESSAGES/messages.po b/application/locale/bs/LC_MESSAGES/messages.po index bcaee84f0..c6e26f996 100644 --- a/application/locale/bs/LC_MESSAGES/messages.po +++ b/application/locale/bs/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" "PO-Revision-Date: 2024-11-16 17:03+0000\n" "Last-Translator: Samir \n" "Language-Team: Bosnian 1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6541,7 +6558,7 @@ msgstr "" msgid "Message" msgstr "" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "" @@ -6940,7 +6957,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7003,7 +7020,7 @@ msgstr "Da" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7049,7 +7066,7 @@ msgid "No contests were found in your log." msgstr "" #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "" @@ -7390,7 +7407,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7455,10 +7472,10 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "" @@ -7611,7 +7628,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "" @@ -7687,54 +7704,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "" @@ -7896,7 +7913,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "" @@ -7982,20 +7999,33 @@ msgid "" "themes." msgstr "" -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" msgstr "" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" msgstr "" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8003,25 +8033,25 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8032,7 +8062,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8055,10 +8085,10 @@ msgstr "" msgid "Sent" msgstr "" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8091,7 +8121,7 @@ msgstr "" msgid "Received" msgstr "" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8117,7 +8147,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8131,25 +8161,25 @@ msgstr "" msgid "Requested" msgstr "" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "" -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "" @@ -8314,12 +8344,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "" #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "" @@ -8665,6 +8695,7 @@ msgstr "" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "" @@ -8705,11 +8736,15 @@ msgstr "" msgid "HAMqsl" msgstr "" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -8718,140 +8753,140 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "Albanski" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "Bosanski" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "Bugarski" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "Kineski" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "Hrvatski" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "Češki" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "Holandski" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "Engleski" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "Estonski" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "Finski" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "Francuski" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "Njemački" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "Grčki" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "Italijanski" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "Latvijanski" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "Litvanski" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "Crnogorski" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "Poljski" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "Portugalski" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "Ruski" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "Srbski" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "Španjolski" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "Švedski" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "Turski" @@ -9239,10 +9274,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9340,7 +9375,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "" @@ -9536,62 +9571,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "" @@ -10185,7 +10220,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "" @@ -10305,7 +10340,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10326,7 +10361,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10345,7 +10380,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10360,49 +10395,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "" @@ -10564,7 +10599,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10601,7 +10636,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11041,37 +11076,41 @@ msgstr "" msgid "Last Upload" msgstr "" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" msgstr "" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "" @@ -11609,7 +11648,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -11657,7 +11696,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12196,20 +12235,12 @@ msgstr "" msgid "Toot on Mastodon" msgstr "" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "" @@ -12234,11 +12265,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12248,25 +12279,25 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "" @@ -12279,38 +12310,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12319,8 +12350,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "" @@ -12341,7 +12372,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12385,7 +12416,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "" @@ -12452,7 +12483,7 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -12460,7 +12491,7 @@ msgstr "" msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -12468,91 +12499,95 @@ msgstr "" msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:769 -msgid "Send" +#: application/views/qso/index.php:778 +msgid "Stop" msgstr "" #: application/views/qso/index.php:779 -msgid "Suggestions" +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:785 +msgid "Enter text..." msgstr "" #: application/views/qso/index.php:786 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:798 +msgid "Suggestions" +msgstr "" + +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "" @@ -13840,6 +13875,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14846,10 +14882,6 @@ msgstr "" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "" diff --git a/application/locale/cnr/LC_MESSAGES/messages.po b/application/locale/cnr/LC_MESSAGES/messages.po index f504f73ed..6f530d334 100644 --- a/application/locale/cnr/LC_MESSAGES/messages.po +++ b/application/locale/cnr/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" "PO-Revision-Date: 2024-11-19 01:22+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Montenegrin 1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6541,7 +6558,7 @@ msgstr "" msgid "Message" msgstr "" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "" @@ -6940,7 +6957,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7003,7 +7020,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7049,7 +7066,7 @@ msgid "No contests were found in your log." msgstr "" #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "" @@ -7390,7 +7407,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7455,10 +7472,10 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "" @@ -7611,7 +7628,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "" @@ -7687,54 +7704,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "" @@ -7896,7 +7913,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "" @@ -7982,20 +7999,33 @@ msgid "" "themes." msgstr "" -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" msgstr "" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" msgstr "" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8003,25 +8033,25 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8032,7 +8062,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8055,10 +8085,10 @@ msgstr "" msgid "Sent" msgstr "" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8091,7 +8121,7 @@ msgstr "" msgid "Received" msgstr "" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8117,7 +8147,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8131,25 +8161,25 @@ msgstr "" msgid "Requested" msgstr "" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "" -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "" @@ -8314,12 +8344,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "" #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "" @@ -8665,6 +8695,7 @@ msgstr "" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "" @@ -8705,11 +8736,15 @@ msgstr "" msgid "HAMqsl" msgstr "" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -8718,140 +8753,140 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "Albanski" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "Bosanski" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "Bugarski" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "Kineski (pojednostavljeni)" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "Hrvatski" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "Češki" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "Holandski" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "Engleski" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "Estonski" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "Finski" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "Francuski" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "Njemački" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "Grcki" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "Italijanski" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "Letonski" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "Litvanski" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "Crnogorski" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "Polirati" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "Portugalski" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "Ruski" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "Srpski" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "Španski" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "Švedski" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "Turski" @@ -9237,10 +9272,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9338,7 +9373,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "" @@ -9531,62 +9566,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "" @@ -10180,7 +10215,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "" @@ -10300,7 +10335,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10321,7 +10356,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10340,7 +10375,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10355,49 +10390,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "" @@ -10559,7 +10594,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10596,7 +10631,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11036,37 +11071,41 @@ msgstr "" msgid "Last Upload" msgstr "" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" msgstr "" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "" @@ -11604,7 +11643,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -11652,7 +11691,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12191,20 +12230,12 @@ msgstr "" msgid "Toot on Mastodon" msgstr "" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "" @@ -12229,11 +12260,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12243,25 +12274,25 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "" @@ -12274,38 +12305,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12314,8 +12345,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "" @@ -12336,7 +12367,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12380,7 +12411,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "" @@ -12447,7 +12478,7 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -12455,7 +12486,7 @@ msgstr "" msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -12463,91 +12494,95 @@ msgstr "" msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:769 -msgid "Send" +#: application/views/qso/index.php:778 +msgid "Stop" msgstr "" #: application/views/qso/index.php:779 -msgid "Suggestions" +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:785 +msgid "Enter text..." msgstr "" #: application/views/qso/index.php:786 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:798 +msgid "Suggestions" +msgstr "" + +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "" @@ -13835,6 +13870,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14841,10 +14877,6 @@ msgstr "" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "" diff --git a/application/locale/cs_CZ/LC_MESSAGES/messages.mo b/application/locale/cs_CZ/LC_MESSAGES/messages.mo index 8808cc37f..34bc4f5d8 100644 Binary files a/application/locale/cs_CZ/LC_MESSAGES/messages.mo and b/application/locale/cs_CZ/LC_MESSAGES/messages.mo differ diff --git a/application/locale/cs_CZ/LC_MESSAGES/messages.po b/application/locale/cs_CZ/LC_MESSAGES/messages.po index 23813d6d9..868686ef3 100644 --- a/application/locale/cs_CZ/LC_MESSAGES/messages.po +++ b/application/locale/cs_CZ/LC_MESSAGES/messages.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" "PO-Revision-Date: 2024-09-23 14:46+0000\n" "Last-Translator: Filip Melik \n" "Language-Team: Czech 1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6543,7 +6560,7 @@ msgstr "" msgid "Message" msgstr "" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "" @@ -6942,7 +6959,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7005,7 +7022,7 @@ msgstr "Ano" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7051,7 +7068,7 @@ msgid "No contests were found in your log." msgstr "" #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "" @@ -7392,7 +7409,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7457,10 +7474,10 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "Dnes" @@ -7613,7 +7630,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "" @@ -7689,54 +7706,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "Výměna (S)" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "Výměna (R)" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "Smazat QSO" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "Uložit QSO" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "Našeptávač značek" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "Závodní deník" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "" @@ -7898,7 +7915,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "Šíření signálu" @@ -7984,20 +8001,33 @@ msgid "" "themes." msgstr "" -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" msgstr "" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" msgstr "" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8005,25 +8035,25 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "Počet QSO spojení" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "Zbývá" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8034,7 +8064,7 @@ msgstr "Zbývá" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8057,10 +8087,10 @@ msgstr "Zbývá" msgid "Sent" msgstr "Odesláno" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8093,7 +8123,7 @@ msgstr "Odesláno" msgid "Received" msgstr "Přijato" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8119,7 +8149,7 @@ msgstr "Přijato" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8133,25 +8163,25 @@ msgstr "Přijato" msgid "Requested" msgstr "Vyžádáno" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "" -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "" @@ -8316,12 +8346,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "" #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "Ruční synchronizace" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "" @@ -8669,6 +8699,7 @@ msgstr "" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "" @@ -8709,11 +8740,15 @@ msgstr "" msgid "HAMqsl" msgstr "" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -8722,140 +8757,140 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "" @@ -9241,10 +9276,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9342,7 +9377,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "" @@ -9535,62 +9570,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "lokátor" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "Celkový počet" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL karta" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "" @@ -10184,7 +10219,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "" @@ -10304,7 +10339,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10325,7 +10360,7 @@ msgstr "Přímá" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10344,7 +10379,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10359,49 +10394,49 @@ msgstr "Elektronická" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Správce" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "" @@ -10563,7 +10598,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10600,7 +10635,7 @@ msgstr "Ve frontě" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11043,37 +11078,41 @@ msgstr "Datum vypršení" msgid "Last Upload" msgstr "Last upload" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "Vypršel" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" msgstr "" -#: application/views/lotw_views/index.php:88 -msgid "Valid" -msgstr "Platný" - #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "Není synchronizováno" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "Musíte nahrát nějké LoTW certifikáty ve formátu p12." -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "" @@ -11616,7 +11655,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -11664,7 +11703,7 @@ msgstr "Stanice" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12203,20 +12242,12 @@ msgstr "" msgid "Toot on Mastodon" msgstr "" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "" @@ -12241,11 +12272,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Zadej výkon ve Wattech. Jsou povolena pouze čísla." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12255,25 +12286,25 @@ msgstr "Vysílací výkon (W)" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "" @@ -12286,38 +12317,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12326,8 +12357,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "Metoda" @@ -12348,7 +12379,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12392,7 +12423,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "Předchozí spojení" @@ -12459,7 +12490,7 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -12467,7 +12498,7 @@ msgstr "" msgid "IOTA Reference" msgstr "IOTA označení" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -12475,91 +12506,95 @@ msgstr "IOTA označení" msgid "SOTA Reference" msgstr "SOTA označení" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "Frekvence (RX)" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "Pásmo (RX)" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "Příklad: GM/NS-001." -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "Příklad: DLFF-0069." -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "Příklad: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "Příklad: GMA" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "Příklad: DA/NW-357" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "Příklad: Q03" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "Název satelitu" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "Režim satelitu" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:769 -msgid "Send" +#: application/views/qso/index.php:778 +msgid "Stop" msgstr "" #: application/views/qso/index.php:779 +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:785 +msgid "Enter text..." +msgstr "" + +#: application/views/qso/index.php:786 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:798 msgid "Suggestions" msgstr "Návrhy" -#: application/views/qso/index.php:786 +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "" @@ -13847,6 +13882,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14863,10 +14899,6 @@ msgstr "URL Mastodon serveru" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "" @@ -15545,6 +15577,12 @@ msgstr "" msgid "Rcvd" msgstr "" +#~ msgid "Expired" +#~ msgstr "Vypršel" + +#~ msgid "Valid" +#~ msgstr "Platný" + #~ msgid "Club Log Email/Callsign" #~ msgstr "Email nebo značka volacího znaku Club Logu" diff --git a/application/locale/de_DE/LC_MESSAGES/messages.mo b/application/locale/de_DE/LC_MESSAGES/messages.mo index 0f41baaff..71703b4ee 100644 Binary files a/application/locale/de_DE/LC_MESSAGES/messages.mo and b/application/locale/de_DE/LC_MESSAGES/messages.mo differ diff --git a/application/locale/de_DE/LC_MESSAGES/messages.po b/application/locale/de_DE/LC_MESSAGES/messages.po index 939f944bd..c654ceb3f 100644 --- a/application/locale/de_DE/LC_MESSAGES/messages.po +++ b/application/locale/de_DE/LC_MESSAGES/messages.po @@ -26,17 +26,17 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" -"PO-Revision-Date: 2025-10-14 19:18+0000\n" -"Last-Translator: Fabian Berg \n" -"Language-Team: German \n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" +"PO-Revision-Date: 2025-10-26 06:05+0000\n" +"Last-Translator: Jörg Dorgeist \n" +"Language-Team: German \n" "Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.13.2\n" +"X-Generator: Weblate 5.14\n" #: application/controllers/Accumulated.php:12 #: application/controllers/Activators.php:13 @@ -90,9 +90,9 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:79 application/controllers/Lotw.php:105 -#: application/controllers/Lotw.php:375 application/controllers/Lotw.php:398 -#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:839 -#: application/controllers/Lotw.php:944 application/controllers/Mode.php:15 +#: application/controllers/Lotw.php:383 application/controllers/Lotw.php:406 +#: application/controllers/Lotw.php:763 application/controllers/Lotw.php:847 +#: application/controllers/Lotw.php:952 application/controllers/Mode.php:15 #: application/controllers/Notes.php:11 application/controllers/Options.php:14 #: application/controllers/Oqrs.php:15 application/controllers/Oqrs.php:165 #: application/controllers/Qrbcalc.php:13 application/controllers/Qrz.php:200 @@ -101,8 +101,8 @@ msgstr "" #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:187 -#: application/controllers/Qso.php:287 application/controllers/Qso.php:308 -#: application/controllers/Qso.php:331 application/controllers/Qso.php:629 +#: application/controllers/Qso.php:318 application/controllers/Qso.php:339 +#: application/controllers/Qso.php:362 application/controllers/Qso.php:662 #: application/controllers/Radio.php:32 application/controllers/Radio.php:291 #: application/controllers/Radio.php:317 application/controllers/Radio.php:333 #: application/controllers/Reg1test.php:17 @@ -160,7 +160,7 @@ msgstr "Karte der aktivierten Locator" #: application/controllers/Activated_gridmap.php:31 #: application/controllers/Awards.php:1003 #: application/controllers/Awards.php:1035 -#: application/controllers/Gridmap.php:31 +#: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 #: application/views/interface_assets/footer.php:47 @@ -170,13 +170,13 @@ msgid "Gridsquares" msgstr "Locator" #: application/controllers/Activated_gridmap.php:32 -#: application/controllers/Gridmap.php:32 +#: application/controllers/Gridmap.php:33 #: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "Bestätigte Locator" #: application/controllers/Activated_gridmap.php:33 -#: application/controllers/Gridmap.php:33 +#: application/controllers/Gridmap.php:34 #: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "Unbestätigte Locator" @@ -186,25 +186,25 @@ msgid "Total gridsquares activated" msgstr "Summe aktivierter Locator" #: application/controllers/Activated_gridmap.php:36 -#: application/controllers/Gridmap.php:36 +#: application/controllers/Gridmap.php:37 #: application/controllers/Visitor.php:390 msgid "Fields" msgstr "Felder" #: application/controllers/Activated_gridmap.php:37 -#: application/controllers/Gridmap.php:37 +#: application/controllers/Gridmap.php:38 #: application/controllers/Visitor.php:391 msgid "Fields confirmed" msgstr "Felder bestätigt" #: application/controllers/Activated_gridmap.php:38 -#: application/controllers/Gridmap.php:38 +#: application/controllers/Gridmap.php:39 #: application/controllers/Visitor.php:392 msgid "Fields not confirmed" msgstr "Felder nicht bestätigt" #: application/controllers/Activated_gridmap.php:39 -#: application/controllers/Gridmap.php:39 +#: application/controllers/Gridmap.php:40 #: application/controllers/Visitor.php:393 msgid "Total fields worked" msgstr "Total Felder gearbeitet" @@ -354,13 +354,13 @@ msgstr "Diplome – %s" #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:401 application/views/qso/index.php:302 -#: application/views/qso/index.php:593 application/views/user/edit.php:682 +#: application/views/qso/index.php:594 application/views/user/edit.php:682 #: application/views/view_log/qso.php:460 msgid "DOK" msgstr "DOK" #: application/controllers/Awards.php:176 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:130 application/views/bands/index.php:50 +#: application/views/bandmap/list.php:131 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:180 @@ -373,7 +373,7 @@ msgstr "DOK" #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 -#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:402 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 #: application/views/search/result.php:27 @@ -576,7 +576,7 @@ msgstr "Fred Fish Memorial Award (FFMA)" #: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:286 -#: application/views/qso/index.php:579 application/views/user/edit.php:678 +#: application/views/qso/index.php:580 application/views/user/edit.php:678 #: application/views/view_log/qso.php:425 #: application/views/view_log/qso.php:736 msgid "SIG" @@ -681,7 +681,7 @@ msgstr "CBR-Daten importiert" #: application/controllers/Callstats.php:19 #: application/views/callstats/index.php:2 msgid "Callsign statistics" -msgstr "Rufzeichen Statistik" +msgstr "Rufzeichenstatistik" #: application/controllers/Callstats.php:104 msgid " and sat " @@ -843,7 +843,7 @@ msgstr "Bearbeite Cronjob" #: application/views/debug/index.php:539 application/views/debug/index.php:544 #: application/views/debug/index.php:549 application/views/debug/index.php:554 #: application/views/debug/index.php:559 application/views/debug/index.php:564 -#: application/views/debug/index.php:569 +#: application/views/debug/index.php:569 application/views/debug/index.php:574 msgid "never" msgstr "nie" @@ -900,7 +900,7 @@ msgstr "Läuft nicht" msgid "SOTA CSV Export" msgstr "SOTA CSV-Export" -#: application/controllers/Dashboard.php:152 +#: application/controllers/Dashboard.php:154 #: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "Dashboard" @@ -953,35 +953,35 @@ msgstr "Keine passenden Stationsstandorte für den DCL-Upload gefunden" msgid "Key(s) Deleted." msgstr "Schlüssel gelöscht." -#: application/controllers/Debug.php:117 +#: application/controllers/Debug.php:118 msgid "Debug" msgstr "Debug" -#: application/controllers/Debug.php:156 +#: application/controllers/Debug.php:157 msgid "Migrate data now" msgstr "Daten jetzt migrieren" -#: application/controllers/Debug.php:159 +#: application/controllers/Debug.php:160 msgid "Migration already done. Run again?" msgstr "Migration wurde bereits durchgeführt. Nochmal ausführen?" -#: application/controllers/Debug.php:163 +#: application/controllers/Debug.php:164 msgid "No data to migrate" msgstr "Keine Daten die migriert werden müssen" -#: application/controllers/Debug.php:167 application/controllers/Debug.php:172 +#: application/controllers/Debug.php:168 application/controllers/Debug.php:173 msgid "No migration possible" msgstr "Migration nicht möglich" -#: application/controllers/Debug.php:237 +#: application/controllers/Debug.php:238 msgid "Wavelog was updated successfully!" msgstr "Wavelog wurde erfolgreich aktualisiert!" -#: application/controllers/Debug.php:255 +#: application/controllers/Debug.php:256 msgid "Selfupdate() not available. Check the Error Log." msgstr "Selfupdate() nicht verfügbar. Überprüfe das Fehlerprotokoll." -#: application/controllers/Debug.php:299 +#: application/controllers/Debug.php:300 msgid "" "File Migration was successfull, but please check also manually. If " "everything seems right you can delete the folders 'assets/qslcard' and " @@ -991,7 +991,7 @@ msgstr "" "Sofern keine Probleme ersichtlich sind, kannst du die beiden Ordner 'assets/" "qslcard' und 'images/eqsl_card_images' löschen." -#: application/controllers/Debug.php:302 +#: application/controllers/Debug.php:303 msgid "File Migration failed. Please check the Error Log." msgstr "Datenmigration fehlgeschlagen! Bitte das Fehlerprotokoll prüfen." @@ -1032,7 +1032,7 @@ msgid "DX Calendar" msgstr "DX Kalender" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:404 +#: application/views/dashboard/index.php:409 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:310 msgid "eQSL Cards" @@ -1092,7 +1092,7 @@ msgstr "Bestätigungen" msgid "Gridsquare Map" msgstr "Locatorkarte" -#: application/controllers/Gridmap.php:34 +#: application/controllers/Gridmap.php:35 #: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "Summe gearbeiteter Locator" @@ -1297,7 +1297,7 @@ msgstr "Logbuch" #: application/views/awards/wapc/index.php:44 #: application/views/awards/was/index.php:56 #: application/views/awards/wpx/index.php:28 -#: application/views/gridmap/index.php:101 +#: application/views/gridmap/index.php:141 #: application/views/logbookadvanced/index.php:794 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/oqrs/qsolist.php:12 @@ -1329,8 +1329,8 @@ msgstr "QSL" #: application/views/awards/wapc/index.php:48 #: application/views/awards/was/index.php:60 #: application/views/awards/wpx/index.php:32 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:109 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:149 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 @@ -1366,8 +1366,8 @@ msgstr "LoTW" #: application/views/awards/wapc/index.php:52 #: application/views/awards/was/index.php:64 #: application/views/awards/wpx/index.php:36 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:117 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:157 #: application/views/logbookadvanced/useroptions.php:78 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 @@ -1409,23 +1409,23 @@ msgstr "eQSL" #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:110 -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:136 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 #: application/views/contesting/index.php:118 -#: application/views/contesting/index.php:264 +#: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:597 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 -#: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 -#: application/views/kml/index.php:31 +#: application/views/gridmap/index.php:104 +#: application/views/hamsat/index.php:33 application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:12 #: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/index.php:764 @@ -1475,8 +1475,8 @@ msgstr "Mode" #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:179 -#: application/views/contesting/index.php:265 +#: application/views/contesting/index.php:180 +#: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 #: application/views/logbookadvanced/index.php:767 #: application/views/logbookadvanced/useroptions.php:38 @@ -1504,8 +1504,8 @@ msgstr "RST (S)" #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 -#: application/views/contesting/index.php:203 -#: application/views/contesting/index.php:266 +#: application/views/contesting/index.php:204 +#: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 #: application/views/logbookadvanced/index.php:770 #: application/views/logbookadvanced/useroptions.php:42 @@ -1613,9 +1613,9 @@ msgstr "Staat" #: application/views/awards/gridmaster/index.php:50 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:26 -#: application/views/contesting/index.php:271 +#: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 -#: application/views/gridmap/index.php:152 +#: application/views/gridmap/index.php:193 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 @@ -1659,7 +1659,7 @@ msgstr "Locator" #: application/views/dashboard/index.php:14 #: application/views/distancerecords/index.php:15 #: application/views/distances/index.php:13 -#: application/views/gridmap/index.php:154 +#: application/views/gridmap/index.php:195 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 #: application/views/logbookadvanced/index.php:869 @@ -1708,17 +1708,17 @@ msgstr "Distanz" #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:96 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:97 #: application/views/bands/create.php:24 application/views/bands/edit.php:7 #: application/views/bands/index.php:47 application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:263 +#: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:593 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:598 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 -#: application/views/gridmap/index.php:10 application/views/kml/index.php:19 +#: application/views/gridmap/index.php:26 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:6 #: application/views/logbookadvanced/index.php:281 #: application/views/logbookadvanced/index.php:773 @@ -1766,7 +1766,7 @@ msgid "Band" msgstr "Band" #: application/controllers/Logbook.php:1324 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:128 +#: application/controllers/Radio.php:45 application/views/bandmap/list.php:129 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:776 @@ -1825,9 +1825,9 @@ msgstr "Operator" #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:252 #: application/views/lookup/index.php:47 -#: application/views/lotw_views/index.php:49 +#: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 -#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:411 #: application/views/station_profile/create.php:77 #: application/views/station_profile/edit.php:109 #: application/views/stationsetup/linkedlocations.php:17 @@ -1868,11 +1868,11 @@ msgstr "Zertifikat importiert." msgid "Certificate Updated." msgstr "Zertifikat aktualisiert." -#: application/controllers/Lotw.php:381 +#: application/controllers/Lotw.php:389 msgid "Certificate Deleted." msgstr "Zertifikat gelöscht." -#: application/controllers/Lotw.php:410 +#: application/controllers/Lotw.php:418 #, php-format msgid "" "Found no certificate in file %s. If the filename contains 'key-only' this is " @@ -1882,52 +1882,52 @@ msgstr "" "enthält, handelt es sich normalerweise um eine Zertifikatsanforderung, die " "von LoTW noch nicht bearbeitet wurde." -#: application/controllers/Lotw.php:646 +#: application/controllers/Lotw.php:654 msgid "LoTW ADIF Information" msgstr "LoTW ADIF Information" -#: application/controllers/Lotw.php:812 application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:820 application/controllers/Lotw.php:823 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "LoTW-Login für Benutzer %s fehlgeschlagen: %s." -#: application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:823 msgid "Username/password incorrect" msgstr "Benutzername/Passwort falsch" -#: application/controllers/Lotw.php:818 +#: application/controllers/Lotw.php:826 msgid "LoTW login OK!" msgstr "LoTW-Login OK!" -#: application/controllers/Lotw.php:822 +#: application/controllers/Lotw.php:830 msgid "LoTW currently not available. Try again later." msgstr "LoTW derzeit nicht verfügbar. Versuche es später noch einmal." -#: application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 msgid "No LoTW credentials provided." msgstr "Keine LoTW-Logindaten angegeben." -#: application/controllers/Lotw.php:845 +#: application/controllers/Lotw.php:853 msgid "LoTW ADIF Import" msgstr "LoTW ADIF-Import" -#: application/controllers/Lotw.php:871 application/controllers/Lotw.php:979 +#: application/controllers/Lotw.php:879 application/controllers/Lotw.php:987 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Du hast deine ARRL LoTW Zugangsdaten nicht definiert!" -#: application/controllers/Lotw.php:946 +#: application/controllers/Lotw.php:954 msgid "LoTW .TQ8 Upload" msgstr "LoTW .TQ8-Upload" -#: application/controllers/Lotw.php:1024 +#: application/controllers/Lotw.php:1032 msgid "Your ARRL username and/or password is incorrect." msgstr "Dein ARRL-Benutzername und/oder Passwort ist falsch." -#: application/controllers/Lotw.php:1043 application/controllers/Lotw.php:1048 +#: application/controllers/Lotw.php:1051 application/controllers/Lotw.php:1056 msgid "LoTW .TQ8 Sent" msgstr "LoTW .TQ8 gesendet" -#: application/controllers/Lotw.php:1055 +#: application/controllers/Lotw.php:1063 msgid "LoTW .TQ8 Not Sent" msgstr "LoTW .TQ8 nicht gesendet" @@ -1948,7 +1948,7 @@ msgstr "Bearbeite Mode" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:409 application/views/qso/index.php:71 -#: application/views/qso/index.php:642 application/views/view_log/qso.php:14 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:14 #: application/views/view_log/qso.php:749 msgid "Notes" msgstr "Notizen" @@ -2210,8 +2210,8 @@ msgstr "QRZ QSL-Import" msgid "QRZ ADIF Information" msgstr "QRZ ADIF-Information" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:356 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:361 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:287 msgid "QSL Cards" @@ -2233,15 +2233,15 @@ msgstr "Druck angefragter QSLs" msgid "Add QSO" msgstr "Logge QSO" -#: application/controllers/Qso.php:690 +#: application/controllers/Qso.php:723 msgid "You have to be logged in to access this URL." msgstr "Du musst eingeloggt sein, um auf diese URL zugreifen zu können." -#: application/controllers/Qso.php:696 +#: application/controllers/Qso.php:729 msgid "Call Transfer" msgstr "Rufzeichen Transfer" -#: application/controllers/Qso.php:703 +#: application/controllers/Qso.php:736 msgid "No callsign provided." msgstr "Kein Rufzeichen angegeben." @@ -2271,7 +2271,7 @@ msgid "Options" msgstr "Optionen" #: application/controllers/Radio.php:50 application/views/debug/index.php:312 -#: application/views/qso/index.php:749 +#: application/views/qso/index.php:750 msgid "Settings" msgstr "Einstellungen" @@ -2280,8 +2280,8 @@ msgid "UNKNOWN" msgstr "UNBEKANNT" #: application/controllers/Radio.php:98 -#: application/views/contesting/index.php:161 -#: application/views/qso/index.php:354 +#: application/views/contesting/index.php:162 +#: application/views/qso/index.php:355 msgid "last updated" msgstr "zuletzt aktualisiert" @@ -2319,13 +2319,13 @@ msgstr "Bearbeiten" #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:63 -#: application/views/interface_assets/footer.php:2802 -#: application/views/interface_assets/footer.php:2820 -#: application/views/interface_assets/footer.php:2841 -#: application/views/interface_assets/footer.php:2859 +#: application/views/interface_assets/footer.php:2900 +#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:2939 +#: application/views/interface_assets/footer.php:2957 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:734 -#: application/views/lotw_views/index.php:111 +#: application/views/lotw_views/index.php:128 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 #: application/views/qslcard/index.php:76 @@ -2537,7 +2537,7 @@ msgstr "Nicht erlaubt" #: application/controllers/Stationsetup.php:156 #: application/controllers/Stationsetup.php:177 #: application/controllers/Stationsetup.php:478 -#: application/views/qso/index.php:708 application/views/simplefle/index.php:39 +#: application/views/qso/index.php:709 application/views/simplefle/index.php:39 #: application/views/widgets/on_air.php:102 msgid "Error" msgstr "Fehler" @@ -2840,6 +2840,14 @@ msgstr "LoTW SAT-Aktualisierung" msgid "Update of Hams of Note" msgstr "Update von 'Hams of Note'" +#: application/controllers/Update.php:718 +msgid "VUCC Grid file update complete. Result: " +msgstr "Update der VUCC-Planquadat-Datei erfolgt. Ergebnis: " + +#: application/controllers/Update.php:720 +msgid "VUCC Grid file update failed. Result: " +msgstr "Update der VUCC-Planquadrat-Datei fehlgeschlagen. Ergebnis: " + #: application/controllers/User.php:50 #: application/views/interface_assets/header.php:306 msgid "User Accounts" @@ -2971,7 +2979,7 @@ msgstr "Benutzer %s ausgeloggt." msgid "Station Name" msgstr "Stationsname" -#: application/controllers/User.php:1262 application/views/debug/index.php:594 +#: application/controllers/User.php:1262 application/views/debug/index.php:599 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:61 #: application/views/station_profile/edit.php:77 @@ -3435,7 +3443,7 @@ msgstr "QSO aktualisiert" #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 #: application/views/dashboard/index.php:19 -#: application/views/gridmap/index.php:156 +#: application/views/gridmap/index.php:197 #: application/views/logbookadvanced/index.php:15 #: application/views/user/edit.php:256 application/views/user/edit.php:279 #: application/views/user/edit.php:302 application/views/user/edit.php:325 @@ -3536,7 +3544,7 @@ msgid "Accumulated number of WAJA worked" msgstr "Kumulierte Anzahl gearbeiteter WAJA" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:317 +#: application/views/dashboard/index.php:322 #: application/views/dayswithqso/index.php:42 #: application/views/dayswithqso/index.php:82 #: application/views/statistics/index.php:19 @@ -3553,7 +3561,7 @@ msgid "Yearly" msgstr "Jährlich" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:327 #: application/views/visitor/index.php:255 msgid "Month" msgstr "Monat" @@ -3605,8 +3613,8 @@ msgstr "Differenz" #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:86 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:79 application/views/bandmap/list.php:87 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:113 #: application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 @@ -3629,14 +3637,15 @@ msgstr "Differenz" #: application/views/dxatlas/index.php:60 #: application/views/dxatlas/index.php:82 #: application/views/dxatlas/index.php:94 -#: application/views/gridmap/index.php:13 -#: application/views/gridmap/index.php:28 -#: application/views/gridmap/index.php:41 -#: application/views/gridmap/index.php:70 -#: application/views/gridmap/index.php:83 +#: application/views/gridmap/index.php:29 +#: application/views/gridmap/index.php:44 +#: application/views/gridmap/index.php:78 +#: application/views/gridmap/index.php:93 +#: application/views/gridmap/index.php:107 +#: application/views/gridmap/index.php:121 #: application/views/interface_assets/footer.php:46 -#: application/views/interface_assets/footer.php:1692 -#: application/views/interface_assets/footer.php:1831 +#: application/views/interface_assets/footer.php:1790 +#: application/views/interface_assets/footer.php:1929 #: 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 @@ -3723,7 +3732,7 @@ msgstr "Zeitraum" #: application/views/accumulate/index.php:80 #: application/views/callstats/index.php:65 #: application/views/distances/index.php:53 -#: application/views/gridmap/index.php:38 +#: application/views/gridmap/index.php:41 #: application/views/logbookadvanced/edit.php:14 #: application/views/logbookadvanced/index.php:310 #: application/views/logbookadvanced/index.php:857 @@ -3743,7 +3752,7 @@ msgstr "Alle außer SAT" #: application/views/accumulate/index.php:85 #: application/views/callstats/index.php:69 #: application/views/distances/index.php:58 -#: application/views/gridmap/index.php:42 +#: application/views/gridmap/index.php:45 #: application/views/logbookadvanced/edit.php:207 #: application/views/logbookadvanced/edit.php:215 #: application/views/logbookadvanced/index.php:406 @@ -3755,9 +3764,9 @@ msgstr "Keine/Leer" #: application/views/callstats/index.php:71 application/views/csv/index.php:95 #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 +#: application/views/gridmap/index.php:47 application/views/kml/index.php:80 #: application/views/logbookadvanced/index.php:314 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:477 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:478 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 #: application/views/view_log/qso.php:233 @@ -3769,9 +3778,9 @@ msgstr "Flugzeug-Scatter" #: application/views/callstats/index.php:72 application/views/csv/index.php:96 #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 +#: application/views/gridmap/index.php:48 application/views/kml/index.php:81 #: application/views/logbookadvanced/index.php:315 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:478 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:479 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 #: application/views/view_log/qso.php:236 @@ -3783,9 +3792,9 @@ msgstr "Aurora" #: application/views/callstats/index.php:73 application/views/csv/index.php:97 #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 +#: application/views/gridmap/index.php:49 application/views/kml/index.php:82 #: application/views/logbookadvanced/index.php:316 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:479 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:480 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 #: application/views/view_log/qso.php:239 @@ -3797,9 +3806,9 @@ msgstr "Aurora-E" #: application/views/callstats/index.php:74 application/views/csv/index.php:98 #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 +#: application/views/gridmap/index.php:50 application/views/kml/index.php:83 #: application/views/logbookadvanced/index.php:317 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:480 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:481 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 #: application/views/view_log/qso.php:242 @@ -3811,9 +3820,9 @@ msgstr "Rückwärts-Scatter" #: application/views/callstats/index.php:75 application/views/csv/index.php:99 #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 +#: application/views/gridmap/index.php:51 application/views/kml/index.php:84 #: application/views/logbookadvanced/index.php:318 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:481 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:482 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 #: application/views/view_log/qso.php:245 @@ -3825,9 +3834,9 @@ msgstr "EchoLink" #: application/views/callstats/index.php:76 application/views/csv/index.php:100 #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 +#: application/views/gridmap/index.php:52 application/views/kml/index.php:85 #: application/views/logbookadvanced/index.php:319 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:482 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:483 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 #: application/views/view_log/qso.php:248 @@ -3839,9 +3848,9 @@ msgstr "Erde-Mond-Erde" #: application/views/callstats/index.php:77 application/views/csv/index.php:101 #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 +#: application/views/gridmap/index.php:53 application/views/kml/index.php:86 #: application/views/logbookadvanced/index.php:320 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:483 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:484 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 #: application/views/view_log/qso.php:251 @@ -3853,9 +3862,9 @@ msgstr "Sporadic E" #: application/views/callstats/index.php:78 application/views/csv/index.php:102 #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 +#: application/views/gridmap/index.php:54 application/views/kml/index.php:87 #: application/views/logbookadvanced/index.php:321 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:484 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:485 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 #: application/views/view_log/qso.php:254 @@ -3867,9 +3876,9 @@ msgstr "feldausgerichtete Irregularitäten" #: application/views/callstats/index.php:79 application/views/csv/index.php:103 #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 +#: application/views/gridmap/index.php:55 application/views/kml/index.php:88 #: application/views/logbookadvanced/index.php:322 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:485 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:486 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 #: application/views/view_log/qso.php:257 @@ -3881,9 +3890,9 @@ msgstr "F2-Reflexion" #: application/views/callstats/index.php:80 application/views/csv/index.php:104 #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 +#: application/views/gridmap/index.php:56 application/views/kml/index.php:89 #: application/views/logbookadvanced/index.php:323 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:486 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:487 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 #: application/views/view_log/qso.php:260 @@ -3895,9 +3904,9 @@ msgstr "Internet-gestützt" #: application/views/callstats/index.php:81 application/views/csv/index.php:105 #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 +#: application/views/gridmap/index.php:57 application/views/kml/index.php:90 #: application/views/logbookadvanced/index.php:324 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:487 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:488 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 #: application/views/view_log/qso.php:263 @@ -3909,9 +3918,9 @@ msgstr "Ionoscatter" #: application/views/callstats/index.php:82 application/views/csv/index.php:106 #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 +#: application/views/gridmap/index.php:58 application/views/kml/index.php:91 #: application/views/logbookadvanced/index.php:325 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:488 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:489 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 #: application/views/view_log/qso.php:266 @@ -3923,9 +3932,9 @@ msgstr "IRLP" #: application/views/callstats/index.php:83 application/views/csv/index.php:107 #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 +#: application/views/gridmap/index.php:59 application/views/kml/index.php:92 #: application/views/logbookadvanced/index.php:326 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:489 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:490 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 #: application/views/view_log/qso.php:269 @@ -3937,9 +3946,9 @@ msgstr "Meteor-Scatter" #: application/views/callstats/index.php:84 application/views/csv/index.php:108 #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 +#: application/views/gridmap/index.php:60 application/views/kml/index.php:93 #: application/views/logbookadvanced/index.php:327 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:490 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:491 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 #: application/views/view_log/qso.php:272 @@ -3951,9 +3960,9 @@ msgstr "Terrestrische oder atmosphärische Repeater oder Transponder" #: application/views/callstats/index.php:85 application/views/csv/index.php:109 #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 +#: application/views/gridmap/index.php:61 application/views/kml/index.php:94 #: application/views/logbookadvanced/index.php:328 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:491 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:492 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 #: application/views/view_log/qso.php:275 @@ -3965,9 +3974,9 @@ msgstr "Regen-Scatter" #: application/views/callstats/index.php:86 application/views/csv/index.php:110 #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 +#: application/views/gridmap/index.php:62 application/views/kml/index.php:95 #: application/views/logbookadvanced/index.php:329 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:492 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:493 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 #: application/views/view_log/qso.php:278 @@ -3979,9 +3988,9 @@ msgstr "Satellit" #: application/views/callstats/index.php:87 application/views/csv/index.php:111 #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 +#: application/views/gridmap/index.php:63 application/views/kml/index.php:96 #: application/views/logbookadvanced/index.php:330 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:493 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:494 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 #: application/views/view_log/qso.php:281 @@ -3993,9 +4002,9 @@ msgstr "Transequatorial" #: application/views/callstats/index.php:88 application/views/csv/index.php:112 #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 +#: application/views/gridmap/index.php:64 application/views/kml/index.php:97 #: application/views/logbookadvanced/index.php:331 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:494 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:495 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 #: application/views/view_log/qso.php:284 @@ -4050,7 +4059,7 @@ msgstr "Anzeigen" #: application/views/components/hamsat/table.php:29 #: application/views/distancerecords/index.php:14 #: application/views/distances/index.php:34 -#: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 +#: application/views/gridmap/index.php:73 application/views/hamsat/index.php:32 #: application/views/interface_assets/header.php:198 #: application/views/logbookadvanced/edit.php:17 #: application/views/logbookadvanced/index.php:292 @@ -4073,7 +4082,7 @@ msgstr "Satellit" #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 -#: application/views/gridmap/index.php:80 +#: application/views/gridmap/index.php:88 #: application/views/logbookadvanced/index.php:301 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 @@ -4086,7 +4095,7 @@ msgstr "Orbit" #: application/views/activated_gridmap/index.php:50 #: application/views/awards/wab/index.php:65 -#: application/views/gridmap/index.php:92 +#: application/views/gridmap/index.php:132 #: application/views/timeline/index.php:52 msgid "Confirmation" msgstr "Bestätigung" @@ -4108,24 +4117,24 @@ msgstr "Bestätigung" #: application/views/awards/wapc/index.php:56 #: application/views/awards/was/index.php:68 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:125 application/views/user/edit.php:810 +#: application/views/gridmap/index.php:165 application/views/user/edit.php:810 msgid "QRZ.com" msgstr "QRZ.com" #: application/views/activated_gridmap/index.php:86 -#: application/views/gridmap/index.php:130 +#: application/views/gridmap/index.php:17 msgid "Plot" msgstr "Kartieren" #: application/views/activated_gridmap/index.php:87 -#: application/views/gridmap/index.php:131 +#: application/views/gridmap/index.php:18 msgid "Clear Markers" msgstr "Lösche Markierungen" #: application/views/activated_gridmap/index.php:102 #: application/views/awards/ffma/index.php:31 #: application/views/awards/gridmaster/index.php:46 -#: application/views/gridmap/index.php:148 +#: application/views/gridmap/index.php:189 #: application/views/logbookadvanced/index.php:10 msgid "Latitude" msgstr "Breitengrad" @@ -4133,7 +4142,7 @@ msgstr "Breitengrad" #: application/views/activated_gridmap/index.php:104 #: application/views/awards/ffma/index.php:33 #: application/views/awards/gridmaster/index.php:48 -#: application/views/gridmap/index.php:150 +#: application/views/gridmap/index.php:191 #: application/views/logbookadvanced/index.php:11 msgid "Longitude" msgstr "Längengrad" @@ -4194,8 +4203,8 @@ msgstr "Nichts gefunden!" #: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:170 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:244 +#: application/views/contesting/index.php:171 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:249 #: application/views/dcl_views/index.php:27 #: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 @@ -4300,12 +4309,12 @@ msgstr "Die Informationen zum DOK im Logbuch weichen von denen im DCL ab" #: application/views/awards/pota/index.php:33 #: application/views/awards/sota/index.php:31 #: application/views/awards/wwff/index.php:33 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:25 #: application/views/contesting/index.php:103 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:239 -#: application/views/debug/index.php:589 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:244 +#: application/views/debug/index.php:594 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4346,12 +4355,12 @@ msgstr "Datum" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:590 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:247 +#: application/views/debug/index.php:595 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4377,10 +4386,10 @@ msgstr "Zeit" #: application/views/adif/dcl_success.php:31 #: application/views/adif/pota_success.php:31 #: application/views/awards/vucc/band.php:18 -#: application/views/bandmap/list.php:129 -#: application/views/contesting/index.php:262 +#: application/views/bandmap/list.php:130 +#: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:591 application/views/debug/index.php:626 +#: application/views/debug/index.php:596 application/views/debug/index.php:631 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4422,8 +4431,7 @@ msgstr "CBR Import" #: application/views/adif/import.php:73 application/views/adif/import.php:379 #: application/views/adif/import.php:400 application/views/api/index.php:22 #: application/views/dashboard/index.php:180 -#: application/views/dashboard/index.php:209 -#: application/views/dashboard/index.php:214 +#: application/views/dashboard/index.php:213 #: application/views/eqsl/import.php:46 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 #: application/views/options/maptiles.php:48 @@ -4442,7 +4450,7 @@ msgstr "Die max. Dateigröße für Uploads beträgt " #: application/views/adif/import.php:349 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:193 application/views/debug/index.php:210 -#: application/views/debug/index.php:581 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:586 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 @@ -4511,7 +4519,7 @@ msgstr "" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 #: application/views/interface_assets/footer.php:580 -#: application/views/interface_assets/footer.php:2564 +#: application/views/interface_assets/footer.php:2662 msgid "DANGER" msgstr "GEFAHR" @@ -4743,7 +4751,7 @@ msgstr "" #: application/views/adif/import.php:399 #: application/views/adif/import_success.php:40 #: application/views/dcl_views/index.php:76 -#: application/views/lotw_views/index.php:137 +#: application/views/lotw_views/index.php:154 msgid "Information" msgstr "Information" @@ -5258,7 +5266,7 @@ msgstr "Bestätigte Counties" #: application/views/awards/wapc/index.php:145 #: application/views/awards/was/index.php:180 #: application/views/awards/wpx/index.php:172 -#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:317 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -5278,7 +5286,8 @@ msgstr "Gesamt" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:151 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/dxatlas/index.php:80 +#: application/views/gridmap/index.php:199 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 #: application/views/logbookadvanced/index.php:335 @@ -5286,7 +5295,7 @@ msgstr "Gesamt" #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:308 -#: application/views/qso/index.php:450 +#: application/views/qso/index.php:451 #: application/views/search/cqzones_result.php:13 #: application/views/station_profile/create.php:110 #: application/views/station_profile/edit.php:157 @@ -5347,9 +5356,9 @@ msgstr "Diplome - CQ WAZ" #: application/views/awards/wab/list.php:6 #: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:81 -#: application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:457 +#: application/views/bandmap/list.php:82 +#: application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:462 #: application/views/interface_assets/footer.php:43 #: application/views/search/result.php:32 #: application/views/visitor/index.php:270 @@ -5359,9 +5368,9 @@ msgstr "Bestätigt" #: application/views/awards/cq/index.php:35 #: application/views/awards/itu/index.php:35 #: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:80 -#: application/views/dashboard/index.php:335 -#: application/views/dashboard/index.php:451 +#: application/views/bandmap/list.php:81 +#: application/views/dashboard/index.php:340 +#: application/views/dashboard/index.php:456 #: application/views/search/result.php:35 #: application/views/visitor/index.php:266 msgid "Worked" @@ -5439,7 +5448,7 @@ msgstr "QSO mit QSL-Typ anzeigen" #: application/views/awards/iota/index.php:62 #: application/views/awards/itu/index.php:57 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2543 +#: application/views/interface_assets/footer.php:2641 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -5694,6 +5703,7 @@ msgstr "" #: application/views/awards/dxcc/index.php:28 #: application/views/awards/wpx/index.php:13 +#: application/views/gridmap/index.php:16 #: application/views/logbookadvanced/index.php:221 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" @@ -5711,12 +5721,12 @@ msgstr "Inklusive gelöschte" #: application/views/awards/dxcc/index.php:97 #: application/views/awards/iota/index.php:88 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:88 +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:89 #: application/views/logbookadvanced/edit.php:217 #: application/views/logbookadvanced/index.php:408 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 -#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:425 +#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:426 #: application/views/view_log/qso.php:350 msgid "Antarctica" msgstr "Antarktis" @@ -5724,12 +5734,12 @@ msgstr "Antarktis" #: application/views/awards/dxcc/index.php:101 #: application/views/awards/iota/index.php:92 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:87 +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:88 #: application/views/logbookadvanced/edit.php:216 #: application/views/logbookadvanced/index.php:407 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 -#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:424 +#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:425 #: application/views/view_log/qso.php:347 msgid "Africa" msgstr "Afrika" @@ -5737,12 +5747,12 @@ msgstr "Afrika" #: application/views/awards/dxcc/index.php:105 #: application/views/awards/iota/index.php:96 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:89 +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:90 #: application/views/logbookadvanced/edit.php:219 #: application/views/logbookadvanced/index.php:410 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 -#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:426 +#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:427 #: application/views/view_log/qso.php:353 msgid "Asia" msgstr "Asien" @@ -5750,12 +5760,12 @@ msgstr "Asien" #: application/views/awards/dxcc/index.php:109 #: application/views/awards/iota/index.php:100 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:90 +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:91 #: application/views/logbookadvanced/edit.php:220 #: application/views/logbookadvanced/index.php:411 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 -#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:427 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:428 #: application/views/view_log/qso.php:356 msgid "Europe" msgstr "Europa" @@ -5763,12 +5773,12 @@ msgstr "Europa" #: application/views/awards/dxcc/index.php:113 #: application/views/awards/iota/index.php:104 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:91 +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:92 #: application/views/logbookadvanced/edit.php:218 #: application/views/logbookadvanced/index.php:409 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 -#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:428 +#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:429 #: application/views/view_log/qso.php:359 msgid "North America" msgstr "Nordamerika" @@ -5776,12 +5786,12 @@ msgstr "Nordamerika" #: application/views/awards/dxcc/index.php:117 #: application/views/awards/iota/index.php:108 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:93 +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:94 #: application/views/logbookadvanced/edit.php:221 #: application/views/logbookadvanced/index.php:412 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 -#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:430 +#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:431 #: application/views/view_log/qso.php:365 msgid "South America" msgstr "Südamerika" @@ -5789,12 +5799,12 @@ msgstr "Südamerika" #: application/views/awards/dxcc/index.php:121 #: application/views/awards/iota/index.php:112 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:92 +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:93 #: application/views/logbookadvanced/edit.php:222 #: application/views/logbookadvanced/index.php:413 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 -#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:429 +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:430 #: application/views/view_log/qso.php:362 msgid "Oceania" msgstr "Ozeanien" @@ -6111,7 +6121,7 @@ msgstr "Zeige IOTA Karte" #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 #: application/views/contesting/index.php:64 -#: application/views/contesting/index.php:228 +#: 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:782 @@ -6139,13 +6149,14 @@ msgstr "Gelöscht" #: application/views/awards/itu/index.php:3 #: application/views/awards/itu/index.php:151 +#: application/views/gridmap/index.php:201 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 #: application/views/logbookadvanced/index.php:349 #: application/views/logbookadvanced/index.php:827 #: application/views/logbookadvanced/useroptions.php:118 #: application/views/lookup/index.php:8 application/views/qso/edit_ajax.php:316 -#: application/views/qso/index.php:460 +#: application/views/qso/index.php:461 #: application/views/search/ituzones_result.php:13 #: application/views/station_profile/create.php:124 #: application/views/station_profile/edit.php:174 @@ -6242,7 +6253,7 @@ msgid "City" msgstr "Stadt" #: application/views/awards/jcc/index.php:188 -#: application/views/dashboard/index.php:447 +#: application/views/dashboard/index.php:452 #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 @@ -6293,7 +6304,7 @@ msgstr "" "enthalten)" #: application/views/awards/pota/index.php:32 -#: application/views/qso/index.php:274 application/views/qso/index.php:567 +#: application/views/qso/index.php:274 application/views/qso/index.php:568 #: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:276 #: application/views/user/edit.php:674 application/views/view_log/qso.php:403 @@ -6533,7 +6544,7 @@ msgstr "Diplome - Worked All Continents (WAC)" #: application/views/logbookadvanced/index.php:866 #: application/views/logbookadvanced/useroptions.php:170 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 -#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:422 #: application/views/view_log/qso.php:342 msgid "Continent" msgstr "Kontinent" @@ -6824,7 +6835,7 @@ msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" msgstr "Für diesen Award berücksichtigte Felder: WWFF (ADIF: WWFF_REF)" #: application/views/awards/wwff/index.php:32 -#: application/views/qso/index.php:262 application/views/qso/index.php:554 +#: application/views/qso/index.php:262 application/views/qso/index.php:555 #: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:263 #: application/views/user/edit.php:670 application/views/view_log/qso.php:396 @@ -6900,7 +6911,7 @@ msgstr "BandListe" msgid "None" msgstr "Nichts" -#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:84 +#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:85 msgid "Spots de" msgstr "Spots de" @@ -6913,40 +6924,46 @@ msgstr "" msgid "Click to prepare logging." msgstr "Klicken, um das Loggen vorzubereiten." -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:70 +#: application/views/contesting/index.php:160 +#: application/views/qso/index.php:353 +msgid "WebSocket (Requires WLGate>1.1.10)" +msgstr "WebSocket (ab WavelogGate 1.1.10)" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "DXCC-Status" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "Nicht gearbeitet" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "Gearbeitet, nicht bestätigt" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "Phonie" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "CW" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "Digi" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "WAC" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "Spotter" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6954,7 +6971,7 @@ msgstr "Spotter" msgid "Message" msgstr "Nachricht" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "Zuletzt gearbeitet" @@ -7373,7 +7390,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7436,7 +7453,7 @@ msgstr "Ja" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7482,7 +7499,7 @@ msgid "No contests were found in your log." msgstr "Es wurden keine Conteste in deinem Log gefunden." #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "Alle ausser SAT" @@ -7843,7 +7860,7 @@ msgstr "" "vorbeischauen." #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7908,10 +7925,10 @@ msgid "Show Details" msgstr "Details anzeigen" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "Heute" @@ -8071,7 +8088,7 @@ msgstr "Seriennummer + Locator + Austausch" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "Rufzeichen des Operators" @@ -8151,54 +8168,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "Seriennummer" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "Nummer (S)" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "Locator (S)" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "Exch (S)" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "Nummer (R)" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "Locator (R)" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "Exch (R)" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "Setze QSO zurück" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "Speichere QSO" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "Rufzeichenvorschläge" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "Contest-Logbuch" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "VUCC Locator" @@ -8370,7 +8387,7 @@ msgstr "Es werden nur QSOs exportiert, welche SOTA-Informationen enthalten!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "Propagation" @@ -8467,45 +8484,60 @@ msgstr "" "Du hast Themes ohne definierten Theme-Modus. Bitte den Administrator, die " "Themes zu bearbeiten." -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" -msgstr "Mindestens eines deiner %sLoTW-Zertifikate%s ist abgelaufen!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" +msgstr "" +"LoTW Warnung: Es gibt ein Problem mit mindestens einem deiner %sLoTW-" +"Zertifikate%s!" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" -msgstr "Mindestens eines deiner %sLoTW-Zertifikate%s wird bald ablaufen!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" +msgstr "Mindestens eines deiner Zertifikate ist abgelaufen" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "Mindestens eines deiner Zertifikate läuft bald ab" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "Das QSO-Enddatum von einem deiner Zertifikate ist überschritten" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "Das QSO-Enddatum von einem deiner Zertifikate wird bald überschritten" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" msgstr[0] "Max. %d vorheriger Kontakt wird angezeigt" msgstr[1] "Max. %d vorherige Kontakte werden angezeigt" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "QSO-Übersicht" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "DXCC-Übersicht" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "Benötigt" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8516,7 +8548,7 @@ msgstr "Benötigt" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8539,10 +8571,10 @@ msgstr "Benötigt" msgid "Sent" msgstr "Gesendet" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8575,7 +8607,7 @@ msgstr "Gesendet" msgid "Received" msgstr "Erhalten" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8601,7 +8633,7 @@ msgstr "Erhalten" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8615,25 +8647,25 @@ msgstr "Erhalten" msgid "Requested" msgstr "Angefragt" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "Logbook of the World" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "VUCC-Locator" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "Solardaten & Ausbreitungsbedingungen" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "Letztes Update um %s." -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "Daten bereitgestellt von HAMqsl." @@ -8805,12 +8837,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "Der nächste automatische Sync mit dem DCL findet statt: " #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "Manuelle Synchronisation" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "läuft..." @@ -9173,6 +9205,7 @@ msgstr "DXCC-Update von Club Log" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "Aktualisierung" @@ -9213,11 +9246,15 @@ msgstr "'Hams of Note' Update" msgid "HAMqsl" msgstr "HAMqsl" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "VUCC-Locator" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "QSO-DB Wartung" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -9225,141 +9262,141 @@ msgid_plural "" msgstr[0] "Die Datenbank enthält %d QSO ohne Stationsstandort" msgstr[1] "Die Datenbank enthält %d QSOs ohne Stationsstandort" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" "Bitte markiere die QSOs und weise sie einem vorhandenen Stationsstandort zu:" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "Zielstandort" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "Neu zuweisen" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "Jedes QSO in deiner Datenbank ist einem Stationsstandort zugeordnet" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "Alles in Ordnung" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "Albanisch" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "Armenisch" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "Bosnisch" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "Bulgarisch" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "Chinesisch (Vereinfacht)" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "Kroatisch" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "Tschechisch" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "Niederländisch" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "Englisch" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "Estnisch" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "Finnisch" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "Französisch" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "Deutsch" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "Griechisch" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "Ungarisch" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "Italienisch" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "Japanisch" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "Lettisch" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "Litauisch" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "Montenegrinisch" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "Polnisch" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "Portugiesisch" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "Russisch" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "Serbisch" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "Slowakisch" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "Slowenisch" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "Spanisch" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "Schwedisch" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "Türkisch" @@ -9822,10 +9859,10 @@ msgid "QSL Date" msgstr "QSL-Datum" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9929,7 +9966,7 @@ msgid "Worked not confirmed" msgstr "Gearbeitet, nicht bestätigt" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "Zurücksetzen" @@ -10132,62 +10169,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Locator" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "Du bist nicht eingeloggt. Bitte %slogge dich ein%s" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "Locator" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "Summe" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "QSL-Karte für " -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Warnung! Bist du sicher, dass du diese QSL-Karte löschen möchtest?" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL-Karte" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "eQSL-Karte für " -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "QSL-Bilddatei" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "Vorderseite QSL-Karte:" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "Rückseite QSL-Karte:" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "Weitere QSOs zu einer QSL-Karte hinzufügen" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "Etwas ist schiefgelaufen. Bitte versuche es erneut!" @@ -10254,7 +10291,7 @@ msgstr "Aktivierte Locator" #: application/views/interface_assets/header.php:168 msgid "Callsign Statistics" -msgstr "Rufzeichen Statistik" +msgstr "Rufzeichenstatistik" #: application/views/interface_assets/header.php:176 msgid "International" @@ -10790,7 +10827,7 @@ msgstr "Sendeleistung" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "Region" @@ -10910,7 +10947,7 @@ msgstr "Verifiziert" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10931,7 +10968,7 @@ msgstr "Direkt" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10950,7 +10987,7 @@ msgstr "Büro" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10965,49 +11002,49 @@ msgstr "Elektronisch" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Manager" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "KEIN" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "Afrikanisches Italien" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "Bäreninsel" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "Europäische Türkei" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "ITU Wien" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "Kosovo" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "Shetlandinseln" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "Sizilien" @@ -11184,7 +11221,7 @@ msgstr "QSL gesendet" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -11221,7 +11258,7 @@ msgstr "In Warteschlange" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11670,39 +11707,43 @@ msgstr "Ablaufdatum" msgid "Last Upload" msgstr "Letzter Upload" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "Abgelaufen" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "Läuft ab" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" -msgstr "Gültig" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" +msgstr "Zertifikat abgelaufen" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "Zertifikat ablaufend" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "Zertifikat gültig" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "QSO-Enddatum nähert sich" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "Letzter Erfolg: %s" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "Letzer Fehlversuch: %s" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "Nicht synchronisiert" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" "Du musst mindestens ein LoTW-p12-Zertifikat hochladen, um diesen Bereich " "nutzen zu können." -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "Die nächste Synchronisierung mit LoTW ist geplant für: " @@ -12298,7 +12339,7 @@ msgstr "Gibt es weitere Informationen, über die wir Bescheid wissen sollten?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -12346,7 +12387,7 @@ msgstr "Station" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12913,20 +12954,12 @@ msgstr "Poste auf Bluesky" msgid "Toot on Mastodon" msgstr "Toot auf Mastodon" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "Funktion %d - Name" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "Funktion %d - Makro" @@ -12951,12 +12984,12 @@ msgstr "RX-Frequenz" msgid "RX Band" msgstr "RX-Band" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" "Gib die Ausgangsleistung in Watt an. Erfasse nur Zahlen bei der Eingabe." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12966,25 +12999,25 @@ msgstr "Sendeleistung (W)" msgid "Used for VUCC MultiGrids" msgstr "Wird für VUCC MultiGrids verwendet" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "Antennenpfad" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "Greyline" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "Andere" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "Short Path" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "Long Path" @@ -12997,38 +13030,38 @@ msgstr "Satellitenname" msgid "Sat Mode" msgstr "Sat-Modus" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "Antennen-Azimut (°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "Azimut der Antenne in Dezimalgrad." -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "Antennen-Elevation (°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "Elevation der Antenne in Dezimalgrad." -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "Stations County" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "SIG-Info" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "Hinweis: Wird zu Drittanbieterdiensten exportiert." @@ -13037,8 +13070,8 @@ msgid "Sent Method" msgstr "Sendemethode" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "Methode" @@ -13059,7 +13092,7 @@ msgstr "Verifiziert (Match)" msgid "Received Method" msgstr "Empfangsmethode" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "Setze die eQSL-Nachricht auf den Standardtext zurück." @@ -13103,7 +13136,7 @@ msgstr "Änderungen speichern" msgid "TimeOff is less than TimeOn" msgstr "Endzeit ist vor der Startzeit" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "Vorherige Kontakte" @@ -13170,7 +13203,7 @@ msgstr "Endzeit" msgid "Search DXCluster for latest Spot" msgstr "Suche im DX-Cluster nach letztem Spot" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -13178,7 +13211,7 @@ msgstr "Suche im DX-Cluster nach letztem Spot" msgid "IOTA Reference" msgstr "IOTA-Referenznummer" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -13186,91 +13219,95 @@ msgstr "IOTA-Referenznummer" msgid "SOTA Reference" msgstr "SOTA-Referenznummer" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "Frequenz (RX)" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "Band (RX)" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "Zum Beispiel: GM/NS-001." -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "Zum Beispiel: DLFF-0069." -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "Zum Beispiel: PA-0150. Mehrere Werte erlaubt." -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "Zum Beispiel: GMA" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "Zum Beispiel: DA/NW-357" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "Zum Beispiel: Q03" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "E-Mail Adresse des QSO-Partners" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "Satellit" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "Satellitenmodus" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "QSL Nachricht" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "Auf Standardwerte zurücksetzen" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "Verbinden" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "Stop" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "Abstimmen" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "Abstimmen stoppen" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "CW Geschwindigkeit" -#: application/views/qso/index.php:769 +#: application/views/qso/index.php:778 +msgid "Stop" +msgstr "Stop" + +#: application/views/qso/index.php:779 +msgid "Tune" +msgstr "Abstimmen" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "Abstimmen stoppen" + +#: application/views/qso/index.php:785 +msgid "Enter text..." +msgstr "Text eingeben..." + +#: application/views/qso/index.php:786 msgid "Send" msgstr "Senden" -#: application/views/qso/index.php:779 +#: application/views/qso/index.php:798 msgid "Suggestions" msgstr "Vorschläge" -#: application/views/qso/index.php:786 +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "Profilbild" @@ -14674,6 +14711,7 @@ msgid "Special Interest Group Information" msgstr "Informationen für Besondere Interessengruppe (SIG)" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Probleme? Schau im %sWiki%s nach." @@ -14957,7 +14995,7 @@ msgstr "" #: application/views/themes/add.php:31 application/views/themes/edit.php:31 #: application/views/themes/index.php:86 msgid "Main Logo" -msgstr "Hauptogo" +msgstr "Hauptlogo" #: application/views/themes/add.php:33 application/views/themes/edit.php:33 #, php-format @@ -15789,10 +15827,6 @@ msgstr "URL des Mastodonservers" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "Haupt-URL deines Mastodon-Servers, z.B. %s" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "Experimentell" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "Winkeyer" @@ -16534,6 +16568,31 @@ msgstr "Anfrage senden" msgid "Rcvd" msgstr "Rcvd" +#~ msgid "VUCCGrids" +#~ msgstr "VUCC-Planquadrate" + +#, php-format +#~ msgctxt "LoTW Warning" +#~ msgid "At least one of your %sLoTW certificates%s is expired!" +#~ msgstr "Mindestens eines deiner %sLoTW-Zertifikate%s ist abgelaufen!" + +#, php-format +#~ msgctxt "LoTW Warning" +#~ msgid "At least one of your %sLoTW certificates%s is about to expire!" +#~ msgstr "Mindestens eines deiner %sLoTW-Zertifikate%s wird bald ablaufen!" + +#~ msgid "Expired" +#~ msgstr "Abgelaufen" + +#~ msgid "Expiring" +#~ msgstr "Läuft ab" + +#~ msgid "Valid" +#~ msgstr "Gültig" + +#~ msgid "Experimental" +#~ msgstr "Experimentell" + #, php-format #~ msgctxt "Dashboard Warning" #~ msgid "" diff --git a/application/locale/el_GR/LC_MESSAGES/messages.mo b/application/locale/el_GR/LC_MESSAGES/messages.mo index e51eb8316..3c7ec0370 100644 Binary files a/application/locale/el_GR/LC_MESSAGES/messages.mo and b/application/locale/el_GR/LC_MESSAGES/messages.mo differ diff --git a/application/locale/el_GR/LC_MESSAGES/messages.po b/application/locale/el_GR/LC_MESSAGES/messages.po index 4095733f3..cdf226b31 100644 --- a/application/locale/el_GR/LC_MESSAGES/messages.po +++ b/application/locale/el_GR/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" "PO-Revision-Date: 2025-08-19 17:14+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Greek 1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6537,7 +6554,7 @@ msgstr "" msgid "Message" msgstr "" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "" @@ -6936,7 +6953,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -6999,7 +7016,7 @@ msgstr "Ναι" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7045,7 +7062,7 @@ msgid "No contests were found in your log." msgstr "" #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "" @@ -7386,7 +7403,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7451,10 +7468,10 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "" @@ -7607,7 +7624,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "" @@ -7683,54 +7700,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "Επαναφορά QSO" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "Aποθήκευση QSO" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "Προτάσεις διακριτικού" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "Αρχείο διαγωνισμού" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "" @@ -7892,7 +7909,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "Λειτουργία διάδοσης" @@ -7977,45 +7994,58 @@ msgid "" "themes." msgstr "" -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" msgstr "" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" msgstr "" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" msgstr[0] "" msgstr[1] "" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "QSOs Αναλυτικά" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "Απαιτείται" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8026,7 +8056,7 @@ msgstr "Απαιτείται" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8049,10 +8079,10 @@ msgstr "Απαιτείται" msgid "Sent" msgstr "Απεσταλμένα" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8085,7 +8115,7 @@ msgstr "Απεσταλμένα" msgid "Received" msgstr "Ελήφθη" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8111,7 +8141,7 @@ msgstr "Ελήφθη" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8125,25 +8155,25 @@ msgstr "Ελήφθη" msgid "Requested" msgstr "Έχει ζητηθεί" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "" -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "" @@ -8308,12 +8338,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "" #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "Χειροκίνητος συγχρονισμός" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "" @@ -8659,6 +8689,7 @@ msgstr "" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "" @@ -8699,11 +8730,15 @@ msgstr "" msgid "HAMqsl" msgstr "" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -8711,140 +8746,140 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "Αλβανικά" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "Βοσνιακά" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "Βουλγαρικά" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "Κινεζικά (Απλοποιημένα)" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "Κροατικά" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "Τσέχικα" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "Ολλανδικά" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "Αγγλικά" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "Εσθονικά" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "Φινλανδικά" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "Γαλλικά" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "Γερμανικά" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "Ελληνικά" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "Ιταλικά" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "Λετονικά" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "Λιθουανικά" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "Μαυροβούνιος" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "Πολωνικά" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "Πορτογαλικά" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "Ρωσικά" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "Σερβικά" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "Ισπανικά" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "Σουηδικά" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "Τουρκικά" @@ -9230,10 +9265,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9331,7 +9366,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "" @@ -9524,62 +9559,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "" @@ -10173,7 +10208,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "" @@ -10293,7 +10328,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10314,7 +10349,7 @@ msgstr "Απευθείας" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10333,7 +10368,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10348,49 +10383,49 @@ msgstr "Ηλεκτρονική" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Διευθυντής" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "" @@ -10552,7 +10587,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10589,7 +10624,7 @@ msgstr "Σε ουρά" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11033,39 +11068,43 @@ msgstr "Ημερομηνία Λήξης" msgid "Last Upload" msgstr "Τελευταία μεταφόρτωση" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "Ληγμένο" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "Λήγει" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" -msgstr "Εγκυρος" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" +msgstr "" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "Μη συγχρονισμένο" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" "Πρέπει να ανεβάσετε ορισμένα πιστοποιητικά LoTW p12 για να χρησιμοποιήσετε " "αυτήν την περιοχή." -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "" @@ -11603,7 +11642,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -11651,7 +11690,7 @@ msgstr "Σταθμός" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12188,20 +12227,12 @@ msgstr "" msgid "Toot on Mastodon" msgstr "" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "" @@ -12226,11 +12257,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Δώστε τιμή ισχύος σε Watts. Συμπεριλάβετε μόνο αριθμούς στην εισαγωγή." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12240,25 +12271,25 @@ msgstr "Ισχύ διαβίβασης (W)" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "" @@ -12271,38 +12302,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12311,8 +12342,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "Μέθοδος" @@ -12333,7 +12364,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12377,7 +12408,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "Προηγούμενες Επαφές" @@ -12444,7 +12475,7 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -12452,7 +12483,7 @@ msgstr "" msgid "IOTA Reference" msgstr "Παραπομπή IOTA" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -12460,91 +12491,95 @@ msgstr "Παραπομπή IOTA" msgid "SOTA Reference" msgstr "Παραπομπή SOTA" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "Συχνότητα (RX)" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "Ζώνη (RX)" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "Για παράδειγμα: GM/NS-001." -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "Για παράδειγμα: DLFF-0069." -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "Για παράδειγμα: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "Για παράδειγμα: GMA" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "Για παράδειγμα: DA/NW-357" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "Για παράδειγμα: Q03" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "Όνομα δορυφόρου" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "Λειτουργία δορυφόρου" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:769 -msgid "Send" +#: application/views/qso/index.php:778 +msgid "Stop" msgstr "" #: application/views/qso/index.php:779 +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:785 +msgid "Enter text..." +msgstr "" + +#: application/views/qso/index.php:786 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:798 msgid "Suggestions" msgstr "Εισήγησης" -#: application/views/qso/index.php:786 +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "Εικόνα προφίλ" @@ -13832,6 +13867,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14838,10 +14874,6 @@ msgstr "" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "" @@ -15516,6 +15548,15 @@ msgstr "" msgid "Rcvd" msgstr "" +#~ msgid "Expired" +#~ msgstr "Ληγμένο" + +#~ msgid "Expiring" +#~ msgstr "Λήγει" + +#~ msgid "Valid" +#~ msgstr "Εγκυρος" + #~ msgid "" #~ "You don't currently have any notes, these are a fantastic way of storing " #~ "data like ATU settings, beacons and general station notes and its better " diff --git a/application/locale/es_ES/LC_MESSAGES/messages.mo b/application/locale/es_ES/LC_MESSAGES/messages.mo index 81b04d841..8fac0a221 100644 Binary files a/application/locale/es_ES/LC_MESSAGES/messages.mo and b/application/locale/es_ES/LC_MESSAGES/messages.mo differ diff --git a/application/locale/es_ES/LC_MESSAGES/messages.po b/application/locale/es_ES/LC_MESSAGES/messages.po index 54465db5d..9e854f497 100644 --- a/application/locale/es_ES/LC_MESSAGES/messages.po +++ b/application/locale/es_ES/LC_MESSAGES/messages.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" -"PO-Revision-Date: 2025-09-22 07:12+0000\n" -"Last-Translator: Fabian \n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" +"PO-Revision-Date: 2025-10-22 00:19+0000\n" +"Last-Translator: David Quental \n" "Language-Team: Spanish \n" "Language: es_ES\n" @@ -78,9 +78,9 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:79 application/controllers/Lotw.php:105 -#: application/controllers/Lotw.php:375 application/controllers/Lotw.php:398 -#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:839 -#: application/controllers/Lotw.php:944 application/controllers/Mode.php:15 +#: application/controllers/Lotw.php:383 application/controllers/Lotw.php:406 +#: application/controllers/Lotw.php:763 application/controllers/Lotw.php:847 +#: application/controllers/Lotw.php:952 application/controllers/Mode.php:15 #: application/controllers/Notes.php:11 application/controllers/Options.php:14 #: application/controllers/Oqrs.php:15 application/controllers/Oqrs.php:165 #: application/controllers/Qrbcalc.php:13 application/controllers/Qrz.php:200 @@ -89,8 +89,8 @@ msgstr "" #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:187 -#: application/controllers/Qso.php:287 application/controllers/Qso.php:308 -#: application/controllers/Qso.php:331 application/controllers/Qso.php:629 +#: application/controllers/Qso.php:318 application/controllers/Qso.php:339 +#: application/controllers/Qso.php:362 application/controllers/Qso.php:662 #: application/controllers/Radio.php:32 application/controllers/Radio.php:291 #: application/controllers/Radio.php:317 application/controllers/Radio.php:333 #: application/controllers/Reg1test.php:17 @@ -148,7 +148,7 @@ msgstr "Mapa de Gridsquares Activados" #: application/controllers/Activated_gridmap.php:31 #: application/controllers/Awards.php:1003 #: application/controllers/Awards.php:1035 -#: application/controllers/Gridmap.php:31 +#: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 #: application/views/interface_assets/footer.php:47 @@ -158,13 +158,13 @@ msgid "Gridsquares" msgstr "Cuadrículas" #: application/controllers/Activated_gridmap.php:32 -#: application/controllers/Gridmap.php:32 +#: application/controllers/Gridmap.php:33 #: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "Gridsquares confirmados" #: application/controllers/Activated_gridmap.php:33 -#: application/controllers/Gridmap.php:33 +#: application/controllers/Gridmap.php:34 #: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "Gridsquares sin confirmación" @@ -174,25 +174,25 @@ msgid "Total gridsquares activated" msgstr "Total de gridsquares activados" #: application/controllers/Activated_gridmap.php:36 -#: application/controllers/Gridmap.php:36 +#: application/controllers/Gridmap.php:37 #: application/controllers/Visitor.php:390 msgid "Fields" msgstr "Campos" #: application/controllers/Activated_gridmap.php:37 -#: application/controllers/Gridmap.php:37 +#: application/controllers/Gridmap.php:38 #: application/controllers/Visitor.php:391 msgid "Fields confirmed" msgstr "Campos confirmados" #: application/controllers/Activated_gridmap.php:38 -#: application/controllers/Gridmap.php:38 +#: application/controllers/Gridmap.php:39 #: application/controllers/Visitor.php:392 msgid "Fields not confirmed" msgstr "Campos no confirmados" #: application/controllers/Activated_gridmap.php:39 -#: application/controllers/Gridmap.php:39 +#: application/controllers/Gridmap.php:40 #: application/controllers/Visitor.php:393 msgid "Total fields worked" msgstr "Campos totales trabajados" @@ -342,13 +342,13 @@ msgstr "Diplomas - %s" #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:401 application/views/qso/index.php:302 -#: application/views/qso/index.php:593 application/views/user/edit.php:682 +#: application/views/qso/index.php:594 application/views/user/edit.php:682 #: application/views/view_log/qso.php:460 msgid "DOK" msgstr "DOK" #: application/controllers/Awards.php:176 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:130 application/views/bands/index.php:50 +#: application/views/bandmap/list.php:131 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:180 @@ -361,7 +361,7 @@ msgstr "DOK" #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 -#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:402 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 #: application/views/search/result.php:27 @@ -564,7 +564,7 @@ msgstr "Diploma Memorial Fred Fish (FFMA)" #: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:286 -#: application/views/qso/index.php:579 application/views/user/edit.php:678 +#: application/views/qso/index.php:580 application/views/user/edit.php:678 #: application/views/view_log/qso.php:425 #: application/views/view_log/qso.php:736 msgid "SIG" @@ -601,7 +601,7 @@ msgstr "73 en 73" #: application/controllers/Awards.php:2281 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" -msgstr "" +msgstr "WPX" #: application/controllers/Backup.php:15 application/views/backup/main.php:14 #: application/views/interface_assets/header.php:318 @@ -833,7 +833,7 @@ msgstr "Editar trabajo de Cron" #: application/views/debug/index.php:539 application/views/debug/index.php:544 #: application/views/debug/index.php:549 application/views/debug/index.php:554 #: application/views/debug/index.php:559 application/views/debug/index.php:564 -#: application/views/debug/index.php:569 +#: application/views/debug/index.php:569 application/views/debug/index.php:574 msgid "never" msgstr "nunca" @@ -890,7 +890,7 @@ msgstr "No funciona" msgid "SOTA CSV Export" msgstr "Exportar CSV de SOTA" -#: application/controllers/Dashboard.php:152 +#: application/controllers/Dashboard.php:154 #: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "Panel de control" @@ -943,35 +943,35 @@ msgstr "No se encontraron perfiles de estación para actualizar DCL" msgid "Key(s) Deleted." msgstr "Llave(s) eliminada(s)." -#: application/controllers/Debug.php:117 +#: application/controllers/Debug.php:118 msgid "Debug" msgstr "Depuración" -#: application/controllers/Debug.php:156 +#: application/controllers/Debug.php:157 msgid "Migrate data now" msgstr "Migrar datos ahora" -#: application/controllers/Debug.php:159 +#: application/controllers/Debug.php:160 msgid "Migration already done. Run again?" msgstr "La migración ya se ha realizado. ¿Ejecutar de nuevo?" -#: application/controllers/Debug.php:163 +#: application/controllers/Debug.php:164 msgid "No data to migrate" msgstr "No hay datos para migrar" -#: application/controllers/Debug.php:167 application/controllers/Debug.php:172 +#: application/controllers/Debug.php:168 application/controllers/Debug.php:173 msgid "No migration possible" msgstr "No es posible la migración" -#: application/controllers/Debug.php:237 +#: application/controllers/Debug.php:238 msgid "Wavelog was updated successfully!" msgstr "¡Wavelog se actualizó con éxito!" -#: application/controllers/Debug.php:255 +#: application/controllers/Debug.php:256 msgid "Selfupdate() not available. Check the Error Log." msgstr "Selfupdate() no disponible. Revisa el registro de errores." -#: application/controllers/Debug.php:299 +#: application/controllers/Debug.php:300 msgid "" "File Migration was successfull, but please check also manually. If " "everything seems right you can delete the folders 'assets/qslcard' and " @@ -981,7 +981,7 @@ msgstr "" "manualmente. Si todo parece correcto, puedes eliminar las carpetas 'assets/" "qslcard' y 'images/eqsl_card_images'." -#: application/controllers/Debug.php:302 +#: application/controllers/Debug.php:303 msgid "File Migration failed. Please check the Error Log." msgstr "" "La migración de archivos falló. Por favor, revisa el registro de errores." @@ -1023,7 +1023,7 @@ msgid "DX Calendar" msgstr "Calendario DX" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:404 +#: application/views/dashboard/index.php:409 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:310 msgid "eQSL Cards" @@ -1083,7 +1083,7 @@ msgstr "Confirmaciones" msgid "Gridsquare Map" msgstr "Mapa de Gridsquares" -#: application/controllers/Gridmap.php:34 +#: application/controllers/Gridmap.php:35 #: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "Total de gridsquares trabajados" @@ -1289,7 +1289,7 @@ msgstr "Libro de Guardia" #: application/views/awards/wapc/index.php:44 #: application/views/awards/was/index.php:56 #: application/views/awards/wpx/index.php:28 -#: application/views/gridmap/index.php:101 +#: application/views/gridmap/index.php:141 #: application/views/logbookadvanced/index.php:794 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/oqrs/qsolist.php:12 @@ -1321,8 +1321,8 @@ msgstr "QSL" #: application/views/awards/wapc/index.php:48 #: application/views/awards/was/index.php:60 #: application/views/awards/wpx/index.php:32 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:109 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:149 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 @@ -1358,8 +1358,8 @@ msgstr "LoTW" #: application/views/awards/wapc/index.php:52 #: application/views/awards/was/index.php:64 #: application/views/awards/wpx/index.php:36 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:117 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:157 #: application/views/logbookadvanced/useroptions.php:78 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 @@ -1401,23 +1401,23 @@ msgstr "eQSL" #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:110 -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:136 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 #: application/views/contesting/index.php:118 -#: application/views/contesting/index.php:264 +#: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:597 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 -#: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 -#: application/views/kml/index.php:31 +#: application/views/gridmap/index.php:104 +#: application/views/hamsat/index.php:33 application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:12 #: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/index.php:764 @@ -1467,8 +1467,8 @@ msgstr "Modo" #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:179 -#: application/views/contesting/index.php:265 +#: application/views/contesting/index.php:180 +#: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 #: application/views/logbookadvanced/index.php:767 #: application/views/logbookadvanced/useroptions.php:38 @@ -1496,8 +1496,8 @@ msgstr "RST (Enviada)" #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 -#: application/views/contesting/index.php:203 -#: application/views/contesting/index.php:266 +#: application/views/contesting/index.php:204 +#: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 #: application/views/logbookadvanced/index.php:770 #: application/views/logbookadvanced/useroptions.php:42 @@ -1605,9 +1605,9 @@ msgstr "Estado" #: application/views/awards/gridmaster/index.php:50 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:26 -#: application/views/contesting/index.php:271 +#: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 -#: application/views/gridmap/index.php:152 +#: application/views/gridmap/index.php:193 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 @@ -1651,7 +1651,7 @@ msgstr "Cuadrícula" #: application/views/dashboard/index.php:14 #: application/views/distancerecords/index.php:15 #: application/views/distances/index.php:13 -#: application/views/gridmap/index.php:154 +#: application/views/gridmap/index.php:195 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 #: application/views/logbookadvanced/index.php:869 @@ -1700,17 +1700,17 @@ msgstr "Distancia" #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:96 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:97 #: application/views/bands/create.php:24 application/views/bands/edit.php:7 #: application/views/bands/index.php:47 application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:263 +#: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:593 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:598 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 -#: application/views/gridmap/index.php:10 application/views/kml/index.php:19 +#: application/views/gridmap/index.php:26 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:6 #: application/views/logbookadvanced/index.php:281 #: application/views/logbookadvanced/index.php:773 @@ -1758,7 +1758,7 @@ msgid "Band" msgstr "Banda" #: application/controllers/Logbook.php:1324 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:128 +#: application/controllers/Radio.php:45 application/views/bandmap/list.php:129 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:776 @@ -1817,9 +1817,9 @@ msgstr "Operador" #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:252 #: application/views/lookup/index.php:47 -#: application/views/lotw_views/index.php:49 +#: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 -#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:411 #: application/views/station_profile/create.php:77 #: application/views/station_profile/edit.php:109 #: application/views/stationsetup/linkedlocations.php:17 @@ -1860,11 +1860,11 @@ msgstr "Certificado importado." msgid "Certificate Updated." msgstr "Certificado actualizado." -#: application/controllers/Lotw.php:381 +#: application/controllers/Lotw.php:389 msgid "Certificate Deleted." msgstr "Certificado eliminado." -#: application/controllers/Lotw.php:410 +#: application/controllers/Lotw.php:418 #, php-format msgid "" "Found no certificate in file %s. If the filename contains 'key-only' this is " @@ -1874,52 +1874,52 @@ msgstr "" "contiene 'key-only', esto suele ser una solicitud de certificado que aún no " "ha sido procesada por LoTW." -#: application/controllers/Lotw.php:646 +#: application/controllers/Lotw.php:654 msgid "LoTW ADIF Information" msgstr "Información ADIF de LoTW" -#: application/controllers/Lotw.php:812 application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:820 application/controllers/Lotw.php:823 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "Error de inicio de sesión en LoTW para el usuario %s: %s." -#: application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:823 msgid "Username/password incorrect" msgstr "Nombre de usuario/contraseña incorrectos" -#: application/controllers/Lotw.php:818 +#: application/controllers/Lotw.php:826 msgid "LoTW login OK!" msgstr "¡Inicio de sesión en LoTW correcto!" -#: application/controllers/Lotw.php:822 +#: application/controllers/Lotw.php:830 msgid "LoTW currently not available. Try again later." msgstr "LoTW no está disponible actualmente. Inténtalo de nuevo más tarde." -#: application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 msgid "No LoTW credentials provided." msgstr "No se proporcionaron credenciales de LoTW." -#: application/controllers/Lotw.php:845 +#: application/controllers/Lotw.php:853 msgid "LoTW ADIF Import" msgstr "Importación ADIF de LoTW" -#: application/controllers/Lotw.php:871 application/controllers/Lotw.php:979 +#: application/controllers/Lotw.php:879 application/controllers/Lotw.php:987 msgid "You have not defined your ARRL LoTW credentials!" msgstr "¡No has definido tus credenciales de ARRL LoTW!" -#: application/controllers/Lotw.php:946 +#: application/controllers/Lotw.php:954 msgid "LoTW .TQ8 Upload" msgstr "Subir de .TQ8 en LoTW" -#: application/controllers/Lotw.php:1024 +#: application/controllers/Lotw.php:1032 msgid "Your ARRL username and/or password is incorrect." msgstr "Tu nombre de usuario y/o contraseña de ARRL es incorrecto." -#: application/controllers/Lotw.php:1043 application/controllers/Lotw.php:1048 +#: application/controllers/Lotw.php:1051 application/controllers/Lotw.php:1056 msgid "LoTW .TQ8 Sent" msgstr "LoTW .TQ8 enviado" -#: application/controllers/Lotw.php:1055 +#: application/controllers/Lotw.php:1063 msgid "LoTW .TQ8 Not Sent" msgstr "LoTW .TQ8 No enviado" @@ -1940,7 +1940,7 @@ msgstr "Modo de edición" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:409 application/views/qso/index.php:71 -#: application/views/qso/index.php:642 application/views/view_log/qso.php:14 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:14 #: application/views/view_log/qso.php:749 msgid "Notes" msgstr "Notas" @@ -1965,12 +1965,16 @@ msgid "" "Contacts note title must be a callsign only, without prefix/suffix. " "Suggested: %s" msgstr "" +"El título de la nota de contactos debe ser solo un indicativo de llamada, " +"sin prefijo/sufijo. Sugerido: %s" #: application/controllers/Notes.php:284 application/controllers/Notes.php:311 msgid "" "A note with this callsign already exists in your Contacts. Please enter a " "unique callsign." msgstr "" +"Ya existe una nota con este indicativo en tus contactos. Por favor, " +"introduce un indicativo único." #: application/controllers/Options.php:23 #: application/controllers/Options.php:33 @@ -2200,8 +2204,8 @@ msgstr "Importación de QSL de QRZ" msgid "QRZ ADIF Information" msgstr "Información ADIF de QRZ" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:356 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:361 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:287 msgid "QSL Cards" @@ -2223,15 +2227,15 @@ msgstr "Imprimir QSLs solicitadas" msgid "Add QSO" msgstr "Agregar QSO" -#: application/controllers/Qso.php:690 +#: application/controllers/Qso.php:723 msgid "You have to be logged in to access this URL." msgstr "Debes tener sesión iniciada para acceder a esta URL." -#: application/controllers/Qso.php:696 +#: application/controllers/Qso.php:729 msgid "Call Transfer" msgstr "Transferencia de llamada" -#: application/controllers/Qso.php:703 +#: application/controllers/Qso.php:736 msgid "No callsign provided." msgstr "No se proporcionó indicativo." @@ -2261,7 +2265,7 @@ msgid "Options" msgstr "Opciones" #: application/controllers/Radio.php:50 application/views/debug/index.php:312 -#: application/views/qso/index.php:749 +#: application/views/qso/index.php:750 msgid "Settings" msgstr "Configuraciones" @@ -2270,8 +2274,8 @@ msgid "UNKNOWN" msgstr "DESCONOCIDO" #: application/controllers/Radio.php:98 -#: application/views/contesting/index.php:161 -#: application/views/qso/index.php:354 +#: application/views/contesting/index.php:162 +#: application/views/qso/index.php:355 msgid "last updated" msgstr "última actualización" @@ -2309,13 +2313,13 @@ msgstr "Editar" #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:63 -#: application/views/interface_assets/footer.php:2802 -#: application/views/interface_assets/footer.php:2820 -#: application/views/interface_assets/footer.php:2841 -#: application/views/interface_assets/footer.php:2859 +#: application/views/interface_assets/footer.php:2900 +#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:2939 +#: application/views/interface_assets/footer.php:2957 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:734 -#: application/views/lotw_views/index.php:111 +#: application/views/lotw_views/index.php:128 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 #: application/views/qslcard/index.php:76 @@ -2527,7 +2531,7 @@ msgstr "No permitido" #: application/controllers/Stationsetup.php:156 #: application/controllers/Stationsetup.php:177 #: application/controllers/Stationsetup.php:478 -#: application/views/qso/index.php:708 application/views/simplefle/index.php:39 +#: application/views/qso/index.php:709 application/views/simplefle/index.php:39 #: application/views/widgets/on_air.php:102 msgid "Error" msgstr "Error" @@ -2797,11 +2801,11 @@ msgstr "Actualización de WWFF fallida. Resultado: " #: application/controllers/Update.php:555 msgid "HAMqsl Update complete. Result: " -msgstr "" +msgstr "Actualización de HAMqsl completa. Resultado: " #: application/controllers/Update.php:557 msgid "HAMqsl Update failed. Result: " -msgstr "" +msgstr "Actualización de HAMqsl fallida. Resultado: " #: application/controllers/Update.php:590 msgid "POTA Update complete. Result: " @@ -2827,6 +2831,14 @@ msgstr "Actualización de LoTW SAT" msgid "Update of Hams of Note" msgstr "Actualización de Radioaficionados Destacados" +#: application/controllers/Update.php:718 +msgid "VUCC Grid file update complete. Result: " +msgstr "" + +#: application/controllers/Update.php:720 +msgid "VUCC Grid file update failed. Result: " +msgstr "" + #: application/controllers/User.php:50 #: application/views/interface_assets/header.php:306 msgid "User Accounts" @@ -2958,7 +2970,7 @@ msgstr "El usuario %s cerró sesión." msgid "Station Name" msgstr "Nombre de la estación" -#: application/controllers/User.php:1262 application/views/debug/index.php:594 +#: application/controllers/User.php:1262 application/views/debug/index.php:599 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:61 #: application/views/station_profile/edit.php:77 @@ -3353,6 +3365,8 @@ msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " "imported. It's invalid" msgstr "" +"QSO en %s: Intentaste importar un QSO sin la banda. Este QSO no fue " +"importado. Es inválido" #: application/models/Logbook_model.php:4388 msgid "the qslrdate is invalid (YYYYMMDD)" @@ -3424,7 +3438,7 @@ msgstr "QSO actualizado" #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 #: application/views/dashboard/index.php:19 -#: application/views/gridmap/index.php:156 +#: application/views/gridmap/index.php:197 #: application/views/logbookadvanced/index.php:15 #: application/views/user/edit.php:256 application/views/user/edit.php:279 #: application/views/user/edit.php:302 application/views/user/edit.php:325 @@ -3435,7 +3449,7 @@ msgstr "Dirección" #: application/models/Note.php:7 msgid "Contacts" -msgstr "" +msgstr "Contactos" #: application/models/Note.php:8 application/views/qso/index.php:61 #: application/views/statistics/index.php:46 @@ -3450,6 +3464,7 @@ msgstr "Antenas" #: application/models/Note.php:45 application/models/Note.php:69 msgid "In Contacts category, the titles of the notes need to be unique." msgstr "" +"En la categoría de Contactos, los títulos de las notas deben ser únicos." #: application/models/Update_model.php:352 msgid "Newer release available:" @@ -3524,7 +3539,7 @@ msgid "Accumulated number of WAJA worked" msgstr "Número acumulado de WAJA trabajados" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:317 +#: application/views/dashboard/index.php:322 #: application/views/dayswithqso/index.php:42 #: application/views/dayswithqso/index.php:82 #: application/views/statistics/index.php:19 @@ -3541,7 +3556,7 @@ msgid "Yearly" msgstr "Anualmente" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:327 #: application/views/visitor/index.php:255 msgid "Month" msgstr "Mes" @@ -3593,8 +3608,8 @@ msgstr "Diferencia" #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:86 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:79 application/views/bandmap/list.php:87 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:113 #: application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 @@ -3617,14 +3632,15 @@ msgstr "Diferencia" #: application/views/dxatlas/index.php:60 #: application/views/dxatlas/index.php:82 #: application/views/dxatlas/index.php:94 -#: application/views/gridmap/index.php:13 -#: application/views/gridmap/index.php:28 -#: application/views/gridmap/index.php:41 -#: application/views/gridmap/index.php:70 -#: application/views/gridmap/index.php:83 +#: application/views/gridmap/index.php:29 +#: application/views/gridmap/index.php:44 +#: application/views/gridmap/index.php:78 +#: application/views/gridmap/index.php:93 +#: application/views/gridmap/index.php:107 +#: application/views/gridmap/index.php:121 #: application/views/interface_assets/footer.php:46 -#: application/views/interface_assets/footer.php:1692 -#: application/views/interface_assets/footer.php:1831 +#: application/views/interface_assets/footer.php:1790 +#: application/views/interface_assets/footer.php:1929 #: 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 @@ -3711,7 +3727,7 @@ msgstr "Período" #: application/views/accumulate/index.php:80 #: application/views/callstats/index.php:65 #: application/views/distances/index.php:53 -#: application/views/gridmap/index.php:38 +#: application/views/gridmap/index.php:41 #: application/views/logbookadvanced/edit.php:14 #: application/views/logbookadvanced/index.php:310 #: application/views/logbookadvanced/index.php:857 @@ -3731,7 +3747,7 @@ msgstr "Todo menos SAT" #: application/views/accumulate/index.php:85 #: application/views/callstats/index.php:69 #: application/views/distances/index.php:58 -#: application/views/gridmap/index.php:42 +#: application/views/gridmap/index.php:45 #: application/views/logbookadvanced/edit.php:207 #: application/views/logbookadvanced/edit.php:215 #: application/views/logbookadvanced/index.php:406 @@ -3743,9 +3759,9 @@ msgstr "Ninguno/Vacío" #: application/views/callstats/index.php:71 application/views/csv/index.php:95 #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 +#: application/views/gridmap/index.php:47 application/views/kml/index.php:80 #: application/views/logbookadvanced/index.php:314 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:477 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:478 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 #: application/views/view_log/qso.php:233 @@ -3757,9 +3773,9 @@ msgstr "Dispersión de aeronaves" #: application/views/callstats/index.php:72 application/views/csv/index.php:96 #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 +#: application/views/gridmap/index.php:48 application/views/kml/index.php:81 #: application/views/logbookadvanced/index.php:315 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:478 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:479 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 #: application/views/view_log/qso.php:236 @@ -3771,9 +3787,9 @@ msgstr "Aurora" #: application/views/callstats/index.php:73 application/views/csv/index.php:97 #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 +#: application/views/gridmap/index.php:49 application/views/kml/index.php:82 #: application/views/logbookadvanced/index.php:316 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:479 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:480 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 #: application/views/view_log/qso.php:239 @@ -3785,9 +3801,9 @@ msgstr "Aurora-E" #: application/views/callstats/index.php:74 application/views/csv/index.php:98 #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 +#: application/views/gridmap/index.php:50 application/views/kml/index.php:83 #: application/views/logbookadvanced/index.php:317 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:480 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:481 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 #: application/views/view_log/qso.php:242 @@ -3799,9 +3815,9 @@ msgstr "Retrodispersión" #: application/views/callstats/index.php:75 application/views/csv/index.php:99 #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 +#: application/views/gridmap/index.php:51 application/views/kml/index.php:84 #: application/views/logbookadvanced/index.php:318 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:481 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:482 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 #: application/views/view_log/qso.php:245 @@ -3813,9 +3829,9 @@ msgstr "EchoLink" #: application/views/callstats/index.php:76 application/views/csv/index.php:100 #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 +#: application/views/gridmap/index.php:52 application/views/kml/index.php:85 #: application/views/logbookadvanced/index.php:319 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:482 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:483 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 #: application/views/view_log/qso.php:248 @@ -3827,9 +3843,9 @@ msgstr "Tierra-Luna-Tierra" #: application/views/callstats/index.php:77 application/views/csv/index.php:101 #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 +#: application/views/gridmap/index.php:53 application/views/kml/index.php:86 #: application/views/logbookadvanced/index.php:320 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:483 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:484 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 #: application/views/view_log/qso.php:251 @@ -3841,9 +3857,9 @@ msgstr "Sporadic E" #: application/views/callstats/index.php:78 application/views/csv/index.php:102 #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 +#: application/views/gridmap/index.php:54 application/views/kml/index.php:87 #: application/views/logbookadvanced/index.php:321 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:484 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:485 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 #: application/views/view_log/qso.php:254 @@ -3855,9 +3871,9 @@ msgstr "Irregularidades alineadas con el campo" #: application/views/callstats/index.php:79 application/views/csv/index.php:103 #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 +#: application/views/gridmap/index.php:55 application/views/kml/index.php:88 #: application/views/logbookadvanced/index.php:322 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:485 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:486 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 #: application/views/view_log/qso.php:257 @@ -3869,9 +3885,9 @@ msgstr "Reflexión F2" #: application/views/callstats/index.php:80 application/views/csv/index.php:104 #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 +#: application/views/gridmap/index.php:56 application/views/kml/index.php:89 #: application/views/logbookadvanced/index.php:323 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:486 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:487 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 #: application/views/view_log/qso.php:260 @@ -3883,9 +3899,9 @@ msgstr "Asistido por Internet" #: application/views/callstats/index.php:81 application/views/csv/index.php:105 #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 +#: application/views/gridmap/index.php:57 application/views/kml/index.php:90 #: application/views/logbookadvanced/index.php:324 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:487 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:488 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 #: application/views/view_log/qso.php:263 @@ -3897,9 +3913,9 @@ msgstr "Ionoscatter" #: application/views/callstats/index.php:82 application/views/csv/index.php:106 #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 +#: application/views/gridmap/index.php:58 application/views/kml/index.php:91 #: application/views/logbookadvanced/index.php:325 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:488 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:489 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 #: application/views/view_log/qso.php:266 @@ -3911,9 +3927,9 @@ msgstr "IRLP" #: application/views/callstats/index.php:83 application/views/csv/index.php:107 #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 +#: application/views/gridmap/index.php:59 application/views/kml/index.php:92 #: application/views/logbookadvanced/index.php:326 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:489 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:490 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 #: application/views/view_log/qso.php:269 @@ -3925,9 +3941,9 @@ msgstr "Dispersión meteórica" #: application/views/callstats/index.php:84 application/views/csv/index.php:108 #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 +#: application/views/gridmap/index.php:60 application/views/kml/index.php:93 #: application/views/logbookadvanced/index.php:327 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:490 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:491 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 #: application/views/view_log/qso.php:272 @@ -3939,9 +3955,9 @@ msgstr "Repetidor o transpondedor terrestre o atmosférico" #: application/views/callstats/index.php:85 application/views/csv/index.php:109 #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 +#: application/views/gridmap/index.php:61 application/views/kml/index.php:94 #: application/views/logbookadvanced/index.php:328 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:491 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:492 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 #: application/views/view_log/qso.php:275 @@ -3953,9 +3969,9 @@ msgstr "Dispersión por lluvia" #: application/views/callstats/index.php:86 application/views/csv/index.php:110 #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 +#: application/views/gridmap/index.php:62 application/views/kml/index.php:95 #: application/views/logbookadvanced/index.php:329 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:492 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:493 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 #: application/views/view_log/qso.php:278 @@ -3967,9 +3983,9 @@ msgstr "Satélite" #: application/views/callstats/index.php:87 application/views/csv/index.php:111 #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 +#: application/views/gridmap/index.php:63 application/views/kml/index.php:96 #: application/views/logbookadvanced/index.php:330 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:493 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:494 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 #: application/views/view_log/qso.php:281 @@ -3981,9 +3997,9 @@ msgstr "Trans-ecuatorial" #: application/views/callstats/index.php:88 application/views/csv/index.php:112 #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 +#: application/views/gridmap/index.php:64 application/views/kml/index.php:97 #: application/views/logbookadvanced/index.php:331 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:494 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:495 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 #: application/views/view_log/qso.php:284 @@ -4038,7 +4054,7 @@ msgstr "Mostrar" #: application/views/components/hamsat/table.php:29 #: application/views/distancerecords/index.php:14 #: application/views/distances/index.php:34 -#: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 +#: application/views/gridmap/index.php:73 application/views/hamsat/index.php:32 #: application/views/interface_assets/header.php:198 #: application/views/logbookadvanced/edit.php:17 #: application/views/logbookadvanced/index.php:292 @@ -4061,7 +4077,7 @@ msgstr "Satélite" #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 -#: application/views/gridmap/index.php:80 +#: application/views/gridmap/index.php:88 #: application/views/logbookadvanced/index.php:301 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 @@ -4074,7 +4090,7 @@ msgstr "Órbita" #: application/views/activated_gridmap/index.php:50 #: application/views/awards/wab/index.php:65 -#: application/views/gridmap/index.php:92 +#: application/views/gridmap/index.php:132 #: application/views/timeline/index.php:52 msgid "Confirmation" msgstr "Confirmación" @@ -4096,24 +4112,24 @@ msgstr "Confirmación" #: application/views/awards/wapc/index.php:56 #: application/views/awards/was/index.php:68 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:125 application/views/user/edit.php:810 +#: application/views/gridmap/index.php:165 application/views/user/edit.php:810 msgid "QRZ.com" msgstr "QRZ.com" #: application/views/activated_gridmap/index.php:86 -#: application/views/gridmap/index.php:130 +#: application/views/gridmap/index.php:17 msgid "Plot" msgstr "Dibujar" #: application/views/activated_gridmap/index.php:87 -#: application/views/gridmap/index.php:131 +#: application/views/gridmap/index.php:18 msgid "Clear Markers" msgstr "Borrar marcadores" #: application/views/activated_gridmap/index.php:102 #: application/views/awards/ffma/index.php:31 #: application/views/awards/gridmaster/index.php:46 -#: application/views/gridmap/index.php:148 +#: application/views/gridmap/index.php:189 #: application/views/logbookadvanced/index.php:10 msgid "Latitude" msgstr "Latitud" @@ -4121,7 +4137,7 @@ msgstr "Latitud" #: application/views/activated_gridmap/index.php:104 #: application/views/awards/ffma/index.php:33 #: application/views/awards/gridmaster/index.php:48 -#: application/views/gridmap/index.php:150 +#: application/views/gridmap/index.php:191 #: application/views/logbookadvanced/index.php:11 msgid "Longitude" msgstr "Longitud" @@ -4182,8 +4198,8 @@ msgstr "¡Nada encontrado!" #: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:170 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:244 +#: application/views/contesting/index.php:171 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:249 #: application/views/dcl_views/index.php:27 #: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 @@ -4288,12 +4304,12 @@ msgstr "Hay datos diferentes para DOKs en su libro comparados con DCL" #: application/views/awards/pota/index.php:33 #: application/views/awards/sota/index.php:31 #: application/views/awards/wwff/index.php:33 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:25 #: application/views/contesting/index.php:103 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:239 -#: application/views/debug/index.php:589 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:244 +#: application/views/debug/index.php:594 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4334,12 +4350,12 @@ msgstr "Fecha" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:590 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:247 +#: application/views/debug/index.php:595 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4365,10 +4381,10 @@ msgstr "Tiempo Test" #: application/views/adif/dcl_success.php:31 #: application/views/adif/pota_success.php:31 #: application/views/awards/vucc/band.php:18 -#: application/views/bandmap/list.php:129 -#: application/views/contesting/index.php:262 +#: application/views/bandmap/list.php:130 +#: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:591 application/views/debug/index.php:626 +#: application/views/debug/index.php:596 application/views/debug/index.php:631 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4410,8 +4426,7 @@ msgstr "Importación CBR" #: application/views/adif/import.php:73 application/views/adif/import.php:379 #: application/views/adif/import.php:400 application/views/api/index.php:22 #: application/views/dashboard/index.php:180 -#: application/views/dashboard/index.php:209 -#: application/views/dashboard/index.php:214 +#: application/views/dashboard/index.php:213 #: application/views/eqsl/import.php:46 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 #: application/views/options/maptiles.php:48 @@ -4430,7 +4445,7 @@ msgstr "El tamaño máximo del archivo subido es " #: application/views/adif/import.php:349 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:193 application/views/debug/index.php:210 -#: application/views/debug/index.php:581 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:586 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 @@ -4481,7 +4496,7 @@ msgstr "Importar QSOs duplicadas" #: application/views/adif/import.php:126 msgid "Select if QSOs shall be imported, even if they already exist." -msgstr "" +msgstr "Selecciona si los QSOs deben importarse, incluso si ya existen." #: application/views/adif/import.php:131 msgid "Use DXCC information from ADIF" @@ -4498,7 +4513,7 @@ msgstr "" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 #: application/views/interface_assets/footer.php:580 -#: application/views/interface_assets/footer.php:2564 +#: application/views/interface_assets/footer.php:2662 msgid "DANGER" msgstr "PELIGRO" @@ -4706,6 +4721,8 @@ msgid "" "An example for a tool to export the POTA hunter log in ADIF format is %s " "made by AF0G and available on GitHub." msgstr "" +"Un ejemplo de una herramienta para exportar el registro de cazadores POTA en " +"formato ADIF es %s hecho por AF0G y disponible en GitHub." #: application/views/adif/import.php:399 msgid "" @@ -4724,7 +4741,7 @@ msgstr "" #: application/views/adif/import.php:399 #: application/views/adif/import_success.php:40 #: application/views/dcl_views/index.php:76 -#: application/views/lotw_views/index.php:137 +#: application/views/lotw_views/index.php:154 msgid "Information" msgstr "Información" @@ -4871,25 +4888,27 @@ msgstr "Resultados de la actualización de POTA" #: application/views/adif/pota_success.php:17 msgid "POTA references for existing QSOs has been updated." -msgstr "" +msgstr "Las referencias de POTA para QSOs existentes se han actualizado." #: application/views/adif/pota_success.php:25 msgid "POTA Update Errors" -msgstr "" +msgstr "Errores de actualización de POTA" #: application/views/adif/pota_success.php:26 msgid "" "There is different data for POTA references in your log compared to imported " "data or QSO data could not be matched" msgstr "" +"Hay datos diferentes para las referencias POTA en tu registro en comparación " +"con los datos importados o los datos QSO no pudieron ser emparejados" #: application/views/adif/pota_success.php:34 msgid "POTA REF in Log" -msgstr "" +msgstr "Referencia POTA en el registro" #: application/views/adif/pota_success.php:35 msgid "POTA REF in ADIF" -msgstr "" +msgstr "Referencia POTA en ADIF" #: application/views/adif/pota_success.php:36 #: application/views/api/index.php:37 application/views/cron/index.php:67 @@ -5241,7 +5260,7 @@ msgstr "Condados confirmados" #: application/views/awards/wapc/index.php:145 #: application/views/awards/was/index.php:180 #: application/views/awards/wpx/index.php:172 -#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:317 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -5261,7 +5280,8 @@ msgstr "Total" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:151 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/dxatlas/index.php:80 +#: application/views/gridmap/index.php:199 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 #: application/views/logbookadvanced/index.php:335 @@ -5269,7 +5289,7 @@ msgstr "Total" #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:308 -#: application/views/qso/index.php:450 +#: application/views/qso/index.php:451 #: application/views/search/cqzones_result.php:13 #: application/views/station_profile/create.php:110 #: application/views/station_profile/edit.php:157 @@ -5332,9 +5352,9 @@ msgstr "Premios - CQ WAZ" #: application/views/awards/wab/list.php:6 #: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:81 -#: application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:457 +#: application/views/bandmap/list.php:82 +#: application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:462 #: application/views/interface_assets/footer.php:43 #: application/views/search/result.php:32 #: application/views/visitor/index.php:270 @@ -5344,9 +5364,9 @@ msgstr "Confirmados" #: application/views/awards/cq/index.php:35 #: application/views/awards/itu/index.php:35 #: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:80 -#: application/views/dashboard/index.php:335 -#: application/views/dashboard/index.php:451 +#: application/views/bandmap/list.php:81 +#: application/views/dashboard/index.php:340 +#: application/views/dashboard/index.php:456 #: application/views/search/result.php:35 #: application/views/visitor/index.php:266 msgid "Worked" @@ -5424,7 +5444,7 @@ msgstr "Mostrar QSO con QSL fisica" #: application/views/awards/iota/index.php:62 #: application/views/awards/itu/index.php:57 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2543 +#: application/views/interface_assets/footer.php:2641 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -5681,6 +5701,7 @@ msgstr "" #: application/views/awards/dxcc/index.php:28 #: application/views/awards/wpx/index.php:13 +#: application/views/gridmap/index.php:16 #: application/views/logbookadvanced/index.php:221 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" @@ -5698,12 +5719,12 @@ msgstr "Incluir eliminado(s)" #: application/views/awards/dxcc/index.php:97 #: application/views/awards/iota/index.php:88 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:88 +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:89 #: application/views/logbookadvanced/edit.php:217 #: application/views/logbookadvanced/index.php:408 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 -#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:425 +#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:426 #: application/views/view_log/qso.php:350 msgid "Antarctica" msgstr "Antártida" @@ -5711,12 +5732,12 @@ msgstr "Antártida" #: application/views/awards/dxcc/index.php:101 #: application/views/awards/iota/index.php:92 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:87 +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:88 #: application/views/logbookadvanced/edit.php:216 #: application/views/logbookadvanced/index.php:407 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 -#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:424 +#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:425 #: application/views/view_log/qso.php:347 msgid "Africa" msgstr "África" @@ -5724,12 +5745,12 @@ msgstr "África" #: application/views/awards/dxcc/index.php:105 #: application/views/awards/iota/index.php:96 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:89 +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:90 #: application/views/logbookadvanced/edit.php:219 #: application/views/logbookadvanced/index.php:410 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 -#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:426 +#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:427 #: application/views/view_log/qso.php:353 msgid "Asia" msgstr "Asia." @@ -5737,12 +5758,12 @@ msgstr "Asia." #: application/views/awards/dxcc/index.php:109 #: application/views/awards/iota/index.php:100 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:90 +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:91 #: application/views/logbookadvanced/edit.php:220 #: application/views/logbookadvanced/index.php:411 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 -#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:427 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:428 #: application/views/view_log/qso.php:356 msgid "Europe" msgstr "Europa" @@ -5750,12 +5771,12 @@ msgstr "Europa" #: application/views/awards/dxcc/index.php:113 #: application/views/awards/iota/index.php:104 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:91 +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:92 #: application/views/logbookadvanced/edit.php:218 #: application/views/logbookadvanced/index.php:409 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 -#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:428 +#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:429 #: application/views/view_log/qso.php:359 msgid "North America" msgstr "América del Norte" @@ -5763,12 +5784,12 @@ msgstr "América del Norte" #: application/views/awards/dxcc/index.php:117 #: application/views/awards/iota/index.php:108 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:93 +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:94 #: application/views/logbookadvanced/edit.php:221 #: application/views/logbookadvanced/index.php:412 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 -#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:430 +#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:431 #: application/views/view_log/qso.php:365 msgid "South America" msgstr "América del Sur" @@ -5776,12 +5797,12 @@ msgstr "América del Sur" #: application/views/awards/dxcc/index.php:121 #: application/views/awards/iota/index.php:112 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:92 +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:93 #: application/views/logbookadvanced/edit.php:222 #: application/views/logbookadvanced/index.php:413 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 -#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:429 +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:430 #: application/views/view_log/qso.php:362 msgid "Oceania" msgstr "Oceanía" @@ -6100,7 +6121,7 @@ msgstr "Mostrar mapa de IOTA" #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 #: application/views/contesting/index.php:64 -#: application/views/contesting/index.php:228 +#: 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:782 @@ -6128,13 +6149,14 @@ msgstr "Eliminado" #: application/views/awards/itu/index.php:3 #: application/views/awards/itu/index.php:151 +#: application/views/gridmap/index.php:201 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 #: application/views/logbookadvanced/index.php:349 #: application/views/logbookadvanced/index.php:827 #: application/views/logbookadvanced/useroptions.php:118 #: application/views/lookup/index.php:8 application/views/qso/edit_ajax.php:316 -#: application/views/qso/index.php:460 +#: application/views/qso/index.php:461 #: application/views/search/ituzones_result.php:13 #: application/views/station_profile/create.php:124 #: application/views/station_profile/edit.php:174 @@ -6231,7 +6253,7 @@ msgid "City" msgstr "Ciudad" #: application/views/awards/jcc/index.php:188 -#: application/views/dashboard/index.php:447 +#: application/views/dashboard/index.php:452 #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 @@ -6282,7 +6304,7 @@ msgstr "" "parque)" #: application/views/awards/pota/index.php:32 -#: application/views/qso/index.php:274 application/views/qso/index.php:567 +#: application/views/qso/index.php:274 application/views/qso/index.php:568 #: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:276 #: application/views/user/edit.php:674 application/views/view_log/qso.php:403 @@ -6524,7 +6546,7 @@ msgstr "Premios - Trabajado Todos los Continentes (WAC)" #: application/views/logbookadvanced/index.php:866 #: application/views/logbookadvanced/useroptions.php:170 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 -#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:422 #: application/views/view_log/qso.php:342 msgid "Continent" msgstr "Continente" @@ -6781,7 +6803,7 @@ msgstr "Mostrar mapa WAS" #: application/views/awards/wpx/index.php:76 msgid "Band / Satellite / Orbit" -msgstr "" +msgstr "Banda / Satélite / Órbita" #: application/views/awards/wpx/wpx_details.php:21 #: application/views/oqrs/showrequests.php:86 @@ -6818,7 +6840,7 @@ msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" msgstr "Campos tomados para este premio: WWFF (ADIF: WWFF_REF)" #: application/views/awards/wwff/index.php:32 -#: application/views/qso/index.php:262 application/views/qso/index.php:554 +#: application/views/qso/index.php:262 application/views/qso/index.php:555 #: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:263 #: application/views/user/edit.php:670 application/views/view_log/qso.php:396 @@ -6894,7 +6916,7 @@ msgstr "Lista de Bandas" msgid "None" msgstr "Ninguno" -#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:84 +#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:85 msgid "Spots de" msgstr "Spots de" @@ -6908,40 +6930,46 @@ msgstr "" msgid "Click to prepare logging." msgstr "Haz clic para preparar el registro." -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:70 +#: application/views/contesting/index.php:160 +#: application/views/qso/index.php:353 +msgid "WebSocket (Requires WLGate>1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "Estado DXCC" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "No logrados" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "Trabajado, no confirmado" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "Fonía" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "CW" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "Digi" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "WAC" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "Observador" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6949,7 +6977,7 @@ msgstr "Observador" msgid "Message" msgstr "Mensaje" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "Última vez trabajado" @@ -7038,11 +7066,13 @@ msgid "" "Changes made here are instance-wide and will affect EVERY User. You see " "this, because you're an instance-admin" msgstr "" +"Aqui se realizan cambios a nivel de instancia y afectarán a TODOS los " +"usuarios. Ves esto porque eres un administrador de instancia" #: application/views/bands/edit.php:2 application/views/update/index.php:35 #: application/views/update/index.php:59 msgid "WARNING" -msgstr "" +msgstr "ADVERTENCIA" #: application/views/bands/index.php:38 msgid "" @@ -7366,7 +7396,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7429,7 +7459,7 @@ msgstr "Sí" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7475,7 +7505,7 @@ msgid "No contests were found in your log." msgstr "No se encontraron concursos en tu registro." #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "Todo excepto SAT" @@ -7737,7 +7767,7 @@ msgstr "Subir libro de registro" #: application/views/eqsl/result.php:11 application/views/eqsl/tools.php:7 #: application/views/qrz/export.php:14 msgid "Download QSLs" -msgstr "" +msgstr "Descargar QSLs" #: application/views/clublog/export.php:24 msgid "The next automatic Upload to Clublog will happen at: " @@ -7803,10 +7833,12 @@ msgid "" "If no startdate is given then the QSLs after last confirmation will be " "downloaded/updated!" msgstr "" +"Si no se da una fecha de inicio, las QSLs después de la última confirmación " +"serán descargadas/actualizadas!" #: application/views/clublog/export.php:78 msgid "Download QSLs from Clublog" -msgstr "" +msgstr "Descargar QSLs desde Clublog" #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 @@ -7835,7 +7867,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "No hay activaciones próximas. Por favor vuelve a revisar más tarde." #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7900,10 +7932,10 @@ msgid "Show Details" msgstr "Mostrar detalles" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "Hoy" @@ -8063,7 +8095,7 @@ msgstr "Número de serie + Cuadrícula + Intercambio" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "Indicativo del Operador" @@ -8144,54 +8176,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "Por No. de Serie" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "Por No. de Serie (E)" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "Gridsquare (E)" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "Intercambio (Env)" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "Por No. de Serie (R)" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "Cuadrícula (R)" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "Intercambio (Recib)" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "Reinicializar QSO" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "Guardar QSO" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "Indicativos sugeridos" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "Libro de guardia del concurso" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "Cuadrícula VUCC" @@ -8275,7 +8307,7 @@ msgstr "Cómo funciona" #: application/views/cron/index.php:21 #, php-format msgid "For more information or help, take a look in the %s." -msgstr "" +msgstr "Para más información o ayuda, echa un vistazo en el %s." #: application/views/cron/index.php:28 msgid "" @@ -8363,7 +8395,7 @@ msgstr "¡Solo se exportarán QSOs con información SOTA!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "Modo de propagación" @@ -8381,6 +8413,8 @@ msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your version " "is: %s." msgstr "" +"Necesitas actualizar tu versión de PHP. La versión mínima es %s. Tu versión " +"es %s." #: application/views/dashboard/index.php:118 #, php-format @@ -8416,12 +8450,16 @@ msgid "" "Your active station location is not linked to your active station logbook. " "Click %shere%s to do it." msgstr "" +"La ubicación de tu estación activa no está vinculada a tu libro de bitácora " +"de estación activa. Haz clic %saquí%s para hacerlo." #: application/views/dashboard/index.php:163 #, php-format msgctxt "Dashboard Warning" msgid "You have no station linked to your logbook. Click %shere%s to do it." msgstr "" +"No tienes ninguna estación vinculada a tu libro de registro. Haz clic " +"%saquí%s para hacerlo." #: application/views/dashboard/index.php:173 #, php-format @@ -8436,6 +8474,8 @@ msgid "" "Don't loose your streak - You have already had at least one QSO for the last " "%s consecutive days." msgstr "" +"No pierdas tu racha - Ya has tenido al menos un QSO durante los últimos %s " +"días consecutivos." #: application/views/dashboard/index.php:184 msgid "You have made no QSOs today; time to turn on the radio!" @@ -8453,45 +8493,58 @@ msgstr "" "Tienes temas sin modo de tema definido. Por favor, pide al administrador que " "edite los temas." -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" -msgstr "¡Al menos uno de tus %scertificados LoTW%s ha expirado!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" +msgstr "" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" -msgstr "¡Al menos uno de tus %scertificados LoTW%s está a punto de expirar!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" +msgstr "" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" msgstr[0] "Se muestra un máximo de %d contactos anteriores" msgstr[1] "Se muestran un máximo de %d contactos anteriores" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "Desglose de QSO" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "Desglose de DXCCs" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "Solicitadas" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8502,7 +8555,7 @@ msgstr "Solicitadas" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8525,10 +8578,10 @@ msgstr "Solicitadas" msgid "Sent" msgstr "Enviado" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8561,7 +8614,7 @@ msgstr "Enviado" msgid "Received" msgstr "Recibido" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8587,7 +8640,7 @@ msgstr "Recibido" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8601,27 +8654,27 @@ msgstr "Recibido" msgid "Requested" msgstr "Solicitadas" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "Libro de Registro del Mundo" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "Cuadrículas VUCC" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" -msgstr "" +msgstr "Datos solares y propagación" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." -msgstr "" +msgstr "Última actualización a las %s." -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." -msgstr "" +msgstr "Datos proporcionados por HAMqsl." #: application/views/dayswithqso/index.php:3 msgid "Number of QSOs for this day of the week" @@ -8739,11 +8792,11 @@ msgstr "Opciones de importación" #: application/views/dcl_views/import.php:25 msgid "Pull DCL data for me" -msgstr "" +msgstr "Extrae los datos de DCL para mí" #: application/views/dcl_views/import.php:36 msgid "Select callsign to pull DCL confirmations for." -msgstr "" +msgstr "Selecciona el indicativo para obtener confirmaciones de DCL." #: application/views/dcl_views/import.php:50 msgid "" @@ -8752,83 +8805,91 @@ msgid "" "confirmations since chosen date, or since your last DCL confirmation " "(fetched from your log), up until now." msgstr "" +"Wavelog utilizará las claves DCL almacenadas en tu perfil de usuario para " +"descargar un informe de DCL para ti. El informe que Wavelog descargue tendrá " +"todas las confirmaciones desde la fecha elegida, o desde tu última " +"confirmación DCL (obtenida de tu registro), hasta ahora." #: application/views/dcl_views/import.php:54 msgid "Import DCL Matches" -msgstr "" +msgstr "Importar DCL Matches" #: application/views/dcl_views/index.php:8 msgid "Delete Keys" -msgstr "" +msgstr "Eliminar claves" #: application/views/dcl_views/index.php:9 msgid "Available DCL-Keys" -msgstr "" +msgstr "Claves DCL disponibles" #: application/views/dcl_views/index.php:9 msgid "Request DCL Key" -msgstr "" +msgstr "Solitud clave DCL" #: application/views/dcl_views/index.php:28 msgid "Valid from" -msgstr "" +msgstr "Válido desde" #: application/views/dcl_views/index.php:29 msgid "Valid till" -msgstr "" +msgstr "Válido hasta" #: application/views/dcl_views/index.php:61 msgid "You need to request DCL keys to use this function." -msgstr "" +msgstr "Necesitas solicitar claves DCL para usar esta función." #: application/views/dcl_views/index.php:80 msgid "The next automatic sync with DCL will happen at: " -msgstr "" +msgstr "La próxima sincronización automática con DCL ocurrirá a las: " #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "Sincronización manual" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "corriendo..." #: application/views/dcl_views/key_import.php:8 msgid "DCL Key Management" -msgstr "" +msgstr "Gestión de claves DCL" #: application/views/dcl_views/key_import.php:13 msgid "Import Key" -msgstr "" +msgstr "Importar clave" #: application/views/dcl_views/key_import.php:14 msgid "" "You requested a key for DCL-Dataexchange, which was successful. The " "following data has been imported" msgstr "" +"Solicitaste una clave para DCL-Dataexchange, lo cual fue exitoso. Se han " +"importado los siguientes datos" #: application/views/dcl_views/key_import.php:19 msgid "Received a valid DCL-Key" -msgstr "" +msgstr "Llave DCL válida recibida" #: application/views/dcl_views/key_import.php:20 msgid "DOK History" -msgstr "" +msgstr "Historia de DOK" #: application/views/dcl_views/key_import.php:24 #: application/views/dcl_views/key_import.php:46 msgid "Validity" -msgstr "" +msgstr "Validez" #: application/views/dcl_views/key_import.php:42 msgid "Call History" -msgstr "" +msgstr "Historial de llamadas" #: application/views/dcl_views/key_import.php:63 msgid "Received an invalid DCL-Key. Please check your DCL-Login, and try again" msgstr "" +"Se recibió una clave DCL inválida. Por favor, revisa tu inicio de sesión en " +"DCL e inténtalo de nuevo" #: application/views/dcl_views/upload_cert.php:8 #: application/views/dcl_views/upload_cert.php:33 @@ -9151,6 +9212,7 @@ msgstr "Actualización de DXCC de Club Log" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "Actualizar" @@ -9189,13 +9251,17 @@ msgstr "Actualización de Hams Of Note" #: application/views/debug/index.php:568 msgid "HAMqsl" +msgstr "HAMqsl" + +#: application/views/debug/index.php:573 +msgid "VUCC Grids" msgstr "" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "Mantenimiento de la base de datos de QSO" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -9205,143 +9271,143 @@ msgstr[0] "" msgstr[1] "" "La base de datos contiene %d QSOs sin un perfil de estación (ubicación)" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" "Por favor, marca los QSOs y asígnalos a una ubicación de estación existente:" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "Ubicación objetivo" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "Reasignar" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Cada QSO en tu base de datos está asignado a un perfil de estación " "(ubicación)" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "Todo bien" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "Albanés" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "Armenio" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "Bosnio" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "Búlgaro" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "Chino (Simplificado)" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "Croata" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "Checo" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "Holandés" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "Inglés" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "Estonio" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "Finlandés" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "Francés" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "Alemán" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "Griego" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "Húngaro" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "Italiano" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "Japonés" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "Letón" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "Lituano" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "Montenegrino" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "Polaco" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "Portugués" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "Ruso" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "Serbio" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "Eslovaco" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "Esloveno" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "Español" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "Sueco" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "Turco" @@ -9803,10 +9869,10 @@ msgid "QSL Date" msgstr "Fecha QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9917,7 +9983,7 @@ msgid "Worked not confirmed" msgstr "Trabajados no confirmados" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "Claro" @@ -9962,20 +10028,20 @@ msgstr "Información del satélite" #: application/views/interface_assets/footer.php:59 msgid "Error loading notes" -msgstr "" +msgstr "Error al cargar las notas" #: application/views/interface_assets/footer.php:60 msgid "Sorting" -msgstr "" +msgstr "Clasificación" #: application/views/interface_assets/footer.php:61 msgid "Duplication is disabled for Contacts notes" -msgstr "" +msgstr "La duplicación está desactivada para las notas de Contactos" #: application/views/interface_assets/footer.php:62 #: application/views/interface_assets/footer.php:64 msgid "Duplicate" -msgstr "" +msgstr "Duplicar" #: application/views/interface_assets/footer.php:65 #: application/views/notes/view.php:48 @@ -9984,23 +10050,23 @@ msgstr "Borrar nota" #: application/views/interface_assets/footer.php:66 msgid "Duplicate Note" -msgstr "" +msgstr "Nota duplicada" #: application/views/interface_assets/footer.php:67 msgid "Delete this note?" -msgstr "" +msgstr "¿Eliminar esta nota?" #: application/views/interface_assets/footer.php:68 msgid "Duplicate this note?" -msgstr "" +msgstr "¿Duplicar esta nota?" #: application/views/interface_assets/footer.php:69 msgid "Duplication Disabled" -msgstr "" +msgstr "Duplicación desactivada" #: application/views/interface_assets/footer.php:70 msgid "No notes were found" -msgstr "" +msgstr "No se encontraron notas" #: application/views/interface_assets/footer.php:152 #: application/views/interface_assets/header.php:515 @@ -10117,62 +10183,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Cuadrículas" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "No has iniciado sesión. Por favor %sinicia sesión%s" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "grid squares" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "Cuenta total" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "Tarjeta QSL para " -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "¡Advertencia! ¿Estás seguro de que deseas eliminar esta tarjeta QSL?" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "Tarjeta eQSL" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "Tarjeta eQSL para " -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "Archivo de imagen QSL" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "Frente de la tarjeta QSL:" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "Tarjeta QSL de regreso:" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "Agregar QSOs adicionales a una tarjeta QSL" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "Algo salió mal. ¡Inténtalo de nuevo!" @@ -10259,7 +10325,7 @@ msgstr "Trabajado Toda Europa (WAE)" #: application/views/interface_assets/header.php:192 msgid "Worked All Prefixes (WPX)" -msgstr "" +msgstr "Trabajado Todos los Prefijos (WPX)" #: application/views/interface_assets/header.php:214 msgid "Canada" @@ -10437,7 +10503,7 @@ msgstr "Importación / Exportación de Clublog" #: application/views/interface_assets/header.php:504 msgid "DCL Export" -msgstr "" +msgstr "Exportación DCL" #: application/views/interface_assets/header.php:516 #: application/views/logbookadvanced/index.php:741 @@ -10765,7 +10831,7 @@ msgstr "Por favor, elige la columna a editar:" #: application/views/logbookadvanced/edit.php:5 msgid "QSO details" -msgstr "" +msgstr "Detalles del QSO" #: application/views/logbookadvanced/edit.php:9 msgid "Contest Exch (S)" @@ -10773,19 +10839,19 @@ msgstr "Intercambio del Concurso (S)" #: application/views/logbookadvanced/edit.php:19 msgid "Station Power" -msgstr "" +msgstr "Potencia de la estación" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "Región" #: application/views/logbookadvanced/edit.php:37 msgid "QSL / LoTW / Clublog / eQSL / QRZ / DCL" -msgstr "" +msgstr "QSL / LoTW / Clublog / eQSL / QRZ / DCL" #: application/views/logbookadvanced/edit.php:38 msgid "Clublog Received" @@ -10797,11 +10863,11 @@ msgstr "Clublog enviado" #: application/views/logbookadvanced/edit.php:40 msgid "DCL Sent" -msgstr "" +msgstr "DCL enviado" #: application/views/logbookadvanced/edit.php:41 msgid "DCL Received" -msgstr "" +msgstr "DCL recibido" #: application/views/logbookadvanced/edit.php:42 msgid "eQSL Received" @@ -10829,11 +10895,11 @@ msgstr "QRZ enviado" #: application/views/logbookadvanced/edit.php:48 msgid "QSL Received" -msgstr "" +msgstr "QSL recibidas" #: application/views/logbookadvanced/edit.php:49 msgid "QSL Sent" -msgstr "" +msgstr "QSL enviada" #: application/views/logbookadvanced/edit.php:50 msgid "QSLMSG" @@ -10841,11 +10907,11 @@ msgstr "Mensaje QSL" #: application/views/logbookadvanced/edit.php:51 msgid "QSL Received Method" -msgstr "" +msgstr "Método de recepción de QSL" #: application/views/logbookadvanced/edit.php:52 msgid "QSL Sent Method" -msgstr "" +msgstr "Método de envío de QSL" #: application/views/logbookadvanced/edit.php:53 #: application/views/logbookadvanced/index.php:570 @@ -10898,7 +10964,7 @@ msgstr "Verificado" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10919,7 +10985,7 @@ msgstr "Directo" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10938,7 +11004,7 @@ msgstr "Buró" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10953,49 +11019,49 @@ msgstr "Electrónico" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Gerente" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "NINGUNO" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "Italia africana" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "Isla del Oso" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "Turquía europea" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "ITU Vienna" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "Kosovo" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "Islas Shetland" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "Sicilia" @@ -11172,7 +11238,7 @@ msgstr "QSL enviadas" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -11209,7 +11275,7 @@ msgstr "En Cola" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11266,11 +11332,11 @@ msgstr "Recibido por eQSL" #: application/views/logbookadvanced/index.php:550 msgid "DCL sent" -msgstr "" +msgstr "DCL enviado" #: application/views/logbookadvanced/index.php:559 msgid "DCL received" -msgstr "" +msgstr "DCL recibido" #: application/views/logbookadvanced/index.php:574 msgid "QSL Images" @@ -11658,38 +11724,42 @@ msgstr "Fecha de caducidad" msgid "Last Upload" msgstr "Última subida" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "Caducado" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "Caduca pronto" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" -msgstr "Válido" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" +msgstr "" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "Último éxito: %s" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "Último fallo: %s" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "No sincronizado" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" "Es necesario subir algunos certificados p12 de LoTW para usar este área." -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "La próxima sincronización automática con LoTW ocurrirá a las: " @@ -11798,6 +11868,10 @@ msgid "" "store information about QSO partners. These notes are private and are not " "shared with other users nor exported to external services." msgstr "" +"Contactos es una categoría especial de notas utilizada en varios lugares de " +"Wavelog para almacenar información sobre socios de QSO. Estas notas son " +"privadas y no se comparten con otros usuarios ni se exportan a servicios " +"externos." #: application/views/notes/add.php:48 application/views/notes/edit.php:56 msgid "Note Contents" @@ -11809,27 +11883,27 @@ msgstr "Guardar nota" #: application/views/notes/main.php:25 msgid "All Categories" -msgstr "" +msgstr "Todas las categorías" #: application/views/notes/main.php:53 msgid "Search notes (min. 3 chars)" -msgstr "" +msgstr "Buscar notas (mín. 3 caracteres)" #: application/views/notes/main.php:54 msgid "Reset search" -msgstr "" +msgstr "Restablecer búsqueda" #: application/views/notes/main.php:72 msgid "Creation" -msgstr "" +msgstr "Creación" #: application/views/notes/main.php:73 msgid "Last Modification" -msgstr "" +msgstr "Última modificación" #: application/views/notes/view.php:20 msgid "View Note" -msgstr "" +msgstr "Ver nota" #: application/views/operator/index.php:9 msgid "" @@ -12282,7 +12356,7 @@ msgstr "¿Alguna información adicional que necesitamos saber?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -12330,7 +12404,7 @@ msgstr "Estación" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12595,7 +12669,7 @@ msgstr "La próxima descarga automática de QRZ-QSLs ocurrirá en: " #: application/views/qrz/export.php:83 msgid "Download QSLs from QRZ Logbook" -msgstr "" +msgstr "Descargar QSLs del libro de registros QRZ" #: application/views/qrz/export.php:109 msgid "Mark QSOs as exported to QRZ Logbook" @@ -12680,11 +12754,11 @@ msgstr "Exportar QSL Solicitadas para Imprimirse" #: application/views/qslprint/index.php:31 msgid "Show Band or Frequency:" -msgstr "" +msgstr "Mostrar banda o frecuencia:" #: application/views/qslprint/index.php:35 msgid "Band & Frequency" -msgstr "" +msgstr "Banda y Frecuencia" #: application/views/qslprint/index.php:39 msgid "" @@ -12736,15 +12810,15 @@ msgstr "Lista de QSOs" #: application/views/qslprint/qslprint.php:78 msgid "Mark QSOs for a certain QSL Method:" -msgstr "" +msgstr "Marca los QSOs para un cierto método de QSL:" #: application/views/qslprint/qslprint.php:86 msgid "Mark all QSOs for the chosen QSL method" -msgstr "" +msgstr "Marca todos los QSOs para el método QSL elegido" #: application/views/qslprint/qslprint.php:87 msgid "Unmark every QSO" -msgstr "" +msgstr "Desmarcar cada QSO" #: application/views/qslprint/qslprint.php:92 msgid "Update QSOs" @@ -12900,20 +12974,12 @@ msgstr "Publicar en Bluesky" msgid "Toot on Mastodon" msgstr "Toot en Mastodon" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "Función %d - Nombre" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "Función %d - Macro" @@ -12938,11 +13004,11 @@ msgstr "Frecuencia RX" msgid "RX Band" msgstr "Banda RX" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Especifique el valor de potencia en Watios (W). Incluya solo números." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12952,25 +13018,25 @@ msgstr "Potencia de transmisión (W)" msgid "Used for VUCC MultiGrids" msgstr "Utilizado para VUCC MultiGrids" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "Path de la antena" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "Línea gris" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "Otro" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "Camino corto" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "Ruta larga" @@ -12983,38 +13049,38 @@ msgstr "Nombre del satélite" msgid "Sat Mode" msgstr "Modo Sat" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "Azimut de la antena (°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "Azimut de la antena en grados decimales." -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "Elevación de la antena (°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "Elevación de la antena en grados decimales." -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "Condado de la Estación" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "Información SIG" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "Nota: Se exporta a servicios de terceros." @@ -13023,8 +13089,8 @@ msgid "Sent Method" msgstr "Método enviado" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "Método" @@ -13045,7 +13111,7 @@ msgstr "Verificado (Coincide)" msgid "Received Method" msgstr "Método recibido" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "Obtener el mensaje por defecto para eQSL, para esta estación." @@ -13089,7 +13155,7 @@ msgstr "Guardar cambios" msgid "TimeOff is less than TimeOn" msgstr "TimeOff es menor que TimeOn" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "Contactos previos" @@ -13156,7 +13222,7 @@ msgstr "Hora fin" msgid "Search DXCluster for latest Spot" msgstr "Buscar DXCluster para el último Spot" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -13164,7 +13230,7 @@ msgstr "Buscar DXCluster para el último Spot" msgid "IOTA Reference" msgstr "Referencia IOTA" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -13172,91 +13238,95 @@ msgstr "Referencia IOTA" msgid "SOTA Reference" msgstr "Referencia SOTA" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "Frecuencia (Recepción)" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "Banda (Recepción)" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "Por ejemplo: GM/NS-001." -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "Por ejemplo: DLFF-0069." -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "Por ejemplo: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "Por ejemplo: GMA" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "Por ejemplo: DA/NW-357" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "Por ejemplo: Q03" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "Dirección de correo electrónico del compañero de QSO" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "Nombre del Satélite" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "Modo del Satélite" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "Mensaje QSL" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "Restablecer a predeterminado" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "Conectar" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "Alto" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "Sintonizar" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "Detener sintonización" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "Velocidad CW" -#: application/views/qso/index.php:769 +#: application/views/qso/index.php:778 +msgid "Stop" +msgstr "Alto" + +#: application/views/qso/index.php:779 +msgid "Tune" +msgstr "Sintonizar" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "Detener sintonización" + +#: application/views/qso/index.php:785 +msgid "Enter text..." +msgstr "Introduce el texto..." + +#: application/views/qso/index.php:786 msgid "Send" msgstr "Enviar" -#: application/views/qso/index.php:779 +#: application/views/qso/index.php:798 msgid "Suggestions" msgstr "Sugerencias" -#: application/views/qso/index.php:786 +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "Imagen de Perfil" @@ -13893,6 +13963,7 @@ msgstr "No trabajado" #: application/views/search/result.php:58 msgid "Grid is auto-detected by callbook and probably wrong" msgstr "" +"El grid es detectado automáticamente por el callbook y probablemente esté mal" #: application/views/search/search_result_ajax.php:463 #: application/views/view_log/partial/log.php:142 @@ -14664,6 +14735,7 @@ msgid "Special Interest Group Information" msgstr "Información del Grupo de Interés Especial" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "¿Problemas? Consulta la %swiki%s." @@ -14739,7 +14811,7 @@ msgstr "" #: application/views/stationsetup/stationsetup.php:35 msgid "Edit Linked locations" -msgstr "" +msgstr "Editar ubicaciones vinculadas" #: application/views/stationsetup/stationsetup.php:37 msgid "Visitor site" @@ -15158,6 +15230,9 @@ msgid "" "deprectated and will be removed in a future version of Wavelog. As " "replacement use the Logbook-Advanced!" msgstr "" +"Esto afecta a TODOS los QSOs de CUALQUIER usuario en esta instancia. La " +"función está obsoleta y se eliminará en una versión futura de Wavelog. ¡Como " +"reemplazo, utiliza el Logbook-Advanced!" #: application/views/update/index.php:42 msgid "Check QSOs missing DXCC data" @@ -15530,12 +15605,14 @@ msgstr "" #: application/views/user/edit.php:641 msgid "Dashboard solar and propagation data" -msgstr "" +msgstr "Datos solares y de propagación del panel de control" #: application/views/user/edit.php:647 msgid "" "This switches the display of the solar and propagation data on the dashboard." msgstr "" +"Esto cambia la visualización de los datos solares y de propagación en el " +"panel." #: application/views/user/edit.php:655 msgid "Show Reference Fields on QSO Tab" @@ -15667,7 +15744,7 @@ msgstr "Club Log" #: application/views/user/edit.php:905 msgid "Club Log Email" -msgstr "" +msgstr "Correo de Club Log" #: application/views/user/edit.php:911 msgid "Club Log Password" @@ -15777,10 +15854,6 @@ msgstr "URL del Servidor de Mastodon" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "URL principal de tu servidor Mastodon, por ejemplo, %s" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "Experimental" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "Winkeyer" @@ -16359,7 +16432,7 @@ msgstr "Este QSO está confirmado en Clublog." #: application/views/view_log/qso.php:581 msgid "This QSO is confirmed on DCL." -msgstr "" +msgstr "Este QSO está confirmado en DCL." #: application/views/view_log/qso.php:594 msgid "More QSOs" @@ -16520,6 +16593,28 @@ msgstr "Enviar solicitud" msgid "Rcvd" msgstr "Recibido" +#, php-format +#~ msgctxt "LoTW Warning" +#~ msgid "At least one of your %sLoTW certificates%s is expired!" +#~ msgstr "¡Al menos uno de tus %scertificados LoTW%s ha expirado!" + +#, php-format +#~ msgctxt "LoTW Warning" +#~ msgid "At least one of your %sLoTW certificates%s is about to expire!" +#~ msgstr "¡Al menos uno de tus %scertificados LoTW%s está a punto de expirar!" + +#~ msgid "Expired" +#~ msgstr "Caducado" + +#~ msgid "Expiring" +#~ msgstr "Caduca pronto" + +#~ msgid "Valid" +#~ msgstr "Válido" + +#~ msgid "Experimental" +#~ msgstr "Experimental" + #, php-format #~ msgctxt "Dashboard Warning" #~ msgid "" diff --git a/application/locale/et/LC_MESSAGES/messages.po b/application/locale/et/LC_MESSAGES/messages.po index 9baae3644..ab90e3fc9 100644 --- a/application/locale/et/LC_MESSAGES/messages.po +++ b/application/locale/et/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" "PO-Revision-Date: 2025-02-11 12:33+0000\n" "Last-Translator: tviitkar \n" "Language-Team: Estonian 1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6536,7 +6553,7 @@ msgstr "" msgid "Message" msgstr "" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "" @@ -6935,7 +6952,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -6998,7 +7015,7 @@ msgstr "Jah" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7044,7 +7061,7 @@ msgid "No contests were found in your log." msgstr "" #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "" @@ -7385,7 +7402,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7450,10 +7467,10 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "" @@ -7606,7 +7623,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "" @@ -7682,54 +7699,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "" @@ -7891,7 +7908,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "" @@ -7976,45 +7993,58 @@ msgid "" "themes." msgstr "" -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" msgstr "" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" msgstr "" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" msgstr[0] "" msgstr[1] "" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8025,7 +8055,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8048,10 +8078,10 @@ msgstr "" msgid "Sent" msgstr "" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8084,7 +8114,7 @@ msgstr "" msgid "Received" msgstr "" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8110,7 +8140,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8124,25 +8154,25 @@ msgstr "" msgid "Requested" msgstr "" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "" -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "" @@ -8307,12 +8337,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "" #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "" @@ -8657,6 +8687,7 @@ msgstr "" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "" @@ -8697,11 +8728,15 @@ msgstr "" msgid "HAMqsl" msgstr "" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -8709,140 +8744,140 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "Albaania" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "Bosnia" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "Bulgaaria" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "Hiina (lihtsustatud)" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "Horvaatia" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "Tšehhi" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "Hollandi" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "Inglise" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "Eesti" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "Soome" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "Prantsuse" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "Saksa" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "Kreeka" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "Itaalia" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "Läti" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "Leedu" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "Montenegro" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "Poola" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "Portugali" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "Vene" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "Serbia" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "Hispaania" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "Rootsi" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "Türgi" @@ -9228,10 +9263,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9329,7 +9364,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "" @@ -9525,62 +9560,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "" @@ -10174,7 +10209,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "" @@ -10294,7 +10329,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10315,7 +10350,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10334,7 +10369,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10349,49 +10384,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "" @@ -10553,7 +10588,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10590,7 +10625,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11029,37 +11064,41 @@ msgstr "" msgid "Last Upload" msgstr "" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" msgstr "" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "" @@ -11597,7 +11636,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -11645,7 +11684,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12182,20 +12221,12 @@ msgstr "" msgid "Toot on Mastodon" msgstr "" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "" @@ -12220,11 +12251,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12234,25 +12265,25 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "" @@ -12265,38 +12296,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12305,8 +12336,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "" @@ -12327,7 +12358,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12371,7 +12402,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "" @@ -12438,7 +12469,7 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -12446,7 +12477,7 @@ msgstr "" msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -12454,91 +12485,95 @@ msgstr "" msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:769 -msgid "Send" +#: application/views/qso/index.php:778 +msgid "Stop" msgstr "" #: application/views/qso/index.php:779 -msgid "Suggestions" +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:785 +msgid "Enter text..." msgstr "" #: application/views/qso/index.php:786 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:798 +msgid "Suggestions" +msgstr "" + +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "" @@ -13826,6 +13861,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14832,10 +14868,6 @@ msgstr "" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "" diff --git a/application/locale/fi_FI/LC_MESSAGES/messages.mo b/application/locale/fi_FI/LC_MESSAGES/messages.mo index 735ff18c2..8464c9d02 100644 Binary files a/application/locale/fi_FI/LC_MESSAGES/messages.mo and b/application/locale/fi_FI/LC_MESSAGES/messages.mo differ diff --git a/application/locale/fi_FI/LC_MESSAGES/messages.po b/application/locale/fi_FI/LC_MESSAGES/messages.po index e362767f1..880e83e9f 100644 --- a/application/locale/fi_FI/LC_MESSAGES/messages.po +++ b/application/locale/fi_FI/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" "PO-Revision-Date: 2025-08-19 17:14+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Finnish 1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6534,7 +6551,7 @@ msgstr "" msgid "Message" msgstr "" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "" @@ -6933,7 +6950,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -6996,7 +7013,7 @@ msgstr "Kyllä" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7042,7 +7059,7 @@ msgid "No contests were found in your log." msgstr "" #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "" @@ -7383,7 +7400,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7448,10 +7465,10 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "" @@ -7604,7 +7621,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "" @@ -7680,54 +7697,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "Nollaa QSO" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "TALLENNA QSO" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "Ehdotettu kutsu" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "Kilpailussa pidetyt yhteydet" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "" @@ -7889,7 +7906,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "Propagaatiomuoto" @@ -7974,45 +7991,58 @@ msgid "" "themes." msgstr "" -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" msgstr "" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" msgstr "" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" msgstr[0] "" msgstr[1] "" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "Yhteystilasto" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "Tarvittu" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8023,7 +8053,7 @@ msgstr "Tarvittu" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8046,10 +8076,10 @@ msgstr "Tarvittu" msgid "Sent" msgstr "Lähetetyt" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8082,7 +8112,7 @@ msgstr "Lähetetyt" msgid "Received" msgstr "Vastaanotetut" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8108,7 +8138,7 @@ msgstr "Vastaanotetut" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8122,25 +8152,25 @@ msgstr "Vastaanotetut" msgid "Requested" msgstr "Pyydetyt" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "" -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "" @@ -8305,12 +8335,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "" #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "Synkronoi yhteydet manuaalisesti" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "" @@ -8657,6 +8687,7 @@ msgstr "" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "" @@ -8697,11 +8728,15 @@ msgstr "" msgid "HAMqsl" msgstr "" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -8709,140 +8744,140 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "albanialainen" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "Bosnialainen" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "bulgaria" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "Kiina (yksinkertaistettu)" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "Kroatian" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "tšekki" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "Hollantilainen" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "Englanti" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "Viron kieli" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "Suomi" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "Ranskalainen" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "Saksalainen" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "Kreikka" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "Italialainen" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "latvialainen" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "Liettua" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "montenegrolainen" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "Kiillottaa" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "portugali" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "Venäjä" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "serbialainen" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "espanja" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "Ruotsi" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "turkki" @@ -9228,10 +9263,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9329,7 +9364,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "" @@ -9522,62 +9557,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "" @@ -10171,7 +10206,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "" @@ -10291,7 +10326,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10312,7 +10347,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10331,7 +10366,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10346,49 +10381,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Manageri" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "" @@ -10550,7 +10585,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10587,7 +10622,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11030,39 +11065,43 @@ msgstr "Päivä joloin vanhenee" msgid "Last Upload" msgstr "Last upload" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "Vanhentunut" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "Vanhenee" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" -msgstr "Voimassa" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" +msgstr "" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "Ei synkronoitu" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" "Sinun täytyy ladata ainakin yksi LoTW:n P12 tiedostomuotoinen kutsumerkin " "varmenne käyttääksesi tätä toimintoaluetta." -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "" @@ -11600,7 +11639,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -11648,7 +11687,7 @@ msgstr "Asema" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12185,20 +12224,12 @@ msgstr "" msgid "Toot on Mastodon" msgstr "" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "" @@ -12223,11 +12254,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Anna teholukema Watteina käyttäen vain numeroita." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12237,25 +12268,25 @@ msgstr "Lähetysteho (W)" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "" @@ -12268,38 +12299,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12308,8 +12339,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "Method / tapa" @@ -12330,7 +12361,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12374,7 +12405,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "Edelliset yhteydet" @@ -12441,7 +12472,7 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -12449,7 +12480,7 @@ msgstr "" msgid "IOTA Reference" msgstr "IOTA ref.nro" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -12457,91 +12488,95 @@ msgstr "IOTA ref.nro" msgid "SOTA Reference" msgstr "SOTA ref.nro" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "Taajuus (RX)" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "Bandi (RX)" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "Esimerkiksi: OH/JS-004." -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "Esimerkiksi: OHFF-1234." -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "Esimerkiksi: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "Esimerkiksi: GMA" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "Esimerkiksi: DA/NW-357" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "Esimerkiksi: Q03" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "Satelliitti" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "Satelliitin Mode" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:769 -msgid "Send" +#: application/views/qso/index.php:778 +msgid "Stop" msgstr "" #: application/views/qso/index.php:779 +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:785 +msgid "Enter text..." +msgstr "" + +#: application/views/qso/index.php:786 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:798 msgid "Suggestions" msgstr "Kutsumerkkiehdotukset" -#: application/views/qso/index.php:786 +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "Profiilikuva" @@ -13829,6 +13864,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14838,10 +14874,6 @@ msgstr "" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "" @@ -15521,6 +15553,15 @@ msgstr "" msgid "Rcvd" msgstr "" +#~ msgid "Expired" +#~ msgstr "Vanhentunut" + +#~ msgid "Expiring" +#~ msgstr "Vanhenee" + +#~ msgid "Valid" +#~ msgstr "Voimassa" + #~ msgid "Club Log Email/Callsign" #~ msgstr "Club Log Sähköposti/Kutsu" diff --git a/application/locale/fr_FR/LC_MESSAGES/messages.mo b/application/locale/fr_FR/LC_MESSAGES/messages.mo index b1389abf4..27c408386 100644 Binary files a/application/locale/fr_FR/LC_MESSAGES/messages.mo and b/application/locale/fr_FR/LC_MESSAGES/messages.mo differ diff --git a/application/locale/fr_FR/LC_MESSAGES/messages.po b/application/locale/fr_FR/LC_MESSAGES/messages.po index 9004d7a0a..2f9dcb943 100644 --- a/application/locale/fr_FR/LC_MESSAGES/messages.po +++ b/application/locale/fr_FR/LC_MESSAGES/messages.po @@ -12,12 +12,13 @@ # André Aubin , 2025. # KARIM MALFI , 2025. # Stephane Tauziede , 2025. +# F5MQU , 2025. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" -"PO-Revision-Date: 2025-07-31 03:15+0000\n" -"Last-Translator: Stephane Tauziede \n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" +"PO-Revision-Date: 2025-10-25 22:42+0000\n" +"Last-Translator: F5MQU \n" "Language-Team: French \n" "Language: fr_FR\n" @@ -25,7 +26,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 5.12.2\n" +"X-Generator: Weblate 5.14\n" #: application/controllers/Accumulated.php:12 #: application/controllers/Activators.php:13 @@ -79,9 +80,9 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:79 application/controllers/Lotw.php:105 -#: application/controllers/Lotw.php:375 application/controllers/Lotw.php:398 -#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:839 -#: application/controllers/Lotw.php:944 application/controllers/Mode.php:15 +#: application/controllers/Lotw.php:383 application/controllers/Lotw.php:406 +#: application/controllers/Lotw.php:763 application/controllers/Lotw.php:847 +#: application/controllers/Lotw.php:952 application/controllers/Mode.php:15 #: application/controllers/Notes.php:11 application/controllers/Options.php:14 #: application/controllers/Oqrs.php:15 application/controllers/Oqrs.php:165 #: application/controllers/Qrbcalc.php:13 application/controllers/Qrz.php:200 @@ -90,8 +91,8 @@ msgstr "" #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:187 -#: application/controllers/Qso.php:287 application/controllers/Qso.php:308 -#: application/controllers/Qso.php:331 application/controllers/Qso.php:629 +#: application/controllers/Qso.php:318 application/controllers/Qso.php:339 +#: application/controllers/Qso.php:362 application/controllers/Qso.php:662 #: application/controllers/Radio.php:32 application/controllers/Radio.php:291 #: application/controllers/Radio.php:317 application/controllers/Radio.php:333 #: application/controllers/Reg1test.php:17 @@ -134,7 +135,7 @@ msgstr "" #: application/controllers/Usermode.php:15 #: application/controllers/Webadif.php:91 application/models/Club_model.php:52 msgid "You're not allowed to do that!" -msgstr "Vous n'as pas le droit de faire ça !" +msgstr "Vous n'avez pas le droit de faire ça !" #: application/controllers/Accumulated.php:19 #: application/views/interface_assets/header.php:162 @@ -149,7 +150,7 @@ msgstr "Carte des Locator activés" #: application/controllers/Activated_gridmap.php:31 #: application/controllers/Awards.php:1003 #: application/controllers/Awards.php:1035 -#: application/controllers/Gridmap.php:31 +#: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 #: application/views/interface_assets/footer.php:47 @@ -159,13 +160,13 @@ msgid "Gridsquares" msgstr "Locator" #: application/controllers/Activated_gridmap.php:32 -#: application/controllers/Gridmap.php:32 +#: application/controllers/Gridmap.php:33 #: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "Locator confirmés" #: application/controllers/Activated_gridmap.php:33 -#: application/controllers/Gridmap.php:33 +#: application/controllers/Gridmap.php:34 #: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "Locator non confirmés" @@ -175,25 +176,25 @@ msgid "Total gridsquares activated" msgstr "Total des Locator activés" #: application/controllers/Activated_gridmap.php:36 -#: application/controllers/Gridmap.php:36 +#: application/controllers/Gridmap.php:37 #: application/controllers/Visitor.php:390 msgid "Fields" msgstr "Champs" #: application/controllers/Activated_gridmap.php:37 -#: application/controllers/Gridmap.php:37 +#: application/controllers/Gridmap.php:38 #: application/controllers/Visitor.php:391 msgid "Fields confirmed" msgstr "Champs confirmés" #: application/controllers/Activated_gridmap.php:38 -#: application/controllers/Gridmap.php:38 +#: application/controllers/Gridmap.php:39 #: application/controllers/Visitor.php:392 msgid "Fields not confirmed" msgstr "Champs non confirmés" #: application/controllers/Activated_gridmap.php:39 -#: application/controllers/Gridmap.php:39 +#: application/controllers/Gridmap.php:40 #: application/controllers/Visitor.php:393 msgid "Total fields worked" msgstr "Nombre total de champs travaillés" @@ -255,11 +256,11 @@ msgstr "Données DCL importées" #: application/controllers/Adif.php:368 msgid "POTA Import" -msgstr "" +msgstr "Importation des POTA" #: application/controllers/Adif.php:425 msgid "POTA Data Imported" -msgstr "" +msgstr "Données des POTA importées" #: application/controllers/Api.php:14 msgid "API" @@ -343,13 +344,13 @@ msgstr "Trophées - %s" #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:401 application/views/qso/index.php:302 -#: application/views/qso/index.php:593 application/views/user/edit.php:682 +#: application/views/qso/index.php:594 application/views/user/edit.php:682 #: application/views/view_log/qso.php:460 msgid "DOK" msgstr "DOK" #: application/controllers/Awards.php:176 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:130 application/views/bands/index.php:50 +#: application/views/bandmap/list.php:131 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:180 @@ -362,7 +363,7 @@ msgstr "DOK" #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 -#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:402 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 #: application/views/search/result.php:27 @@ -374,7 +375,7 @@ msgstr "DXCC" #: application/controllers/Awards.php:252 msgid "Awards - WAPC" -msgstr "" +msgstr "Trophées - WAPC" #: application/controllers/Awards.php:331 msgid "Awards - WAJA" @@ -507,7 +508,7 @@ msgstr "POTA" #: application/controllers/Awards.php:672 msgid "CQ WAZ (Worked All Zones)" -msgstr "" +msgstr "CQ WAZ (Toutes Zones contactées)" #: application/controllers/Awards.php:733 #: application/views/accumulate/index.php:54 @@ -565,7 +566,7 @@ msgstr "Fred Fish Memorial Award (FFMA)" #: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:286 -#: application/views/qso/index.php:579 application/views/user/edit.php:678 +#: application/views/qso/index.php:580 application/views/user/edit.php:678 #: application/views/view_log/qso.php:425 #: application/views/view_log/qso.php:736 msgid "SIG" @@ -577,7 +578,7 @@ msgstr "Trophées - SIG - " #: application/controllers/Awards.php:1374 application/views/bands/index.php:60 msgid "WAP" -msgstr "" +msgstr "WAP" #: application/controllers/Awards.php:1988 #: application/views/awards/itu/index.php:20 @@ -602,7 +603,7 @@ msgstr "73 sur 73" #: application/controllers/Awards.php:2281 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" -msgstr "" +msgstr "WPX" #: application/controllers/Backup.php:15 application/views/backup/main.php:14 #: application/views/interface_assets/header.php:318 @@ -833,7 +834,7 @@ msgstr "Modifier les traitements Cron" #: application/views/debug/index.php:539 application/views/debug/index.php:544 #: application/views/debug/index.php:549 application/views/debug/index.php:554 #: application/views/debug/index.php:559 application/views/debug/index.php:564 -#: application/views/debug/index.php:569 +#: application/views/debug/index.php:569 application/views/debug/index.php:574 msgid "never" msgstr "jamais" @@ -891,7 +892,7 @@ msgstr "Ne fonctionne pas" msgid "SOTA CSV Export" msgstr "SOTA - Export CSV" -#: application/controllers/Dashboard.php:152 +#: application/controllers/Dashboard.php:154 #: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "Tableau de bord" @@ -905,7 +906,7 @@ msgstr "Jours avec des QSOs" #: application/controllers/Dcl.php:33 #: application/views/dcl_views/key_import.php:3 msgid "DCL Key Import" -msgstr "" +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 @@ -918,61 +919,61 @@ msgstr "" #: application/views/view_log/qso.php:575 #: application/views/view_log/qso.php:580 msgid "DCL" -msgstr "" +msgstr "DCL" #: application/controllers/Dcl.php:139 msgid "No QSOs to upload." -msgstr "" +msgstr "Aucun QSO à télécharger." #: application/controllers/Dcl.php:186 application/controllers/Dcl.php:198 msgid "Upload Failed" -msgstr "" +msgstr "Echec du téléchargement" #: application/controllers/Dcl.php:188 msgid "Timeout reached. Stopping subsequent uploads." -msgstr "" +msgstr "Délai d'attente dépassé. Arrêt des téléchargements suivants." #: application/controllers/Dcl.php:201 msgid "Upload Successful" -msgstr "" +msgstr "Téléchargement réussi" #: application/controllers/Dcl.php:211 msgid "No Station Profiles found to upload to DCL" -msgstr "" +msgstr "Aucun profil de station n'a été trouvé pour être télécharger vers DCL" #: application/controllers/Dcl.php:229 msgid "Key(s) Deleted." -msgstr "" +msgstr "Clé(s) effacée(s)." -#: application/controllers/Debug.php:117 +#: application/controllers/Debug.php:118 msgid "Debug" msgstr "Debug" -#: application/controllers/Debug.php:156 +#: application/controllers/Debug.php:157 msgid "Migrate data now" msgstr "Migrer les données maintenant" -#: application/controllers/Debug.php:159 +#: application/controllers/Debug.php:160 msgid "Migration already done. Run again?" msgstr "Migration déjà effectuée. Recommencer ?" -#: application/controllers/Debug.php:163 +#: application/controllers/Debug.php:164 msgid "No data to migrate" msgstr "Aucune donnée à migrer" -#: application/controllers/Debug.php:167 application/controllers/Debug.php:172 +#: application/controllers/Debug.php:168 application/controllers/Debug.php:173 msgid "No migration possible" msgstr "Aucune migration possible" -#: application/controllers/Debug.php:237 +#: application/controllers/Debug.php:238 msgid "Wavelog was updated successfully!" msgstr "Wavelog a été mis à jour avec succès !" -#: application/controllers/Debug.php:255 +#: application/controllers/Debug.php:256 msgid "Selfupdate() not available. Check the Error Log." msgstr "Selfupdate() non disponible. Vérifiez le journal des erreurs." -#: application/controllers/Debug.php:299 +#: application/controllers/Debug.php:300 msgid "" "File Migration was successfull, but please check also manually. If " "everything seems right you can delete the folders 'assets/qslcard' and " @@ -982,7 +983,7 @@ msgstr "" "manuellement. Si tout vous semble correct, vous pouvez supprimer les " "dossiers 'assets/qslcard' et 'images/eqsl_card_images'." -#: application/controllers/Debug.php:302 +#: application/controllers/Debug.php:303 msgid "File Migration failed. Please check the Error Log." msgstr "" "La migration des fichiers a échoué. Veuillez vérifier le journal des erreurs." @@ -1024,7 +1025,7 @@ msgid "DX Calendar" msgstr "Calendrier des DX" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:404 +#: application/views/dashboard/index.php:409 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:310 msgid "eQSL Cards" @@ -1057,7 +1058,7 @@ msgstr "Mauvais utilisateur ou mot de passe pour eQSL" #: application/controllers/Eqsl.php:199 #, php-format msgid "No such eQSL QTH Nickname: %s" -msgstr "Nom d’utilisateur eQSL invalide: %s" +msgstr "Nom d’utilisateur eQSL invalide : %s" #: application/controllers/Eqsl.php:437 msgid "eQSL Tools" @@ -1084,7 +1085,7 @@ msgstr "Confirmations" msgid "Gridsquare Map" msgstr "Carte des Locator" -#: application/controllers/Gridmap.php:34 +#: application/controllers/Gridmap.php:35 #: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "Total des Locator réalisés" @@ -1095,7 +1096,7 @@ msgstr "Hamsat - Chasseur itinérant de satellite" #: application/controllers/Hrdlog.php:70 application/controllers/Hrdlog.php:71 msgid "HRD Log upload for this station is disabled." -msgstr "" +msgstr "Le téléchargement du log HRD de cette station a été désactivé." #: application/controllers/Hrdlog.php:93 #, php-format @@ -1291,7 +1292,7 @@ msgstr "Journal de trafic" #: application/views/awards/wapc/index.php:44 #: application/views/awards/was/index.php:56 #: application/views/awards/wpx/index.php:28 -#: application/views/gridmap/index.php:101 +#: application/views/gridmap/index.php:141 #: application/views/logbookadvanced/index.php:794 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/oqrs/qsolist.php:12 @@ -1323,8 +1324,8 @@ msgstr "QSL" #: application/views/awards/wapc/index.php:48 #: application/views/awards/was/index.php:60 #: application/views/awards/wpx/index.php:32 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:109 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:149 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 @@ -1360,8 +1361,8 @@ msgstr "LoTW" #: application/views/awards/wapc/index.php:52 #: application/views/awards/was/index.php:64 #: application/views/awards/wpx/index.php:36 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:117 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:157 #: application/views/logbookadvanced/useroptions.php:78 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 @@ -1403,23 +1404,23 @@ msgstr "eQSL" #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:110 -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:136 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 #: application/views/contesting/index.php:118 -#: application/views/contesting/index.php:264 +#: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:597 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 -#: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 -#: application/views/kml/index.php:31 +#: application/views/gridmap/index.php:104 +#: application/views/hamsat/index.php:33 application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:12 #: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/index.php:764 @@ -1469,8 +1470,8 @@ msgstr "Mode" #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:179 -#: application/views/contesting/index.php:265 +#: application/views/contesting/index.php:180 +#: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 #: application/views/logbookadvanced/index.php:767 #: application/views/logbookadvanced/useroptions.php:38 @@ -1498,8 +1499,8 @@ msgstr "RST (E)" #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 -#: application/views/contesting/index.php:203 -#: application/views/contesting/index.php:266 +#: application/views/contesting/index.php:204 +#: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 #: application/views/logbookadvanced/index.php:770 #: application/views/logbookadvanced/useroptions.php:42 @@ -1607,9 +1608,9 @@ msgstr "Etat" #: application/views/awards/gridmaster/index.php:50 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:26 -#: application/views/contesting/index.php:271 +#: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 -#: application/views/gridmap/index.php:152 +#: application/views/gridmap/index.php:193 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 @@ -1653,7 +1654,7 @@ msgstr "Locator" #: application/views/dashboard/index.php:14 #: application/views/distancerecords/index.php:15 #: application/views/distances/index.php:13 -#: application/views/gridmap/index.php:154 +#: application/views/gridmap/index.php:195 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 #: application/views/logbookadvanced/index.php:869 @@ -1702,17 +1703,17 @@ msgstr "Distance" #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:96 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:97 #: application/views/bands/create.php:24 application/views/bands/edit.php:7 #: application/views/bands/index.php:47 application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:263 +#: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:593 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:598 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 -#: application/views/gridmap/index.php:10 application/views/kml/index.php:19 +#: application/views/gridmap/index.php:26 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:6 #: application/views/logbookadvanced/index.php:281 #: application/views/logbookadvanced/index.php:773 @@ -1760,7 +1761,7 @@ msgid "Band" msgstr "Bande" #: application/controllers/Logbook.php:1324 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:128 +#: application/controllers/Radio.php:45 application/views/bandmap/list.php:129 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:776 @@ -1819,9 +1820,9 @@ msgstr "Opérateur" #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:252 #: application/views/lookup/index.php:47 -#: application/views/lotw_views/index.php:49 +#: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 -#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:411 #: application/views/station_profile/create.php:77 #: application/views/station_profile/edit.php:109 #: application/views/stationsetup/linkedlocations.php:17 @@ -1862,11 +1863,11 @@ msgstr "Certificat importé." msgid "Certificate Updated." msgstr "Certificat mis à jour." -#: application/controllers/Lotw.php:381 +#: application/controllers/Lotw.php:389 msgid "Certificate Deleted." msgstr "Certificat supprimé." -#: application/controllers/Lotw.php:410 +#: application/controllers/Lotw.php:418 #, php-format msgid "" "Found no certificate in file %s. If the filename contains 'key-only' this is " @@ -1876,52 +1877,52 @@ msgstr "" "'key-only', il s'agit généralement d'une demande de certificat qui n'a pas " "encore été traitée par LoTW." -#: application/controllers/Lotw.php:646 +#: application/controllers/Lotw.php:654 msgid "LoTW ADIF Information" msgstr "Information ADIF LoTW" -#: application/controllers/Lotw.php:812 application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:820 application/controllers/Lotw.php:823 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "Échec de la connexion LoTW pour l'utilisateur %s : %s." -#: application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:823 msgid "Username/password incorrect" msgstr "Nom d'utilisateur/mot de passe incorrect" -#: application/controllers/Lotw.php:818 +#: application/controllers/Lotw.php:826 msgid "LoTW login OK!" msgstr "Connexion LoTW OK !" -#: application/controllers/Lotw.php:822 +#: application/controllers/Lotw.php:830 msgid "LoTW currently not available. Try again later." msgstr "LoTW actuellement indisponible. Réessayez plus tard." -#: application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 msgid "No LoTW credentials provided." msgstr "Aucun identifiant LoTW fourni." -#: application/controllers/Lotw.php:845 +#: application/controllers/Lotw.php:853 msgid "LoTW ADIF Import" msgstr "Importation ADIF LoTW" -#: application/controllers/Lotw.php:871 application/controllers/Lotw.php:979 +#: application/controllers/Lotw.php:879 application/controllers/Lotw.php:987 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Vous n'avez pas défini vos identifiants ARRL LoTW !" -#: application/controllers/Lotw.php:946 +#: application/controllers/Lotw.php:954 msgid "LoTW .TQ8 Upload" msgstr "Télécharger .TQ8 LoTW" -#: application/controllers/Lotw.php:1024 +#: application/controllers/Lotw.php:1032 msgid "Your ARRL username and/or password is incorrect." msgstr "Votre nom d'utilisateur et/ou mot de passe ARRL est incorrect." -#: application/controllers/Lotw.php:1043 application/controllers/Lotw.php:1048 +#: application/controllers/Lotw.php:1051 application/controllers/Lotw.php:1056 msgid "LoTW .TQ8 Sent" msgstr ".TQ8 LoTW Envoyé" -#: application/controllers/Lotw.php:1055 +#: application/controllers/Lotw.php:1063 msgid "LoTW .TQ8 Not Sent" msgstr ".TQ8 LoTW Pas Envoyé" @@ -1942,7 +1943,7 @@ msgstr "Modifier le mode" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:409 application/views/qso/index.php:71 -#: application/views/qso/index.php:642 application/views/view_log/qso.php:14 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:14 #: application/views/view_log/qso.php:749 msgid "Notes" msgstr "Notes" @@ -1967,12 +1968,16 @@ msgid "" "Contacts note title must be a callsign only, without prefix/suffix. " "Suggested: %s" msgstr "" +"Le titre de la note Contacts doit être uniquement un indicatif, sans préfixe " +"ni suffixe. Suggestion : %s" #: application/controllers/Notes.php:284 application/controllers/Notes.php:311 msgid "" "A note with this callsign already exists in your Contacts. Please enter a " "unique callsign." msgstr "" +"Une note avec cet indicatif existe déjà dans vos contacts. Veuillez saisir " +"un indicatif unique." #: application/controllers/Options.php:23 #: application/controllers/Options.php:33 @@ -2139,11 +2144,11 @@ msgstr "OQRS Demandes" #: application/controllers/Oqrs.php:361 msgid "QSO match deleted successfully." -msgstr "" +msgstr "Le QSO correspondant a été supprimé avec succès." #: application/controllers/Oqrs.php:370 msgid "QSO match added successfully." -msgstr "" +msgstr "Le QSO correspondant a été ajouté avec succès." #: application/controllers/Qrbcalc.php:17 msgid "QRB Calculator" @@ -2202,8 +2207,8 @@ msgstr "Importation QSL QRZ" msgid "QRZ ADIF Information" msgstr "Informations ADIF QRZ" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:356 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:361 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:287 msgid "QSL Cards" @@ -2225,15 +2230,15 @@ msgstr "Imprimer les QSL demandées" msgid "Add QSO" msgstr "Ajouter QSO" -#: application/controllers/Qso.php:690 +#: application/controllers/Qso.php:723 msgid "You have to be logged in to access this URL." msgstr "Vous devez être connecté pour accéder à ce URL." -#: application/controllers/Qso.php:696 +#: application/controllers/Qso.php:729 msgid "Call Transfer" msgstr "Transfert d'appel" -#: application/controllers/Qso.php:703 +#: application/controllers/Qso.php:736 msgid "No callsign provided." msgstr "Aucun indicatif fourni." @@ -2263,7 +2268,7 @@ msgid "Options" msgstr "Options" #: application/controllers/Radio.php:50 application/views/debug/index.php:312 -#: application/views/qso/index.php:749 +#: application/views/qso/index.php:750 msgid "Settings" msgstr "Paramètres" @@ -2272,8 +2277,8 @@ msgid "UNKNOWN" msgstr "INCONNU" #: application/controllers/Radio.php:98 -#: application/views/contesting/index.php:161 -#: application/views/qso/index.php:354 +#: application/views/contesting/index.php:162 +#: application/views/qso/index.php:355 msgid "last updated" msgstr "dernière mise à jour" @@ -2311,13 +2316,13 @@ msgstr "Editer" #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:63 -#: application/views/interface_assets/footer.php:2802 -#: application/views/interface_assets/footer.php:2820 -#: application/views/interface_assets/footer.php:2841 -#: application/views/interface_assets/footer.php:2859 +#: application/views/interface_assets/footer.php:2900 +#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:2939 +#: application/views/interface_assets/footer.php:2957 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:734 -#: application/views/lotw_views/index.php:111 +#: application/views/lotw_views/index.php:128 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 #: application/views/qslcard/index.php:76 @@ -2364,19 +2369,19 @@ msgstr "Modifier le satellite" #: application/controllers/Satellite.php:213 #: application/views/interface_assets/header.php:295 msgid "Satellite Flightpath" -msgstr "" +msgstr "Trajectoire du satellite" #: application/controllers/Satellite.php:256 msgid "Satellite pass" -msgstr "" +msgstr "Survol du satellite" #: application/controllers/Satellite.php:313 msgid "Failed to save pass settings!" -msgstr "" +msgstr "Echec de la sauvegarde des paramètres de survol !" #: application/controllers/Satellite.php:316 msgid "Pass settings saved!" -msgstr "" +msgstr "Paramètres de survol sauvegardés !" #: application/controllers/Satellite.php:329 msgid "No settings found!" @@ -2529,7 +2534,7 @@ msgstr "Interdit" #: application/controllers/Stationsetup.php:156 #: application/controllers/Stationsetup.php:177 #: application/controllers/Stationsetup.php:478 -#: application/views/qso/index.php:708 application/views/simplefle/index.php:39 +#: application/views/qso/index.php:709 application/views/simplefle/index.php:39 #: application/views/widgets/on_air.php:102 msgid "Error" msgstr "Erreur" @@ -2692,7 +2697,7 @@ msgstr "Satellite QSOs" #: application/controllers/Statistics.php:354 #: application/views/interface_assets/header.php:170 msgid "EME Initials" -msgstr "" +msgstr "EME initiales" #: application/controllers/Themes.php:27 #: application/views/interface_assets/header.php:316 @@ -2797,11 +2802,11 @@ msgstr "Mise à jour WWFF échouée. Résultat : " #: application/controllers/Update.php:555 msgid "HAMqsl Update complete. Result: " -msgstr "" +msgstr "Mise à jour HAMqsl terminée. Résultats : " #: application/controllers/Update.php:557 msgid "HAMqsl Update failed. Result: " -msgstr "" +msgstr "Echec de la mise à jour HAMqsl. Résultats : " #: application/controllers/Update.php:590 msgid "POTA Update complete. Result: " @@ -2827,6 +2832,14 @@ msgstr "Mise à jour LoTW SAT" msgid "Update of Hams of Note" msgstr "" +#: application/controllers/Update.php:718 +msgid "VUCC Grid file update complete. Result: " +msgstr "Mise à jour du fichier Locator VUCC terminée. Résultat : " + +#: application/controllers/Update.php:720 +msgid "VUCC Grid file update failed. Result: " +msgstr "" + #: application/controllers/User.php:50 #: application/views/interface_assets/header.php:306 msgid "User Accounts" @@ -2958,7 +2971,7 @@ msgstr "L'utilisateur %s s'est déconnecté." msgid "Station Name" msgstr "Nom de la station" -#: application/controllers/User.php:1262 application/views/debug/index.php:594 +#: application/controllers/User.php:1262 application/views/debug/index.php:599 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:61 #: application/views/station_profile/edit.php:77 @@ -3032,12 +3045,16 @@ msgstr "Mot de passe réinitialisé" msgid "" "Couldn't set account to this username. Please try another one than \"%s\"." msgstr "" +"Impossible d'afficher le compte de cet utilisateur. Essayez avec un " +"utilisateur différent de \"%s\"." #: application/controllers/User.php:1514 #, php-format msgid "" "Couldn't set account to this email. Please try another address than \"%s\"." msgstr "" +"Impossible d'attribuer un compte à cet email. Essayez une adresse autre que " +"\"%s\"." #: application/controllers/User.php:1553 #, php-format @@ -3266,7 +3283,7 @@ msgstr "Quelque chose s'est mal passé avec eQSL.cc !" #: application/models/Eqslmethods_model.php:308 msgid "QTH Nickname does not exist at eQSL" -msgstr "" +msgstr "Le QTH n'existe pas dans eQSL" #: application/models/Eqslmethods_model.php:317 msgid "eQSL.cc is experiencing issues. Please try exporting QSOs later." @@ -3293,6 +3310,8 @@ msgstr "" msgid "" "An uncaught Error occured while uploading QSOs. Perhaps eQSL has hiccups" msgstr "" +"Une erreur inattendue s'est produite lors du téléchargement des QSO. Peut-" +"être que eQSL rencontre des problèmes" #: application/models/Hrdlog_model.php:22 msgid "" @@ -3316,7 +3335,7 @@ msgstr "ID de station non autorisé" #: application/models/Logbook_model.php:1299 msgid "No Call given" -msgstr "" +msgstr "Aucun indicatif n'a été donné" #: application/models/Logbook_model.php:1369 #: application/models/Logbook_model.php:1571 @@ -3408,18 +3427,18 @@ msgstr "inconnu" #: application/models/Logbook_model.php:4957 msgid "POTA reference already in log" -msgstr "" +msgstr "Les références du POTA sont déjà dans le log" #: application/models/Logbook_model.php:4960 msgid "QSO updated" -msgstr "" +msgstr "QSO mis à jour" #: application/models/Logbook_model.php:5814 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 #: application/views/dashboard/index.php:19 -#: application/views/gridmap/index.php:156 +#: application/views/gridmap/index.php:197 #: application/views/logbookadvanced/index.php:15 #: application/views/user/edit.php:256 application/views/user/edit.php:279 #: application/views/user/edit.php:302 application/views/user/edit.php:325 @@ -3430,7 +3449,7 @@ msgstr "Azimut" #: application/models/Note.php:7 msgid "Contacts" -msgstr "" +msgstr "Contacts" #: application/models/Note.php:8 application/views/qso/index.php:61 #: application/views/statistics/index.php:46 @@ -3444,7 +3463,7 @@ msgstr "Antennes" #: application/models/Note.php:45 application/models/Note.php:69 msgid "In Contacts category, the titles of the notes need to be unique." -msgstr "" +msgstr "Dans la catégorie Contacts, le titre des notes doit être unique." #: application/models/Update_model.php:352 msgid "Newer release available:" @@ -3519,7 +3538,7 @@ msgid "Accumulated number of WAJA worked" msgstr "Nombre total de WAJA contactés" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:317 +#: application/views/dashboard/index.php:322 #: application/views/dayswithqso/index.php:42 #: application/views/dayswithqso/index.php:82 #: application/views/statistics/index.php:19 @@ -3536,7 +3555,7 @@ msgid "Yearly" msgstr "Annuel" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:327 #: application/views/visitor/index.php:255 msgid "Month" msgstr "Mois" @@ -3588,8 +3607,8 @@ msgstr "Différence" #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:86 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:79 application/views/bandmap/list.php:87 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:113 #: application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 @@ -3612,14 +3631,15 @@ msgstr "Différence" #: application/views/dxatlas/index.php:60 #: application/views/dxatlas/index.php:82 #: application/views/dxatlas/index.php:94 -#: application/views/gridmap/index.php:13 -#: application/views/gridmap/index.php:28 -#: application/views/gridmap/index.php:41 -#: application/views/gridmap/index.php:70 -#: application/views/gridmap/index.php:83 +#: application/views/gridmap/index.php:29 +#: application/views/gridmap/index.php:44 +#: application/views/gridmap/index.php:78 +#: application/views/gridmap/index.php:93 +#: application/views/gridmap/index.php:107 +#: application/views/gridmap/index.php:121 #: application/views/interface_assets/footer.php:46 -#: application/views/interface_assets/footer.php:1692 -#: application/views/interface_assets/footer.php:1831 +#: application/views/interface_assets/footer.php:1790 +#: application/views/interface_assets/footer.php:1929 #: 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 @@ -3706,7 +3726,7 @@ msgstr "Période" #: application/views/accumulate/index.php:80 #: application/views/callstats/index.php:65 #: application/views/distances/index.php:53 -#: application/views/gridmap/index.php:38 +#: application/views/gridmap/index.php:41 #: application/views/logbookadvanced/edit.php:14 #: application/views/logbookadvanced/index.php:310 #: application/views/logbookadvanced/index.php:857 @@ -3726,7 +3746,7 @@ msgstr "Tous sauf SAT" #: application/views/accumulate/index.php:85 #: application/views/callstats/index.php:69 #: application/views/distances/index.php:58 -#: application/views/gridmap/index.php:42 +#: application/views/gridmap/index.php:45 #: application/views/logbookadvanced/edit.php:207 #: application/views/logbookadvanced/edit.php:215 #: application/views/logbookadvanced/index.php:406 @@ -3738,9 +3758,9 @@ msgstr "Rien/Vide" #: application/views/callstats/index.php:71 application/views/csv/index.php:95 #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 +#: application/views/gridmap/index.php:47 application/views/kml/index.php:80 #: application/views/logbookadvanced/index.php:314 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:477 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:478 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 #: application/views/view_log/qso.php:233 @@ -3752,9 +3772,9 @@ msgstr "Aircraft Scatter" #: application/views/callstats/index.php:72 application/views/csv/index.php:96 #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 +#: application/views/gridmap/index.php:48 application/views/kml/index.php:81 #: application/views/logbookadvanced/index.php:315 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:478 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:479 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 #: application/views/view_log/qso.php:236 @@ -3766,9 +3786,9 @@ msgstr "Aurores" #: application/views/callstats/index.php:73 application/views/csv/index.php:97 #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 +#: application/views/gridmap/index.php:49 application/views/kml/index.php:82 #: application/views/logbookadvanced/index.php:316 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:479 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:480 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 #: application/views/view_log/qso.php:239 @@ -3780,9 +3800,9 @@ msgstr "Aurore-E" #: application/views/callstats/index.php:74 application/views/csv/index.php:98 #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 +#: application/views/gridmap/index.php:50 application/views/kml/index.php:83 #: application/views/logbookadvanced/index.php:317 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:480 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:481 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 #: application/views/view_log/qso.php:242 @@ -3794,9 +3814,9 @@ msgstr "Rétrodiffusion" #: application/views/callstats/index.php:75 application/views/csv/index.php:99 #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 +#: application/views/gridmap/index.php:51 application/views/kml/index.php:84 #: application/views/logbookadvanced/index.php:318 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:481 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:482 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 #: application/views/view_log/qso.php:245 @@ -3808,9 +3828,9 @@ msgstr "EchoLink" #: application/views/callstats/index.php:76 application/views/csv/index.php:100 #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 +#: application/views/gridmap/index.php:52 application/views/kml/index.php:85 #: application/views/logbookadvanced/index.php:319 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:482 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:483 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 #: application/views/view_log/qso.php:248 @@ -3822,9 +3842,9 @@ msgstr "Terre-Lune-Terre" #: application/views/callstats/index.php:77 application/views/csv/index.php:101 #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 +#: application/views/gridmap/index.php:53 application/views/kml/index.php:86 #: application/views/logbookadvanced/index.php:320 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:483 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:484 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 #: application/views/view_log/qso.php:251 @@ -3836,9 +3856,9 @@ msgstr "Sporadique E" #: application/views/callstats/index.php:78 application/views/csv/index.php:102 #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 +#: application/views/gridmap/index.php:54 application/views/kml/index.php:87 #: application/views/logbookadvanced/index.php:321 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:484 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:485 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 #: application/views/view_log/qso.php:254 @@ -3850,9 +3870,9 @@ msgstr "Irrégularités alignées au champ" #: application/views/callstats/index.php:79 application/views/csv/index.php:103 #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 +#: application/views/gridmap/index.php:55 application/views/kml/index.php:88 #: application/views/logbookadvanced/index.php:322 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:485 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:486 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 #: application/views/view_log/qso.php:257 @@ -3864,9 +3884,9 @@ msgstr "F2 Réflexion" #: application/views/callstats/index.php:80 application/views/csv/index.php:104 #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 +#: application/views/gridmap/index.php:56 application/views/kml/index.php:89 #: application/views/logbookadvanced/index.php:323 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:486 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:487 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 #: application/views/view_log/qso.php:260 @@ -3878,9 +3898,9 @@ msgstr "Assisté par Internet" #: application/views/callstats/index.php:81 application/views/csv/index.php:105 #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 +#: application/views/gridmap/index.php:57 application/views/kml/index.php:90 #: application/views/logbookadvanced/index.php:324 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:487 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:488 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 #: application/views/view_log/qso.php:263 @@ -3892,9 +3912,9 @@ msgstr "Réflexion Ionosphérique" #: application/views/callstats/index.php:82 application/views/csv/index.php:106 #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 +#: application/views/gridmap/index.php:58 application/views/kml/index.php:91 #: application/views/logbookadvanced/index.php:325 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:488 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:489 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 #: application/views/view_log/qso.php:266 @@ -3906,9 +3926,9 @@ msgstr "IRLP" #: application/views/callstats/index.php:83 application/views/csv/index.php:107 #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 +#: application/views/gridmap/index.php:59 application/views/kml/index.php:92 #: application/views/logbookadvanced/index.php:326 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:489 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:490 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 #: application/views/view_log/qso.php:269 @@ -3920,9 +3940,9 @@ msgstr "Réflexions météorites" #: application/views/callstats/index.php:84 application/views/csv/index.php:108 #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 +#: application/views/gridmap/index.php:60 application/views/kml/index.php:93 #: application/views/logbookadvanced/index.php:327 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:490 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:491 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 #: application/views/view_log/qso.php:272 @@ -3934,9 +3954,9 @@ msgstr "Relais ou transpondeur terrestre ou atmosphérique" #: application/views/callstats/index.php:85 application/views/csv/index.php:109 #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 +#: application/views/gridmap/index.php:61 application/views/kml/index.php:94 #: application/views/logbookadvanced/index.php:328 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:491 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:492 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 #: application/views/view_log/qso.php:275 @@ -3948,9 +3968,9 @@ msgstr "Rain scatter" #: application/views/callstats/index.php:86 application/views/csv/index.php:110 #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 +#: application/views/gridmap/index.php:62 application/views/kml/index.php:95 #: application/views/logbookadvanced/index.php:329 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:492 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:493 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 #: application/views/view_log/qso.php:278 @@ -3962,9 +3982,9 @@ msgstr "Satellite" #: application/views/callstats/index.php:87 application/views/csv/index.php:111 #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 +#: application/views/gridmap/index.php:63 application/views/kml/index.php:96 #: application/views/logbookadvanced/index.php:330 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:493 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:494 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 #: application/views/view_log/qso.php:281 @@ -3976,9 +3996,9 @@ msgstr "Transéquatoriale" #: application/views/callstats/index.php:88 application/views/csv/index.php:112 #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 +#: application/views/gridmap/index.php:64 application/views/kml/index.php:97 #: application/views/logbookadvanced/index.php:331 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:494 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:495 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 #: application/views/view_log/qso.php:284 @@ -4033,7 +4053,7 @@ msgstr "Afficher" #: application/views/components/hamsat/table.php:29 #: application/views/distancerecords/index.php:14 #: application/views/distances/index.php:34 -#: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 +#: application/views/gridmap/index.php:73 application/views/hamsat/index.php:32 #: application/views/interface_assets/header.php:198 #: application/views/logbookadvanced/edit.php:17 #: application/views/logbookadvanced/index.php:292 @@ -4056,7 +4076,7 @@ msgstr "Satellite" #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 -#: application/views/gridmap/index.php:80 +#: application/views/gridmap/index.php:88 #: application/views/logbookadvanced/index.php:301 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 @@ -4069,7 +4089,7 @@ msgstr "Orbite" #: application/views/activated_gridmap/index.php:50 #: application/views/awards/wab/index.php:65 -#: application/views/gridmap/index.php:92 +#: application/views/gridmap/index.php:132 #: application/views/timeline/index.php:52 msgid "Confirmation" msgstr "Confirmation" @@ -4091,24 +4111,24 @@ msgstr "Confirmation" #: application/views/awards/wapc/index.php:56 #: application/views/awards/was/index.php:68 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:125 application/views/user/edit.php:810 +#: application/views/gridmap/index.php:165 application/views/user/edit.php:810 msgid "QRZ.com" msgstr "QRZ.com" #: application/views/activated_gridmap/index.php:86 -#: application/views/gridmap/index.php:130 +#: application/views/gridmap/index.php:17 msgid "Plot" msgstr "Afficher" #: application/views/activated_gridmap/index.php:87 -#: application/views/gridmap/index.php:131 +#: application/views/gridmap/index.php:18 msgid "Clear Markers" msgstr "Effacer marqueurs" #: application/views/activated_gridmap/index.php:102 #: application/views/awards/ffma/index.php:31 #: application/views/awards/gridmaster/index.php:46 -#: application/views/gridmap/index.php:148 +#: application/views/gridmap/index.php:189 #: application/views/logbookadvanced/index.php:10 msgid "Latitude" msgstr "Latitude" @@ -4116,7 +4136,7 @@ msgstr "Latitude" #: application/views/activated_gridmap/index.php:104 #: application/views/awards/ffma/index.php:33 #: application/views/awards/gridmaster/index.php:48 -#: application/views/gridmap/index.php:150 +#: application/views/gridmap/index.php:191 #: application/views/logbookadvanced/index.php:11 msgid "Longitude" msgstr "Longitude" @@ -4177,8 +4197,8 @@ msgstr "Rien trouvé !" #: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:170 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:244 +#: application/views/contesting/index.php:171 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:249 #: application/views/dcl_views/index.php:27 #: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 @@ -4283,12 +4303,12 @@ msgstr "Différence de données DOK entre votre journal de travail et DCL" #: application/views/awards/pota/index.php:33 #: application/views/awards/sota/index.php:31 #: application/views/awards/wwff/index.php:33 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:25 #: application/views/contesting/index.php:103 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:239 -#: application/views/debug/index.php:589 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:244 +#: application/views/debug/index.php:594 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4329,12 +4349,12 @@ msgstr "Date" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:590 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:247 +#: application/views/debug/index.php:595 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4360,10 +4380,10 @@ msgstr "Heure" #: application/views/adif/dcl_success.php:31 #: application/views/adif/pota_success.php:31 #: application/views/awards/vucc/band.php:18 -#: application/views/bandmap/list.php:129 -#: application/views/contesting/index.php:262 +#: application/views/bandmap/list.php:130 +#: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:591 application/views/debug/index.php:626 +#: application/views/debug/index.php:596 application/views/debug/index.php:631 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4405,8 +4425,7 @@ msgstr "Importation CBR" #: application/views/adif/import.php:73 application/views/adif/import.php:379 #: application/views/adif/import.php:400 application/views/api/index.php:22 #: application/views/dashboard/index.php:180 -#: application/views/dashboard/index.php:209 -#: application/views/dashboard/index.php:214 +#: application/views/dashboard/index.php:213 #: application/views/eqsl/import.php:46 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 #: application/views/options/maptiles.php:48 @@ -4425,7 +4444,7 @@ msgstr "La taille maximum d'un fichier à télécharger est " #: application/views/adif/import.php:349 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:193 application/views/debug/index.php:210 -#: application/views/debug/index.php:581 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:586 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 @@ -4447,7 +4466,7 @@ msgstr "Sélectionner une Localisation" #: application/views/adif/import.php:91 msgid "Choose ADIF File" -msgstr "" +msgstr "Choisissez le fichier ADIF" #: application/views/adif/import.php:97 msgid "Add QSOs to Contest" @@ -4463,10 +4482,12 @@ msgid "" "Type in the operators callsign of the imported QSOs. Leave empty to use the " "operator callsign in the ADIF file." msgstr "" +"Saisissez l'indicatif de l'opérateur des QSO importés. Laissez vide pour " +"utiliser l'indicatif de l'opérateur dans le fichier ADIF." #: application/views/adif/import.php:117 msgid "Basic Settings" -msgstr "" +msgstr "Paramètres de base" #: application/views/adif/import.php:124 msgid "Import duplicate QSOs" @@ -4475,6 +4496,7 @@ msgstr "Importer les QSO en double" #: application/views/adif/import.php:126 msgid "Select if QSOs shall be imported, even if they already exist." msgstr "" +"Sélectionner si les QSO doivent être importés, même s'ils existent déjà." #: application/views/adif/import.php:131 msgid "Use DXCC information from ADIF" @@ -4491,13 +4513,13 @@ msgstr "" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 #: application/views/interface_assets/footer.php:580 -#: application/views/interface_assets/footer.php:2564 +#: application/views/interface_assets/footer.php:2662 msgid "DANGER" msgstr "DANGER" #: application/views/adif/import.php:141 msgid "Ignore Station callsign on import" -msgstr "" +msgstr "Ignorer l'indicatif de la station lors de l'importation" #: application/views/adif/import.php:143 #, php-format @@ -4516,6 +4538,8 @@ msgstr "" #: application/views/adif/import.php:160 msgid "Mark QSOs as uploaded (This does NOT upload QSOs to these services!)" msgstr "" +"Marquer les QSO comme téléchargés (cela ne TELECHARGE PAS ces QSO vers les " +"services !)" #: application/views/adif/import.php:167 msgid "Mark imported QSOs as uploaded to LoTW" @@ -4552,7 +4576,7 @@ msgstr "Marquer les QSOs importés comme téléchargés dans le carnet de bord D #: application/views/adif/import.php:216 msgid "Toggle all checkboxes" -msgstr "" +msgstr "Activer/désactiver toutes les cases à cocher" #: application/views/adif/import.php:221 application/views/adif/import.php:364 #: application/views/adif/import.php:384 application/views/adif/import.php:422 @@ -4607,7 +4631,7 @@ msgstr "au" #: application/views/adif/import.php:269 msgid "Export options" -msgstr "" +msgstr "Options de l'exportation" #: application/views/adif/import.php:276 msgid "Mark exported QSOs as uploaded to LoTW" @@ -4698,6 +4722,8 @@ msgid "" "An example for a tool to export the POTA hunter log in ADIF format is %s " "made by AF0G and available on GitHub." msgstr "" +"Un exemple d'outil pour l'exportation du log d'un chasseur de POTA dans un " +"format ADIF est %s créé par AF0G et disponible sur GitHub." #: application/views/adif/import.php:399 msgid "" @@ -4716,7 +4742,7 @@ msgstr "" #: application/views/adif/import.php:399 #: application/views/adif/import_success.php:40 #: application/views/dcl_views/index.php:76 -#: application/views/lotw_views/index.php:137 +#: application/views/lotw_views/index.php:154 msgid "Information" msgstr "Information" @@ -4783,7 +4809,7 @@ msgstr "" #: application/views/adif/import_success.php:22 msgid "Yay, it's imported!" -msgstr "" +msgstr "Ouais, c'est importé !" #: application/views/adif/import_success.php:23 msgid "The ADIF File has been imported." @@ -4791,7 +4817,7 @@ msgstr "Le fichier ADIF a été importé." #: application/views/adif/import_success.php:25 msgid "Number of QSOs imported:" -msgstr "" +msgstr "Nombre de QSO importés :" #: application/views/adif/import_success.php:31 msgid "Dupes were inserted!" @@ -4803,7 +4829,7 @@ msgstr "Les doublons ont été ignorés." #: application/views/adif/import_success.php:40 msgid "Contest logs imported" -msgstr "" +msgstr "Logs de concours importés" #: application/views/adif/import_success.php:42 msgid "" @@ -4860,29 +4886,31 @@ msgstr "Les QSO ont été marqués comme téléchargés sur LoTW." #: application/views/adif/pota_success.php:12 msgid "Results of POTA Update" -msgstr "" +msgstr "Résultats de la mise à jour des POTA" #: application/views/adif/pota_success.php:17 msgid "POTA references for existing QSOs has been updated." -msgstr "" +msgstr "Les références des POTA pour les QSO existants ont été mises à jour." #: application/views/adif/pota_success.php:25 msgid "POTA Update Errors" -msgstr "" +msgstr "Erreurs de mise à jour des POTA" #: application/views/adif/pota_success.php:26 msgid "" "There is different data for POTA references in your log compared to imported " "data or QSO data could not be matched" msgstr "" +"Les données des POTA de votre log ne correspondent pas avec les data " +"importées ou les données des QSO ne trouvent pas de correspondance" #: application/views/adif/pota_success.php:34 msgid "POTA REF in Log" -msgstr "" +msgstr "REF POTA dans le log" #: application/views/adif/pota_success.php:35 msgid "POTA REF in ADIF" -msgstr "" +msgstr "REF POTA en ADIF" #: application/views/adif/pota_success.php:36 #: application/views/api/index.php:37 application/views/cron/index.php:67 @@ -4955,7 +4983,7 @@ msgstr "" #: application/views/api/index.php:13 msgid "Links to 3rd-Party-Software which works with Wavelog:" -msgstr "Liens vers des logiciels fonctionnant avec Wavelog:" +msgstr "Liens vers des logiciels tiers fonctionnant avec Wavelog :" #: application/views/api/index.php:16 msgid "More Tools" @@ -5122,6 +5150,8 @@ msgid "" "Paul Stoetzer N8HM is sponsoring an award for contacts made via the AO-73 " "(FUNcube-1) amateur radio satellite." msgstr "" +"Paul Stoetzer N8HM sponsorise un trophée pour les contacts établis via le " +"satellite radio amateur AO-73 (FUNcube-1)." #: application/views/awards/73on73/index.php:9 #: application/views/awards/helvetia/index.php:23 @@ -5139,6 +5169,8 @@ msgid "" "Fields taken for this Award: Propagation-Mode and SAT-Name (ADIF: " "PROP_MODE=SAT, SAT_NAME='AO-73')" msgstr "" +"Champs requis pour ce trophée : Mode de propagation et nom du satellite " +"(ADIF: PROP_MODE=SAT, SAT_NAME='AO-73')" #: application/views/awards/73on73/index.php:32 #: application/views/awards/jcc/index.php:152 @@ -5175,6 +5207,10 @@ msgid "" "contacts with specified numbers of U.S. counties under rules and conditions " "you can find %s." msgstr "" +"Le trophée des comtés des États-Unis d'Amérique (USA-CA), sponsorisé par " +"MARAC (Mobile Amateur Radio Awards Club), est décerné pour les contacts " +"radio bidirectionnels confirmés avec un nombre spécifié de comtés américains " +"selon les règles et conditions que vous pouvez trouver %s." #: application/views/awards/counties/index.php:9 msgid "" @@ -5198,6 +5234,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))" #: application/views/awards/counties/index.php:22 msgid "Counties Worked" @@ -5223,7 +5261,7 @@ msgstr "Comtés Confirmés" #: application/views/awards/wapc/index.php:145 #: application/views/awards/was/index.php:180 #: application/views/awards/wpx/index.php:172 -#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:317 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -5243,7 +5281,8 @@ msgstr "Total" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:151 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/dxatlas/index.php:80 +#: application/views/gridmap/index.php:199 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 #: application/views/logbookadvanced/index.php:335 @@ -5251,7 +5290,7 @@ msgstr "Total" #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:308 -#: application/views/qso/index.php:450 +#: application/views/qso/index.php:451 #: application/views/search/cqzones_result.php:13 #: application/views/station_profile/create.php:110 #: application/views/station_profile/edit.php:157 @@ -5268,7 +5307,7 @@ msgstr "Survoler une zone" #: application/views/awards/cq/index.php:20 msgid "CQ WAZ (Worked All Zones) Award" -msgstr "" +msgstr "Trophée CQ WAZ (Toutes zones contactées)" #: application/views/awards/cq/index.php:21 msgid "" @@ -5277,6 +5316,10 @@ msgid "" "magazine first appeared in January 1945 and focuses on awards and the " "practical aspects of amateur radio." msgstr "" +"Le magazine CQ, basé aux États-Unis, était l'un des magazines de " +"radioamateur les plus populaires au monde. Il a cessé ses activités fin " +"2023. Paru pour la première fois en janvier 1945, il se concentre sur les " +"récompenses et les aspects pratiques du radioamateurisme." #: application/views/awards/cq/index.php:22 msgid "" @@ -5285,28 +5328,33 @@ msgid "" "Magazine does no longer exists the CQ WAZ Awards is now managed directly by " "N4BAA." msgstr "" +"Le trophée WAZ (\"Worked All Zones\" cad toutes zones contactées) nécessite " +"de contacter et de confirmer les 40 zones CQ. Le magazine CQ n'existant " +"plus, les prix CQ WAZ sont désormais gérés directement par N4BAA." #: application/views/awards/cq/index.php:23 #, php-format msgid "You can find all the information and rules on the Website of N4BAA: %s" msgstr "" +"Vous pouvez trouver l'ensemble des informations et réglement sur le site de " +"N4BAA : %s" #: application/views/awards/cq/index.php:24 msgid "Fields taken for this Award: CQ-Zone (ADIF: CQZ)" -msgstr "" +msgstr "Champs pris en compte pour ce trophée : CQ-Zone (ADIF : CQZ)" #: application/views/awards/cq/index.php:26 msgid "Awards - CQ WAZ" -msgstr "" +msgstr "Trophée - CQ WAZ" #: application/views/awards/cq/index.php:35 #: application/views/awards/itu/index.php:35 #: application/views/awards/wab/list.php:6 #: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:81 -#: application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:457 +#: application/views/bandmap/list.php:82 +#: application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:462 #: application/views/interface_assets/footer.php:43 #: application/views/search/result.php:32 #: application/views/visitor/index.php:270 @@ -5316,9 +5364,9 @@ msgstr "Confirmés" #: application/views/awards/cq/index.php:35 #: application/views/awards/itu/index.php:35 #: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:80 -#: application/views/dashboard/index.php:335 -#: application/views/dashboard/index.php:451 +#: application/views/bandmap/list.php:81 +#: application/views/dashboard/index.php:340 +#: application/views/dashboard/index.php:456 #: application/views/search/result.php:35 #: application/views/visitor/index.php:266 msgid "Worked" @@ -5396,7 +5444,7 @@ msgstr "Afficher QSO avec type QSL" #: application/views/awards/iota/index.php:62 #: application/views/awards/itu/index.php:57 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2543 +#: application/views/interface_assets/footer.php:2641 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -5561,7 +5609,7 @@ msgstr "" #: application/views/awards/dok/index.php:11 msgid "Fields taken for this Award: DOK (ADIF: DARC_DOK)" -msgstr "" +msgstr "Champs pris en compte pour ce trophée : DOK (ADIF : DARC_DOK)" #: application/views/awards/dok/index.php:21 msgid "DOK / SDOK" @@ -5649,9 +5697,12 @@ msgid "" "Fields taken for this Award: DXCC (Needs to be a valid one out of the DXCC-" "ADIF-Spec-List" msgstr "" +"Champs pris en compte pour ce trophée : DXCC (doit être valide et figurer " +"dans la liste DXCC-ADIF-Spec" #: application/views/awards/dxcc/index.php:28 #: application/views/awards/wpx/index.php:13 +#: application/views/gridmap/index.php:16 #: application/views/logbookadvanced/index.php:221 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" @@ -5669,12 +5720,12 @@ msgstr "Inclure supprimé" #: application/views/awards/dxcc/index.php:97 #: application/views/awards/iota/index.php:88 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:88 +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:89 #: application/views/logbookadvanced/edit.php:217 #: application/views/logbookadvanced/index.php:408 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 -#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:425 +#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:426 #: application/views/view_log/qso.php:350 msgid "Antarctica" msgstr "Antarctique" @@ -5682,12 +5733,12 @@ msgstr "Antarctique" #: application/views/awards/dxcc/index.php:101 #: application/views/awards/iota/index.php:92 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:87 +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:88 #: application/views/logbookadvanced/edit.php:216 #: application/views/logbookadvanced/index.php:407 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 -#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:424 +#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:425 #: application/views/view_log/qso.php:347 msgid "Africa" msgstr "Afrique" @@ -5695,12 +5746,12 @@ msgstr "Afrique" #: application/views/awards/dxcc/index.php:105 #: application/views/awards/iota/index.php:96 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:89 +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:90 #: application/views/logbookadvanced/edit.php:219 #: application/views/logbookadvanced/index.php:410 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 -#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:426 +#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:427 #: application/views/view_log/qso.php:353 msgid "Asia" msgstr "Asie" @@ -5708,12 +5759,12 @@ msgstr "Asie" #: application/views/awards/dxcc/index.php:109 #: application/views/awards/iota/index.php:100 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:90 +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:91 #: application/views/logbookadvanced/edit.php:220 #: application/views/logbookadvanced/index.php:411 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 -#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:427 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:428 #: application/views/view_log/qso.php:356 msgid "Europe" msgstr "Europe" @@ -5721,12 +5772,12 @@ msgstr "Europe" #: application/views/awards/dxcc/index.php:113 #: application/views/awards/iota/index.php:104 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:91 +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:92 #: application/views/logbookadvanced/edit.php:218 #: application/views/logbookadvanced/index.php:409 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 -#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:428 +#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:429 #: application/views/view_log/qso.php:359 msgid "North America" msgstr "Amérique du Nord" @@ -5734,12 +5785,12 @@ msgstr "Amérique du Nord" #: application/views/awards/dxcc/index.php:117 #: application/views/awards/iota/index.php:108 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:93 +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:94 #: application/views/logbookadvanced/edit.php:221 #: application/views/logbookadvanced/index.php:412 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 -#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:430 +#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:431 #: application/views/view_log/qso.php:365 msgid "South America" msgstr "Amérique du Sud" @@ -5747,12 +5798,12 @@ msgstr "Amérique du Sud" #: application/views/awards/dxcc/index.php:121 #: application/views/awards/iota/index.php:112 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:92 +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:93 #: application/views/logbookadvanced/edit.php:222 #: application/views/logbookadvanced/index.php:413 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 -#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:429 +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:430 #: application/views/view_log/qso.php:362 msgid "Oceania" msgstr "Océanie" @@ -5761,31 +5812,31 @@ msgstr "Océanie" #: application/views/awards/iota/index.php:121 #: application/views/awards/wpx/index.php:81 msgid "Every band (w/o SAT)" -msgstr "" +msgstr "Toutes les bandes (sans SAT)" #: application/views/awards/dxcc/index.php:221 msgid "Legend:" -msgstr "" +msgstr "Légende :" #: application/views/awards/dxcc/index.php:222 msgid "(Q)SL-Paper-Card" -msgstr "" +msgstr "(Q)SL - Carte Papier" #: application/views/awards/dxcc/index.php:223 msgid "(L)oTW" -msgstr "" +msgstr "(L)oTW" #: application/views/awards/dxcc/index.php:224 msgid "(e)QSL" -msgstr "" +msgstr "(e)QSL" #: application/views/awards/dxcc/index.php:225 msgid "QR(Z)-\"confirmation\"" -msgstr "" +msgstr "QR(Z) - \"confirmation\"" #: application/views/awards/dxcc/index.php:226 msgid "(C)lublog" -msgstr "" +msgstr "(C)lublog" #: application/views/awards/dxcc/index.php:227 msgid "(W)orked" @@ -5836,6 +5887,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be USA), Gridsquare (Must contain a " "grid from one of the 488 mainland gridsquares!), Band must be 6M." msgstr "" +"Champs requis pour ce trophée : DXCC (Doit être USA), Locator (Doit contenir " +"un carré des 488 locators continentaux !), Bande doit être le 6 m." #: application/views/awards/gridmaster/index.php:8 msgid "US Gridmaster Award" @@ -5891,6 +5944,9 @@ msgid "" "grid from one of the 488 mainland gridsquares!), Propagation-Mode and SAT-" "Name" msgstr "" +"Champs requis pour ce trophée : DXCC (Doit être USA), Locator (Doit contenir " +"un carré des 488 locators continentaux !), mode de propagation et nom du " +"satellite" #: application/views/awards/gridmaster/index.php:14 msgid "Gridmaster Award" @@ -5919,18 +5975,24 @@ msgid "" "Fields taken for this Award: DXCC (Must be Germany), Gridsquare, Propagation-" "Mode and SAT-Name" msgstr "" +"Champs requis pour ce trophée : DXCC (doit être l'Allemagne), Locator, mode " +"de propagation et nom du SAT" #: application/views/awards/gridmaster/index.php:23 msgid "" "Fields taken for this Award: DXCC (Must be Luxembourg), Gridsquare, " "Propagation-Mode and SAT-Name" msgstr "" +"Champs requis pour ce trophée : DXCC (doit être le Luxembourg), Locator, " +"mode de propagation et nom du SAT" #: application/views/awards/gridmaster/index.php:26 msgid "" "Fields taken for this Award: DXCC (Must be Japan), Gridsquare, Propagation-" "Mode and SAT-Name" msgstr "" +"Champs requis pour ce trophée : DXCC (doit être le Japon), Locator, mode de " +"propagation et nom du SAT" #: application/views/awards/helvetia/index.php:3 msgctxt "Switzerland Canton" @@ -5973,6 +6035,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be Switzerland) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" +"Champs requis pour ce trophée : DXCC (doit être la Suisse), Locator, mode de " +"propagation et nom du SAT" #: application/views/awards/helvetia/index.php:115 msgid "Show Helvetia Map" @@ -6042,6 +6106,8 @@ msgid "" "Fields taken for this Award: IOTA (ADIF: IOTA) must contain valid IOTA-" "Reference" msgstr "" +"Champs requis pour ce trophée : IOTA (ADIF : IOTA) doit contenir une " +"référence IOTA valide" #: application/views/awards/iota/index.php:30 msgid "Deleted IOTA" @@ -6055,7 +6121,7 @@ msgstr "Afficher la carte IOTA" #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 #: application/views/contesting/index.php:64 -#: application/views/contesting/index.php:228 +#: 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:782 @@ -6083,13 +6149,14 @@ msgstr "Supprimé" #: application/views/awards/itu/index.php:3 #: application/views/awards/itu/index.php:151 +#: application/views/gridmap/index.php:201 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 #: application/views/logbookadvanced/index.php:349 #: application/views/logbookadvanced/index.php:827 #: application/views/logbookadvanced/useroptions.php:118 #: application/views/lookup/index.php:8 application/views/qso/edit_ajax.php:316 -#: application/views/qso/index.php:460 +#: application/views/qso/index.php:461 #: application/views/search/ituzones_result.php:13 #: application/views/station_profile/create.php:124 #: application/views/station_profile/edit.php:174 @@ -6117,7 +6184,7 @@ msgstr "Vous pouvez trouver plus d'informations sur le site web de %s." #: application/views/awards/itu/index.php:24 msgid "Fields taken for this Award: ITU-Zone (ADIF: ITUZ)" -msgstr "" +msgstr "Champs requis pour ce trophée : ITU-Zone (ADIF : ITUZ)" #: application/views/awards/itu/index.php:26 msgid "Awards - ITU Zones" @@ -6157,6 +6224,8 @@ msgid "" "Fields taken for this Award: DXCC (Japan) and County (Must contain a valid " "reference!)" msgstr "" +"Champs requis pour ce trophée : DXCC (Japon) et Comté (doit contenir une " +"référence valide !)" #: application/views/awards/jcc/index.php:116 msgid "Show JCC Map" @@ -6183,7 +6252,7 @@ msgid "City" msgstr "Ville" #: application/views/awards/jcc/index.php:188 -#: application/views/dashboard/index.php:447 +#: application/views/dashboard/index.php:452 #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 @@ -6230,9 +6299,11 @@ msgstr "" #: application/views/awards/pota/index.php:11 msgid "Fields taken for this Award: POTA_REF (must contain Park-Reference)" msgstr "" +"Champs requis pour ce trophée : POTA_REF (doit contenir une référence de " +"parc)" #: application/views/awards/pota/index.php:32 -#: application/views/qso/index.php:274 application/views/qso/index.php:567 +#: application/views/qso/index.php:274 application/views/qso/index.php:568 #: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:276 #: application/views/user/edit.php:674 application/views/view_log/qso.php:403 @@ -6264,6 +6335,9 @@ msgid "" "any kind of 'Special Interest Group Award' for awards that are not " "implemented in Wavelog." msgstr "" +"La catégorie SIG ou \"groupe d'intérêt spécial\" offre la possibilité " +"d'utiliser n'importe quel type de « trophées de groupe d'intérêt spécial » " +"pour les trophées qui ne sont pas présents dans Wavelog." #: application/views/awards/sig/index.php:9 msgid "" @@ -6271,6 +6345,10 @@ msgid "" "dedicated fields for certain awards. SIG still makes it possible to use and " "evaluate all other types of markers for special interest groups." msgstr "" +"Cela s'explique par le fait que le format ADIF commun ne propose que " +"quelques champs dédiés à certains trophées. SIG permet néanmoins d'utiliser " +"et d'évaluer tous les autres types de marqueurs pour des groupes d'intérêt " +"spécifiques." #: application/views/awards/sig/index.php:10 msgid "" @@ -6279,11 +6357,15 @@ msgid "" "in the award evaluation, and 'SIG INFO,' which contains the actual " "reference(s). Both fields are freely customizable." msgstr "" +"Lors du traitement des QSO, vous trouverez deux champs : « SIG » contient " +"l'abréviation du nom du groupe d'intérêt qui est également visible dans " +"l'évaluation du trophée, et « INFO SIG », qui contient la ou les références " +"réelles. Ces deux champs sont personnalisables." #: application/views/awards/sig/index.php:21 #: application/views/station_profile/edit.php:288 msgid "Special Interest Group" -msgstr "" +msgstr "Groupe d'intérêt spécial" #: application/views/awards/sig/index.php:22 #: application/views/continents/index.php:17 @@ -6385,6 +6467,8 @@ 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, " +"VUCC_GRIDS)" #: application/views/awards/vucc/index.php:23 msgid "Grids Worked" @@ -6419,6 +6503,8 @@ msgid "" "Fields taken for this Award: SIG (Has to be 'WAB') and SIG_INFO (should " "contain valid WAB-Grid)" msgstr "" +"Champs requis pour ce trophée : SIG (Doit être 'WAB') et SIG_INFO (doit " +"contenir un carré WAB valide)" #: application/views/awards/wab/index.php:110 msgid "List" @@ -6444,6 +6530,8 @@ msgid "" "Fields taken for this Award: Continent (ADIF tag 'CONT'). Must contain a " "valid continent-abbreviation!" msgstr "" +"Champs requis pour ce trophée : Continent (balise ADIF 'CONT'). Doit " +"contenir une abréviation de continent valide !" #: application/views/awards/wac/index.php:14 msgid "Awards - Worked All Continents (WAC)" @@ -6456,14 +6544,14 @@ msgstr "Diplome - Worked All Continents (WAC)" #: application/views/logbookadvanced/index.php:866 #: application/views/logbookadvanced/useroptions.php:170 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 -#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:422 #: application/views/view_log/qso.php:342 msgid "Continent" msgstr "Continent" #: application/views/awards/wae/index.php:7 msgid "WAE Award" -msgstr "" +msgstr "Trophée WAE" #: application/views/awards/wae/index.php:8 msgid "" @@ -6539,11 +6627,11 @@ msgstr "Préfecture" #: application/views/awards/wap/index.php:3 msgctxt "The Netherlands Province" msgid "Province" -msgstr "" +msgstr "Province" #: application/views/awards/wap/index.php:20 msgid "VRZA WAP Award" -msgstr "" +msgstr "Trophée WAP VRZA" #: application/views/awards/wap/index.php:21 msgid "" @@ -6555,6 +6643,14 @@ msgid "" "Amateurs). Both organizations are active in organizing events, contests, and " "training, and they represent Dutch amateurs nationally and internationally." msgstr "" +"Les Pays-Bas s'étendent sur environ 300 km du Nord au Sud et environ 200 km " +"d'Est en Ouest. Sur les 18 millions d'habitants que compte le pays, environ " +"11 500 sont des radioamateurs titulaires d'une licence. Les plus grandes " +"organisations de radioamateurs néerlandaises sont VERON (Vereniging voor " +"Experimenteel Radio Onderzoek in Nederland) et VRZA (Vereniging voor Radio " +"Zend Amateurs). Ces deux organisations organisent des événements, des " +"concours et des formations, et représentent les radioamateurs néerlandais " +"aux niveaux national et international." #: application/views/awards/wap/index.php:22 msgid "" @@ -6564,31 +6660,41 @@ msgid "" "encourages operators to engage with a diverse range of stations across the " "country, promoting both national connectivity and operational skill." msgstr "" +"La VRZA (Vereniging voor Radio Zend Amateurs) décerne le prix « Worked All " +"Provinces » (WAP), \"Toutes les Provinces Contactées\", aux radioamateurs " +"ayant confirmé des contacts avec des stations dans chacune des douze " +"provinces des Pays-Bas. Ce Trophée encourage les opérateurs à collaborer " +"avec un large éventail de stations à travers le pays, favorisant ainsi la " +"connectivité nationale et les compétences opérationnelles." #: application/views/awards/wap/index.php:23 #, php-format msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "" +"Des informations sur les trophées WAP et leurs règles peuvent être trouvées " +"%s." #: application/views/awards/wap/index.php:24 msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" +"Champs requis pour ce trophée : DXCC (doit être les Pays-Bas) et STATE (doit " +"contenir une abréviation d'état valide !)" #: application/views/awards/wap/index.php:115 msgid "Show WAP Map" -msgstr "" +msgstr "Afficher la carte WAP" #: application/views/awards/wap/index.php:152 #: application/views/awards/wapc/index.php:120 msgid "Province" -msgstr "" +msgstr "Province" #: application/views/awards/wapc/index.php:7 msgid "WAPC - Worked All Provinces of China" -msgstr "" +msgstr "WAPC - Toutes les provinces de la Chine contactées" #: application/views/awards/wapc/index.php:8 msgid "" @@ -6597,12 +6703,19 @@ msgid "" "municipalities, autonomous regions, and special administrative regions of " "China, fostering a deeper understanding of China." msgstr "" +"Le trophée WAPC, décerné par le Mulan DX Club, vise à promouvoir la " +"communication entre les opérateurs radio amateurs du monde entier et les " +"opérateurs de toutes les provinces, municipalités, régions autonomes et " +"régions administratives spéciales de la Chine, favorisant une compréhension " +"plus approfondie de ce pays." #: application/views/awards/wapc/index.php:9 msgid "" "The award can be earned through long-term accumulation of contacts or " "achieved in a single effort during the annual WAPC Contest." msgstr "" +"Le trophée peut être gagné grâce à une accumulation de contacts à long terme " +"ou obtenu en une seule fois lors du concours annuel WAPC." #: application/views/awards/wapc/index.php:11 msgid "" @@ -6610,10 +6723,13 @@ msgid "" "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " "State (ADIF: DXCC and STATE)" msgstr "" +"Champs requis pour ce trophée : DXCC (Doit être l'un des pays suivants : " +"Chine/318, HongKong/321, Macao/152, Taiwan/386, l'ile de Pratas/505 ou " +"Scarborough Reef/506) et Etat valide (ADIF : DXCC et ETAT)" #: application/views/awards/wapc/index.php:119 msgid "Code" -msgstr "" +msgstr "Code" #: application/views/awards/was/index.php:3 msgctxt "USA State" @@ -6649,6 +6765,12 @@ msgid "" "possessions must be members of ARRL to apply for a WAS. Applicants from " "outside the U.S. are exempt from this requirement." msgstr "" +"Le trophée WAS (Worked All States, cad tous les états contactés) est " +"accessible à tous les amateurs du monde entier qui fournissent une preuve " +"écrite de leurs contacts avec chacun des 50 états des États-Unis. Les " +"amateurs résidant aux États-Unis et dans ses territoires doivent être " +"membres de l'ARRL pour postuler au WAS. Les candidats résidant hors des " +"États-Unis sont exemptés de cette obligation." #: application/views/awards/was/index.php:23 #, php-format @@ -6663,6 +6785,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" +"Champs requis pour ce trophée : DXCC (doit être les États-Unis, l'Alaska ou " +"Hawaï) et ÉTAT (doit contenir l'abréviation d'un état américain valide !)" #: application/views/awards/was/index.php:115 msgid "Show WAS Map" @@ -6670,13 +6794,13 @@ msgstr "Afficher la carte WAS" #: application/views/awards/wpx/index.php:76 msgid "Band / Satellite / Orbit" -msgstr "" +msgstr "Bande / Satellite / Orbite" #: application/views/awards/wpx/wpx_details.php:21 #: application/views/oqrs/showrequests.php:86 #: application/views/simplefle/index.php:78 msgid "QSO Date" -msgstr "" +msgstr "Date du QSO" #: application/views/awards/wwff/index.php:7 msgid "WWFF - World Wide Flora and Fauna Award" @@ -6705,10 +6829,10 @@ msgstr "" #: application/views/awards/wwff/index.php:11 msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" -msgstr "" +msgstr "Champs requis pour ce trophée : WWFF (ADIF : WWFF_REF)" #: application/views/awards/wwff/index.php:32 -#: application/views/qso/index.php:262 application/views/qso/index.php:554 +#: application/views/qso/index.php:262 application/views/qso/index.php:555 #: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:263 #: application/views/user/edit.php:670 application/views/view_log/qso.php:396 @@ -6726,7 +6850,7 @@ msgstr "" #: application/views/backup/adif_view.php:9 #: application/views/backup/notes_view.php:9 msgid "You could automate this process by making it a cronjob." -msgstr "Vous pourrais automatiser ce processus en en faisant un cronjob." +msgstr "Vous pouvez automatiser ce processus en faisant un cronjob." #: application/views/backup/adif_view.php:13 #: application/views/backup/notes_view.php:13 @@ -6770,7 +6894,7 @@ msgstr "" #: application/views/bandmap/index.php:15 application/views/bandmap/list.php:56 msgid "BandMap" -msgstr "" +msgstr "Carte de la bande" #: application/views/bandmap/index.php:18 application/views/bandmap/list.php:59 msgid "BandList" @@ -6784,7 +6908,7 @@ msgstr "Liste des bandes" msgid "None" msgstr "Aucun" -#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:84 +#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:85 msgid "Spots de" msgstr "Spots de" @@ -6798,40 +6922,46 @@ msgstr "" msgid "Click to prepare logging." msgstr "Cliquez sur pour préparer la journalisation." -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:70 +#: application/views/contesting/index.php:160 +#: application/views/qso/index.php:353 +msgid "WebSocket (Requires WLGate>1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "Statut DXCC" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "Non réalisés" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" -msgstr "" - -#: application/views/bandmap/list.php:113 -msgid "Phone" -msgstr "" +msgstr "Contacté, non Confirmé" #: application/views/bandmap/list.php:114 -msgid "CW" -msgstr "" +msgid "Phone" +msgstr "Phonie" #: application/views/bandmap/list.php:115 -msgid "Digi" -msgstr "" +msgid "CW" +msgstr "CW" -#: application/views/bandmap/list.php:131 -msgid "WAC" -msgstr "" +#: application/views/bandmap/list.php:116 +msgid "Digi" +msgstr "Digi" #: application/views/bandmap/list.php:132 +msgid "WAC" +msgstr "WAC" + +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "Spotter" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6839,47 +6969,49 @@ msgstr "Spotter" msgid "Message" msgstr "Message" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "Dernière activité" #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" -msgstr "" +msgstr "Veuillez saisir des chiffres valides pour la fréquence" #: application/views/bands/bandedges.php:3 msgid "The 'From' frequency must be less than the 'To' frequency." -msgstr "" +msgstr "La fréquence « De » doit être inférieure à la fréquence « À »." #: application/views/bands/bandedges.php:4 msgid "The Frequency overlaps with an existing entry." -msgstr "" +msgstr "La fréquence chevauche une entrée existante." #: application/views/bands/bandedges.php:5 msgid "Are you sure you want to delete this band edge?" -msgstr "" +msgstr "Etes-vous certain de vouloir supprimer cette limite de bande ?" #: application/views/bands/bandedges.php:17 msgid "Bandedges" -msgstr "" +msgstr "Limites de bande" #: application/views/bands/bandedges.php:22 msgid "" "Using the bandedges list you can control the mode classification in the " "cluster." msgstr "" +"En utilisant la liste des limites de bandes, vous pouvez contrôler la " +"classification par modes dans le cluster." #: application/views/bands/bandedges.php:29 msgid "Frequency from (Hz)" -msgstr "" +msgstr "Fréquence de (Hz)" #: application/views/bands/bandedges.php:30 msgid "Frequency to (Hz)" -msgstr "" +msgstr "Fréquence à (Hz)" #: application/views/bands/bandedges.php:65 msgid "Add a bandedge" -msgstr "" +msgstr "Ajouter une limite de bande" #: application/views/bands/create.php:26 application/views/bands/edit.php:9 msgid "Name of Band (E.g. 20m)" @@ -6901,7 +7033,7 @@ msgstr "SSB QRG" #: application/views/bands/create.php:36 application/views/bands/edit.php:19 msgid "Frequency for SSB QRG in band (must be in Hz)" -msgstr "" +msgstr "Fréquence pour SSB QRG dans la bande (doit être en Hz)" #: application/views/bands/create.php:39 application/views/bands/edit.php:22 #: application/views/bands/index.php:67 @@ -6910,7 +7042,7 @@ msgstr "Données QRG" #: application/views/bands/create.php:41 application/views/bands/edit.php:24 msgid "Frequency for DATA QRG in band (must be in Hz)" -msgstr "" +msgstr "Fréquence pour DATA QRG dans la bande (doit être en Hz)" #: application/views/bands/create.php:44 application/views/bands/edit.php:27 #: application/views/bands/index.php:68 @@ -6919,18 +7051,20 @@ msgstr "QRG CW" #: application/views/bands/create.php:46 application/views/bands/edit.php:29 msgid "Frequency for CW QRG in band (must be in Hz)" -msgstr "" +msgstr "Fréquence pour CW QRG dans la bande (doit être en Hz)" #: application/views/bands/edit.php:2 msgid "" "Changes made here are instance-wide and will affect EVERY User. You see " "this, because you're an instance-admin" msgstr "" +"Les modifications apportées ici s'appliquent au cas entier et affecteront " +"TOUS les utilisateurs. Vous voyez ceci, car vous êtes administrateur." #: application/views/bands/edit.php:2 application/views/update/index.php:35 #: application/views/update/index.php:59 msgid "WARNING" -msgstr "" +msgstr "ATTENTION" #: application/views/bands/index.php:38 msgid "" @@ -6951,7 +7085,7 @@ msgstr "" #: application/views/bands/index.php:56 msgid "Sig" -msgstr "" +msgstr "Sig" #: application/views/bands/index.php:58 msgid "USA County" @@ -6960,12 +7094,12 @@ msgstr "Compté USA" #: application/views/bands/index.php:61 #: application/views/interface_assets/header.php:222 msgid "WAPC" -msgstr "" +msgstr "WAPC" #: application/views/bands/index.php:62 #: application/views/interface_assets/header.php:242 msgid "WAJA" -msgstr "" +msgstr "WAJA" #: application/views/bands/index.php:63 #: application/views/interface_assets/header.php:272 @@ -7106,13 +7240,15 @@ msgstr "" #: application/views/cabrillo/index.php:48 msgid "For the RDXC contest this contains the RDA number." -msgstr "" +msgstr "Pour le concours RDXC, cela contient le numéro RDA." #: application/views/cabrillo/index.php:48 msgid "" "For the RSGB-IOTA contest this information contains the IOTA name (not the " "IOTA reference code)." msgstr "" +"Pour le concours RSGB-IOTA, ces informations contiennent le nom du IOTA (pas " +"la référence IOTA)." #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:697 @@ -7217,6 +7353,9 @@ msgid "" "postal mail by the contest sponsor. The contest sponsor may or may not honor " "this tag." msgstr "" +"Veuillez indiquer si vous souhaitez recevoir, si vous êtes admissible, un " +"certificat papier envoyé par courrier postal par l'organisateur du concours. " +"L'organisateur du concours peut accepter ou refuser cette étiquette." #: application/views/cabrillo/index.php:196 #: application/views/cabrillo/index.php:204 @@ -7249,7 +7388,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7312,7 +7451,7 @@ msgstr "Oui" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7347,10 +7486,11 @@ msgstr "Non" #: application/views/cabrillo/index.php:201 msgid "If the gridsquare was part of the exchange, you should select YES." msgstr "" +"Si le Locator faisait partie de l'échange, vous devez sélectionner OUI." #: application/views/cabrillo/index.php:201 msgid "Include logged grids?" -msgstr "" +msgstr "Inclure les grilles enregistrées ?" #: application/views/cabrillo/index.php:215 #: application/views/reg1test/index.php:150 @@ -7358,9 +7498,9 @@ msgid "No contests were found in your log." msgstr "Aucun concours trouvé dans votre journal de trafic." #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" -msgstr "Tous sauf le SAT." +msgstr "Tout sauf le SAT" #: application/views/callstats/index.php:148 msgid "#QSOs" @@ -7368,31 +7508,31 @@ msgstr "#QSOs" #: application/views/callstats/index.php:149 msgid "First QSO" -msgstr "" +msgstr "Premier QSO" #: application/views/callstats/index.php:150 #: application/views/stationsetup/stationsetup.php:129 msgid "Last QSO" -msgstr "" +msgstr "Dernier QSO" #: application/views/cfd/index.php:7 #, php-format msgid "Export of CFD-File for DARC-Toplist (See %s)" -msgstr "" +msgstr "Exportation du fichier CFD pour la Toplist du DARC (Voir %s)" #: application/views/club/clubswitch_modal.php:5 msgid "Switch to a Clubstation" -msgstr "" +msgstr "Passez à un Clubstation" #: application/views/club/clubswitch_modal.php:9 -#, fuzzy, php-format +#, php-format msgid "Are you sure you want to switch to %s?" -msgstr "Es-tu sûr de vouloir passer à %s ?" +msgstr "Etes-vous sûr de vouloir passer à %s ?" #: application/views/club/clubswitch_modal.php:14 #: application/views/user/modals/stop_impersonate_modal.php:13 msgid "Yes, switch over!" -msgstr "" +msgstr "Oui, changez !" #: application/views/club/clubswitch_modal.php:15 #: application/views/club/permissions.php:205 @@ -7407,7 +7547,7 @@ msgid "Cancel" msgstr "Annuler" #: application/views/club/permissions.php:3 -#, fuzzy, php-format +#, php-format msgid "Club Permissions for %s" msgstr "Autorisations du club pour %s" @@ -7421,85 +7561,94 @@ msgid "" "appropriate authorizations. Add users to the table below and set the " "appropriate permission." msgstr "" +"Pour que les utilisateurs puissent enregistrer des QSO avec cet indicatif " +"spécial ou de radioclub, ils doivent disposer des autorisations appropriées. " +"Ajoutez des utilisateurs au tableau ci-dessous et définissez les " +"autorisations appropriées." #: application/views/club/permissions.php:14 msgid "See available Permissions" -msgstr "" +msgstr "Voir les autorisations disponibles" #: application/views/club/permissions.php:19 msgid "Available Permissions" -msgstr "" +msgstr "Autorisations disponibles" #: application/views/club/permissions.php:26 #: application/views/eqsl/download.php:45 msgid "Action" -msgstr "" +msgstr "Action" #: application/views/club/permissions.php:33 msgid "Log QSOs via Web GUI (live and post)" msgstr "" +"Enregistrez les QSO via l'interface graphique Web (immédiatement et à " +"posteriori)" #: application/views/club/permissions.php:41 msgid "Log QSOs via API" -msgstr "" +msgstr "Enregistrer les QSO via API" #: application/views/club/permissions.php:49 msgid "Edit a QSO" -msgstr "" +msgstr "Modifier un QSO" #: application/views/club/permissions.php:54 #: application/views/club/permissions.php:72 msgid "QSO was done by the operator" -msgstr "" +msgstr "Le QSO a été effectué par l'opérateur" #: application/views/club/permissions.php:59 #: application/views/club/permissions.php:77 msgid "QSO was done by another operator" -msgstr "" +msgstr "Le QSO a été effectué par un autre opérateur" #: application/views/club/permissions.php:67 msgid "Delete a QSO" -msgstr "" +msgstr "Effacer un QSO" #: application/views/club/permissions.php:85 msgid "Manage Stationsetup (edit/create logbooks and locations)" msgstr "" +"Gérer la configuration de la station (modifier/créer des journaux de trafic " +"et des localisations)" #: application/views/club/permissions.php:93 msgid "Manage Third-Party services" -msgstr "" +msgstr "Gérer les services tiers" #: application/views/club/permissions.php:101 msgid "Import QSO per ADIF" -msgstr "" +msgstr "Importer des QSO par ADIF" #: application/views/club/permissions.php:110 msgid "Export QSO per ADIF" -msgstr "" +msgstr "Exporter des QSO par ADIF" #: application/views/club/permissions.php:118 msgid "User Management" -msgstr "" +msgstr "Gestion des utilisateurs" #: application/views/club/permissions.php:123 msgid "Can create new users in Wavelog" -msgstr "" +msgstr "Peut créer de nouveaux utilisateurs dans Wavelog" #: application/views/club/permissions.php:128 msgid "Can edit other users in Wavelog" -msgstr "" +msgstr "Peut modifier d'autres utilisateurs dans Wavelog" #: application/views/club/permissions.php:133 msgid "Can edit Club permissions and add/remove users" msgstr "" +"Peut modifier les autorisations du club et ajouter/supprimer des utilisateurs" #: application/views/club/permissions.php:151 msgid "Users with Permissions" -msgstr "" +msgstr "Utilisateurs avec autorisations" #: application/views/club/permissions.php:161 msgid "Add new User to Club" -msgstr "" +msgstr "Ajouter un nouvel utilisateur au Club" #: application/views/club/permissions.php:167 #, php-format @@ -7507,48 +7656,54 @@ msgid "" "You can only add users to the %s Clubstation if they already exist on this " "Wavelog Server." msgstr "" +"Vous ne pouvez ajouter des utilisateurs à la station du Club %s que s'ils " +"existent déjà sur ce serveur Wavelog." #: application/views/club/permissions.php:168 msgid "" "If they don't exist, please ask your Wavelog Administrator to create an " "account for them." msgstr "" +"S'ils n'existent pas, veuillez demander à votre administrateur Wavelog de " +"créer un compte pour eux." #: application/views/club/permissions.php:169 msgid "" "Search for the user by their callsign or first/lastname and select the " "permission level." msgstr "" +"Recherchez l'utilisateur par son indicatif ou son prénom/nom et sélectionnez " +"le niveau d'autorisation." #: application/views/club/permissions.php:175 msgid "User (Callsign or Name)" -msgstr "" +msgstr "Utilisateur (Indicatif ou Nom)" #: application/views/club/permissions.php:176 #: application/views/club/permissions.php:225 #: application/views/club/permissions.php:269 msgid "Permission" -msgstr "" +msgstr "Autorisation" #: application/views/club/permissions.php:183 msgid "Type at least 2 characters." -msgstr "" +msgstr "Saisissez au moins 2 caractères." #: application/views/club/permissions.php:194 msgid "Notify the user via email" -msgstr "" +msgstr "Avertir l'utilisateur par email" #: application/views/club/permissions.php:213 msgid "No users currently have access to this club station." -msgstr "" +msgstr "Aucun utilisateur n'a actuellement accès à cette station de club." #: application/views/club/permissions.php:220 msgid "Firstname" -msgstr "" +msgstr "Prénom" #: application/views/club/permissions.php:221 msgid "Lastname" -msgstr "" +msgstr "Nom" #: application/views/club/permissions.php:223 #: application/views/user/edit.php:56 application/views/user/index.php:152 @@ -7559,47 +7714,49 @@ msgstr "Utilisateur" #: application/views/club/permissions.php:224 msgid "E-Mail" -msgstr "" +msgstr "Courriel" #: application/views/club/permissions.php:244 msgid "Wavelog Administrator" -msgstr "" +msgstr "Administrateur Wavelog" #: application/views/club/permissions.php:261 msgid "You can modify the users permission level for this Clubstation." msgstr "" +"Vous pouvez modifier le niveau d'autorisation des utilisateurs pour ce " +"station de Club." #: application/views/club/permissions.php:268 msgid "User Callsign" -msgstr "" +msgstr "Indicatif de l'utilisateur" #: application/views/club/permissions.php:286 msgid "Notify the user via email about the change" -msgstr "" +msgstr "Informer l'utilisateur du changement par courriel" #: application/views/club/permissions.php:309 msgid "Delete User" -msgstr "" +msgstr "Supprimer l'utilisateur" #: application/views/club/permissions.php:316 msgid "Are you sure you want to delete this user from the club?" -msgstr "" +msgstr "Etes-vous certain de vouloir supprimer cet utilisateur du club ?" #: application/views/club/permissions.php:320 #, php-format msgid "Callsign: %s" -msgstr "" +msgstr "Indicatif :%s" #: application/views/club/permissions.php:321 #, php-format msgid "Role: %s" -msgstr "" +msgstr "Rôle : %s" #: application/views/clublog/export.php:10 #: application/views/hrdlog/export.php:10 application/views/qrz/export.php:10 #: application/views/webadif/export.php:10 msgid "Upload Logbook" -msgstr "" +msgstr "Télécharger le journal de trafic" #: application/views/clublog/export.php:14 #: application/views/eqsl/analysis.php:11 application/views/eqsl/download.php:9 @@ -7607,23 +7764,28 @@ msgstr "" #: application/views/eqsl/result.php:11 application/views/eqsl/tools.php:7 #: application/views/qrz/export.php:14 msgid "Download QSLs" -msgstr "" +msgstr "Télécharger les QSL" #: application/views/clublog/export.php:24 msgid "The next automatic Upload to Clublog will happen at: " -msgstr "" +msgstr "Le prochain téléchargement automatique sur Clublog aura lieu à : " #: application/views/clublog/export.php:25 msgid "" "Here you can see all QSOs which have not been previously uploaded to a " "Clublog logbook." msgstr "" +"Ici, vous pouvez voir tous les QSO qui n'ont pas été précédemment " +"téléchargés dans un journal de trafic de Clublog." #: application/views/clublog/export.php:26 msgid "" "You need to set a username and password in your user account. You will also " "need to enable upload for each station profile ." msgstr "" +"Vous devez définir un nom d'utilisateur et un mot de passe dans votre compte " +"utilisateur. Vous devrez également activer le téléchargement pour chaque " +"profil de station." #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 @@ -7634,45 +7796,48 @@ msgstr "" #: application/views/qslprint/qsolist.php:15 #: application/views/webadif/export.php:41 msgid "Profile name" -msgstr "" +msgstr "Nom du profil" #: application/views/clublog/export.php:35 #: application/views/hrdlog/export.php:35 #: application/views/oqrs/showrequests.php:91 #: application/views/qrz/export.php:40 application/views/webadif/export.php:42 msgid "Station callsign" -msgstr "" +msgstr "Indicatif de la station" #: application/views/clublog/export.php:36 #: application/views/hrdlog/export.php:36 application/views/qrz/export.php:41 msgid "Edited QSOs not uploaded" -msgstr "" +msgstr "Modifier les QSO qui n'ont pas été téléchargés" #: application/views/clublog/export.php:37 #: application/views/hrdlog/export.php:37 application/views/qrz/export.php:42 #: application/views/webadif/export.php:43 msgid "Total QSOs not uploaded" -msgstr "" +msgstr "Total de QSO non téléchargés" #: application/views/clublog/export.php:38 #: application/views/hrdlog/export.php:38 application/views/qrz/export.php:43 #: application/views/webadif/export.php:44 msgid "Total QSOs uploaded" -msgstr "" +msgstr "Total des QSO téléchargés" #: application/views/clublog/export.php:69 msgid "The next automatic Download from Clublog-QSLs will happen at: " msgstr "" +"Le prochain téléchargement automatique des QSL de Clublog aura lieu à : " #: application/views/clublog/export.php:70 application/views/qrz/export.php:75 msgid "" "If no startdate is given then the QSLs after last confirmation will be " "downloaded/updated!" msgstr "" +"Si aucune date de début n'est indiquée, les QSL après la dernière " +"confirmation seront téléchargées/mises à jour !" #: application/views/clublog/export.php:78 msgid "Download QSLs from Clublog" -msgstr "" +msgstr "Téléchargez les QSL depuis Clublog" #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 @@ -7684,22 +7849,22 @@ msgstr "" #: application/views/dxcalendar/index.php:4 #: application/views/hamsat/index.php:8 msgid "This data comes from" -msgstr "" +msgstr "Ces données proviennent de" #: application/views/components/hamsat/table.php:11 msgid "Show All Passes" -msgstr "" +msgstr "Afficher tous les passages" #: application/views/components/hamsat/table.php:14 msgid "Private feed key empty. Please set the feed key in your profile." -msgstr "" +msgstr "Clé de flux privée vide. Veuillez la définir dans votre profil." #: application/views/components/hamsat/table.php:19 msgid "No upcoming activations found. Please check back later." msgstr "Aucune activation à venir trouvée. Veuillez revenir plus tard." #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7713,29 +7878,29 @@ msgstr "Commentaire" #: application/views/components/hamsat/table.php:31 #: application/views/hamsat/index.php:34 msgid "Gridsquare(s)" -msgstr "" +msgstr "Locator(s)" #: application/views/components/hamsat/table.php:32 #: application/views/hamsat/index.php:35 msgid "Workable" -msgstr "" +msgstr "Réalisable" #: application/views/components/hamsat/table.php:134 msgctxt "Hamsat - Track Satellites" msgid "Track" -msgstr "" +msgstr "Piste" #: application/views/components/hamsat/table.php:146 msgid "Sked" -msgstr "" +msgstr "Sked" #: application/views/components/radio_display_table.php:5 msgid "Radio Status" -msgstr "" +msgstr "Statut Radio" #: application/views/contestcalendar/index.php:16 msgid "No Contests" -msgstr "" +msgstr "Pas de concours" #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 @@ -7745,39 +7910,39 @@ msgstr "" #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 msgid "Contest" -msgstr "" +msgstr "Concours" #: application/views/contestcalendar/index.php:22 msgid "Start" -msgstr "" +msgstr "Début" #: application/views/contestcalendar/index.php:23 msgid "End" -msgstr "" +msgstr "Fin" #: application/views/contestcalendar/index.php:24 msgid "Link" -msgstr "" +msgstr "Lien" #: application/views/contestcalendar/index.php:33 msgid "Show Details" -msgstr "" +msgstr "Afficher les détails" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "Aujourd'hui" #: application/views/contestcalendar/index.php:55 msgid "Weekend" -msgstr "" +msgstr "Fin de semaine" #: application/views/contestcalendar/index.php:66 msgid "Next Week" -msgstr "" +msgstr "Semaine prochaine" #: application/views/contesting/add.php:16 msgid "" @@ -7837,7 +8002,7 @@ msgstr "Désactiver" #: application/views/contesting/add.php:54 msgid "DANGER!" -msgstr "" +msgstr "DANGER !" #: application/views/contesting/add.php:55 msgid "Warning! Are you sure you want to delete the following contest: " @@ -7893,10 +8058,13 @@ msgstr "(Si 'Activer', le concours sera affiché dans la liste des concours)" #: application/views/contesting/index.php:2 msgid "You need to start a new session before you can change the contest name!" msgstr "" +"Vous devez démarrer une nouvelle session avant de pouvoir modifier le nom du " +"concours !" #: application/views/contesting/index.php:3 msgid "Are you really sure you want to start a new contest session?" msgstr "" +"Etes-vous vraiment sûr de vouloir démarrer une nouvelle session de concours ?" #: application/views/contesting/index.php:11 msgid "Start new Contest Session" @@ -7924,18 +8092,18 @@ msgstr "N° QSO + Locator" #: application/views/contesting/index.php:30 msgid "Serial + Gridsquare + Exchange" -msgstr "" +msgstr "Numéro progressif + Locator + Report" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "Indicatif de l'opérateur" #: application/views/contesting/index.php:50 #: application/views/contesting/index.php:55 msgid "More Settings" -msgstr "" +msgstr "Plus de paramètres" #: application/views/contesting/index.php:59 msgid "Copy received exchange to" @@ -7944,6 +8112,7 @@ msgstr "Copiez l'échange reçu dans le champ" #: application/views/contesting/index.php:61 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" +"Le report n'est copié que s'il correspond aux règles du champ sélectionné !" #: application/views/contesting/index.php:65 msgid "Age" @@ -7955,24 +8124,26 @@ msgstr "Puissance RX (W)" #: application/views/contesting/index.php:68 msgid "Locator" -msgstr "" +msgstr "Locator" #: application/views/contesting/index.php:69 #: application/views/logbookadvanced/index.php:785 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/qso/edit_ajax.php:177 msgid "QTH" -msgstr "" +msgstr "QTH" #: application/views/contesting/index.php:74 msgid "Sequence of Exchanges" -msgstr "" +msgstr "Séquence de reports" #: application/views/contesting/index.php:77 msgid "" "Choose in which order you want to type in the different reports. However, " "only the elements contained in the selected exchange type are displayed." msgstr "" +"Choisissez l'ordre de saisie des différents repports. Seuls les éléments du " +"type d'échange sélectionné sont affichés." #: application/views/contesting/index.php:82 #: application/views/contesting/index.php:83 @@ -7982,7 +8153,7 @@ msgstr "" #: application/views/contesting/index.php:87 msgctxt "Keep the translation short!" msgid "Exchange" -msgstr "" +msgstr "Echange" #: application/views/contesting/index.php:82 #: application/views/contesting/index.php:83 @@ -7992,7 +8163,7 @@ msgstr "" #: application/views/contesting/index.php:87 msgctxt "Keep the translation short!" msgid "Grid" -msgstr "" +msgstr "Locator" #: application/views/contesting/index.php:82 #: application/views/contesting/index.php:83 @@ -8002,68 +8173,68 @@ msgstr "" #: application/views/contesting/index.php:87 msgctxt "Keep the translation short!" msgid "Serial" -msgstr "" +msgstr "Série" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "N° QSO (S)" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "Locator (S)" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "Ech (S)" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "N° QSO (R)" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "Locator (R)" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "Ech (R)" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "Réinitialiser QSO" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "Sauvegarder QSO" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "Suggestion d'indicatif" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "Journal de trafic du concours" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" -msgstr "" +msgstr "Locator VUCC" #: application/views/continents/index.php:63 #: application/views/statistics/index.php:20 msgid "# of QSOs worked" -msgstr "" +msgstr "# de QSOs réalisés" #: application/views/cron/edit.php:11 msgid "Identifier" -msgstr "" +msgstr "Identifier" #: application/views/cron/edit.php:22 #: application/views/options/appearance.php:56 @@ -8082,89 +8253,93 @@ msgstr "Activé" #: application/views/cron/edit.php:36 application/views/cron/index.php:68 msgid "Intervall" -msgstr "" +msgstr "Intervalle" #: application/views/cron/edit.php:38 msgid "Choose a preset from the dropdown" -msgstr "" +msgstr "Choisissez un préréglage dans la liste déroulante" #: application/views/cron/edit.php:43 msgid "Every 5 Minutes" -msgstr "" +msgstr "Toutes les 5 minutes" #: application/views/cron/edit.php:44 msgid "Every 15 Minutes" -msgstr "" +msgstr "Toutes les 15 minutes" #: application/views/cron/edit.php:45 msgid "Every Hour" -msgstr "" +msgstr "Toutes les heures" #: application/views/cron/edit.php:46 msgid "Every 2 Hours" -msgstr "" +msgstr "Toutes les 2 heures" #: application/views/cron/edit.php:47 msgid "Every Day at Midnight" -msgstr "" +msgstr "Tous les jours à minuit" #: application/views/cron/edit.php:48 msgid "Every Monday at 03:00" -msgstr "" +msgstr "Tous les lundis à 3h" #: application/views/cron/edit.php:49 msgid "First Day of Every Month at midnight" -msgstr "" +msgstr "Premier jour de chaque mois à minuit" #: application/views/cron/edit.php:50 msgid "Every 2 Months at 02:00" -msgstr "" +msgstr "Tous les 2 mois à 2h" #: application/views/cron/edit.php:62 msgid "OR" -msgstr "" +msgstr "OU" #: application/views/cron/edit.php:63 msgid "Enter your own Cron Expression" -msgstr "" +msgstr "Saisissez votre propre expression Cron" #: application/views/cron/index.php:9 msgid "How it works" -msgstr "" +msgstr "Comment ça fonctionne" #: application/views/cron/index.php:21 #, php-format msgid "For more information or help, take a look in the %s." -msgstr "" +msgstr "Pour plus d'informations ou d'aide, jetez un coup d'œil au %s." #: application/views/cron/index.php:28 msgid "" "The Cron Manager assists the administrator in managing cron jobs without " "requiring CLI access." msgstr "" +"Le gestionnaire Cron aide l'administrateur à gérer les tâches Cron sans " +"nécessiter d'accès CLI." #: application/views/cron/index.php:32 msgid "" "To execute cron jobs based on the data below, remove all old cron jobs and " "create a new one:" msgstr "" +"Pour exécuter des tâches Cron basées sur les données ci-dessous, supprimez " +"toutes les anciennes tâches Cron et créez-en une nouvelle :" #: application/views/cron/index.php:42 application/views/cron/index.php:46 msgid "Status Master-Cron:" -msgstr "" +msgstr "statut Master-Cron :" #: application/views/cron/index.php:46 msgctxt "PHP Version" msgid "Min. Version is" -msgstr "" +msgstr "La version minimale est" #: application/views/cron/index.php:46 msgid "PHP Version not supported." -msgstr "" +msgstr "Version PHP non prise en charge." #: application/views/cron/index.php:56 msgid "Cron List" -msgstr "" +msgstr "Liste Cron" #: application/views/cron/index.php:65 #: application/views/stationsetup/stationsetup.php:124 @@ -8173,27 +8348,31 @@ msgstr "" #: application/views/cron/index.php:69 msgid "Last Run" -msgstr "" +msgstr "Dernière course" #: application/views/cron/index.php:70 msgid "Next Run" -msgstr "" +msgstr "Prochaine course" #: application/views/cron/index.php:115 msgid "Your Mastercron isn't running." -msgstr "" +msgstr "Votre Mastercron ne fonctionne pas." #: application/views/cron/index.php:116 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." msgstr "" +"Copiez le Cron ci-dessus sur un service Cron externe ou dans le Cron de " +"votre serveur pour utiliser ce gestionnaire Cron." #: application/views/cron/index.php:117 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" msgstr "" +"Sur un serveur Linux de base avec accès shell, utilisez cette commande pour " +"modifier vos Crons :" #: application/views/cron/index.php:124 #, php-format @@ -8201,6 +8380,8 @@ msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " "%s" msgstr "" +"Vous devez mettre à jour votre version de PHP. La version minimale est %s. " +"Votre version est %s" #: application/views/csv/index.php:7 msgid "Export your logbook for SOTA uploads." @@ -8213,17 +8394,17 @@ msgstr "Seuls les QSO avec un Locator défini seront exportés !" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "Mode Propagation" #: application/views/dashboard/index.php:5 msgid "RSTS" -msgstr "" +msgstr "RSTS" #: application/views/dashboard/index.php:6 msgid "RSTR" -msgstr "" +msgstr "RSTR" #: application/views/dashboard/index.php:111 #, php-format @@ -8231,30 +8412,35 @@ msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your version " "is: %s." msgstr "" +"Vous devez mettre à jour votre version de PHP. La version minimale est %s. " +"Votre version est : %s." #: application/views/dashboard/index.php:118 #, php-format msgctxt "Dashboard Warning" msgid "A new version of Wavelog has been published. See: %s." -msgstr "" +msgstr "Une nouvelle version de Wavelog a été publiée. Voir : %s." #: application/views/dashboard/index.php:127 #, php-format msgctxt "Dashboard Warning" msgid "You need to update country files! Click %shere%s to do it." msgstr "" +"Vous devez mettre à jour les fichiers des pays ! Cliquez %s ici%s pour le " +"faire." #: application/views/dashboard/index.php:136 #, php-format msgctxt "Dashboard Warning" msgid "You have no station locations. Click %shere%s to do it." msgstr "" +"Vous n'avez aucun emplacement de station ! Cliquez %s ici%s pour le faire." #: application/views/dashboard/index.php:145 #, php-format msgctxt "Dashboard Warning" msgid "You have no station logbook. Click %shere%s to do it." -msgstr "" +msgstr "Vous n'avez aucun journal de trafic ! Cliquez %s ici%s pour le faire." #: application/views/dashboard/index.php:154 #, php-format @@ -8263,19 +8449,23 @@ msgid "" "Your active station location is not linked to your active station logbook. " "Click %shere%s to do it." msgstr "" +"L' emplacement actuel de votre station n'est pas lié à votre journal de " +"trafic sélectionné ! Cliquez %s ici%s pour le faire." #: application/views/dashboard/index.php:163 #, php-format msgctxt "Dashboard Warning" msgid "You have no station linked to your logbook. Click %shere%s to do it." msgstr "" +"Vous n'avez aucune station liée à votre journal de trafic ! Cliquez %s ici%s " +"pour le faire." #: application/views/dashboard/index.php:173 -#, php-format +#, fuzzy, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Vous avez eu %d QSO aujourd'hui" +msgstr[1] "Vous avez eu %d QSO aujourd'hui" #: application/views/dashboard/index.php:182 #, php-format @@ -8283,6 +8473,8 @@ msgid "" "Don't loose 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 au cours des " +"%s derniers jours consécutifs." #: application/views/dashboard/index.php:184 msgid "You have made no QSOs today; time to turn on the radio!" @@ -8298,46 +8490,65 @@ msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." msgstr "" +"Certains thèmes ne disposent pas d'un mode thématique défini. Veuillez " +"demander à l'administrateur de les modifier." -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" msgstr "" +"Alerte LoTW : il y a un problème avec au moins un de vos %scertificat(s) " +"LoTW%s !" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" +msgstr "Au moins un de vos certificats est expiré" + +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "Au moins un de vos certificats expire" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "La date de fin de QSO d'au moins un de vos certificats a été dépassée" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" msgstr "" +"La date de fin de QSO d'au moins un de vos certificats est sur le point " +"d'être dépassée" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 -#, php-format +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 +#, fuzzy, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Max. %d contact précédent est affiché" +msgstr[1] "Max. %d contacts précédents sont affichés" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "QSO Breakdown" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" -msgstr "" +msgstr "Répartition des DXCC" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "Demandés" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8348,7 +8559,7 @@ msgstr "Demandés" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8371,10 +8582,10 @@ msgstr "Demandés" msgid "Sent" msgstr "Envoyées" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8407,7 +8618,7 @@ msgstr "Envoyées" msgid "Received" msgstr "Reçues" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8433,7 +8644,7 @@ msgstr "Reçues" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8447,51 +8658,51 @@ msgstr "Reçues" msgid "Requested" msgstr "Demandées" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" -msgstr "" +msgstr "Logbook of the World" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" -msgstr "" +msgstr "Locator VUCC" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" -msgstr "" +msgstr "Données solaires et propagation" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." -msgstr "" +msgstr "Dernière mis à jour à %s." -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." -msgstr "" +msgstr "Données fournies par HAMqsl." #: application/views/dayswithqso/index.php:3 msgid "Number of QSOs for this day of the week" -msgstr "" +msgstr "Nombre de QSO pour ce jour de la semaine" #: application/views/dayswithqso/index.php:4 msgid "Number of QSOs for this month of the year" -msgstr "" +msgstr "Nombre de QSO pour ce mois de l'année" #: application/views/dayswithqso/index.php:18 msgid "Days of the week" -msgstr "" +msgstr "Jours de la semaine" #: application/views/dayswithqso/index.php:21 msgid "Months of the year" -msgstr "" +msgstr "Mois de l'année" #: application/views/dayswithqso/index.php:24 msgid "Streaks" -msgstr "" +msgstr "Séries" #: application/views/dayswithqso/index.php:27 msgid "QSOs of Year" -msgstr "" +msgstr "QSO de l'année" #: application/views/dayswithqso/index.php:35 msgid "Number of days with QSOs each year" @@ -8499,27 +8710,27 @@ msgstr "Nombre de jours par an avec les QSO" #: application/views/dayswithqso/index.php:51 msgid "Days" -msgstr "" +msgstr "Jours" #: application/views/dayswithqso/index.php:67 msgid "QSOs breakdown by day of the week" -msgstr "" +msgstr "Répartition des QSO par jour de la semaine" #: application/views/dayswithqso/index.php:73 msgid "QSOs breakdown by month of the year" -msgstr "" +msgstr "Répartition des QSO par mois de l'année" #: application/views/dayswithqso/index.php:87 msgid "QSOs per Year" -msgstr "" +msgstr "QSO par an" #: application/views/dayswithqso/index.php:95 msgid "Less" -msgstr "" +msgstr "Moins" #: application/views/dayswithqso/index.php:100 msgid "More" -msgstr "" +msgstr "Plus" #: application/views/dayswithqso/index.php:102 msgid "Calendar with QSOs" @@ -8630,12 +8841,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "" #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "Synchro manuelle" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "" @@ -8980,6 +9191,7 @@ msgstr "" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "Mettre à jour" @@ -9020,11 +9232,15 @@ msgstr "" msgid "HAMqsl" msgstr "" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -9032,140 +9248,140 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "" @@ -9255,18 +9471,18 @@ msgstr "Bonjour %s" msgid "An admin initiated a password reset for your Wavelog account." msgstr "" "Le mot de passe de votre compte Wavelog a été réinitialisé par un " -"administrateur" +"administrateur." #: application/views/email/admin_reset_password.php:9 #, php-format msgid "Your username is: %s" -msgstr "Votre nom d’utilisateur est: %s" +msgstr "Votre nom d’utilisateur est : %s" #: application/views/email/admin_reset_password.php:11 #: application/views/email/forgot_password.php:11 #, php-format msgid "Click here to reset your password: %s" -msgstr "Cliquez ici pour réinitialiser votre mot de passe: %s" +msgstr "Cliquez ici pour réinitialiser votre mot de passe : %s" #: application/views/email/admin_reset_password.php:13 msgid "" @@ -9578,10 +9794,10 @@ msgid "QSL Date" msgstr "Date de la QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9674,7 +9890,7 @@ msgstr "" #: application/views/interface_assets/footer.php:41 msgid "Warning! Are you sure you want delete QSO with " -msgstr "" +msgstr "Attention ! Êtes-vous sûr de vouloir supprimer le QSO avec " #: application/views/interface_assets/footer.php:42 #: application/views/user/edit.php:522 @@ -9686,63 +9902,65 @@ msgid "Worked not confirmed" msgstr "Réalisés - non confirmés" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" -msgstr "" +msgstr "Effacer" #: application/views/interface_assets/footer.php:51 #: application/views/qso/edit_ajax.php:213 #: application/views/qso/edit_ajax.php:568 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" +"Le mode de propagation n'est pas pris en charge par LoTW. Les champs QSL " +"LoTW sont désactivés." #: application/views/interface_assets/footer.php:52 msgid "No states for this DXCC available" -msgstr "" +msgstr "Aucun Etat disponible pour ce DXCC" #: application/views/interface_assets/footer.php:53 msgid "Compute QRB and QTF" -msgstr "" +msgstr "Calculer QRB et QTF" #: application/views/interface_assets/footer.php:54 msgid "Error in locators. Please check." -msgstr "" +msgstr "Erreur de Locator. Veuillez vérifier." #: application/views/interface_assets/footer.php:55 #: application/views/user/index.php:20 application/views/user/index.php:144 msgid "Refresh List" -msgstr "" +msgstr "Rafraîchir la liste" #: application/views/interface_assets/footer.php:56 msgid "Please Wait ..." -msgstr "" +msgstr "Veuillez attendre..." #: application/views/interface_assets/footer.php:57 msgctxt "" "Word for country states that are deprecated but kept for legacy reasons." msgid "deprecated" -msgstr "" +msgstr "Obsolète" #: application/views/interface_assets/footer.php:58 msgid "Satellite Information" -msgstr "" +msgstr "Informations satellite" #: application/views/interface_assets/footer.php:59 msgid "Error loading notes" -msgstr "" +msgstr "Erreur lors du chargement des notes" #: application/views/interface_assets/footer.php:60 msgid "Sorting" -msgstr "" +msgstr "Tri" #: application/views/interface_assets/footer.php:61 msgid "Duplication is disabled for Contacts notes" -msgstr "" +msgstr "La reproduction des notes pour les Contacts est désactivée" #: application/views/interface_assets/footer.php:62 #: application/views/interface_assets/footer.php:64 msgid "Duplicate" -msgstr "" +msgstr "Duplicata" #: application/views/interface_assets/footer.php:65 #: application/views/notes/view.php:48 @@ -9751,77 +9969,77 @@ msgstr "Supprimer" #: application/views/interface_assets/footer.php:66 msgid "Duplicate Note" -msgstr "" +msgstr "Note en double" #: application/views/interface_assets/footer.php:67 msgid "Delete this note?" -msgstr "" +msgstr "Supprimer cette note ?" #: application/views/interface_assets/footer.php:68 msgid "Duplicate this note?" -msgstr "" +msgstr "Reproduire cette note ?" #: application/views/interface_assets/footer.php:69 msgid "Duplication Disabled" -msgstr "" +msgstr "Reproduction désactivée" #: application/views/interface_assets/footer.php:70 msgid "No notes were found" -msgstr "" +msgstr "Aucune note n'a été trouvée" #: application/views/interface_assets/footer.php:152 #: application/views/interface_assets/header.php:515 #: application/views/options/sidebar.php:10 msgid "Version Info" -msgstr "" +msgstr "Informations sur la version" #: application/views/interface_assets/footer.php:206 #: application/views/interface_assets/footer.php:221 msgid "Failed to load the modal. Please try again." -msgstr "" +msgstr "Échec du chargement de la fenêtre modale. Veuillez réessayer." #: application/views/interface_assets/footer.php:470 msgid "Description:" -msgstr "" +msgstr "Description :" #: application/views/interface_assets/footer.php:473 msgid "Query description" -msgstr "" +msgstr "Description de la requête" #: application/views/interface_assets/footer.php:489 msgid "Your query has been saved!" -msgstr "" +msgstr "Votre requête a été enregistrée !" #: application/views/interface_assets/footer.php:491 #: application/views/search/filter.php:49 msgid "Edit queries" -msgstr "" +msgstr "Modifier les requêtes" #: application/views/interface_assets/footer.php:493 msgid "Stored queries:" -msgstr "" +msgstr "Requêtes stockées :" #: application/views/interface_assets/footer.php:498 #: application/views/search/filter.php:63 msgid "Run Query" -msgstr "" +msgstr "Exécuter la requête" #: application/views/interface_assets/footer.php:510 #: application/views/interface_assets/footer.php:646 #: application/views/interface_assets/footer.php:716 msgid "Stored Queries" -msgstr "" +msgstr "Requêtes stockées" #: application/views/interface_assets/footer.php:515 #: application/views/interface_assets/footer.php:721 msgid "You need to make a query before you search!" -msgstr "" +msgstr "Vous devez faire une requête avant de rechercher !" #: application/views/interface_assets/footer.php:536 #: application/views/interface_assets/footer.php:673 #: application/views/search/filter.php:82 msgid "Export to ADIF" -msgstr "" +msgstr "Exporter vers ADIF" #: application/views/interface_assets/footer.php:537 #: application/views/interface_assets/footer.php:674 @@ -9829,27 +10047,27 @@ msgstr "" #: application/views/search/ituzones.php:40 #: application/views/search/main.php:37 msgid "Open in the Advanced Logbook" -msgstr "" +msgstr "Ouvrir dans le journal de trafic avancé" #: application/views/interface_assets/footer.php:581 msgid "Warning! Are you sure you want delete this stored query?" -msgstr "" +msgstr "Attention ! Voulez-vous vraiment supprimer cette requête enregistrée ?" #: application/views/interface_assets/footer.php:595 msgid "The stored query has been deleted!" -msgstr "" +msgstr "La requête enregistrée a été supprimée !" #: application/views/interface_assets/footer.php:604 msgid "The stored query could not be deleted. Please try again!" -msgstr "" +msgstr "La requête enregistrée n'a pas pu être supprimée. Veuillez réessayer !" #: application/views/interface_assets/footer.php:630 msgid "The query description has been updated!" -msgstr "" +msgstr "La description de la requête a été mise à jour !" #: application/views/interface_assets/footer.php:634 msgid "Something went wrong with the save. Please try again!" -msgstr "" +msgstr "Une erreur s'est produite lors de la sauvegarde. Veuillez réessayer !" #: application/views/interface_assets/footer.php:763 msgid "" @@ -9857,19 +10075,22 @@ msgid "" "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" +"Arrêtez ici un instant. Le DXCC que vous avez choisi est obsolète et n'est " +"plus valide. Vérifiez quel DXCC correspond à cet localisation. Si vous en " +"êtes sûr, ignorez cet avertissement." #: application/views/interface_assets/footer.php:816 #: application/views/logbookadvanced/index.php:702 msgid "Callsign: " -msgstr "" +msgstr "Indicatif : " #: application/views/interface_assets/footer.php:817 msgid "Count: " -msgstr "" +msgstr "Quantité : " #: application/views/interface_assets/footer.php:818 msgid "Grids: " -msgstr "" +msgstr "Locator : " #: application/views/interface_assets/footer.php:1126 #: application/views/logbookadvanced/index.php:13 @@ -9877,66 +10098,66 @@ msgstr "" #: application/views/satellite/flightpath.php:11 msgctxt "Map Options" msgid "Gridsquares" -msgstr "" +msgstr "Locator" -#: application/views/interface_assets/footer.php:1405 -#, php-format +#: application/views/interface_assets/footer.php:1547 +#, fuzzy, php-format msgid "You're not logged in. Please %slogin%s" -msgstr "" +msgstr "Vous n'êtes pas connecté. Veuillez vous connecter %slogin%s" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "Grilles des Locators" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "Total" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " -msgstr "" +msgstr "Carte QSL pour " -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" -msgstr "" +msgstr "Attention ! Voulez-vous vraiment supprimer cette carte QSL ?" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "Carte eQSL" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " -msgstr "" +msgstr "eQSL pour " -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" -msgstr "" +msgstr "Fichier image de la QSL" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" -msgstr "" +msgstr "Recto de la carte QSL :" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" -msgstr "" +msgstr "Verso de la carte QSL :" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" -msgstr "" +msgstr "Ajouter des QSO supplémentaires à une carte QSL" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" -msgstr "" +msgstr "Une erreur s'est produite. Veuillez réessayer !" #: application/views/interface_assets/header.php:87 msgid "Developer Mode" @@ -9969,15 +10190,15 @@ msgstr "Cartes eQSL" #: application/views/interface_assets/header.php:113 msgid "View last confirmations" -msgstr "" +msgstr "Voir les dernières confirmations" #: application/views/interface_assets/header.php:121 msgid "Live QSO" -msgstr "" +msgstr "QSO en direct" #: application/views/interface_assets/header.php:123 msgid "Post QSO" -msgstr "" +msgstr "Post QSO" #: application/views/interface_assets/header.php:125 msgid "Simple Fast Log Entry" @@ -9985,132 +10206,132 @@ msgstr "SFLE (entrée rapide du journal)" #: application/views/interface_assets/header.php:128 msgid "Live Contest Logging" -msgstr "" +msgstr "Enregistrement des concours en direct" #: application/views/interface_assets/header.php:130 msgid "Post Contest Logging" -msgstr "" +msgstr "Enregistrement du Post Concours" #: application/views/interface_assets/header.php:140 msgid "Analytics" -msgstr "" +msgstr "Analytiques" #: application/views/interface_assets/header.php:150 msgid "Activated Gridsquares" -msgstr "" +msgstr "Locators activés" #: application/views/interface_assets/header.php:168 msgid "Callsign Statistics" -msgstr "" +msgstr "Statistiques des indicatifs" #: application/views/interface_assets/header.php:176 msgid "International" -msgstr "" +msgstr "International" #: application/views/interface_assets/header.php:178 msgid "CQ WAZ" -msgstr "" +msgstr "CQ WAZ" #: application/views/interface_assets/header.php:182 msgid "ITU" -msgstr "" +msgstr "ITU" #: application/views/interface_assets/header.php:188 msgid "Worked All Europe (WAE)" -msgstr "" +msgstr "Toute l'Europe contactée (WAE)" #: application/views/interface_assets/header.php:192 msgid "Worked All Prefixes (WPX)" -msgstr "" +msgstr "Tous les préfixes contactés (WPX)" #: application/views/interface_assets/header.php:214 msgid "Canada" -msgstr "" +msgstr "Canada" #: application/views/interface_assets/header.php:220 msgid "China" -msgstr "" +msgstr "Chine" #: application/views/interface_assets/header.php:226 msgid "Germany" -msgstr "" +msgstr "Allemagne" #: application/views/interface_assets/header.php:230 msgid "DL Gridmaster" -msgstr "" +msgstr "DL Gridmaster" #: application/views/interface_assets/header.php:234 msgid "Great Britain" -msgstr "" +msgstr "Grande Bretagne" #: application/views/interface_assets/header.php:236 msgid "WAB" -msgstr "" +msgstr "WAB" #: application/views/interface_assets/header.php:240 msgid "Japan" -msgstr "" +msgstr "Japon" #: application/views/interface_assets/header.php:246 msgid "JA Gridmaster" -msgstr "" +msgstr "JA Gridmaster" #: application/views/interface_assets/header.php:250 msgid "Luxemburg" -msgstr "" +msgstr "Luxembourg" #: application/views/interface_assets/header.php:252 msgid "LX Gridmaster" -msgstr "" +msgstr "LX Gridmaster" #: application/views/interface_assets/header.php:256 msgid "Switzerland" -msgstr "" +msgstr "Suisse" #: application/views/interface_assets/header.php:262 msgid "The Netherlands" -msgstr "" +msgstr "Pays Bas" #: application/views/interface_assets/header.php:264 msgid "WAP Worked All Provinces" -msgstr "" +msgstr "WAP Toutes les provinces contactées" #: application/views/interface_assets/header.php:268 msgid "USA" -msgstr "" +msgstr "USA" #: application/views/interface_assets/header.php:274 msgid "US Gridmaster" -msgstr "" +msgstr "US Gridmaster" #: application/views/interface_assets/header.php:291 msgid "Bandmap" -msgstr "" +msgstr "Carte des bandes" #: application/views/interface_assets/header.php:293 msgid "SAT Timers" -msgstr "" +msgstr "Minuteries Satellite" #: application/views/interface_assets/header.php:297 msgid "Satellite Pass" -msgstr "" +msgstr "Passage de Satellite" #: application/views/interface_assets/header.php:303 #: application/views/stationsetup/stationsetup.php:116 msgid "Admin" -msgstr "" +msgstr "Administrateur" #: application/views/interface_assets/header.php:308 msgid "Global Options" -msgstr "" +msgstr "Options globales" #: application/views/interface_assets/header.php:320 msgid "Update Country Files" -msgstr "" +msgstr "Mettre à jour les fichiers des pays" #: application/views/interface_assets/header.php:324 msgid "Debug Information" -msgstr "" +msgstr "Informations de débogage" #: application/views/interface_assets/header.php:371 msgid "Add/Search Callsign" @@ -10118,7 +10339,7 @@ msgstr "Ajouter/Rechercher Indicatif" #: application/views/interface_assets/header.php:373 msgid "Log" -msgstr "" +msgstr "Log" #: application/views/interface_assets/header.php:380 #: application/views/logbookadvanced/index.php:602 @@ -10131,7 +10352,7 @@ msgstr "Rechercher l'indicatif" #, php-format msgctxt "Operator: Callsign" msgid "Op: %s" -msgstr "" +msgstr "Op : %s" #: application/views/interface_assets/header.php:418 #: application/views/user/edit.php:53 @@ -10140,11 +10361,11 @@ msgstr "Compte" #: application/views/interface_assets/header.php:426 msgid "Band Edges" -msgstr "" +msgstr "Limites de bande" #: application/views/interface_assets/header.php:432 msgid "Switch to Clubstation:" -msgstr "Changer pour club:" +msgstr "Changer pour club :" #: application/views/interface_assets/header.php:436 #, php-format @@ -10171,11 +10392,11 @@ msgstr "Cabrillo - Export" #: application/views/interface_assets/header.php:467 msgid "EDI Export" -msgstr "" +msgstr "EDI Exportation" #: application/views/interface_assets/header.php:491 msgid "QSL Queue" -msgstr "" +msgstr "File d'attente des QSL" #: application/views/interface_assets/header.php:492 msgid "Labels" @@ -10183,23 +10404,23 @@ msgstr "Libellés" #: application/views/interface_assets/header.php:494 msgid "Third-Party Services" -msgstr "" +msgstr "Services tiers" #: application/views/interface_assets/header.php:497 msgid "eQSL Import / Export" -msgstr "" +msgstr "eQSL Importation/Exportation" #: application/views/interface_assets/header.php:498 msgid "HRDLog Logbook" -msgstr "" +msgstr "Journal de trafic HRDLog" #: application/views/interface_assets/header.php:501 msgid "Clublog Import / Export" -msgstr "" +msgstr "Clublog Importation/Exportation" #: application/views/interface_assets/header.php:504 msgid "DCL Export" -msgstr "" +msgstr "DCL Exportation" #: application/views/interface_assets/header.php:516 #: application/views/logbookadvanced/index.php:741 @@ -10208,12 +10429,12 @@ msgstr "Aide" #: application/views/interface_assets/header.php:517 msgid "Forum" -msgstr "" +msgstr "Forum" #: application/views/interface_assets/header.php:521 #, php-format msgid "Stop impersonate and switch back to %s" -msgstr "" +msgstr "Arrêtez d'usurper l'identité et revenez à %s" #: application/views/interface_assets/header.php:522 #, php-format @@ -10231,10 +10452,12 @@ msgstr "Choisir un emplacement" #: application/views/interface_assets/header.php:576 msgid "You miss station-locations here? Go to stationsetup and fav them" msgstr "" +"L'emplacement des stations vous manque ? Rendez-vous dans la configuration " +"des stations et ajoutez-les à vos favoris" #: application/views/interface_assets/header.php:613 msgid "Extras" -msgstr "" +msgstr "Suppléments" #: application/views/kml/index.php:7 msgid "Export your logbook to a KML file for use in Google Earth." @@ -10247,13 +10470,15 @@ msgid "" "Label name used for display purposes, so pick something meaningful, perhaps " "the label style." msgstr "" +"Nom de l'étiquette utilisé à des fins d'affichage, choisissez donc quelque " +"chose de significatif, peut-être le style de l'étiquette." #: application/views/labels/create.php:39 #: application/views/labels/createpaper.php:41 #: application/views/labels/edit.php:41 #: application/views/labels/editpaper.php:41 msgid "Measurement used" -msgstr "" +msgstr "Mesure utilisée" #: application/views/labels/create.php:42 #: application/views/labels/createpaper.php:44 @@ -10271,155 +10496,159 @@ msgstr "Pouces" #: application/views/labels/create.php:49 application/views/labels/edit.php:51 msgid "Margin Top" -msgstr "" +msgstr "Marge supérieure" #: application/views/labels/create.php:52 application/views/labels/edit.php:54 msgid "Top margin of labels" -msgstr "" +msgstr "Marge supérieure des étiquettes" #: application/views/labels/create.php:55 application/views/labels/edit.php:57 msgid "Margin Left" -msgstr "" +msgstr "Marge gauche" #: application/views/labels/create.php:58 application/views/labels/edit.php:60 msgid "Left margin of labels." -msgstr "" +msgstr "Marche gauche des étiquettes." #: application/views/labels/create.php:63 application/views/labels/edit.php:65 msgid "Labels horizontally" -msgstr "" +msgstr "Etiquettes horizontales" #: application/views/labels/create.php:66 application/views/labels/edit.php:68 msgid "Number of labels horizontally across the page." -msgstr "" +msgstr "Nombre d'étiquettes horizontales sur la page." #: application/views/labels/create.php:69 application/views/labels/edit.php:71 msgid "Labels vertically" -msgstr "" +msgstr "Etiquettes verticales" #: application/views/labels/create.php:72 application/views/labels/edit.php:74 msgid "Number of labels vertically across the page." -msgstr "" +msgstr "Nombre d'étiquettes verticales sur la page." #: application/views/labels/create.php:77 application/views/labels/edit.php:79 msgid "Horizontal space" -msgstr "" +msgstr "Espace horizontal" #: application/views/labels/create.php:80 application/views/labels/edit.php:82 msgid "Horizontal space between 2 labels." -msgstr "" +msgstr "Espace horizontal entre 2 étiquettes." #: application/views/labels/create.php:83 application/views/labels/edit.php:85 msgid "Vertical space" -msgstr "" +msgstr "Espace vertical" #: application/views/labels/create.php:86 application/views/labels/edit.php:88 msgid "Vertical space between 2 labels." -msgstr "" +msgstr "Espace verticale entre 2 étiquettes." #: application/views/labels/create.php:91 application/views/labels/edit.php:93 msgid "Width of label" -msgstr "" +msgstr "Largeur de l'étiquette" #: application/views/labels/create.php:94 application/views/labels/edit.php:96 msgid "Total width of one label." -msgstr "" +msgstr "Largeur totale d'une étiquette." #: application/views/labels/create.php:97 application/views/labels/edit.php:99 msgid "Height of label" -msgstr "" +msgstr "Hauteur de l'étiquette" #: application/views/labels/create.php:100 #: application/views/labels/edit.php:102 msgid "Total height of one label" -msgstr "" +msgstr "Hauteur totale d'une étiquette" #: application/views/labels/create.php:105 #: application/views/labels/edit.php:107 application/views/labels/index.php:80 msgid "Font Size" -msgstr "" +msgstr "Taille de la police" #: application/views/labels/create.php:108 #: application/views/labels/edit.php:110 msgid "Font size used on the label don't go too big." -msgstr "" +msgstr "La taille de la police utilisée sur l'étiquette n'est pas trop grande." #: application/views/labels/create.php:111 #: application/views/labels/edit.php:113 msgid "QSOs on label" -msgstr "" +msgstr "QSO sur l'étiquette" #: application/views/labels/create.php:117 #: application/views/labels/edit.php:118 msgid "Save Label Type" -msgstr "" +msgstr "Enregistrer le type d'étiquette" #: application/views/labels/createpaper.php:36 #: application/views/labels/editpaper.php:36 msgid "Paper Type Name" -msgstr "" +msgstr "Nom du type de papier" #: application/views/labels/createpaper.php:39 #: application/views/labels/editpaper.php:39 msgid "Paper name used for display purposes, so pick something meaningful." msgstr "" +"Le nom du papier est utilisé à des fins d'affichage, alors choisissez " +"quelque chose de significatif." #: application/views/labels/createpaper.php:51 #: application/views/labels/editpaper.php:51 msgid "Width of paper" -msgstr "" +msgstr "Largeur du papier" #: application/views/labels/createpaper.php:54 #: application/views/labels/editpaper.php:54 #: application/views/labels/editpaper.php:60 msgid "Total width of paper." -msgstr "" +msgstr "Largeur totale du papier." #: application/views/labels/createpaper.php:57 #: application/views/labels/editpaper.php:57 msgid "Height of paper" -msgstr "" +msgstr "Hauteur du papier" #: application/views/labels/createpaper.php:60 msgid "Total height of paper" -msgstr "" +msgstr "Hauteur totale du papier" #: application/views/labels/createpaper.php:65 #: application/views/labels/createpaper.php:71 #: application/views/labels/editpaper.php:65 #: application/views/labels/editpaper.php:71 msgid "Orientation of paper" -msgstr "" +msgstr "Orientation du papier" #: application/views/labels/createpaper.php:68 #: application/views/labels/editpaper.php:68 #: application/views/labels/index.php:60 msgctxt "Orientation" msgid "Landscape" -msgstr "" +msgstr "Paysage" #: application/views/labels/createpaper.php:69 #: application/views/labels/editpaper.php:69 #: application/views/labels/index.php:60 msgctxt "Orientation" msgid "Portrait" -msgstr "" +msgstr "Portrait" #: application/views/labels/createpaper.php:75 #: application/views/labels/editpaper.php:75 msgid "Save Paper Type" -msgstr "" +msgstr "Enregistrer le type de papier" #: application/views/labels/edit.php:24 msgid "" "Label name used for display purposes so pick something meaningful perhaps " "the label style." msgstr "" +"Le nom de l'étiquette est utilisé à des fins d'affichage, alors choisissez " +"quelque chose de significatif, peut-être le style de l'étiquette." #: application/views/labels/index.php:2 #: application/views/logbookadvanced/startatform.php:39 msgid "Mark QSL as printed" -msgstr "" +msgstr "Marquer la QSL comme imprimée" #: application/views/labels/index.php:3 application/views/labels/index.php:128 msgid "Print" @@ -10427,15 +10656,15 @@ msgstr "Imprimer" #: application/views/labels/index.php:33 msgid "Create New Label Type" -msgstr "" +msgstr "Créer un nouveau type d'étiquette" #: application/views/labels/index.php:34 msgid "Create New Paper Type" -msgstr "" +msgstr "Créer un nouveau type de papier" #: application/views/labels/index.php:37 msgid "Paper types" -msgstr "" +msgstr "Types de papier" #: application/views/labels/index.php:43 application/views/labels/index.php:78 msgid "Width" @@ -10447,15 +10676,15 @@ msgstr "Hauteur" #: application/views/labels/index.php:45 msgid "Used by labels" -msgstr "" +msgstr "Utilisé par les étiquettes" #: application/views/labels/index.php:46 msgid "Orientation" -msgstr "" +msgstr "Orientation" #: application/views/labels/index.php:71 msgid "Label types" -msgstr "" +msgstr "Types d'étiquettes" #: application/views/labels/index.php:81 #: application/views/statistics/index.php:70 @@ -10465,15 +10694,15 @@ msgstr "Nb QSOs /Bandes /Modes" #: application/views/labels/index.php:82 msgid "Use For Print" -msgstr "" +msgstr "Utiliser pour imprimer" #: application/views/labels/index.php:92 msgid "No paper assigned" -msgstr "" +msgstr "Aucun papier sélectionné" #: application/views/labels/index.php:117 msgid "QSL Card Labels Pending" -msgstr "" +msgstr "Étiquettes de cartes QSL en attente" #: application/views/labels/index.php:126 msgid "QSOs Waiting" @@ -10493,18 +10722,20 @@ msgstr "Ajouter le Locator ?" msgid "" "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" msgstr "" +"Inclure une référence ? (SIG, SOTA, POTA, IOTA, WWFF ; si compatible à votre " +"localisation)" #: application/views/labels/startatform.php:16 msgid "Include Via (if filled)?" -msgstr "" +msgstr "Inclure Via (si rempli) ?" #: application/views/labels/startatform.php:22 msgid "Include QSLMSG (if filled)?" -msgstr "" +msgstr "Inclure QSLMSG (si rempli) ?" #: application/views/labels/startatform.php:28 msgid "Include TNX message?" -msgstr "" +msgstr "Inclure message TNX (si rempli) ?" #: application/views/labels/startatform.php:34 #: application/views/logbookadvanced/startatform.php:33 @@ -10513,112 +10744,112 @@ msgstr "Commencer à imprimer à ?" #: application/views/logbookadvanced/edit.php:1 msgid "Please choose the column to be edited:" -msgstr "" +msgstr "Veuillez choisir la colonne à éditer :" #: application/views/logbookadvanced/edit.php:5 msgid "QSO details" -msgstr "" +msgstr "Détails du QSO" #: application/views/logbookadvanced/edit.php:9 msgid "Contest Exch (S)" -msgstr "" +msgstr "Groupe de contrôle du concours (S)" #: application/views/logbookadvanced/edit.php:19 msgid "Station Power" -msgstr "" +msgstr "Puissance de la station" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" -msgstr "" +msgstr "Région" #: application/views/logbookadvanced/edit.php:37 msgid "QSL / LoTW / Clublog / eQSL / QRZ / DCL" -msgstr "" +msgstr "QSL / LoTW / Clublog / eQSL / QRZ / DCL" #: application/views/logbookadvanced/edit.php:38 msgid "Clublog Received" -msgstr "" +msgstr "Clublog reçu" #: application/views/logbookadvanced/edit.php:39 msgid "Clublog Sent" -msgstr "" +msgstr "Clublog Envoyé" #: application/views/logbookadvanced/edit.php:40 msgid "DCL Sent" -msgstr "" +msgstr "DCL envoyé" #: application/views/logbookadvanced/edit.php:41 msgid "DCL Received" -msgstr "" +msgstr "DCL reçu" #: application/views/logbookadvanced/edit.php:42 msgid "eQSL Received" -msgstr "" +msgstr "eQSL reçu" #: application/views/logbookadvanced/edit.php:43 msgid "eQSL Sent" -msgstr "" +msgstr "eQSL envoyé" #: application/views/logbookadvanced/edit.php:44 msgid "LoTW Received" -msgstr "" +msgstr "LoTW reçu" #: application/views/logbookadvanced/edit.php:45 msgid "LoTW Sent" -msgstr "" +msgstr "LoTW envoyé" #: application/views/logbookadvanced/edit.php:46 msgid "QRZ Received" -msgstr "" +msgstr "QRZ reçu" #: application/views/logbookadvanced/edit.php:47 msgid "QRZ Sent" -msgstr "" +msgstr "QRZ envoyé" #: application/views/logbookadvanced/edit.php:48 msgid "QSL Received" -msgstr "" +msgstr "QSL reçue" #: application/views/logbookadvanced/edit.php:49 msgid "QSL Sent" -msgstr "" +msgstr "QSL envoyée" #: application/views/logbookadvanced/edit.php:50 msgid "QSLMSG" -msgstr "" +msgstr "QSLMSG" #: application/views/logbookadvanced/edit.php:51 msgid "QSL Received Method" -msgstr "" +msgstr "Méthode de réception des QSL" #: application/views/logbookadvanced/edit.php:52 msgid "QSL Sent Method" -msgstr "" +msgstr "Méthode d'envoi des QSL" #: application/views/logbookadvanced/edit.php:53 #: application/views/logbookadvanced/index.php:570 #: application/views/logbookadvanced/index.php:788 #: application/views/logbookadvanced/useroptions.php:66 msgid "QSL via" -msgstr "" +msgstr "QSL via" #: application/views/logbookadvanced/edit.php:105 #: application/views/satellite/edit.php:51 #: application/views/satellite/index.php:55 msgid "SAT Mode" -msgstr "" +msgstr "Mode SAT" #: application/views/logbookadvanced/edit.php:108 msgid "Band TX" -msgstr "" +msgstr "Bande TX" #: application/views/logbookadvanced/edit.php:121 msgid "Band RX" -msgstr "" +msgstr "Bande RX" #: application/views/logbookadvanced/edit.php:169 #: application/views/logbookadvanced/edit.php:176 @@ -10650,14 +10881,14 @@ msgstr "Vérifiée" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 #: application/views/view_log/partial/log_ajax.php:345 #: src/QSLManager/QSO.php:432 src/QSLManager/QSO.php:475 msgid "Direct" -msgstr "" +msgstr "Direct" #: application/views/logbookadvanced/edit.php:209 #: application/views/logbookadvanced/index.php:462 @@ -10671,14 +10902,14 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 #: application/views/view_log/partial/log_ajax.php:342 #: src/QSLManager/QSO.php:429 src/QSLManager/QSO.php:472 msgid "Bureau" -msgstr "" +msgstr "Bureau" #: application/views/logbookadvanced/edit.php:210 #: application/views/logbookadvanced/index.php:464 @@ -10690,7 +10921,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10705,113 +10936,125 @@ msgstr "Numérique" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" -msgstr "" +msgstr "Manager" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "AUCUNE" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" -msgstr "" +msgstr "Italie Africaine" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" -msgstr "" +msgstr "Ile de Bear" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" -msgstr "" +msgstr "Turquie européenne" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" -msgstr "" +msgstr "ITU Vienne" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" -msgstr "" +msgstr "Kosovo" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" -msgstr "" +msgstr "Iles Shetland" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" -msgstr "" +msgstr "Sicile" #: application/views/logbookadvanced/edit.php:237 msgid "" "Distance (in km). Leave blank to recalculate distance. (It will only work if " "a gridsquare is set)." msgstr "" +"Distance (en km). Laissez ce champ vide pour recalculer la distance. (Ceci " +"ne fonctionnera que si un Locator est défini)." #: application/views/logbookadvanced/help.php:1 msgid "In the text input searches, you can search in the following way:" msgstr "" +"Dans les recherches par saisie de texte, vous pouvez effectuer une recherche " +"de la manière suivante :" #: application/views/logbookadvanced/help.php:2 msgid "* - means search for everything." -msgstr "" +msgstr "* - signifie rechercher tout." #: application/views/logbookadvanced/help.php:3 msgid "Remove star and leave blank, means to search where column is empty." msgstr "" +"Supprimer l'étoile et laisser vide, signifie rechercher là où la colonne est " +"vide." #: application/views/logbookadvanced/help.php:4 msgid "!empty - means to search where column is not empty." -msgstr "" +msgstr "! vide - signifie rechercher là où la colonne n'est pas vide." #: application/views/logbookadvanced/help.php:6 msgid "" "The dupe search checks for duplicate QSOs with the same callsign, mode, " "submode, station callsign, band and satellite within 1500 seconds." msgstr "" +"La recherche de doublons vérifie les QSO en double avec le même indicatif, " +"le même mode, le même sous-mode, le même indicatif de station, la même bande " +"et le même satellite dans les 1500 secondes." #: application/views/logbookadvanced/help.php:8 msgid "The invalid search checks for the following conditions:" -msgstr "" +msgstr "La recherche non valide vérifie les conditions suivantes :" #: application/views/logbookadvanced/help.php:9 msgid "Mode is blank or set to 0." -msgstr "" +msgstr "Le mode est vide ou défini sur 0." #: application/views/logbookadvanced/help.php:10 msgid "Band is blank." -msgstr "" +msgstr "La bande est vide." #: application/views/logbookadvanced/help.php:11 msgid "Callsign is blank." -msgstr "" +msgstr "Indicatif est vide." #: application/views/logbookadvanced/help.php:12 msgid "Time and date is not set." -msgstr "" +msgstr "L'heure et la date ne sont pas définies." #: application/views/logbookadvanced/help.php:13 msgid "Date is set to 1970-01-01." -msgstr "" +msgstr "La date est fixée au 1970-01-01." #: application/views/logbookadvanced/help.php:14 msgid "Continent different from AF, AN, AS, EU, NA, OC or SA." -msgstr "" +msgstr "Continent différent de AF, AN, AS, EU, NA, OC ou SA." #: application/views/logbookadvanced/help.php:16 msgid "" "The map uses the same search criteria as the normal search. All QSOs in the " "search result will be mapped, unless you have checked one or more QSOs." msgstr "" +"La carte utilise les mêmes critères de recherche que la recherche normale. " +"Tous les QSO du résultat seront cartographiés, sauf si vous en avez coché un " +"ou plusieurs." #: application/views/logbookadvanced/help.php:18 msgid "" @@ -10819,39 +11062,42 @@ msgid "" "will be exported (all for selected location), unless you have checked one or " "more QSOs." msgstr "" +"L'exportation ADIF utilise les mêmes critères de recherche que la recherche " +"normale. Tous les QSO seront exportés (tous ceux de la zone sélectionnée), " +"sauf si vous en avez coché un ou plusieurs." #: application/views/logbookadvanced/index.php:16 #: application/views/logbookadvanced/useroptions.php:206 #: application/views/stationsetup/exportmapoptions.php:23 msgctxt "Map Options" msgid "Path lines" -msgstr "" +msgstr "Ligne de chemin" #: application/views/logbookadvanced/index.php:17 msgid "Show Callsigns" -msgstr "" +msgstr "Afficher les indicatifs" #: application/views/logbookadvanced/index.php:18 #: application/views/logbookadvanced/useroptions.php:214 msgctxt "Map Options" msgid "CQ Zones" -msgstr "" +msgstr "CQ Zones" #: application/views/logbookadvanced/index.php:19 #: application/views/logbookadvanced/useroptions.php:218 msgctxt "Map Options" msgid "ITU Zones" -msgstr "" +msgstr "ITU Zones" #: application/views/logbookadvanced/index.php:20 #: application/views/logbookadvanced/useroptions.php:222 msgctxt "Map Options" msgid "Night Shadow" -msgstr "" +msgstr "Ombres de la nuit" #: application/views/logbookadvanced/index.php:23 msgid "Advanced Logbook Help" -msgstr "" +msgstr "Aide avancée au carnet de trafic" #: application/views/logbookadvanced/index.php:227 msgid "From" @@ -10865,7 +11111,7 @@ msgstr "au" #: application/views/logbookadvanced/index.php:761 #: application/views/logbookadvanced/useroptions.php:30 msgid "Dx" -msgstr "" +msgstr "Dx" #: application/views/logbookadvanced/index.php:236 #: application/views/logbookadvanced/index.php:261 @@ -10882,12 +11128,12 @@ msgstr "" #: application/views/logbookadvanced/index.php:421 #: application/views/logbookadvanced/index.php:571 msgid "Empty" -msgstr "" +msgstr "Vide" #: application/views/logbookadvanced/index.php:313 msgctxt "Propagation Mode" msgid "None/Empty" -msgstr "" +msgstr "Aucun / Vide" #: application/views/logbookadvanced/index.php:431 msgid "QSL Filters" @@ -10909,7 +11155,7 @@ msgstr "QSL Envoyée" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10946,7 +11192,7 @@ msgstr "En attente" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -10987,11 +11233,11 @@ msgstr "LoTW Reçu" #: application/views/logbookadvanced/index.php:504 msgid "Clublog sent" -msgstr "" +msgstr "Clublog Envoyé" #: application/views/logbookadvanced/index.php:515 msgid "Clublog received" -msgstr "" +msgstr "Clublog reçu" #: application/views/logbookadvanced/index.php:528 msgid "eQSL sent" @@ -11003,15 +11249,15 @@ msgstr "eQSL Reçue" #: application/views/logbookadvanced/index.php:550 msgid "DCL sent" -msgstr "" +msgstr "DCL envoyé" #: application/views/logbookadvanced/index.php:559 msgid "DCL received" -msgstr "" +msgstr "DCL reçu" #: application/views/logbookadvanced/index.php:574 msgid "QSL Images" -msgstr "" +msgstr "Images QSL" #: application/views/logbookadvanced/index.php:589 msgid "Quickfilters" @@ -11023,7 +11269,7 @@ msgstr "Recherche rapide (avec infos de la ligne sélectionnée) : " #: application/views/logbookadvanced/index.php:599 msgid "Search Date" -msgstr "" +msgstr "Date de recherche" #: application/views/logbookadvanced/index.php:605 msgid "Search DXCC" @@ -11043,7 +11289,7 @@ msgstr "Même Zone CQ" #: application/views/logbookadvanced/index.php:617 msgid "Search ITU Zone" -msgstr "" +msgstr "Recherche de la Zone ITU" #: application/views/logbookadvanced/index.php:620 msgid "Search Mode" @@ -11071,7 +11317,7 @@ msgstr "Même WWFF" #: application/views/logbookadvanced/index.php:638 msgid "Search Operator" -msgstr "" +msgstr "Recherche de l'opérateur" #: application/views/logbookadvanced/index.php:657 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" @@ -11081,7 +11327,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:658 msgid " QSO(s) will be deleted" -msgstr "" +msgstr " Les QSO seront supprimés" #: application/views/logbookadvanced/index.php:662 msgid "With selected: " @@ -11126,7 +11372,7 @@ msgstr "QSL Non requis" #: application/views/logbookadvanced/index.php:675 msgid "Not Received" -msgstr "" +msgstr "Non reçu" #: application/views/logbookadvanced/index.php:676 msgid "Received (Bureau)" @@ -11154,11 +11400,11 @@ msgstr "Diaporama QSL" #: application/views/logbookadvanced/index.php:682 msgid "Fix CQ Zones" -msgstr "" +msgstr "Corriger les Zones CQ" #: application/views/logbookadvanced/index.php:683 msgid "Fix ITU Zones" -msgstr "" +msgstr "Corriger les Zones ITU" #: application/views/logbookadvanced/index.php:690 #: application/views/oqrs/showrequests.php:58 @@ -11171,31 +11417,31 @@ msgstr "Doublon(s)" #: application/views/logbookadvanced/index.php:727 msgid "Globe map" -msgstr "" +msgstr "Carte du globe" #: application/views/logbookadvanced/index.php:758 #: application/views/logbookadvanced/useroptions.php:26 msgid "De" -msgstr "" +msgstr "De" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 #: application/views/timeline/index.php:72 application/views/user/edit.php:594 msgid "QRZ" -msgstr "" +msgstr "QRZ" #: application/views/logbookadvanced/index.php:809 #: application/views/logbookadvanced/useroptions.php:94 #: application/views/qso/edit_ajax.php:527 msgid "QSL Msg (S)" -msgstr "" +msgstr "QSL MSG (S)" #: application/views/logbookadvanced/index.php:812 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/qso/edit_ajax.php:536 msgid "QSL Msg (R)" -msgstr "" +msgstr "QSL MSG (R)" #: application/views/logbookadvanced/index.php:863 #: application/views/logbookadvanced/useroptions.php:166 @@ -11204,31 +11450,31 @@ msgstr "Ma Refs" #: application/views/logbookadvanced/index.php:872 msgid "Ant az" -msgstr "" +msgstr "Az Ant" #: application/views/logbookadvanced/index.php:872 #: application/views/logbookadvanced/useroptions.php:178 msgid "Antenna azimuth" -msgstr "" +msgstr "Azimuth de l'antenne" #: application/views/logbookadvanced/index.php:875 msgid "Ant el" -msgstr "" +msgstr "El Ant" #: application/views/logbookadvanced/index.php:875 #: application/views/logbookadvanced/useroptions.php:182 msgid "Antenna elevation" -msgstr "" +msgstr "Elévation de l'antenne" #: application/views/logbookadvanced/index.php:881 #: application/views/logbookadvanced/useroptions.php:190 msgid "Station power" -msgstr "" +msgstr "Puissance de la station" #: application/views/logbookadvanced/qslcarousel.php:59 #: application/views/qslcard/qslcarousel.php:25 msgid "QSL picture #" -msgstr "" +msgstr "Image de la QSO #" #: application/views/logbookadvanced/qslcarousel.php:67 #: application/views/qslcard/qslcarousel.php:32 @@ -11246,11 +11492,11 @@ msgstr "Ajouter Via" #: application/views/logbookadvanced/startatform.php:21 msgid "Include QSLMSG" -msgstr "" +msgstr "Inclure QSLMSG" #: application/views/logbookadvanced/startatform.php:27 msgid "Include TNX message" -msgstr "" +msgstr "Inclure message TNX" #: application/views/logbookadvanced/useroptions.php:16 msgid "Column" @@ -11259,16 +11505,16 @@ msgstr "Colonne" #: application/views/logbookadvanced/useroptions.php:200 msgctxt "Map Options" msgid "Layer" -msgstr "" +msgstr "Couche" #: application/views/logbookadvanced/useroptions.php:201 msgid "Default on" -msgstr "" +msgstr "Par défaut activé" #: application/views/lookup/index.php:11 #: application/views/qso/award_tabs.php:53 msgid "US State" -msgstr "" +msgstr "Etat des USA" #: application/views/lookup/index.php:13 msgid "LoTW user" @@ -11276,7 +11522,7 @@ msgstr "Utilisateur LoTW" #: application/views/lookup/index.php:77 msgid "Choose a State" -msgstr "" +msgstr "Choisissez un état" #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 @@ -11296,15 +11542,17 @@ msgstr[1] "Il y a %d jours" #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:77 msgid "last upload" -msgstr "" +msgstr "Dernier téléchargement" #: application/views/lookup/lotwuser.php:14 msgid "No LoTW User" -msgstr "" +msgstr "Aucun utilisateur de LoTW" #: application/views/lotw/analysis.php:8 application/views/qrz/analysis.php:8 msgid "No data imported. please check selected date. Must be in the past!" msgstr "" +"Aucune donnée importée. Veuillez vérifier la date sélectionnée. Doit être " +"dans le passé !" #: application/views/lotw/import.php:22 msgid "Upload a File" @@ -11320,6 +11568,8 @@ msgid "" "Upload the Exported ADIF file from LoTW from the %s Area, to mark QSOs as " "confirmed on LoTW." msgstr "" +"Téléchargez le fichier ADIF exporté à partir de LoTW depuis la zone %s, pour " +"marquer les QSO comme confirmés sur LoTW." #: application/views/lotw/import.php:27 msgid "Choose file" @@ -11331,7 +11581,7 @@ msgstr "Récuperer mes données LoTW" #: application/views/lotw/import.php:48 msgid "Select callsign to pull LoTW confirmations for." -msgstr "" +msgstr "Sélectionnez l'indicatif pour lequel récupérer les confirmations LoTW." #: application/views/lotw/import.php:62 msgid "" @@ -11353,11 +11603,13 @@ msgstr "Import LoTW correspondants" #: application/views/lotw/satupdate.php:7 #: application/views/satellite/index.php:53 msgid "Display Name" -msgstr "" +msgstr "Nom affiché" #: application/views/lotw_views/index.php:4 msgid "Upload folder is not writable. Please contact your admin." msgstr "" +"Le dossier de téléchargement n'est pas accessible en écriture. Veuillez " +"contacter votre administrateur." #: application/views/lotw_views/index.php:8 msgid "LoTW Import" @@ -11392,37 +11644,41 @@ msgstr "Date d'expiration" msgid "Last Upload" msgstr "Dernier téléchargement" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "Expiré" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "Expiration" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" -msgstr "Valide" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" +msgstr "" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "Non synchronisé" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "Vous devez envoyer des certificats p1 pour utiliser cette zone." -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "" @@ -11960,7 +12216,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -12008,7 +12264,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12545,20 +12801,12 @@ msgstr "" msgid "Toot on Mastodon" msgstr "" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "" @@ -12583,11 +12831,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Saisissez la ouissance en Watts en utilisant uniquement des chiffres." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12597,25 +12845,25 @@ msgstr "Puissance Emission (W)" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "Autre" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "Chemin court" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "Chemin long" @@ -12628,38 +12876,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12668,8 +12916,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "Méthode" @@ -12690,7 +12938,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "Récupérer le message par défaut pour ce lieu de station." @@ -12734,7 +12982,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "Heure de fin inférieure à celle de début" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "Contacts précédents" @@ -12801,7 +13049,7 @@ msgstr "Heure fin" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -12809,7 +13057,7 @@ msgstr "" msgid "IOTA Reference" msgstr "Référence IOTA" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -12817,157 +13065,169 @@ msgstr "Référence IOTA" msgid "SOTA Reference" msgstr "Référence SOTA" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "Frequence (RX)" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "Bande (RX)" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "Par exemple : GM/NS-001." -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "Par exemple : DLFF-0069." -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "Par exemple : PA-0150. (Plusieurs valeurs autorisées)." -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "Par exemple : GMA" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "Par exemple : DA/NW-357" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "Par exemple : Q03" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "Nom du Satellite" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "Mode du Satellite" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:769 -msgid "Send" +#: application/views/qso/index.php:778 +msgid "Stop" msgstr "" #: application/views/qso/index.php:779 -msgid "Suggestions" +msgid "Tune" msgstr "" -#: application/views/qso/index.php:786 -msgid "Profile Picture" +#: application/views/qso/index.php:780 +msgid "Stop Tune" msgstr "" +#: application/views/qso/index.php:785 +msgid "Enter text..." +msgstr "Entrer du texte..." + +#: application/views/qso/index.php:786 +msgid "Send" +msgstr "Envoyer" + +#: application/views/qso/index.php:798 +msgid "Suggestions" +msgstr "Suggestions" + +#: application/views/qso/index.php:805 +msgid "Profile Picture" +msgstr "Photo de profil" + #: application/views/qso/log_qso.php:9 msgid "Redirecting to QSO logging page..." -msgstr "" +msgstr "Redirection vers la page d'enregistrement du QSO..." #: application/views/qso/log_qso.php:75 msgid "The data was redirected. You can close this window." -msgstr "" +msgstr "Les données ont été redirigées. Vous pouvez fermer cette fenêtre." #: application/views/radio/edit.php:18 msgid "CAT URL" -msgstr "" +msgstr "URL du CAT" #: application/views/radio/edit.php:20 -#, php-format +#, fuzzy, php-format msgid "" "Called URL when a spot at DXCluster is clicked. Notice: The trailing slash " "(/) and QRG is added automatically. Default is %s" msgstr "" +"URL appelée lorsqu'un spot sur le DXCluster est cliqué. Remarque : La barre " +"oblique finale (/) et la QRG sont ajoutés automatiquement. La valeur par " +"défaut est %s." #: application/views/radio/index.php:20 msgid "Active Radios" -msgstr "" +msgstr "Radios actives" #: application/views/radio/index.php:23 msgid "Below is a list of active radios that are connected to Wavelog." msgstr "" +"Vous trouverez ci-dessous une liste des radios actives connectées à Wavelog." #: application/views/radio/index.php:24 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." msgstr "" +"Si vous n'avez pas encore connecté de radios, consultez la page API pour " +"générer des clés API." #: application/views/radio/index.php:26 application/views/search/filter.php:72 #, php-format msgid "You can find out how to use the %s in the wiki." -msgstr "" +msgstr "Vous pouvez découvrir comment utiliser le %s dans le wiki." #: application/views/radio/index.php:26 msgid "radio functions" -msgstr "" +msgstr "Fonctions radio" #: application/views/radio/index.php:31 msgid "Please wait..." -msgstr "" +msgstr "Attendez s'il vous plait..." #: application/views/reg1test/index.php:6 msgid "Select Band" -msgstr "" +msgstr "Sélectionner une bande" #: application/views/reg1test/index.php:8 msgid "" "Bands below 50Mhz are not valid for the EDI REG1TEST format and will produce " "invalid files." msgstr "" +"Les bandes inférieures à 50 MHz ne sont pas valides pour le format EDI " +"REG1TEST et produiront des fichiers invalides." #: application/views/reg1test/index.php:18 msgid "Export a contest to a REG1TEST EDI log" -msgstr "" +msgstr "Exporter un concours vers un journal EDI REG1TEST" #: application/views/reg1test/index.php:48 msgid "Sent Exchange" -msgstr "" +msgstr "Echange envoyé" #: application/views/reg1test/index.php:50 msgid "" @@ -12975,127 +13235,137 @@ msgid "" "information, e.g. Province, DOK, County, State, Power, Name. Max. length: 6 " "characters." msgstr "" +"Le report qui est envoyé pendant le concours. Il peut s'agir de tout type " +"d'information, par exemple : province, département, état, puissance, nom. " +"Longueur maximale : 6 caractères." #: application/views/reg1test/index.php:55 msgid "" "Describes the callsign of the radio club where operator(s) are member. E.g. " "can be used if points are accumulated to the club." msgstr "" +"Indique l'indicatif du radioclub dont le ou les opérateurs sont membres. Par " +"exemple, il peut être utilisé pour cumuler des points au profit du club." #: application/views/reg1test/index.php:66 msgid "Callsign of responsible operator" -msgstr "" +msgstr "Indicatif de l'opérateur responsable" #: application/views/reg1test/index.php:72 msgid "" "List of all operators. Seperated with a semicolon ';'. The responsible " "operator is not needed here." msgstr "" +"Liste de tous les opérateurs. Séparés par un point-virgule « ; ». " +"L'opérateur responsable n'est pas nécessaire ici." #: application/views/reg1test/index.php:75 msgid "Contest Address 1" -msgstr "" +msgstr "Concours Adresse 1" #: application/views/reg1test/index.php:77 msgid "Address of the QTH used during the contest." -msgstr "" +msgstr "Adresse du QTH utilisé pendant le concours." #: application/views/reg1test/index.php:80 msgid "Contest Address 2" -msgstr "" +msgstr "Concours Adresse 2" #: application/views/reg1test/index.php:84 msgid "Operator Address 1" -msgstr "" +msgstr "Opérateur Adresse 1" #: application/views/reg1test/index.php:86 msgid "Address of the responsible operator." -msgstr "" +msgstr "Adresse de l'opérateur responsable." #: application/views/reg1test/index.php:89 msgid "Operator Address 2" -msgstr "" +msgstr "Opérateur Adresse 2" #: application/views/reg1test/index.php:93 msgid "Operator Address Postalcode" -msgstr "" +msgstr "Code postal de l'adresse de l'opérateur" #: application/views/reg1test/index.php:97 msgid "Operator Address City" -msgstr "" +msgstr "Adresse de la ville de l'opérateur" #: application/views/reg1test/index.php:101 msgid "Operator Address Country" -msgstr "" +msgstr "Adresse du pays de l'opérateur" #: application/views/reg1test/index.php:105 msgid "Operator Phone Number" -msgstr "" +msgstr "Numéro de téléphone de l'opérateur" #: application/views/reg1test/index.php:109 msgid "Transmit Equipment Description" -msgstr "" +msgstr "Description de l'équipement de transmission" #: application/views/reg1test/index.php:111 msgid "Short description of the used equipment." -msgstr "" +msgstr "Brève description du matériel utilisé." #: application/views/reg1test/index.php:116 msgid "TX Power during the contest in Watt." -msgstr "" +msgstr "Puissance d'émission (en Watt) pendant le concours." #: application/views/reg1test/index.php:119 msgid "Receive Equipment Description" -msgstr "" +msgstr "Description du matériel de réception" #: application/views/reg1test/index.php:121 msgid "If you used another gear for RX, then describe it here." msgstr "" +"Si vous avez utilisé un autre matériel pour la réception, décrivez-le ici." #: application/views/reg1test/index.php:124 msgid "Antenna Description" -msgstr "" +msgstr "Description de l'antenne" #: application/views/reg1test/index.php:126 msgid "What kind of antenna was used." -msgstr "" +msgstr "Quel type d'antenne a été utilisé." #: application/views/reg1test/index.php:129 msgid "Antenna Height Above Ground (m)" -msgstr "" +msgstr "Hauteur de l'antenne par rapport au sol (m)" #: application/views/reg1test/index.php:131 msgid "Height of the antenna above the ground." -msgstr "" +msgstr "Hauteur de l'antenne au-dessus du sol." #: application/views/reg1test/index.php:134 msgid "Band multiplicator" -msgstr "" +msgstr "Multiplicateur par bande" #: application/views/reg1test/index.php:136 msgid "" "Band multiplicator. This is usually 1. Only change this if necessary " "according to the contest scoring rules." msgstr "" +"Multiplicateur par bande. Il est généralement égal à 1. Ne le modifiez que " +"si nécessaire, conformément aux règles de notation du concours." #: application/views/reg1test/index.php:141 msgid "Any other remarks." -msgstr "" +msgstr "Autres remarques." #: application/views/satellite/create.php:23 msgid "Satellite Display Name" -msgstr "" +msgstr "Alias du satellite" #: application/views/satellite/create.php:25 #: application/views/satellite/edit.php:9 msgid "Display / cleartext name of the satellite" -msgstr "" +msgstr "Alias / nom en clair du satellite" #: application/views/satellite/create.php:28 #: application/views/satellite/edit.php:12 #: application/views/satellite/index.php:52 msgid "LoTW Name" -msgstr "" +msgstr "Nom LOTW" #: application/views/satellite/create.php:30 #: application/views/satellite/edit.php:14 @@ -13103,69 +13373,71 @@ msgid "" "Satellite name as accepted by LoTW. Not necessarily the same as the display " "name. Can be set/changed later when added to LoTW." msgstr "" +"Nom du satellite tel qu'accepté par LoTW. Peut être différent de l'alias " +"affiché. Peut être défini/modifié ultérieurement lors de l'ajout à LoTW." #: application/views/satellite/create.php:41 #: application/views/satellite/edit.php:25 msgid "Enter which orbit the satellite has (LEO, MEO, GEO)" -msgstr "" +msgstr "Entrer l'orbite du satellite (LEO, MEO, GEO)" #: application/views/satellite/create.php:44 msgid "Satellite mode name" -msgstr "" +msgstr "Nom du mode satellite" #: application/views/satellite/create.php:46 msgid "Enter satellite mode" -msgstr "" +msgstr "Entrer le mode satellite" #: application/views/satellite/create.php:51 #: application/views/satellite/edit.php:52 #: application/views/satellite/satinfo.php:8 msgid "Uplink mode" -msgstr "" +msgstr "Mode de liaison montante" #: application/views/satellite/create.php:53 msgid "Enter modulation used for uplink" -msgstr "" +msgstr "Entrer la modulation utilisée en liaison montante" #: application/views/satellite/create.php:56 #: application/views/satellite/edit.php:53 #: application/views/satellite/satinfo.php:9 msgid "Uplink frequency" -msgstr "" +msgstr "Fréquence de la liaison montante" #: application/views/satellite/create.php:58 msgid "Enter frequency (in Hz) used for uplink" -msgstr "" +msgstr "Entrer la fréquence (en Hz) utilisée pour la liaison montante" #: application/views/satellite/create.php:63 #: application/views/satellite/edit.php:54 #: application/views/satellite/satinfo.php:10 msgid "Downlink mode" -msgstr "" +msgstr "Mode de la liaison descendante" #: application/views/satellite/create.php:65 msgid "Enter modulation used for downlink" -msgstr "" +msgstr "Entrer la modulation utilisée pour la liaison descendante" #: application/views/satellite/create.php:68 #: application/views/satellite/edit.php:55 #: application/views/satellite/satinfo.php:11 msgid "Downlink frequency" -msgstr "" +msgstr "Fréquence de la liaison descendante" #: application/views/satellite/create.php:70 msgid "Enter frequency (in Hz) used for downlink" -msgstr "" +msgstr "Entrer la fréquence (en Hz) utilisée pour la liaison descendante" #: application/views/satellite/create.php:73 #: application/views/satellite/edit.php:28 msgid "Accepted by LoTW" -msgstr "" +msgstr "Accepté par LoTW" #: application/views/satellite/create.php:78 #: application/views/satellite/edit.php:38 msgid "Set to yes only if satellite is accepted my LoTW" -msgstr "" +msgstr "Sélectionner oui seulement si le satellite est accepté par mon LoTW" #: application/views/satellite/edit.php:7 msgid "Satellite Display Name " @@ -13173,64 +13445,67 @@ msgstr "" #: application/views/satellite/edit.php:42 msgid "Save satellite" -msgstr "" +msgstr "Sauvegarder le satellite" #: application/views/satellite/edit.php:76 msgid "Add satellite mode" -msgstr "" +msgstr "Ajouter le mode satellite" #: application/views/satellite/flightpath.php:51 msgid "" "No satellites with TLE found. Please update via CRON or satellite page. If " "you have no access to do this, ask your admin!" msgstr "" +"Aucun satellite avec TLE n'a été trouvé. Veuillez effectuer la mise à jour " +"via CRON ou la page satellite. Si vous n'y avez pas accès, contactez votre " +"administrateur !" #: application/views/satellite/index.php:44 msgid "Add a satellite" -msgstr "" +msgstr "Ajouter un satellite" #: application/views/satellite/index.php:45 msgid "Sync Satellites from LoTW" -msgstr "" +msgstr "Synchroniser les satellites depuis LoTW" #: application/views/satellite/index.php:46 msgid "Update Satellite TLE" -msgstr "" +msgstr "Mise à jour du satellite TLE" #: application/views/satellite/index.php:57 msgid "TLE" -msgstr "" +msgstr "TLE" #: application/views/satellite/pass.php:6 msgid "Satellite passes" -msgstr "" +msgstr "Passages de satellite" #: application/views/satellite/pass.php:13 msgid "Your station" -msgstr "" +msgstr "Votre station" #: application/views/satellite/pass.php:26 #: application/views/satellite/pass.php:65 msgid "Min. Satellite Elevation" -msgstr "" +msgstr "Elévation minimal du satellite" #: application/views/satellite/pass.php:30 #: application/views/satellite/pass.php:69 msgid "Min. Azimuth" -msgstr "" +msgstr "Azimuth minimum" #: application/views/satellite/pass.php:38 #: application/views/satellite/pass.php:77 msgid "Max. Azimuth" -msgstr "" +msgstr "Azimuth maximum" #: application/views/satellite/pass.php:54 msgid "Min. time" -msgstr "" +msgstr "Heure minimale" #: application/views/satellite/pass.php:63 msgid "Sked partner" -msgstr "" +msgstr "Partenaire de Sked" #: application/views/satellite/pass.php:91 msgid "Load predictions" @@ -13238,123 +13513,125 @@ msgstr "" #: application/views/satellite/pass.php:92 msgid "Add sked partner" -msgstr "" +msgstr "Ajouter un partenaire de Sked" #: application/views/satellite/pass.php:94 msgid "Presets" -msgstr "" +msgstr "Préréglages" #: application/views/satellite/pass.php:96 msgid "Save current settings" -msgstr "" +msgstr "Enregistrer les paramètres actuels" #: application/views/satellite/pass.php:105 msgid "Save Settings" -msgstr "" +msgstr "Enregistrer les paramètres" #: application/views/satellite/pass.php:109 msgid "Settings Name" -msgstr "" +msgstr "Nom des paramètres" #: application/views/satellite/pass.php:110 msgid "Enter a name" -msgstr "" +msgstr "Entrer un nom" #: application/views/satellite/pass.php:121 msgid "No TLE information detected. Please update TLE's." -msgstr "" +msgstr "Aucune information TLE détectée. Veuillez mettre à jour les TLE." #: application/views/satellite/passtable.php:7 #: application/views/satellite/skedtable.php:36 msgid "AOS Time" -msgstr "" +msgstr "Heure AOS" #: application/views/satellite/passtable.php:8 #: application/views/satellite/skedtable.php:40 msgid "LOS Time" -msgstr "" +msgstr "Heure LOS" #: application/views/satellite/passtable.php:9 #: application/views/satellite/skedtable.php:10 #: application/views/satellite/skedtable.php:37 #: application/views/sattimers/index.php:46 msgid "Duration" -msgstr "" +msgstr "Durée" #: application/views/satellite/passtable.php:10 msgid "Path" -msgstr "" +msgstr "Chemin" #: application/views/satellite/passtable.php:11 msgid "Max Elevation (Azimuth)" -msgstr "" +msgstr "Elévation maximale (Azimuth)" #: application/views/satellite/passtable.php:12 #: application/views/satellite/skedtable.php:38 msgid "AOS Azimuth" -msgstr "" +msgstr "Azimuth AOS" #: application/views/satellite/passtable.php:13 #: application/views/satellite/skedtable.php:41 msgid "LOS Azimuth" -msgstr "" +msgstr "Azimuth LOS" #: application/views/satellite/passtable.php:55 #: application/views/satellite/skedtable.php:84 msgid "Search failed!" -msgstr "" +msgstr "Echec de la recherche !" #: application/views/satellite/passtable.php:56 msgid "No passes found. Please check the input parameters." -msgstr "" +msgstr "Aucun passage trouvé. Veuillez vérifier les paramètres d'entrée." #: application/views/satellite/passtable.php:73 #: application/views/satellite/skedtable.php:94 msgid "min" -msgstr "" +msgstr "Min" #: application/views/satellite/satinfo.php:14 msgid "TLE date" -msgstr "" +msgstr "Date TLE" #: application/views/satellite/skedtable.php:8 msgid "Sked AOS Time" -msgstr "" +msgstr "Heure du Sked AOS" #: application/views/satellite/skedtable.php:9 msgid "Sked LOS Time" -msgstr "" +msgstr "Heure du Sked LOS" #: application/views/satellite/skedtable.php:34 msgid "Grid" -msgstr "" +msgstr "Locator" #: application/views/satellite/skedtable.php:39 #: application/views/sattimers/index.php:45 msgid "Max Elevation" -msgstr "" +msgstr "Elévation maximale" #: application/views/satellite/skedtable.php:85 msgid "No overlapping passes found. Please check the input parameters." msgstr "" +"Aucun chevauchement de passages n'a été détecté. Veuillez vérifier les " +"paramètres d'entrée." #: application/views/satellite/tleinfo.php:6 #, php-format msgid "TLE information for %s (last updated: %s)" -msgstr "" +msgstr "Informations TLE pour %s (dernière mise à jour : %s)" #: application/views/satellite/tleinfo.php:8 msgid "Delete TLE" -msgstr "" +msgstr "TLE effacé" #: application/views/satellite/tleinfo.php:10 #, php-format msgid "No TLE information found for %s" -msgstr "" +msgstr "Aucune information TLE trouvée pour %s" #: application/views/satellite/tleinfo.php:11 msgid "Add TLE" -msgstr "" +msgstr "Ajouter TLE" #: application/views/sattimers/index.php:15 #, php-format @@ -13362,23 +13639,25 @@ msgid "" "This data comes from %s and is calculated for the current stationlocation " "grid %s." msgstr "" +"Ces données proviennent de %s et sont calculées pour le Locator actuel de la " +"station %s." #: application/views/sattimers/index.php:40 msgid "Time(d)-Out" -msgstr "" +msgstr "Temps (d) - Dépassé" #: application/views/sattimers/index.php:43 #: application/views/sattimers/index.php:44 #: application/views/statistics/antennaanalytics.php:8 msgid "Azimuth" -msgstr "" +msgstr "Azimuth" #: application/views/search/cqzones.php:5 #: application/views/search/ituzones.php:5 #: application/views/search/lotw_unconfirmed.php:5 #: application/views/search/main.php:5 msgid "Ready to find a QSO?" -msgstr "" +msgstr "Prêt à trouver un QSO ?" #: application/views/search/cqzones.php:15 #: application/views/search/filter.php:4 application/views/search/filter.php:23 @@ -13386,7 +13665,7 @@ msgstr "" #: application/views/search/lotw_unconfirmed.php:15 #: application/views/search/main.php:15 msgid "Advanced Search" -msgstr "" +msgstr "Recherches avancées" #: application/views/search/cqzones.php:18 #: application/views/search/filter.php:26 @@ -13394,7 +13673,7 @@ msgstr "" #: application/views/search/lotw_unconfirmed.php:18 #: application/views/search/main.php:18 msgid "Incorrect CQ Zones" -msgstr "" +msgstr "Zones CQ incorrectes" #: application/views/search/cqzones.php:21 #: application/views/search/filter.php:29 @@ -13402,7 +13681,7 @@ msgstr "" #: application/views/search/lotw_unconfirmed.php:21 #: application/views/search/main.php:21 msgid "Incorrect ITU Zones" -msgstr "" +msgstr "Zones ITU inconrrectes" #: application/views/search/cqzones.php:24 #: application/views/search/filter.php:32 @@ -13410,90 +13689,97 @@ msgstr "" #: application/views/search/lotw_unconfirmed.php:24 #: application/views/search/main.php:24 msgid "QSOs unconfirmed on LoTW" -msgstr "" +msgstr "QSO non confirmés sur LoTW" #: application/views/search/cqzones.php:31 #: application/views/search/ituzones.php:31 msgid "Station location:" -msgstr "" +msgstr "Emplacement de la station :" #: application/views/search/cqzones_result.php:3 msgid "" "The following QSOs were found to have an incorrect CQ zone that this DXCC " "normally has (a maximum of 5000 QSOs are shown):" msgstr "" +"Les QSO suivants n'ont pas une zone CQ correcte pour ce DXCC (un maximum de " +"5 000 QSO sont affichés) :" #: application/views/search/cqzones_result.php:14 msgid "DXCC CQ Zone" -msgstr "" +msgstr "Zone CQ DXCC" #: application/views/search/cqzones_result.php:51 #: application/views/search/ituzones_result.php:51 msgid "No incorrect CQ Zones were found." -msgstr "" +msgstr "Aucune zone CQ incorrecte n'a été trouvée." #: application/views/search/filter.php:46 msgid "Save query" -msgstr "" +msgstr "Enregistrer la requête" #: application/views/search/filter.php:53 msgid "Stored queries" -msgstr "" +msgstr "Requêtes stockées" #: application/views/search/filter.php:72 msgid "search filter functions" -msgstr "" +msgstr "Fonctions filtres de recherche" #: application/views/search/filter.php:82 msgid "Search Results" -msgstr "" +msgstr "Résultats de la recherche" #: application/views/search/ituzones_result.php:3 msgid "" "The following QSOs were found to have an incorrect ITU zone that this DXCC " "normally has (a maximum of 5000 QSOs are shown):" msgstr "" +"Les QSO suivants n'ont pas une zone ITU correcte pour ce DXCC (un maximum de " +"5 000 QSO sont affichés) :" #: application/views/search/ituzones_result.php:14 msgid "DXCC ITU Zone" -msgstr "" +msgstr "Zone ITU du DXCC" #: application/views/search/lotw_unconfirmed.php:29 msgid "" "The search displays QSOs which are unconfirmed on LoTW, but the callsign " "worked has uploaded to LoTW after your QSO date." msgstr "" +"La recherche affiche les QSO qui ne sont pas confirmés sur LoTW, mais " +"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 "" +msgstr "Emplacement de la Station" #: application/views/search/lotw_unconfirmed_result.php:10 msgid "Last LoTW upload" -msgstr "" +msgstr "Dernier téléchargement de LoTW" #: application/views/search/lotw_unconfirmed_result.php:41 msgid "No QSOs with outstanding LoTW upload were found." -msgstr "" +msgstr "Aucun QSO en attente de téléchargement LoTW n'a été trouvé." #: application/views/search/main.php:31 msgid "Callsign / Gridsquare" -msgstr "" +msgstr "Indicatif / Locator" #: application/views/search/result.php:2 #, php-format msgid "Results for %s" -msgstr "" +msgstr "Résultats pour %s" #: application/views/search/result.php:4 #, php-format msgid "Sorry, but we didn't find any past QSOs with %s" -msgstr "" +msgstr "Désolé, mais nous n'avons trouvé aucun QSO effectué avec %s" #: application/views/search/result.php:6 #, php-format msgid "Callbook Search for %s" -msgstr "" +msgstr "Recherche dans le Carnet de trafic pour %s" #: application/views/search/result.php:39 msgid "Not Worked" @@ -13502,53 +13788,54 @@ msgstr "Non contacté" #: application/views/search/result.php:58 msgid "Grid is auto-detected by callbook and probably wrong" msgstr "" +"Locator détecté automatiquement par le carnet de trafic et probablement faux" #: application/views/search/search_result_ajax.php:463 #: application/views/view_log/partial/log.php:142 #: application/views/view_log/partial/log_ajax.php:534 msgid "Mark QSL Sent (Bureau)" -msgstr "Marquer QSL Envoyée (Bureau)" +msgstr "Marquer les QSL comme Envoyées (Bureau)" #: application/views/search/search_result_ajax.php:464 #: application/views/view_log/partial/log.php:143 #: application/views/view_log/partial/log_ajax.php:535 msgid "Mark QSL Sent (Direct)" -msgstr "Marquer QSL Envoyée (Direct)" +msgstr "Marquer les QSL comme Envoyées (Direct)" #: application/views/search/search_result_ajax.php:471 #: application/views/view_log/partial/log.php:150 #: application/views/view_log/partial/log_ajax.php:545 #: application/views/view_log/qso.php:811 msgid "Mark QSL Received (Bureau)" -msgstr "Marquer QSL Reçue (Bureau)" +msgstr "Marquer les QSL comme Reçues (Bureau)" #: application/views/search/search_result_ajax.php:472 #: application/views/view_log/partial/log.php:151 #: application/views/view_log/partial/log_ajax.php:546 #: application/views/view_log/qso.php:813 msgid "Mark QSL Received (Direct)" -msgstr "Marquer QSL Reçue (Direct)" +msgstr "Marquer les QSL comme Reçues (Direct)" #: application/views/search/search_result_ajax.php:473 #: application/views/view_log/partial/log.php:152 #: application/views/view_log/partial/log_ajax.php:536 #: application/views/view_log/qso.php:821 msgid "Mark QSL Card Requested (Bureau)" -msgstr "Marquer Carte QSL comme demandé (Bureau)" +msgstr "Marquer les QSL comme demandées (Bureau)" #: application/views/search/search_result_ajax.php:474 #: application/views/view_log/partial/log.php:153 #: application/views/view_log/partial/log_ajax.php:537 #: application/views/view_log/qso.php:823 msgid "Mark QSL Card Requested (Direct)" -msgstr "Marquer Carte QSL comme demandé (Direct)" +msgstr "Marquer les QSL comme demandées (Direct)" #: application/views/search/search_result_ajax.php:475 #: application/views/view_log/partial/log.php:154 #: application/views/view_log/partial/log_ajax.php:538 #: application/views/view_log/qso.php:825 msgid "Mark QSL Card Not Required" -msgstr "Marquer Carte QSL comme non requise" +msgstr "Marquer les QSL comme non requises" #: application/views/search/search_result_ajax.php:482 #: application/views/view_log/partial/log_ajax.php:553 @@ -13562,11 +13849,11 @@ msgstr "Rechercher sur HamQTH" #: application/views/search/stored_queries.php:9 msgid "Query" -msgstr "" +msgstr "Requête" #: application/views/simplefle/index.php:13 msgid "Simple Fast Log Entry (FLE)" -msgstr "" +msgstr "Entrée de journal simple et rapide (FLE)" #: application/views/simplefle/index.php:14 msgid "" @@ -13574,6 +13861,10 @@ msgid "" "efficiently. Due to its syntax, only a minimum of input is required to log " "many QSOs with as little effort as possible." msgstr "" +"«Fast Log Entry », ou simplement « FLE » pour \"entrée rapide dans le " +"journal\" est un système permettant d'enregistrer des QSO très rapidement et " +"efficacement. Grâce à sa syntaxe, seule une saisie minimale est nécessaire " +"pour enregistrer de nombreux QSO avec un minimum d'effort." #: application/views/simplefle/index.php:15 msgid "" @@ -13581,6 +13872,9 @@ msgid "" "website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides " "a web interface to log QSOs." msgstr "" +"FLE a été initialement développé par DF3CB. Ce dernier propose un programme " +"pour Windows sur son site web. SIMPLE FLE a été développé par OK2CQR, basé " +"sur FLE de DF3CB, et propose une interface web pour enregistrer les QSO." #: application/views/simplefle/index.php:16 #, php-format @@ -13589,108 +13883,126 @@ msgid "" "session and now SimpleFLE is also available in Wavelog. Information about " "the syntax and how FLE works can be found %s." msgstr "" +"Un cas courant d'utilisation est l'importation de journaux de trafic en " +"papier depuis une session en extérieur. SimpleFLE est désormais également " +"disponible dans Wavelog. Des informations sur la syntaxe et le " +"fonctionnement de SimpleFLE sont disponibles dans la section %s." #: application/views/simplefle/index.php:17 #: application/views/simplefle/index.php:184 msgid "Syntax Help" -msgstr "" +msgstr "Aide à la syntaxe" #: application/views/simplefle/index.php:18 msgid "Syntax for FLE" -msgstr "" +msgstr "Syntaxe pour FLE" #: application/views/simplefle/index.php:19 msgid "Close and Load Sample Data" -msgstr "" +msgstr "Fermer et charger des exemples de données" #: application/views/simplefle/index.php:23 msgid "Band is missing!" -msgstr "" +msgstr "La Bande est manquante !" #: application/views/simplefle/index.php:24 msgid "Mode is missing!" -msgstr "" +msgstr "Le Mode est manquant !" #: application/views/simplefle/index.php:25 msgid "Time is not set!" -msgstr "" +msgstr "L'heure n'est pas réglée !" #: application/views/simplefle/index.php:26 msgid "Invalid date" -msgstr "" +msgstr "Date invalide" #: application/views/simplefle/index.php:29 msgid "Station Call is not selected" -msgstr "" +msgstr "L'indicatif de la station n'est pas sélectionné" #: application/views/simplefle/index.php:30 msgid "'Operator' Field is empty" -msgstr "" +msgstr "Le champs \"opérateur\" est vide" #: application/views/simplefle/index.php:31 msgid "Warning! Do you really want to reset everything?" -msgstr "" +msgstr "Attention ! Voulez-vous vraiment tout réinitialiser ?" #: application/views/simplefle/index.php:32 msgid "" "Warning! You can't log the QSO List, because some QSO don't have band and/or " "mode defined!" msgstr "" +"Attention ! Impossible d'enregistrer la liste des QSO, car certains QSO " +"n'ont pas de bande, ni de mode définis !" #: application/views/simplefle/index.php:33 msgid "" "Warning! You can't log the QSO List, because some QSO don't have a time " "defined!" msgstr "" +"Attention ! Impossible d'enregistrer la liste des QSO, car certains QSO " +"n'ont pas d'heure définie !" #: application/views/simplefle/index.php:34 msgid "" "Attention! The Data Field containes example data. First Clear Logging " "Session!" msgstr "" +"Attention ! Le champ des données ne contient que des exemples de données. " +"Veuillez d'abord effacer la session d'enregistrement !" #: application/views/simplefle/index.php:35 msgid "" "Attention! Either you have set a contest, but included no exchange, or you " "have logged contest-data but did not select a contest." msgstr "" +"Attention ! Soit vous avez lancé un concours sans inclure de report, soit " +"vous avez enregistré des données de concours sans sélectionner le type de " +"concours." #: application/views/simplefle/index.php:36 msgid "" "Are you sure that you want to add these QSO to the Log and clear the session?" msgstr "" +"Êtes-vous sûr de vouloir ajouter ces QSO au journal et d'effacer la session ?" #: application/views/simplefle/index.php:37 msgid "QSO Logged!" -msgstr "" +msgstr "QSO enregistrés !" #: application/views/simplefle/index.php:38 msgid "The QSO were successfully logged in the logbook! Dupes were skipped." msgstr "" +"Les QSO ont été enregistrés avec succès dans le carnet de trafic ! Les " +"doublons ont été ignorés." #: application/views/simplefle/index.php:40 msgid "An error occurred while saving the QSO to the logbook! Error: " msgstr "" +"Une erreur s'est produite lors de l'enregistrement du QSO dans le carnet de " +"trafic ! Erreur : " #: application/views/simplefle/index.php:44 msgid "What is that?" -msgstr "" +msgstr "Qu'est-ce que c'est ?" #: application/views/simplefle/index.php:47 msgid "Current UTC Time" -msgstr "" +msgstr "Heure UTC actuelle" #: application/views/simplefle/index.php:80 msgid "If you don't choose a date, today's date will be used." -msgstr "" +msgstr "Si vous ne choisissez pas de date, la date du jour sera utilisée." #: application/views/simplefle/index.php:92 msgid "You can add the entered QSOs to a contest." -msgstr "" +msgstr "Vous pouvez ajouter les QSO saisis à un concours." #: application/views/simplefle/index.php:99 msgid "Station Call/Location" -msgstr "" +msgstr "Indicatif / Emplacement" #: application/views/simplefle/index.php:111 #, php-format @@ -13698,56 +14010,61 @@ msgid "" "If you did operate from a new location, first create a new %sStation " "Location%s" msgstr "" +"Si vous avez opéré à partir d'un nouvel emplacement, créez d'abord un nouvel " +"%sEmplacement de station%s" #: application/views/simplefle/index.php:117 msgid "e.g. OK2CQR" -msgstr "" +msgstr "Par exemple OK2CQR" #: application/views/simplefle/index.php:120 msgid "This is callsign of the operator. Without any pre- or suffixes." -msgstr "" +msgstr "Il s'agit de l'indicatif de l'opérateur. Sans préfixe, ni suffixe." #: application/views/simplefle/index.php:133 msgid "Enter the Data" -msgstr "" +msgstr "Entrer les données" #: application/views/simplefle/index.php:162 msgid "Refs" -msgstr "" +msgstr "Réf." #: application/views/simplefle/index.php:174 #, php-format msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" -msgstr "" +msgstr "Les références peuvent être %sS%sOTA, %sI%sOTA, %sP%sOTA ou %sW%sWFF" #: application/views/simplefle/index.php:181 msgid "Reload QSO List" -msgstr "" +msgstr "Recharger la liste des QSO" #: application/views/simplefle/index.php:182 msgid "Save in Wavelog" -msgstr "" +msgstr "Sauvegarder dans Wavelog" #: application/views/simplefle/index.php:183 msgid "Clear Logging Session" -msgstr "" +msgstr "Effacer la session d'enregistrement" #: application/views/simplefle/options.php:20 msgid "No Options yet" -msgstr "" +msgstr "Aucune option pour le moment" #: application/views/simplefle/syntax_help.php:1 msgid "Before starting to log a QSO, please note the basic rules." msgstr "" +"Avant de commencer à enregistrer un QSO, veuillez noter les règles de base." #: application/views/simplefle/syntax_help.php:2 msgid "- Each new QSO should be on a new line." -msgstr "" +msgstr "- Chaque nouveau QSO doit être sur une nouvelle ligne." #: application/views/simplefle/syntax_help.php:3 msgid "" "- On each new line, only write data that has changed from the previous QSO." msgstr "" +"- Sur chaque nouvelle ligne, écrivez uniquement les données qui ont changé " +"par rapport au QSO précédent." #: application/views/simplefle/syntax_help.php:4 msgid "" @@ -13756,10 +14073,16 @@ msgid "" "QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the " "first QSO, which is essentially the callsign." msgstr "" +"Pour commencer, assurez-vous d'avoir rempli le formulaire sur la gauche avec " +"la date, l'indicatif de la station et l'indicatif de l'opérateur. Les " +"données principales incluent la bande (ou QRG en MHz, par exemple « 7.145 " +"»), le mode et l'heure. Après l'heure, indiquez le premier QSO, qui " +"correspond essentiellement à l'indicatif." #: application/views/simplefle/syntax_help.php:9 msgid "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB." msgstr "" +"Par exemple, un QSO qui a commencé à 21h34 (UTC) avec 4W7EST sur 20 m en SSB." #: application/views/simplefle/syntax_help.php:10 msgid "" @@ -13767,6 +14090,10 @@ msgid "" "data). Our next QSO wasn't 59 on both sides, so we provide the information " "with the sent RST first. It was 2 minutes later than the first QSO." msgstr "" +"Si vous ne saisissez pas le RST, la syntaxe utilisera 59 (599 pour les " +"data). Le QSO suivant n'était pas 59 des deux côtés, nous fournissons donc " +"les informations avec le RST envoyé en premier. C'était 2 minutes après le " +"premier QSO." #: application/views/simplefle/syntax_help.php:16 msgid "" @@ -13774,6 +14101,10 @@ msgid "" "write down 6 because this is the only data that changed here. The " "information about band and mode didn't change, so this data is omitted." msgstr "" +"Le premier QSO a eu lieu à 21h34, et le second deux minutes plus tard, à " +"21h36. Nous saisissons 6 car c'est la seule donnée qui a changé ici. Les " +"informations sur la bande et le mode n'ont pas changé, ces données sont donc " +"omises." #: application/views/simplefle/syntax_help.php:17 msgid "" @@ -13782,26 +14113,34 @@ msgid "" "every new QSO. Therefore we can add another QSO which took place at the " "exact same time two days later. The date must be in format YYYY-MM-DD." msgstr "" +"Pour le prochain QSO, le 14 mai 2021 à 21h40, nous avons changé la bande à " +"40 m, mais toujours en SSB. Si aucune information RST n'est fournie, la " +"syntaxe utilisera 59 pour chaque nouveau QSO. Nous pouvons donc ajouter un " +"autre QSO ayant eu lieu exactement à la même heure mais deux jours plus " +"tard. La date doit être au format AAAA-MM-JJ." #: application/views/simplefle/syntax_help.php:28 msgid "Additional informations can be submitted in the following way:" msgstr "" +"Des informations complémentaires peuvent être soumises de la manière " +"suivante :" #: application/views/simplefle/syntax_help.php:29 msgid "Notes:" -msgstr "" +msgstr "Notes :" #: application/views/simplefle/syntax_help.php:33 msgid "Operator Name:" -msgstr "" +msgstr "Nom de l'opérateur :" #: application/views/simplefle/syntax_help.php:37 msgid "QSL-message (Caution! Not visible in wavelog currently!):" -msgstr "" +msgstr "Message QSL (Attention ! Non visible dans Wavelog actuellement !) :" #: application/views/simplefle/syntax_help.php:41 msgid "Contest exchange; serials or other exchange - or even both:" msgstr "" +"Report pendant les concours ; numéro progressif ou autre - ou même les deux :" #: application/views/simplefle/syntax_help.php:48 msgid "" @@ -13812,24 +14151,38 @@ msgid "" "single comma ','. To automatically increment the sent serial, use ',++' and " "give an initial sent exchange. To deactivate, use ',+0':" msgstr "" +"Les reports reçus doivent être préfixés par un point « . », et les reports " +"envoyés par une virgule « , ». Les deux dernières lignes sont équivalentes ; " +"les espaces importent peu, l'ordre importe peu. Les reports envoyés seront " +"automatiquement inclus dans le prochain QSO, s'il contient des reports reçus " +"ou si vous utilisez une simple virgule « , ». Pour incrémenter " +"automatiquement le numéro progressif envoyé, utilisez « ,++ » et indiquez un " +"report initial. Pour désactiver, utilisez \" ,+0 \" :" #: application/views/simplefle/syntax_help.php:54 msgid "" "Here, the first qso uses the set serial 1, and the second will use 2 as the " "serial. If you want to wipe your sent exchange, use ',-':" msgstr "" +"Ici, le premier QSO utilise le numéro progressif 1, et le second le numéro " +"2. Pour effacer vos échanges, utilisez « ,- » :" #: application/views/simplefle/syntax_help.php:59 msgid "" "First, all previous exchange is wiped, then only a serial is set. Otherwise " "the previous exchange 'D23' would have been set also." msgstr "" +"Tout d'abord, tous les reports précédents sont effacés, puis seul un numéro " +"progressif est défini. Sinon, le report précédent « D23 » aurait également " +"été défini." #: application/views/simplefle/syntax_help.php:60 msgid "" "You may use the comment syntax, to fill adif-fields supported by the Wavelog-" "Import:" msgstr "" +"Vous pouvez utiliser la syntaxe de commentaire pour remplir les champs adif " +"pris en charge par Wavelog-Import :" #: application/views/simplefle/syntax_help.php:64 #, php-format @@ -13837,54 +14190,56 @@ msgid "" "A full summary of all commands and the necessary syntax can be found in " "%sthis article%s of our Wiki." msgstr "" +"Un résumé complet de toutes les commandes et de la syntaxe nécessaire peut " +"être trouvé dans %scet article%s de notre Wiki." #: application/views/station_profile/create.php:55 #: application/views/station_profile/edit.php:71 msgid "Location Name" -msgstr "" +msgstr "Nom de l'emplacement" #: application/views/station_profile/create.php:56 #: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:73 msgctxt "Station Location Setup" msgid "Home QTH" -msgstr "" +msgstr "QTH" #: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:73 #, php-format msgid "Shortname for the station location. For example: %s" -msgstr "" +msgstr "Nom abrégé de l'emplacement de la station. Par exemple : %s" #: application/views/station_profile/create.php:63 #: application/views/station_profile/edit.php:79 msgid "Station callsign. For example: 4W7EST/P" -msgstr "" +msgstr "Indicatif de la station. Par example : 4W7EST/P" #: application/views/station_profile/create.php:67 #: application/views/station_profile/edit.php:83 msgid "Station Power (W)" -msgstr "" +msgstr "Puissance de la station (W)" #: application/views/station_profile/create.php:69 #: application/views/station_profile/edit.php:85 msgid "Default station power in Watt. Overwritten by CAT." -msgstr "" +msgstr "Puissance de la station par défaut, en Watt. Réécrit par le CAT." #: application/views/station_profile/create.php:82 #: application/views/station_profile/edit.php:116 msgid "Station DXCC entity. For example: Bolivia" -msgstr "" +msgstr "Entité DXCC de la station. Par exemple : Bolivie" #: application/views/station_profile/create.php:87 #: application/views/station_profile/edit.php:122 msgid "Station City" -msgstr "" +msgstr "Ville de la station" #: application/views/station_profile/create.php:89 #: application/views/station_profile/edit.php:124 msgid "Station city. For example: Oslo" -msgstr "" +msgstr "Ville de la station. Par exemple : Oslo" #: application/views/station_profile/create.php:98 #: application/views/station_profile/edit.php:136 @@ -14191,6 +14546,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -15220,10 +15576,6 @@ msgstr "URL du serveur Mastodon" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "Expérimental" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "" @@ -15812,7 +16164,7 @@ msgstr "" #: application/views/visitor/layout/header.php:95 msgid "Please enter a callsign!" -msgstr "Merci d’entrer un indicatif" +msgstr "Merci d’entrer un indicatif !" #: application/views/webadif/export.php:22 msgid "" @@ -15889,7 +16241,7 @@ msgstr "" #: application/views/widgets/oqrs.php:79 #, php-format msgid "Request a QSL card for your QSO with %s." -msgstr "" +msgstr "Demander une carte QSL pour votre QSO avec %s." #: application/views/widgets/oqrs.php:83 msgid "Your Callsign:" @@ -15903,6 +16255,18 @@ msgstr "Soumettre la demande" msgid "Rcvd" msgstr "Reçu" +#~ msgid "Expired" +#~ msgstr "Expiré" + +#~ msgid "Expiring" +#~ msgstr "Expiration" + +#~ msgid "Valid" +#~ msgstr "Valide" + +#~ msgid "Experimental" +#~ msgstr "Expérimental" + #~ msgid "Club Log Email/Callsign" #~ msgstr "Email/Callsign" diff --git a/application/locale/hr/LC_MESSAGES/messages.po b/application/locale/hr/LC_MESSAGES/messages.po index 064fdf23a..30cccf65a 100644 --- a/application/locale/hr/LC_MESSAGES/messages.po +++ b/application/locale/hr/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" "PO-Revision-Date: 2024-11-23 16:17+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Croatian 1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6541,7 +6558,7 @@ msgstr "" msgid "Message" msgstr "" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "" @@ -6940,7 +6957,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7003,7 +7020,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7049,7 +7066,7 @@ msgid "No contests were found in your log." msgstr "" #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "" @@ -7390,7 +7407,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7455,10 +7472,10 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "" @@ -7611,7 +7628,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "" @@ -7687,54 +7704,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "" @@ -7896,7 +7913,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "" @@ -7982,20 +7999,33 @@ msgid "" "themes." msgstr "" -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" msgstr "" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" msgstr "" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8003,25 +8033,25 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8032,7 +8062,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8055,10 +8085,10 @@ msgstr "" msgid "Sent" msgstr "" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8091,7 +8121,7 @@ msgstr "" msgid "Received" msgstr "" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8117,7 +8147,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8131,25 +8161,25 @@ msgstr "" msgid "Requested" msgstr "" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "" -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "" @@ -8314,12 +8344,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "" #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "" @@ -8665,6 +8695,7 @@ msgstr "" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "" @@ -8705,11 +8736,15 @@ msgstr "" msgid "HAMqsl" msgstr "" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -8718,140 +8753,140 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "Bosanski" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "Bugarski" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "Kineski (pojednostavljeni)" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "Hrvatski" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "Češka" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "Nizozemski" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "Engleski" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "Estonski" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "Finski" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "Francuski" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "Njemački" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "Grčki" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "Talijanski" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "Latvijski" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "Litvanski" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "Crnogorski" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "Polirati" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "Portugalski" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "Ruski" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "Srpski" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "Španjolski" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "Švedski" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "Turski" @@ -9237,10 +9272,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9338,7 +9373,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "" @@ -9531,62 +9566,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "" @@ -10180,7 +10215,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "" @@ -10300,7 +10335,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10321,7 +10356,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10340,7 +10375,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10355,49 +10390,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "" @@ -10559,7 +10594,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10596,7 +10631,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11036,37 +11071,41 @@ msgstr "" msgid "Last Upload" msgstr "" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" msgstr "" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "" @@ -11604,7 +11643,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -11652,7 +11691,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12191,20 +12230,12 @@ msgstr "" msgid "Toot on Mastodon" msgstr "" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "" @@ -12229,11 +12260,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12243,25 +12274,25 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "" @@ -12274,38 +12305,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12314,8 +12345,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "" @@ -12336,7 +12367,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12380,7 +12411,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "" @@ -12447,7 +12478,7 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -12455,7 +12486,7 @@ msgstr "" msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -12463,91 +12494,95 @@ msgstr "" msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:769 -msgid "Send" +#: application/views/qso/index.php:778 +msgid "Stop" msgstr "" #: application/views/qso/index.php:779 -msgid "Suggestions" +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:785 +msgid "Enter text..." msgstr "" #: application/views/qso/index.php:786 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:798 +msgid "Suggestions" +msgstr "" + +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "" @@ -13835,6 +13870,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14841,10 +14877,6 @@ msgstr "" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "" diff --git a/application/locale/hu/LC_MESSAGES/messages.po b/application/locale/hu/LC_MESSAGES/messages.po index 4036509e7..6074ab5cb 100644 --- a/application/locale/hu/LC_MESSAGES/messages.po +++ b/application/locale/hu/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" "PO-Revision-Date: 2025-08-05 07:10+0000\n" "Last-Translator: Mathias Regner \n" "Language-Team: Hungarian 1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6543,7 +6560,7 @@ msgstr "" msgid "Message" msgstr "" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "" @@ -6942,7 +6959,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7005,7 +7022,7 @@ msgstr "Igen" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7051,7 +7068,7 @@ msgid "No contests were found in your log." msgstr "" #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "" @@ -7392,7 +7409,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7457,10 +7474,10 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "" @@ -7613,7 +7630,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "" @@ -7689,54 +7706,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "" @@ -7898,7 +7915,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "" @@ -7983,45 +8000,58 @@ msgid "" "themes." msgstr "" -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" msgstr "" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" msgstr "" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" msgstr[0] "" msgstr[1] "" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8032,7 +8062,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8055,10 +8085,10 @@ msgstr "" msgid "Sent" msgstr "" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8091,7 +8121,7 @@ msgstr "" msgid "Received" msgstr "" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8117,7 +8147,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8131,25 +8161,25 @@ msgstr "" msgid "Requested" msgstr "" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "" -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "" @@ -8314,12 +8344,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "" #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "" @@ -8664,6 +8694,7 @@ msgstr "" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "" @@ -8704,11 +8735,15 @@ msgstr "" msgid "HAMqsl" msgstr "" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -8716,140 +8751,140 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "Albán" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "Örmény" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "Bosnyák" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "Bolgár" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "Kínai (egyszerűsített)" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "Horvát" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "Cseh" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "Holland" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "Angol" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "Észt" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "Finn" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "Francia" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "Német" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "Görög" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "Magyar" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "Olasz" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "Japán" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "Lett" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "Litván" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "Montenegrói" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "Lengyel" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "Portugál" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "Orosz" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "Szerb" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "Szlovák" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "Szlovén" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "Spanyol" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "Svéd" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "Török" @@ -9235,10 +9270,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9336,7 +9371,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "" @@ -9532,62 +9567,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "" @@ -10181,7 +10216,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "" @@ -10301,7 +10336,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10322,7 +10357,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10341,7 +10376,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10356,49 +10391,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "" @@ -10560,7 +10595,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10597,7 +10632,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11036,37 +11071,41 @@ msgstr "" msgid "Last Upload" msgstr "" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" msgstr "" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "" @@ -11604,7 +11643,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -11652,7 +11691,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12189,20 +12228,12 @@ msgstr "" msgid "Toot on Mastodon" msgstr "" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "" @@ -12227,11 +12258,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12241,25 +12272,25 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "" @@ -12272,38 +12303,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12312,8 +12343,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "" @@ -12334,7 +12365,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12378,7 +12409,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "" @@ -12445,7 +12476,7 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -12453,7 +12484,7 @@ msgstr "" msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -12461,91 +12492,95 @@ msgstr "" msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:769 -msgid "Send" +#: application/views/qso/index.php:778 +msgid "Stop" msgstr "" #: application/views/qso/index.php:779 -msgid "Suggestions" +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:785 +msgid "Enter text..." msgstr "" #: application/views/qso/index.php:786 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:798 +msgid "Suggestions" +msgstr "" + +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "" @@ -13833,6 +13868,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14839,10 +14875,6 @@ msgstr "" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "" diff --git a/application/locale/hy/LC_MESSAGES/messages.po b/application/locale/hy/LC_MESSAGES/messages.po index 3474ba857..7fa0287f6 100644 --- a/application/locale/hy/LC_MESSAGES/messages.po +++ b/application/locale/hy/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" "PO-Revision-Date: 2025-08-23 15:21+0000\n" "Last-Translator: Matthias Jung \n" "Language-Team: Armenian 1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6535,7 +6552,7 @@ msgstr "" msgid "Message" msgstr "" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "" @@ -6934,7 +6951,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -6997,7 +7014,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7043,7 +7060,7 @@ msgid "No contests were found in your log." msgstr "" #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "" @@ -7384,7 +7401,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7449,10 +7466,10 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "" @@ -7605,7 +7622,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "" @@ -7681,54 +7698,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "" @@ -7890,7 +7907,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "" @@ -7975,45 +7992,58 @@ msgid "" "themes." msgstr "" -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" msgstr "" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" msgstr "" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" msgstr[0] "" msgstr[1] "" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8024,7 +8054,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8047,10 +8077,10 @@ msgstr "" msgid "Sent" msgstr "" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8083,7 +8113,7 @@ msgstr "" msgid "Received" msgstr "" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8109,7 +8139,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8123,25 +8153,25 @@ msgstr "" msgid "Requested" msgstr "" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "" -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "" @@ -8306,12 +8336,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "" #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "" @@ -8656,6 +8686,7 @@ msgstr "" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "" @@ -8696,11 +8727,15 @@ msgstr "" msgid "HAMqsl" msgstr "" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -8708,140 +8743,140 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "ալբաներեն" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "Հայերեն" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "բոսնիերեն" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "" @@ -9227,10 +9262,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9328,7 +9363,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "" @@ -9521,62 +9556,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "" @@ -10170,7 +10205,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "" @@ -10290,7 +10325,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10311,7 +10346,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10330,7 +10365,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10345,49 +10380,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "" @@ -10549,7 +10584,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10586,7 +10621,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11025,37 +11060,41 @@ msgstr "" msgid "Last Upload" msgstr "" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" msgstr "" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "" @@ -11593,7 +11632,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -11641,7 +11680,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12178,20 +12217,12 @@ msgstr "" msgid "Toot on Mastodon" msgstr "" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "" @@ -12216,11 +12247,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12230,25 +12261,25 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "" @@ -12261,38 +12292,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12301,8 +12332,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "" @@ -12323,7 +12354,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12367,7 +12398,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "" @@ -12434,7 +12465,7 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -12442,7 +12473,7 @@ msgstr "" msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -12450,91 +12481,95 @@ msgstr "" msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:769 -msgid "Send" +#: application/views/qso/index.php:778 +msgid "Stop" msgstr "" #: application/views/qso/index.php:779 -msgid "Suggestions" +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:785 +msgid "Enter text..." msgstr "" #: application/views/qso/index.php:786 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:798 +msgid "Suggestions" +msgstr "" + +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "" @@ -13822,6 +13857,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14828,10 +14864,6 @@ msgstr "" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "" diff --git a/application/locale/it_IT/LC_MESSAGES/messages.mo b/application/locale/it_IT/LC_MESSAGES/messages.mo index 579a83f71..9ad682c95 100644 Binary files a/application/locale/it_IT/LC_MESSAGES/messages.mo and b/application/locale/it_IT/LC_MESSAGES/messages.mo differ diff --git a/application/locale/it_IT/LC_MESSAGES/messages.po b/application/locale/it_IT/LC_MESSAGES/messages.po index ce6fbfc5f..b31df895f 100644 --- a/application/locale/it_IT/LC_MESSAGES/messages.po +++ b/application/locale/it_IT/LC_MESSAGES/messages.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" "PO-Revision-Date: 2025-09-15 19:44+0000\n" "Last-Translator: Luca \n" "Language-Team: Italian 1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "Stato DXCC" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "Non collegato" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "Collegato, non Confermato" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "Fonia" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "CW" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "DIGI" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "WAC" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "Segnalatore" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6930,7 +6947,7 @@ msgstr "Segnalatore" msgid "Message" msgstr "Messaggio" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "Ultimo collegato" @@ -7348,7 +7365,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7411,7 +7428,7 @@ msgstr "Si" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7458,7 +7475,7 @@ msgid "No contests were found in your log." msgstr "Non sono stati trovati contest nel tuo registro." #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "Tutti tranne SAT" @@ -7818,7 +7835,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "Nessuna attivazione imminente trovata. Riprova più tardi." #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7883,10 +7900,10 @@ msgid "Show Details" msgstr "Mostra dettagli" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "Oggi" @@ -8045,7 +8062,7 @@ msgstr "Progressivo + Locatore + Exchange" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "Indicativo di chiamata dell'operatore" @@ -8125,54 +8142,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "Progressivo" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "Progressivo inviato" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "Locatore inviato" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "Scambio (I)" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "Progressivo ricevuto" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "Locatore ricevuto" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "Scambio (R)" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "Azzera QSO" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "Salva QSO" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "Suggerimenti Nominativi" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "Log del Contest" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "Locatore VUCC" @@ -8344,7 +8361,7 @@ msgstr "Verranno esportati solo i QSO con informazioni SOTA!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "Modo di Propagazione" @@ -8431,45 +8448,58 @@ msgstr "" "Hai dei temi senza modalità tema definita. Chiedi all'amministratore di " "modificare i temi." -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" -msgstr "Almeno uno dei tuoi certificati %sLoTW%s è scaduto!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" +msgstr "" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" -msgstr "Almeno uno dei tuoi certificati %sLoTW%s sta per scadere!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" +msgstr "" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" msgstr[0] "Viene mostrato fino a %d contatto precedente" msgstr[1] "Vengono mostrati fino a %d contatti precedenti" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "Riepilogo QSO" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "Stato DXCC" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "Mancanti" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8480,7 +8510,7 @@ msgstr "Mancanti" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8503,10 +8533,10 @@ msgstr "Mancanti" msgid "Sent" msgstr "Inviata" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8539,7 +8569,7 @@ msgstr "Inviata" msgid "Received" msgstr "Ricevuta" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8565,7 +8595,7 @@ msgstr "Ricevuta" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8579,25 +8609,25 @@ msgstr "Ricevuta" msgid "Requested" msgstr "Richiesta" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "Logbook of the World" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "Locatori VUCC" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "" -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "" @@ -8768,12 +8798,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "La prossima sincronizzazione automatica con DCL avverrà alle: " #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "Sincronizzazione Manuale" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "In corso..." @@ -9134,6 +9164,7 @@ msgstr "Aggiornamento DXCC da Clulog" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "Aggiorna" @@ -9174,11 +9205,15 @@ msgstr "Aggiorna Hams Of Note" msgid "HAMqsl" msgstr "" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "Manutenzione del database QSO" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -9188,143 +9223,143 @@ msgstr[0] "" msgstr[1] "" "Il Database contiene %d collegamenti senza un profilo stazione (ubicazione)" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" "Si prega di contrassegnare i QSOs e riassegnarli a una posizione della " "stazione esistente:" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "Posizione target" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "Riassegna" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Ogni QSO nel tuo database è assegnato a un profilo stazione (posizione)" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "Tutto ok" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "Albanese" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "Armeno" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "Bosniaco" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "Bulgaro" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "Cinese (semplificato)" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "Croato" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "Ceco" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "Olandese" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "Inglese" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "Estone" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "Finlandese" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "Francese" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "Tedesco" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "Greco" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "Ungherese" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "Italiano" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "Giapponese" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "Lettone" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "Lituano" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "Montenegrino" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "Polacco" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "Portoghese" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "Russo" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "Serbo" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "Slovacco" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "Sloveno" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "Spagnolo" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "Svedese" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "Turco" @@ -9786,10 +9821,10 @@ msgid "QSL Date" msgstr "Data QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9899,7 +9934,7 @@ msgid "Worked not confirmed" msgstr "Collegato ma non confermato" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "Pulisci" @@ -10098,62 +10133,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Locatori" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "Non sei connesso. Per favore %saccedi%s" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "locatore" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "Conteggio totale" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "Cartolina per " -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Attenzione! Sei sicuro di voler eliminare questa QSL?" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "Cartolina eQSL" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "Cartolina eQSL per " -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "Immagine della QSL" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "Fronte QSL:" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "Retro QSL:" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "Aggiungi ulteriori QSO a una QSL" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "Qualcosa è andato storto. Per favore riprova!" @@ -10759,7 +10794,7 @@ msgstr "Potenza di trasmissione" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "Regione" @@ -10879,7 +10914,7 @@ msgstr "Verificato" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10900,7 +10935,7 @@ msgstr "Diretta" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10919,7 +10954,7 @@ msgstr "Bureau" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10934,49 +10969,49 @@ msgstr "Elettronica" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Manager" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "NESSUNI" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "Italia africana" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "Isola degli Orsi" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "Turchia Europea" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "ITU Vienna" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "Kosovo" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "Isole Shetland" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "Sicilia" @@ -11151,7 +11186,7 @@ msgstr "QSL inviata" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -11188,7 +11223,7 @@ msgstr "In coda" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11636,37 +11671,41 @@ msgstr "Data di Scadenza" msgid "Last Upload" msgstr "Last upload" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "Scaduto" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "In scadenza" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" -msgstr "Valido" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" +msgstr "" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "Ultimo valido: %s" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "Ultimo errore: %s" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "Non Sincronizzato" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "Devi caricare dei certificati p12 LoTW per abilitare questa area." -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "La prossima sincronizzazione automatica con LoTW avverrà alle: " @@ -12263,7 +12302,7 @@ msgstr "C'è qualche informazione aggiuntiva che dobbiamo sapere?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -12311,7 +12350,7 @@ msgstr "Stazione" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12878,20 +12917,12 @@ msgstr "Pubblica su Bluesky" msgid "Toot on Mastodon" msgstr "Pubblica su Mastodon" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "Funzione %d - Nome" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "Funzione %d - Macro" @@ -12916,11 +12947,11 @@ msgstr "Frequenza RX" msgid "RX Band" msgstr "Banda RX" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Dare valore di potenza in Watt. Includere solo numeri nell input." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12930,25 +12961,25 @@ msgstr "Potenza di Trasmissione (W)" msgid "Used for VUCC MultiGrids" msgstr "Utilizzato per i VUCC MultiGrids" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "Percorso dell'antenna" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "Greyline" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "Altro" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "Percorso breve" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "Percorso lungo" @@ -12961,38 +12992,38 @@ msgstr "Nome del satellite" msgid "Sat Mode" msgstr "Modalità satellite" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "Azimut dell'antenna (°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "Azimut dell'antenna in gradi decimali." -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "Elevazione dell'antenna (°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "Elevazione dell'antenna in gradi decimali." -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "Contea della Stazione" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "Informazioni SIG" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "Nota: Viene esportato a servizi di terze parti." @@ -13001,8 +13032,8 @@ msgid "Sent Method" msgstr "Metodo di invio" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "Metodo" @@ -13023,7 +13054,7 @@ msgstr "Verificato (Corrisponde)" msgid "Received Method" msgstr "Metodo Ricevuto" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "Ottieni il messaggio predefinito per eQSL, per questa stazione." @@ -13067,7 +13098,7 @@ msgstr "Salva le modifiche" msgid "TimeOff is less than TimeOn" msgstr "L'ora di fine è prima dell'ora di inizio" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "Contatti Precedenti" @@ -13134,7 +13165,7 @@ msgstr "Tempo di fine" msgid "Search DXCluster for latest Spot" msgstr "Cerca DXCluster per l'ultimo Spot" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -13142,7 +13173,7 @@ msgstr "Cerca DXCluster per l'ultimo Spot" msgid "IOTA Reference" msgstr "Referenza IOTA" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -13150,91 +13181,95 @@ msgstr "Referenza IOTA" msgid "SOTA Reference" msgstr "Referenza SOTA" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "Frequenza (RX)" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "Banda (RX)" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "Per esempio: GM/NS-001." -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "Per esempio: DLFF-0069." -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "Per esempio: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "Per esempio: GMA" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "Per esempio: DA/NW-357" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "Per esempio: Q03" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "Indirizzo e-mail del corrispondente" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "Nome Satellite" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "Modo Satellite" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "Messaggio QSL" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "Reimposta ai valori predefiniti" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "Connetti" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "Arresta" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "Sintonizza" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "Ferma la sintonia" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "Velocità CW" -#: application/views/qso/index.php:769 +#: application/views/qso/index.php:778 +msgid "Stop" +msgstr "Arresta" + +#: application/views/qso/index.php:779 +msgid "Tune" +msgstr "Sintonizza" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "Ferma la sintonia" + +#: application/views/qso/index.php:785 +msgid "Enter text..." +msgstr "" + +#: application/views/qso/index.php:786 msgid "Send" msgstr "Trasmetti" -#: application/views/qso/index.php:779 +#: application/views/qso/index.php:798 msgid "Suggestions" msgstr "Suggerimenti" -#: application/views/qso/index.php:786 +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "Immagine Profilo" @@ -14635,6 +14670,7 @@ msgid "Special Interest Group Information" msgstr "Informazioni sul Gruppo di Interesse Speciale" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Problemi? Prova a cercare nella %swiki%s." @@ -15748,10 +15784,6 @@ msgstr "URL del server Mastodon" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "URL principale del tuo server Mastodon, ad esempio %s" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "Sperimentale" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "Winkeyer" @@ -16488,6 +16520,28 @@ msgstr "Invia richiesta" msgid "Rcvd" msgstr "Ricevuto" +#, php-format +#~ msgctxt "LoTW Warning" +#~ msgid "At least one of your %sLoTW certificates%s is expired!" +#~ msgstr "Almeno uno dei tuoi certificati %sLoTW%s è scaduto!" + +#, php-format +#~ msgctxt "LoTW Warning" +#~ msgid "At least one of your %sLoTW certificates%s is about to expire!" +#~ msgstr "Almeno uno dei tuoi certificati %sLoTW%s sta per scadere!" + +#~ msgid "Expired" +#~ msgstr "Scaduto" + +#~ msgid "Expiring" +#~ msgstr "In scadenza" + +#~ msgid "Valid" +#~ msgstr "Valido" + +#~ msgid "Experimental" +#~ msgstr "Sperimentale" + #, php-format #~ msgctxt "Dashboard Warning" #~ msgid "" diff --git a/application/locale/ja/LC_MESSAGES/messages.mo b/application/locale/ja/LC_MESSAGES/messages.mo index f16f213d0..d436175aa 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 390ee6608..c1046e781 100644 --- a/application/locale/ja/LC_MESSAGES/messages.po +++ b/application/locale/ja/LC_MESSAGES/messages.po @@ -8,17 +8,17 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" -"PO-Revision-Date: 2025-10-15 05:17+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" +"PO-Revision-Date: 2025-10-26 06:05+0000\n" "Last-Translator: \"S.NAKAO(JG3HLX)\" \n" -"Language-Team: Japanese \n" +"Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.13.2\n" +"X-Generator: Weblate 5.14\n" #: application/controllers/Accumulated.php:12 #: application/controllers/Activators.php:13 @@ -72,9 +72,9 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:79 application/controllers/Lotw.php:105 -#: application/controllers/Lotw.php:375 application/controllers/Lotw.php:398 -#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:839 -#: application/controllers/Lotw.php:944 application/controllers/Mode.php:15 +#: application/controllers/Lotw.php:383 application/controllers/Lotw.php:406 +#: application/controllers/Lotw.php:763 application/controllers/Lotw.php:847 +#: application/controllers/Lotw.php:952 application/controllers/Mode.php:15 #: application/controllers/Notes.php:11 application/controllers/Options.php:14 #: application/controllers/Oqrs.php:15 application/controllers/Oqrs.php:165 #: application/controllers/Qrbcalc.php:13 application/controllers/Qrz.php:200 @@ -83,8 +83,8 @@ msgstr "" #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:187 -#: application/controllers/Qso.php:287 application/controllers/Qso.php:308 -#: application/controllers/Qso.php:331 application/controllers/Qso.php:629 +#: application/controllers/Qso.php:318 application/controllers/Qso.php:339 +#: application/controllers/Qso.php:362 application/controllers/Qso.php:662 #: application/controllers/Radio.php:32 application/controllers/Radio.php:291 #: application/controllers/Radio.php:317 application/controllers/Radio.php:333 #: application/controllers/Reg1test.php:17 @@ -142,7 +142,7 @@ msgstr "アクティブ化されたグリッドロケーターマップ" #: application/controllers/Activated_gridmap.php:31 #: application/controllers/Awards.php:1003 #: application/controllers/Awards.php:1035 -#: application/controllers/Gridmap.php:31 +#: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 #: application/views/interface_assets/footer.php:47 @@ -152,13 +152,13 @@ msgid "Gridsquares" msgstr "グリッドロケーター" #: application/controllers/Activated_gridmap.php:32 -#: application/controllers/Gridmap.php:32 +#: application/controllers/Gridmap.php:33 #: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "グリッドロケーターが確認されました" #: application/controllers/Activated_gridmap.php:33 -#: application/controllers/Gridmap.php:33 +#: application/controllers/Gridmap.php:34 #: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "グリッドロケーターは確認されていません" @@ -168,25 +168,25 @@ msgid "Total gridsquares activated" msgstr "アクティブ化されたグリッドロケーターの合計" #: application/controllers/Activated_gridmap.php:36 -#: application/controllers/Gridmap.php:36 +#: application/controllers/Gridmap.php:37 #: application/controllers/Visitor.php:390 msgid "Fields" msgstr "フィールド" #: application/controllers/Activated_gridmap.php:37 -#: application/controllers/Gridmap.php:37 +#: application/controllers/Gridmap.php:38 #: application/controllers/Visitor.php:391 msgid "Fields confirmed" msgstr "確認されたフィールド" #: application/controllers/Activated_gridmap.php:38 -#: application/controllers/Gridmap.php:38 +#: application/controllers/Gridmap.php:39 #: application/controllers/Visitor.php:392 msgid "Fields not confirmed" msgstr "フィールドは確認されていません" #: application/controllers/Activated_gridmap.php:39 -#: application/controllers/Gridmap.php:39 +#: application/controllers/Gridmap.php:40 #: application/controllers/Visitor.php:393 msgid "Total fields worked" msgstr "作業したフィールドの合計" @@ -336,13 +336,13 @@ msgstr "アワード歴 - %s" #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:401 application/views/qso/index.php:302 -#: application/views/qso/index.php:593 application/views/user/edit.php:682 +#: application/views/qso/index.php:594 application/views/user/edit.php:682 #: application/views/view_log/qso.php:460 msgid "DOK" msgstr "DOK" #: application/controllers/Awards.php:176 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:130 application/views/bands/index.php:50 +#: application/views/bandmap/list.php:131 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:180 @@ -355,7 +355,7 @@ msgstr "DOK" #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 -#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:402 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 #: application/views/search/result.php:27 @@ -558,7 +558,7 @@ msgstr "Fred Fish Memorial アワード (FFMA)" #: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:286 -#: application/views/qso/index.php:579 application/views/user/edit.php:678 +#: application/views/qso/index.php:580 application/views/user/edit.php:678 #: application/views/view_log/qso.php:425 #: application/views/view_log/qso.php:736 msgid "SIG" @@ -825,7 +825,7 @@ msgstr "Cronジョブを編集する" #: application/views/debug/index.php:539 application/views/debug/index.php:544 #: application/views/debug/index.php:549 application/views/debug/index.php:554 #: application/views/debug/index.php:559 application/views/debug/index.php:564 -#: application/views/debug/index.php:569 +#: application/views/debug/index.php:569 application/views/debug/index.php:574 msgid "never" msgstr "一度もない" @@ -882,7 +882,7 @@ msgstr "実行されていません" msgid "SOTA CSV Export" msgstr "SOTA CSVエクスポート" -#: application/controllers/Dashboard.php:152 +#: application/controllers/Dashboard.php:154 #: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "ダッシュボード" @@ -935,35 +935,35 @@ msgstr "DCL にアップロードするステーション プロファイルが msgid "Key(s) Deleted." msgstr "キーが削除されました。" -#: application/controllers/Debug.php:117 +#: application/controllers/Debug.php:118 msgid "Debug" msgstr "デバッグ" -#: application/controllers/Debug.php:156 +#: application/controllers/Debug.php:157 msgid "Migrate data now" msgstr "今すぐデータを移行する" -#: application/controllers/Debug.php:159 +#: application/controllers/Debug.php:160 msgid "Migration already done. Run again?" msgstr "移行はすでに完了しています。もう一度実行しますか?" -#: application/controllers/Debug.php:163 +#: application/controllers/Debug.php:164 msgid "No data to migrate" msgstr "移行するデータがありません" -#: application/controllers/Debug.php:167 application/controllers/Debug.php:172 +#: application/controllers/Debug.php:168 application/controllers/Debug.php:173 msgid "No migration possible" msgstr "移行はできません" -#: application/controllers/Debug.php:237 +#: application/controllers/Debug.php:238 msgid "Wavelog was updated successfully!" msgstr "Wavelogが正常に更新されました!" -#: application/controllers/Debug.php:255 +#: application/controllers/Debug.php:256 msgid "Selfupdate() not available. Check the Error Log." msgstr "Selfupdate() が利用できません。エラーログを確認してください。" -#: application/controllers/Debug.php:299 +#: application/controllers/Debug.php:300 msgid "" "File Migration was successfull, but please check also manually. If " "everything seems right you can delete the folders 'assets/qslcard' and " @@ -972,7 +972,7 @@ msgstr "" "ファイルの移行は成功しましたが、手動でもご確認ください。問題がなければ、" "「assets/qslcard」と「images/eqsl_card_images」フォルダを削除してください。" -#: application/controllers/Debug.php:302 +#: application/controllers/Debug.php:303 msgid "File Migration failed. Please check the Error Log." msgstr "ファイルの移行に失敗しました。エラーログを確認してください。" @@ -1013,7 +1013,7 @@ msgid "DX Calendar" msgstr "DXカレンダー" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:404 +#: application/views/dashboard/index.php:409 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:310 msgid "eQSL Cards" @@ -1073,7 +1073,7 @@ msgstr "確認" msgid "Gridsquare Map" msgstr "グリッドスクエアマップ" -#: application/controllers/Gridmap.php:34 +#: application/controllers/Gridmap.php:35 #: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "作業したグリッドスクエアの合計" @@ -1277,7 +1277,7 @@ msgstr "ログブック" #: application/views/awards/wapc/index.php:44 #: application/views/awards/was/index.php:56 #: application/views/awards/wpx/index.php:28 -#: application/views/gridmap/index.php:101 +#: application/views/gridmap/index.php:141 #: application/views/logbookadvanced/index.php:794 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/oqrs/qsolist.php:12 @@ -1309,8 +1309,8 @@ msgstr "QSL" #: application/views/awards/wapc/index.php:48 #: application/views/awards/was/index.php:60 #: application/views/awards/wpx/index.php:32 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:109 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:149 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 @@ -1346,8 +1346,8 @@ msgstr "LoTW" #: application/views/awards/wapc/index.php:52 #: application/views/awards/was/index.php:64 #: application/views/awards/wpx/index.php:36 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:117 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:157 #: application/views/logbookadvanced/useroptions.php:78 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 @@ -1389,23 +1389,23 @@ msgstr "eQSL" #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:110 -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:136 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 #: application/views/contesting/index.php:118 -#: application/views/contesting/index.php:264 +#: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:597 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 -#: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 -#: application/views/kml/index.php:31 +#: application/views/gridmap/index.php:104 +#: application/views/hamsat/index.php:33 application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:12 #: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/index.php:764 @@ -1455,8 +1455,8 @@ msgstr "モード" #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:179 -#: application/views/contesting/index.php:265 +#: application/views/contesting/index.php:180 +#: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 #: application/views/logbookadvanced/index.php:767 #: application/views/logbookadvanced/useroptions.php:38 @@ -1484,8 +1484,8 @@ msgstr "RST (S)" #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 -#: application/views/contesting/index.php:203 -#: application/views/contesting/index.php:266 +#: application/views/contesting/index.php:204 +#: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 #: application/views/logbookadvanced/index.php:770 #: application/views/logbookadvanced/useroptions.php:42 @@ -1593,9 +1593,9 @@ msgstr "州" #: application/views/awards/gridmaster/index.php:50 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:26 -#: application/views/contesting/index.php:271 +#: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 -#: application/views/gridmap/index.php:152 +#: application/views/gridmap/index.php:193 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 @@ -1639,7 +1639,7 @@ msgstr "グリッドスクエア" #: application/views/dashboard/index.php:14 #: application/views/distancerecords/index.php:15 #: application/views/distances/index.php:13 -#: application/views/gridmap/index.php:154 +#: application/views/gridmap/index.php:195 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 #: application/views/logbookadvanced/index.php:869 @@ -1688,17 +1688,17 @@ msgstr "距離" #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:96 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:97 #: application/views/bands/create.php:24 application/views/bands/edit.php:7 #: application/views/bands/index.php:47 application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:263 +#: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:593 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:598 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 -#: application/views/gridmap/index.php:10 application/views/kml/index.php:19 +#: application/views/gridmap/index.php:26 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:6 #: application/views/logbookadvanced/index.php:281 #: application/views/logbookadvanced/index.php:773 @@ -1746,7 +1746,7 @@ msgid "Band" msgstr "バンド" #: application/controllers/Logbook.php:1324 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:128 +#: application/controllers/Radio.php:45 application/views/bandmap/list.php:129 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:776 @@ -1805,9 +1805,9 @@ msgstr "オペレーター" #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:252 #: application/views/lookup/index.php:47 -#: application/views/lotw_views/index.php:49 +#: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 -#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:411 #: application/views/station_profile/create.php:77 #: application/views/station_profile/edit.php:109 #: application/views/stationsetup/linkedlocations.php:17 @@ -1848,11 +1848,11 @@ msgstr "証明書がインポートされました。" msgid "Certificate Updated." msgstr "証明書が更新されました。" -#: application/controllers/Lotw.php:381 +#: application/controllers/Lotw.php:389 msgid "Certificate Deleted." msgstr "証明書が削除されました。" -#: application/controllers/Lotw.php:410 +#: application/controllers/Lotw.php:418 #, php-format msgid "" "Found no certificate in file %s. If the filename contains 'key-only' this is " @@ -1861,53 +1861,53 @@ msgstr "" "ファイルに証明書が見つかりません %s 。ファイル名に「key-only」が含まれている" "場合、これは通常、LoTW によってまだ処理されていない証明書要求です。" -#: application/controllers/Lotw.php:646 +#: application/controllers/Lotw.php:654 msgid "LoTW ADIF Information" msgstr "LoTW ADIF情報" -#: application/controllers/Lotw.php:812 application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:820 application/controllers/Lotw.php:823 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "LoTWへのログインがユーザー %s で失敗しました: %s." -#: application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:823 msgid "Username/password incorrect" msgstr "ユーザー名/パスワードが間違っています" -#: application/controllers/Lotw.php:818 +#: application/controllers/Lotw.php:826 msgid "LoTW login OK!" msgstr "LoTWログインOK!" -#: application/controllers/Lotw.php:822 +#: application/controllers/Lotw.php:830 msgid "LoTW currently not available. Try again later." msgstr "" "LoTWは現在ご利用いただけません。しばらくしてからもう一度お試しください。" -#: application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 msgid "No LoTW credentials provided." msgstr "LoTWの認証情報が提供されていません。" -#: application/controllers/Lotw.php:845 +#: application/controllers/Lotw.php:853 msgid "LoTW ADIF Import" msgstr "LoTW ADIF インポート" -#: application/controllers/Lotw.php:871 application/controllers/Lotw.php:979 +#: application/controllers/Lotw.php:879 application/controllers/Lotw.php:987 msgid "You have not defined your ARRL LoTW credentials!" msgstr "ARRL LoTWの認証情報を設定していません!" -#: application/controllers/Lotw.php:946 +#: application/controllers/Lotw.php:954 msgid "LoTW .TQ8 Upload" msgstr "LoTW .TQ8 アップロード" -#: application/controllers/Lotw.php:1024 +#: application/controllers/Lotw.php:1032 msgid "Your ARRL username and/or password is incorrect." msgstr "ARRL のユーザー名またはパスワードが正しくありません。" -#: application/controllers/Lotw.php:1043 application/controllers/Lotw.php:1048 +#: application/controllers/Lotw.php:1051 application/controllers/Lotw.php:1056 msgid "LoTW .TQ8 Sent" msgstr "LoTW .TQ8 送信" -#: application/controllers/Lotw.php:1055 +#: application/controllers/Lotw.php:1063 msgid "LoTW .TQ8 Not Sent" msgstr "LoTW .TQ8 が未送信" @@ -1928,7 +1928,7 @@ msgstr "編集モード" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:409 application/views/qso/index.php:71 -#: application/views/qso/index.php:642 application/views/view_log/qso.php:14 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:14 #: application/views/view_log/qso.php:749 msgid "Notes" msgstr "メモ帳" @@ -2185,8 +2185,8 @@ msgstr "QRZ QSLインポート" msgid "QRZ ADIF Information" msgstr "QRZ ADIF情報" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:356 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:361 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:287 msgid "QSL Cards" @@ -2208,15 +2208,15 @@ msgstr "リクエストされたQSLを印刷する" msgid "Add QSO" msgstr "QSOを追加" -#: application/controllers/Qso.php:690 +#: application/controllers/Qso.php:723 msgid "You have to be logged in to access this URL." msgstr "この URL にアクセスするにはログインする必要があります。" -#: application/controllers/Qso.php:696 +#: application/controllers/Qso.php:729 msgid "Call Transfer" msgstr "通話転送" -#: application/controllers/Qso.php:703 +#: application/controllers/Qso.php:736 msgid "No callsign provided." msgstr "コールサインが提供されていません。" @@ -2246,7 +2246,7 @@ msgid "Options" msgstr "オプション" #: application/controllers/Radio.php:50 application/views/debug/index.php:312 -#: application/views/qso/index.php:749 +#: application/views/qso/index.php:750 msgid "Settings" msgstr "設定" @@ -2255,8 +2255,8 @@ msgid "UNKNOWN" msgstr "不明" #: application/controllers/Radio.php:98 -#: application/views/contesting/index.php:161 -#: application/views/qso/index.php:354 +#: application/views/contesting/index.php:162 +#: application/views/qso/index.php:355 msgid "last updated" msgstr "最終更新日" @@ -2294,13 +2294,13 @@ msgstr "編集" #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:63 -#: application/views/interface_assets/footer.php:2802 -#: application/views/interface_assets/footer.php:2820 -#: application/views/interface_assets/footer.php:2841 -#: application/views/interface_assets/footer.php:2859 +#: application/views/interface_assets/footer.php:2900 +#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:2939 +#: application/views/interface_assets/footer.php:2957 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:734 -#: application/views/lotw_views/index.php:111 +#: application/views/lotw_views/index.php:128 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 #: application/views/qslcard/index.php:76 @@ -2511,7 +2511,7 @@ msgstr "許可されていません" #: application/controllers/Stationsetup.php:156 #: application/controllers/Stationsetup.php:177 #: application/controllers/Stationsetup.php:478 -#: application/views/qso/index.php:708 application/views/simplefle/index.php:39 +#: application/views/qso/index.php:709 application/views/simplefle/index.php:39 #: application/views/widgets/on_air.php:102 msgid "Error" msgstr "エラー" @@ -2809,6 +2809,14 @@ msgstr "LoTW SATアップデート" msgid "Update of Hams of Note" msgstr "注目のハムの最新情報" +#: application/controllers/Update.php:718 +msgid "VUCC Grid file update complete. Result: " +msgstr "VUCCグリッドファイルの更新が完了しました。結果: " + +#: application/controllers/Update.php:720 +msgid "VUCC Grid file update failed. Result: " +msgstr "VUCC グリッドファイルの更新に失敗しました。結果: " + #: application/controllers/User.php:50 #: application/views/interface_assets/header.php:306 msgid "User Accounts" @@ -2939,7 +2947,7 @@ msgstr "ユーザー %s がログアウトしました。" msgid "Station Name" msgstr "ステーション名" -#: application/controllers/User.php:1262 application/views/debug/index.php:594 +#: application/controllers/User.php:1262 application/views/debug/index.php:599 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:61 #: application/views/station_profile/edit.php:77 @@ -3400,7 +3408,7 @@ msgstr "QSOが更新されました" #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 #: application/views/dashboard/index.php:19 -#: application/views/gridmap/index.php:156 +#: application/views/gridmap/index.php:197 #: application/views/logbookadvanced/index.php:15 #: application/views/user/edit.php:256 application/views/user/edit.php:279 #: application/views/user/edit.php:302 application/views/user/edit.php:325 @@ -3499,7 +3507,7 @@ msgid "Accumulated number of WAJA worked" msgstr "WAJAの累計稼働数" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:317 +#: application/views/dashboard/index.php:322 #: application/views/dayswithqso/index.php:42 #: application/views/dayswithqso/index.php:82 #: application/views/statistics/index.php:19 @@ -3516,7 +3524,7 @@ msgid "Yearly" msgstr "年間" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:327 #: application/views/visitor/index.php:255 msgid "Month" msgstr "月" @@ -3568,8 +3576,8 @@ msgstr "違い" #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:86 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:79 application/views/bandmap/list.php:87 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:113 #: application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 @@ -3592,14 +3600,15 @@ msgstr "違い" #: application/views/dxatlas/index.php:60 #: application/views/dxatlas/index.php:82 #: application/views/dxatlas/index.php:94 -#: application/views/gridmap/index.php:13 -#: application/views/gridmap/index.php:28 -#: application/views/gridmap/index.php:41 -#: application/views/gridmap/index.php:70 -#: application/views/gridmap/index.php:83 +#: application/views/gridmap/index.php:29 +#: application/views/gridmap/index.php:44 +#: application/views/gridmap/index.php:78 +#: application/views/gridmap/index.php:93 +#: application/views/gridmap/index.php:107 +#: application/views/gridmap/index.php:121 #: application/views/interface_assets/footer.php:46 -#: application/views/interface_assets/footer.php:1692 -#: application/views/interface_assets/footer.php:1831 +#: application/views/interface_assets/footer.php:1790 +#: application/views/interface_assets/footer.php:1929 #: 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 @@ -3686,7 +3695,7 @@ msgstr "期間" #: application/views/accumulate/index.php:80 #: application/views/callstats/index.php:65 #: application/views/distances/index.php:53 -#: application/views/gridmap/index.php:38 +#: application/views/gridmap/index.php:41 #: application/views/logbookadvanced/edit.php:14 #: application/views/logbookadvanced/index.php:310 #: application/views/logbookadvanced/index.php:857 @@ -3706,7 +3715,7 @@ msgstr "SAT以外すべて" #: application/views/accumulate/index.php:85 #: application/views/callstats/index.php:69 #: application/views/distances/index.php:58 -#: application/views/gridmap/index.php:42 +#: application/views/gridmap/index.php:45 #: application/views/logbookadvanced/edit.php:207 #: application/views/logbookadvanced/edit.php:215 #: application/views/logbookadvanced/index.php:406 @@ -3718,9 +3727,9 @@ msgstr "なし/空" #: application/views/callstats/index.php:71 application/views/csv/index.php:95 #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 +#: application/views/gridmap/index.php:47 application/views/kml/index.php:80 #: application/views/logbookadvanced/index.php:314 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:477 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:478 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 #: application/views/view_log/qso.php:233 @@ -3732,9 +3741,9 @@ msgstr "航空機の散乱" #: application/views/callstats/index.php:72 application/views/csv/index.php:96 #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 +#: application/views/gridmap/index.php:48 application/views/kml/index.php:81 #: application/views/logbookadvanced/index.php:315 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:478 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:479 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 #: application/views/view_log/qso.php:236 @@ -3746,9 +3755,9 @@ msgstr "オーロラ" #: application/views/callstats/index.php:73 application/views/csv/index.php:97 #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 +#: application/views/gridmap/index.php:49 application/views/kml/index.php:82 #: application/views/logbookadvanced/index.php:316 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:479 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:480 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 #: application/views/view_log/qso.php:239 @@ -3760,9 +3769,9 @@ msgstr "オーロラE伝搬" #: application/views/callstats/index.php:74 application/views/csv/index.php:98 #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 +#: application/views/gridmap/index.php:50 application/views/kml/index.php:83 #: application/views/logbookadvanced/index.php:317 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:480 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:481 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 #: application/views/view_log/qso.php:242 @@ -3774,9 +3783,9 @@ msgstr "後方散乱" #: application/views/callstats/index.php:75 application/views/csv/index.php:99 #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 +#: application/views/gridmap/index.php:51 application/views/kml/index.php:84 #: application/views/logbookadvanced/index.php:318 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:481 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:482 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 #: application/views/view_log/qso.php:245 @@ -3788,9 +3797,9 @@ msgstr "エコーリンク" #: application/views/callstats/index.php:76 application/views/csv/index.php:100 #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 +#: application/views/gridmap/index.php:52 application/views/kml/index.php:85 #: application/views/logbookadvanced/index.php:319 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:482 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:483 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 #: application/views/view_log/qso.php:248 @@ -3802,9 +3811,9 @@ msgstr "地球-月-地球" #: application/views/callstats/index.php:77 application/views/csv/index.php:101 #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 +#: application/views/gridmap/index.php:53 application/views/kml/index.php:86 #: application/views/logbookadvanced/index.php:320 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:483 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:484 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 #: application/views/view_log/qso.php:251 @@ -3816,9 +3825,9 @@ msgstr "Eスポ" #: application/views/callstats/index.php:78 application/views/csv/index.php:102 #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 +#: application/views/gridmap/index.php:54 application/views/kml/index.php:87 #: application/views/logbookadvanced/index.php:321 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:484 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:485 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 #: application/views/view_log/qso.php:254 @@ -3830,9 +3839,9 @@ msgstr "磁場に沿った不規則性" #: application/views/callstats/index.php:79 application/views/csv/index.php:103 #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 +#: application/views/gridmap/index.php:55 application/views/kml/index.php:88 #: application/views/logbookadvanced/index.php:322 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:485 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:486 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 #: application/views/view_log/qso.php:257 @@ -3844,9 +3853,9 @@ msgstr "F2反射" #: application/views/callstats/index.php:80 application/views/csv/index.php:104 #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 +#: application/views/gridmap/index.php:56 application/views/kml/index.php:89 #: application/views/logbookadvanced/index.php:323 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:486 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:487 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 #: application/views/view_log/qso.php:260 @@ -3858,9 +3867,9 @@ msgstr "インターネット支援" #: application/views/callstats/index.php:81 application/views/csv/index.php:105 #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 +#: application/views/gridmap/index.php:57 application/views/kml/index.php:90 #: application/views/logbookadvanced/index.php:324 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:487 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:488 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 #: application/views/view_log/qso.php:263 @@ -3872,9 +3881,9 @@ msgstr "イオノスキャッター" #: application/views/callstats/index.php:82 application/views/csv/index.php:106 #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 +#: application/views/gridmap/index.php:58 application/views/kml/index.php:91 #: application/views/logbookadvanced/index.php:325 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:488 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:489 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 #: application/views/view_log/qso.php:266 @@ -3886,9 +3895,9 @@ msgstr "IRLP" #: application/views/callstats/index.php:83 application/views/csv/index.php:107 #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 +#: application/views/gridmap/index.php:59 application/views/kml/index.php:92 #: application/views/logbookadvanced/index.php:326 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:489 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:490 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 #: application/views/view_log/qso.php:269 @@ -3900,9 +3909,9 @@ msgstr "流星散乱" #: application/views/callstats/index.php:84 application/views/csv/index.php:108 #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 +#: application/views/gridmap/index.php:60 application/views/kml/index.php:93 #: application/views/logbookadvanced/index.php:327 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:490 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:491 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 #: application/views/view_log/qso.php:272 @@ -3914,9 +3923,9 @@ msgstr "地上または大気圏の中継器またはトランスポンダー" #: application/views/callstats/index.php:85 application/views/csv/index.php:109 #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 +#: application/views/gridmap/index.php:61 application/views/kml/index.php:94 #: application/views/logbookadvanced/index.php:328 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:491 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:492 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 #: application/views/view_log/qso.php:275 @@ -3928,9 +3937,9 @@ msgstr "雨散乱" #: application/views/callstats/index.php:86 application/views/csv/index.php:110 #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 +#: application/views/gridmap/index.php:62 application/views/kml/index.php:95 #: application/views/logbookadvanced/index.php:329 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:492 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:493 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 #: application/views/view_log/qso.php:278 @@ -3942,9 +3951,9 @@ msgstr "衛星" #: application/views/callstats/index.php:87 application/views/csv/index.php:111 #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 +#: application/views/gridmap/index.php:63 application/views/kml/index.php:96 #: application/views/logbookadvanced/index.php:330 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:493 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:494 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 #: application/views/view_log/qso.php:281 @@ -3956,9 +3965,9 @@ msgstr "赤道横断" #: application/views/callstats/index.php:88 application/views/csv/index.php:112 #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 +#: application/views/gridmap/index.php:64 application/views/kml/index.php:97 #: application/views/logbookadvanced/index.php:331 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:494 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:495 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 #: application/views/view_log/qso.php:284 @@ -4013,7 +4022,7 @@ msgstr "表示" #: application/views/components/hamsat/table.php:29 #: application/views/distancerecords/index.php:14 #: application/views/distances/index.php:34 -#: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 +#: application/views/gridmap/index.php:73 application/views/hamsat/index.php:32 #: application/views/interface_assets/header.php:198 #: application/views/logbookadvanced/edit.php:17 #: application/views/logbookadvanced/index.php:292 @@ -4036,7 +4045,7 @@ msgstr "衛星" #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 -#: application/views/gridmap/index.php:80 +#: application/views/gridmap/index.php:88 #: application/views/logbookadvanced/index.php:301 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 @@ -4049,7 +4058,7 @@ msgstr "軌道" #: application/views/activated_gridmap/index.php:50 #: application/views/awards/wab/index.php:65 -#: application/views/gridmap/index.php:92 +#: application/views/gridmap/index.php:132 #: application/views/timeline/index.php:52 msgid "Confirmation" msgstr "確認" @@ -4071,24 +4080,24 @@ msgstr "確認" #: application/views/awards/wapc/index.php:56 #: application/views/awards/was/index.php:68 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:125 application/views/user/edit.php:810 +#: application/views/gridmap/index.php:165 application/views/user/edit.php:810 msgid "QRZ.com" msgstr "QRZ.com" #: application/views/activated_gridmap/index.php:86 -#: application/views/gridmap/index.php:130 +#: application/views/gridmap/index.php:17 msgid "Plot" msgstr "プロット" #: application/views/activated_gridmap/index.php:87 -#: application/views/gridmap/index.php:131 +#: application/views/gridmap/index.php:18 msgid "Clear Markers" msgstr "クリアマーカー" #: application/views/activated_gridmap/index.php:102 #: application/views/awards/ffma/index.php:31 #: application/views/awards/gridmaster/index.php:46 -#: application/views/gridmap/index.php:148 +#: application/views/gridmap/index.php:189 #: application/views/logbookadvanced/index.php:10 msgid "Latitude" msgstr "緯度" @@ -4096,7 +4105,7 @@ msgstr "緯度" #: application/views/activated_gridmap/index.php:104 #: application/views/awards/ffma/index.php:33 #: application/views/awards/gridmaster/index.php:48 -#: application/views/gridmap/index.php:150 +#: application/views/gridmap/index.php:191 #: application/views/logbookadvanced/index.php:11 msgid "Longitude" msgstr "経度" @@ -4157,8 +4166,8 @@ msgstr "何も見つかりません!" #: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:170 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:244 +#: application/views/contesting/index.php:171 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:249 #: application/views/dcl_views/index.php:27 #: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 @@ -4263,12 +4272,12 @@ msgstr "ログ内のDOKとDCLのデータが異なります" #: application/views/awards/pota/index.php:33 #: application/views/awards/sota/index.php:31 #: application/views/awards/wwff/index.php:33 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:25 #: application/views/contesting/index.php:103 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:239 -#: application/views/debug/index.php:589 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:244 +#: application/views/debug/index.php:594 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4309,12 +4318,12 @@ msgstr "日付" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:590 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:247 +#: application/views/debug/index.php:595 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4340,10 +4349,10 @@ msgstr "時間" #: application/views/adif/dcl_success.php:31 #: application/views/adif/pota_success.php:31 #: application/views/awards/vucc/band.php:18 -#: application/views/bandmap/list.php:129 -#: application/views/contesting/index.php:262 +#: application/views/bandmap/list.php:130 +#: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:591 application/views/debug/index.php:626 +#: application/views/debug/index.php:596 application/views/debug/index.php:631 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4385,8 +4394,7 @@ msgstr "CBRインポート" #: application/views/adif/import.php:73 application/views/adif/import.php:379 #: application/views/adif/import.php:400 application/views/api/index.php:22 #: application/views/dashboard/index.php:180 -#: application/views/dashboard/index.php:209 -#: application/views/dashboard/index.php:214 +#: application/views/dashboard/index.php:213 #: application/views/eqsl/import.php:46 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 #: application/views/options/maptiles.php:48 @@ -4405,7 +4413,7 @@ msgstr "最大ファイルアップロードサイズは " #: application/views/adif/import.php:349 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:193 application/views/debug/index.php:210 -#: application/views/debug/index.php:581 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:586 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 @@ -4472,7 +4480,7 @@ msgstr "" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 #: application/views/interface_assets/footer.php:580 -#: application/views/interface_assets/footer.php:2564 +#: application/views/interface_assets/footer.php:2662 msgid "DANGER" msgstr "危険" @@ -4697,7 +4705,7 @@ msgstr "" #: application/views/adif/import.php:399 #: application/views/adif/import_success.php:40 #: application/views/dcl_views/index.php:76 -#: application/views/lotw_views/index.php:137 +#: application/views/lotw_views/index.php:154 msgid "Information" msgstr "情報" @@ -5205,7 +5213,7 @@ msgstr "確認された郡" #: application/views/awards/wapc/index.php:145 #: application/views/awards/was/index.php:180 #: application/views/awards/wpx/index.php:172 -#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:317 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -5225,7 +5233,8 @@ msgstr "合計" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:151 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/dxatlas/index.php:80 +#: application/views/gridmap/index.php:199 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 #: application/views/logbookadvanced/index.php:335 @@ -5233,7 +5242,7 @@ msgstr "合計" #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:308 -#: application/views/qso/index.php:450 +#: application/views/qso/index.php:451 #: application/views/search/cqzones_result.php:13 #: application/views/station_profile/create.php:110 #: application/views/station_profile/edit.php:157 @@ -5292,9 +5301,9 @@ msgstr "アワード歴 - CQ WAZ" #: application/views/awards/wab/list.php:6 #: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:81 -#: application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:457 +#: application/views/bandmap/list.php:82 +#: application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:462 #: application/views/interface_assets/footer.php:43 #: application/views/search/result.php:32 #: application/views/visitor/index.php:270 @@ -5304,9 +5313,9 @@ msgstr "確認済み" #: application/views/awards/cq/index.php:35 #: application/views/awards/itu/index.php:35 #: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:80 -#: application/views/dashboard/index.php:335 -#: application/views/dashboard/index.php:451 +#: application/views/bandmap/list.php:81 +#: application/views/dashboard/index.php:340 +#: application/views/dashboard/index.php:456 #: application/views/search/result.php:35 #: application/views/visitor/index.php:266 msgid "Worked" @@ -5384,7 +5393,7 @@ msgstr "QSLタイプでQSOを表示" #: application/views/awards/iota/index.php:62 #: application/views/awards/itu/index.php:57 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2543 +#: application/views/interface_assets/footer.php:2641 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -5638,6 +5647,7 @@ msgstr "" #: application/views/awards/dxcc/index.php:28 #: application/views/awards/wpx/index.php:13 +#: application/views/gridmap/index.php:16 #: application/views/logbookadvanced/index.php:221 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" @@ -5655,12 +5665,12 @@ msgstr "削除済みを含める" #: application/views/awards/dxcc/index.php:97 #: application/views/awards/iota/index.php:88 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:88 +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:89 #: application/views/logbookadvanced/edit.php:217 #: application/views/logbookadvanced/index.php:408 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 -#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:425 +#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:426 #: application/views/view_log/qso.php:350 msgid "Antarctica" msgstr "南極大陸" @@ -5668,12 +5678,12 @@ msgstr "南極大陸" #: application/views/awards/dxcc/index.php:101 #: application/views/awards/iota/index.php:92 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:87 +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:88 #: application/views/logbookadvanced/edit.php:216 #: application/views/logbookadvanced/index.php:407 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 -#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:424 +#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:425 #: application/views/view_log/qso.php:347 msgid "Africa" msgstr "アフリカ" @@ -5681,12 +5691,12 @@ msgstr "アフリカ" #: application/views/awards/dxcc/index.php:105 #: application/views/awards/iota/index.php:96 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:89 +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:90 #: application/views/logbookadvanced/edit.php:219 #: application/views/logbookadvanced/index.php:410 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 -#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:426 +#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:427 #: application/views/view_log/qso.php:353 msgid "Asia" msgstr "アジア" @@ -5694,12 +5704,12 @@ msgstr "アジア" #: application/views/awards/dxcc/index.php:109 #: application/views/awards/iota/index.php:100 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:90 +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:91 #: application/views/logbookadvanced/edit.php:220 #: application/views/logbookadvanced/index.php:411 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 -#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:427 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:428 #: application/views/view_log/qso.php:356 msgid "Europe" msgstr "ヨーロッパ" @@ -5707,12 +5717,12 @@ msgstr "ヨーロッパ" #: application/views/awards/dxcc/index.php:113 #: application/views/awards/iota/index.php:104 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:91 +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:92 #: application/views/logbookadvanced/edit.php:218 #: application/views/logbookadvanced/index.php:409 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 -#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:428 +#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:429 #: application/views/view_log/qso.php:359 msgid "North America" msgstr "北米" @@ -5720,12 +5730,12 @@ msgstr "北米" #: application/views/awards/dxcc/index.php:117 #: application/views/awards/iota/index.php:108 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:93 +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:94 #: application/views/logbookadvanced/edit.php:221 #: application/views/logbookadvanced/index.php:412 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 -#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:430 +#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:431 #: application/views/view_log/qso.php:365 msgid "South America" msgstr "南アメリカ" @@ -5733,12 +5743,12 @@ msgstr "南アメリカ" #: application/views/awards/dxcc/index.php:121 #: application/views/awards/iota/index.php:112 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:92 +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:93 #: application/views/logbookadvanced/edit.php:222 #: application/views/logbookadvanced/index.php:413 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 -#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:429 +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:430 #: application/views/view_log/qso.php:362 msgid "Oceania" msgstr "オセアニア" @@ -6045,7 +6055,7 @@ msgstr "IOTAマップを表示" #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 #: application/views/contesting/index.php:64 -#: application/views/contesting/index.php:228 +#: 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:782 @@ -6073,13 +6083,14 @@ msgstr "削除済み" #: application/views/awards/itu/index.php:3 #: application/views/awards/itu/index.php:151 +#: application/views/gridmap/index.php:201 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 #: application/views/logbookadvanced/index.php:349 #: application/views/logbookadvanced/index.php:827 #: application/views/logbookadvanced/useroptions.php:118 #: application/views/lookup/index.php:8 application/views/qso/edit_ajax.php:316 -#: application/views/qso/index.php:460 +#: application/views/qso/index.php:461 #: application/views/search/ituzones_result.php:13 #: application/views/station_profile/create.php:124 #: application/views/station_profile/edit.php:174 @@ -6173,7 +6184,7 @@ msgid "City" msgstr "市" #: application/views/awards/jcc/index.php:188 -#: application/views/dashboard/index.php:447 +#: application/views/dashboard/index.php:452 #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 @@ -6220,7 +6231,7 @@ msgstr "" "ます)" #: application/views/awards/pota/index.php:32 -#: application/views/qso/index.php:274 application/views/qso/index.php:567 +#: application/views/qso/index.php:274 application/views/qso/index.php:568 #: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:276 #: application/views/user/edit.php:674 application/views/view_log/qso.php:403 @@ -6456,7 +6467,7 @@ msgstr "アワード - すべての大陸で活動(WAC)" #: application/views/logbookadvanced/index.php:866 #: application/views/logbookadvanced/useroptions.php:170 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 -#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:422 #: application/views/view_log/qso.php:342 msgid "Continent" msgstr "大陸" @@ -6733,7 +6744,7 @@ msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" msgstr "このアワードに応募したフィールド: WWFF (ADIF: WWFF_REF)" #: application/views/awards/wwff/index.php:32 -#: application/views/qso/index.php:262 application/views/qso/index.php:554 +#: application/views/qso/index.php:262 application/views/qso/index.php:555 #: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:263 #: application/views/user/edit.php:670 application/views/view_log/qso.php:396 @@ -6803,7 +6814,7 @@ msgstr "バンドリスト" msgid "None" msgstr "なし" -#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:84 +#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:85 msgid "Spots de" msgstr "スポット" @@ -6817,40 +6828,46 @@ msgstr "" msgid "Click to prepare logging." msgstr "クリックしてログ記録を準備します。" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:70 +#: application/views/contesting/index.php:160 +#: application/views/qso/index.php:353 +msgid "WebSocket (Requires WLGate>1.1.10)" +msgstr "WebSocket (WLGate>1.1.10 が必要)" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "DXCCステータス" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "機能していません" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "動作したが、確認されていない" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "電話" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "CW" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "デジ" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "WAC" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "スポッター" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6858,7 +6875,7 @@ msgstr "スポッター" msgid "Message" msgstr "メッセージ" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "最終作業日" @@ -7272,7 +7289,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7335,7 +7352,7 @@ msgstr "はい" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7383,7 +7400,7 @@ msgid "No contests were found in your log." msgstr "ログにコンテストが見つかりませんでした。" #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "SATを除くすべて" @@ -7738,7 +7755,7 @@ msgstr "" "い。" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7803,10 +7820,10 @@ msgid "Show Details" msgstr "詳細を表示" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "本日" @@ -7963,7 +7980,7 @@ msgstr "シリアル + グリッドスクエア + 交換" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "オペレーターのコールサイン" @@ -8041,54 +8058,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "シリアル" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "シリアル(S)" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "グリッドスクエア(S)" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "交換(S)" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "シリアル(R)" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "グリッドスクエア(R)" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "交換(R)" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "QSOをリセット" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "QSOを保存" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "コールサインの提案" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "コンテストログブック" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "VUCC グリッドスクエア" @@ -8260,7 +8277,7 @@ msgstr "SOTA 情報を含む QSO のみがエクスポートされます!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "伝播方式" @@ -8360,45 +8377,57 @@ msgstr "" "テーマが定義されていないテーマモードがあります。管理者にテーマの編集を依頼し" "てください。" -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" -msgstr "あなたの%sLoTW証明書%sのうち少なくとも1つが有効期限切れです!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" +msgstr "LoTW警告: 少なくとも1つの%sLoTW証明書%sに問題があります!" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" -msgstr "" -"あなたの%sLoTW証明書%sの少なくとも1つが、まもなく有効期限切れになります!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" +msgstr "少なくとも1つの証明書が期限切れです" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "少なくとも1つの証明書が期限切れになります" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "少なくとも1つの証明書のQSO終了日が超過しました" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "少なくとも 1 つの QSO 証明書の有効期限がまもなく切れます" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" msgstr[0] "前回の交信内容が最大 %d 件表示されています" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "QSOの内訳" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "DXCCの内訳" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "必要" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8409,7 +8438,7 @@ msgstr "必要" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8432,10 +8461,10 @@ msgstr "必要" msgid "Sent" msgstr "送信済み" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8468,7 +8497,7 @@ msgstr "送信済み" msgid "Received" msgstr "受領" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8494,7 +8523,7 @@ msgstr "受領" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8508,25 +8537,25 @@ msgstr "受領" msgid "Requested" msgstr "リクエスト" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "世界の日誌" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "VUCCグリッド" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "太陽データと伝搬" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "最終更新日時:%s。" -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "HAMqsl 提供のデータ。" @@ -8697,12 +8726,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "DCL との次の自動同期は次の時間に行われます: " #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "手動同期" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "実行中..." @@ -9060,6 +9089,7 @@ msgstr "クラブログからのDXCCアップデート" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "アップデート" @@ -9100,11 +9130,15 @@ msgstr "注目すべきハムの更新" msgid "HAMqsl" msgstr "HAMqsl" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "VUCCグリッド" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "QSO-DBメンテナンス" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -9113,142 +9147,142 @@ msgstr[0] "" "データベースには、ステーションプロファイル(位置情報)のない%d件のQSOが含まれ" "ています" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "QSO をマークし、既存の局の場所に再割り当てしてください:" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "ターゲットロケーション" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "再割り当て" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "データベース内のすべてのQSOはステーションプロファイル(場所)に割り当てられま" "す" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "すべて順調" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "アルバニア語" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "アルメニア語" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "ボスニア語" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "ブルガリア語" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "中国語(簡体字)" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "クロアチア語" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "チェコ語" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "オランダ語" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "英語" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "エストニア語" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "フィンランド語" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "フランス語" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "ドイツ語" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "ギリシャ語" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "ハンガリー語" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "イタリア語" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "日本語" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "ラトビア語" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "リトアニア語" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "モンテネグロ語" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "ポーランド語" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "ポルトガル語" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "ロシア語" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "セルビア語" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "スロバキア語" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "スロベニア語" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "スペイン語" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "スウェーデン語" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "トルコ語" @@ -9706,10 +9740,10 @@ msgid "QSL Date" msgstr "QSL日付" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9816,7 +9850,7 @@ msgid "Worked not confirmed" msgstr "動作確認はされていません" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "クリア" @@ -10013,62 +10047,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "グリッドスクエア" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "ログインしていません。%slogin%sしてください" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "グリッドスクエア" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "合計数" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "QSLカード " -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "警告! このQSLカードを削除してもよろしいですか?" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSLカード" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "eQSLカード " -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "QSL画像ファイル" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "表面QSLカード:" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "裏面QSLカード:" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "QSLカードにQSOを追加する" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "問題が発生しました。もう一度お試しください!" @@ -10672,7 +10706,7 @@ msgstr "ステーションの出力" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "地域" @@ -10792,7 +10826,7 @@ msgstr "検証済み" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10813,7 +10847,7 @@ msgstr "直接" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10832,7 +10866,7 @@ msgstr "局" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10847,49 +10881,49 @@ msgstr "電子" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "マネージャー" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "なし" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "アフリカのイタリア" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "ベアアイランド" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "ヨーロッパのトルコ" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "ウィーン" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "コソボ" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "シェトランド諸島" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "シチリア島" @@ -11060,7 +11094,7 @@ msgstr "QSLを送信しました" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -11097,7 +11131,7 @@ msgstr "キュー" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11543,39 +11577,43 @@ msgstr "有効期限" msgid "Last Upload" msgstr "最終アップロード" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "期限切れ" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "期限切れ" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" -msgstr "有効" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" +msgstr "証明書の有効期限が切れました" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "証明書の有効期限が切れます" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "証明書は有効" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "QSO終了期限が迫っています" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "最後の成功: %s" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "最後の失敗: %s" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "同期されていません" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" "このエリアを使用するには、LoTW p12 証明書をいくつかアップロードする必要があり" "ます。" -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "LoTW との次の自動同期は次の時間に行われます: " @@ -12163,7 +12201,7 @@ msgstr "追加で知っておくべき情報はありますか?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -12211,7 +12249,7 @@ msgstr "ステーション" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12761,20 +12799,12 @@ msgstr "Blueskyに投稿する" msgid "Toot on Mastodon" msgstr "マストドンで投稿する" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "関数 %d - 名前" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "関数 %d - マクロ" @@ -12799,12 +12829,12 @@ msgstr "受信周波数" msgid "RX Band" msgstr "RXバンド" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" "電力値はワット単位で入力してください。入力には数字のみを入力してください。" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12814,25 +12844,25 @@ msgstr "送信電力(W)" msgid "Used for VUCC MultiGrids" msgstr "VUCCマルチグリッドに使用" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "アンテナパス" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "グレーライン" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "他の" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "ショートパス" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "ロングパス" @@ -12845,38 +12875,38 @@ msgstr "衛星の名前" msgid "Sat Mode" msgstr "衛星モード" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "アンテナ方位角(°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "アンテナの方位角(十進度)。" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "アンテナ仰角(°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "アンテナの仰角(十進度)。" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "ステーション郡" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "SIG情報" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "注: サードパーティのサービスにエクスポートされます。" @@ -12885,8 +12915,8 @@ msgid "Sent Method" msgstr "送信方法" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "方法" @@ -12907,7 +12937,7 @@ msgstr "検証済み(一致)" msgid "Received Method" msgstr "受信方法" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "この局の eQSL のデフォルト メッセージを取得します。" @@ -12951,7 +12981,7 @@ msgstr "変更を保存" msgid "TimeOff is less than TimeOn" msgstr "TimeOff が TimeOn より短い" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "以前の連絡先" @@ -13018,7 +13048,7 @@ msgstr "休暇" msgid "Search DXCluster for latest Spot" msgstr "DXClusterで最新のスポットを検索" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -13026,7 +13056,7 @@ msgstr "DXClusterで最新のスポットを検索" msgid "IOTA Reference" msgstr "IOTAリファレンス" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -13034,91 +13064,95 @@ msgstr "IOTAリファレンス" msgid "SOTA Reference" msgstr "SOTA リファレンス" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "周波数(RX)" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "バンド(RX)" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "例:GM/NS-001。" -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "例: DLFF-0069。" -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "例: PA-0150。複数の値を指定できます。" -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "例: GMA" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "例: DA/NW-357" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "例: Q03" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "QSO相手のメールアドレス" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "衛星名" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "衛星モード" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "QSLメッセージ" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "デフォルトにリセット" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "接続する" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "停止" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "チューニング" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "チューニングを停止" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "CW速度" -#: application/views/qso/index.php:769 +#: application/views/qso/index.php:778 +msgid "Stop" +msgstr "停止" + +#: application/views/qso/index.php:779 +msgid "Tune" +msgstr "チューニング" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "チューニングを停止" + +#: application/views/qso/index.php:785 +msgid "Enter text..." +msgstr "テキストを入力してください..." + +#: application/views/qso/index.php:786 msgid "Send" msgstr "送信" -#: application/views/qso/index.php:779 +#: application/views/qso/index.php:798 msgid "Suggestions" msgstr "提案" -#: application/views/qso/index.php:786 +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "プロフィール写真" @@ -14495,6 +14529,7 @@ msgid "Special Interest Group Information" msgstr "特別関心グループ(SIG)情報" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "問題が発生しましたか?%swiki%sを確認してください。" @@ -15590,10 +15625,6 @@ msgstr "マストドンサーバーのURL" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "MastodonサーバーのメインURL、例: %s" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "実験的" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "Winkeyer" @@ -16320,6 +16351,32 @@ msgstr "リクエストを送信" msgid "Rcvd" msgstr "受信" +#~ msgid "VUCCGrids" +#~ msgstr "VUCCグリッド" + +#, php-format +#~ msgctxt "LoTW Warning" +#~ msgid "At least one of your %sLoTW certificates%s is expired!" +#~ msgstr "あなたの%sLoTW証明書%sのうち少なくとも1つが有効期限切れです!" + +#, php-format +#~ msgctxt "LoTW Warning" +#~ msgid "At least one of your %sLoTW certificates%s is about to expire!" +#~ msgstr "" +#~ "あなたの%sLoTW証明書%sの少なくとも1つが、まもなく有効期限切れになります!" + +#~ msgid "Expired" +#~ msgstr "期限切れ" + +#~ msgid "Expiring" +#~ msgstr "期限切れ" + +#~ msgid "Valid" +#~ msgstr "有効" + +#~ msgid "Experimental" +#~ msgstr "実験的" + #, php-format #~ msgctxt "Dashboard Warning" #~ msgid "" diff --git a/application/locale/lt/LC_MESSAGES/messages.po b/application/locale/lt/LC_MESSAGES/messages.po index c704cbb74..0799af14f 100644 --- a/application/locale/lt/LC_MESSAGES/messages.po +++ b/application/locale/lt/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" "PO-Revision-Date: 2024-11-19 01:22+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Lithuanian 1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6537,7 +6554,7 @@ msgstr "" msgid "Message" msgstr "" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "" @@ -6936,7 +6953,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -6999,7 +7016,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7045,7 +7062,7 @@ msgid "No contests were found in your log." msgstr "" #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "" @@ -7386,7 +7403,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7451,10 +7468,10 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "" @@ -7607,7 +7624,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "" @@ -7683,54 +7700,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "" @@ -7892,7 +7909,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "" @@ -7977,20 +7994,33 @@ msgid "" "themes." msgstr "" -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" msgstr "" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" msgstr "" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -7998,25 +8028,25 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8027,7 +8057,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8050,10 +8080,10 @@ msgstr "" msgid "Sent" msgstr "" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8086,7 +8116,7 @@ msgstr "" msgid "Received" msgstr "" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8112,7 +8142,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8126,25 +8156,25 @@ msgstr "" msgid "Requested" msgstr "" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "" -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "" @@ -8309,12 +8339,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "" #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "" @@ -8659,6 +8689,7 @@ msgstr "" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "" @@ -8699,11 +8730,15 @@ msgstr "" msgid "HAMqsl" msgstr "" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -8711,140 +8746,140 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "Albanų" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "Bosnijos" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "Bulgarų" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "Kinų (supaprastinta)" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "Kroatų" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "čekų" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "Olandų" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "Anglų" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "Estų" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "Suomi" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "Prancūzų" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "Vokiečių" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "Graikų" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "Italų" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "Latvių" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "Lietuvių" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "Juodkalnijos" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "Lenkų" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "Portugalų" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "Rusų" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "Serbų" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "Ispanų" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "Švedų" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "Turkų" @@ -9230,10 +9265,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9331,7 +9366,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "" @@ -9524,62 +9559,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "" @@ -10173,7 +10208,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "" @@ -10293,7 +10328,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10314,7 +10349,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10333,7 +10368,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10348,49 +10383,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "" @@ -10552,7 +10587,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10589,7 +10624,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11028,37 +11063,41 @@ msgstr "" msgid "Last Upload" msgstr "" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" msgstr "" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "" @@ -11596,7 +11635,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -11644,7 +11683,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12181,20 +12220,12 @@ msgstr "" msgid "Toot on Mastodon" msgstr "" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "" @@ -12219,11 +12250,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12233,25 +12264,25 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "" @@ -12264,38 +12295,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12304,8 +12335,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "" @@ -12326,7 +12357,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12370,7 +12401,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "" @@ -12437,7 +12468,7 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -12445,7 +12476,7 @@ msgstr "" msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -12453,91 +12484,95 @@ msgstr "" msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:769 -msgid "Send" +#: application/views/qso/index.php:778 +msgid "Stop" msgstr "" #: application/views/qso/index.php:779 -msgid "Suggestions" +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:785 +msgid "Enter text..." msgstr "" #: application/views/qso/index.php:786 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:798 +msgid "Suggestions" +msgstr "" + +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "" @@ -13825,6 +13860,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14831,10 +14867,6 @@ msgstr "" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "" diff --git a/application/locale/lv/LC_MESSAGES/messages.po b/application/locale/lv/LC_MESSAGES/messages.po index c705f1f31..8e7d1f209 100644 --- a/application/locale/lv/LC_MESSAGES/messages.po +++ b/application/locale/lv/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" "PO-Revision-Date: 2024-11-19 01:22+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Latvian 1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6536,7 +6553,7 @@ msgstr "" msgid "Message" msgstr "" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "" @@ -6935,7 +6952,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -6998,7 +7015,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7044,7 +7061,7 @@ msgid "No contests were found in your log." msgstr "" #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "" @@ -7385,7 +7402,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7450,10 +7467,10 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "" @@ -7606,7 +7623,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "" @@ -7682,54 +7699,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "" @@ -7891,7 +7908,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "" @@ -7976,20 +7993,33 @@ msgid "" "themes." msgstr "" -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" msgstr "" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" msgstr "" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -7997,25 +8027,25 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8026,7 +8056,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8049,10 +8079,10 @@ msgstr "" msgid "Sent" msgstr "" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8085,7 +8115,7 @@ msgstr "" msgid "Received" msgstr "" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8111,7 +8141,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8125,25 +8155,25 @@ msgstr "" msgid "Requested" msgstr "" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "" -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "" @@ -8308,12 +8338,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "" #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "" @@ -8658,6 +8688,7 @@ msgstr "" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "" @@ -8698,11 +8729,15 @@ msgstr "" msgid "HAMqsl" msgstr "" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -8710,140 +8745,140 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "Albāņu" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "Bosniešu" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "Bulgāru" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "Ķīniešu (vienkāršotā)" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "Horvātu" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "Čehu" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "Nīderlandiešu" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "Angļu" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "Igauņu" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "Somu" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "Franču" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "Vācu valoda" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "Grieķu" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "Itāļu" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "Latviešu valoda" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "Lietuviešu" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "Melnkalniešu" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "Pulēt" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "Portugāļu" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "Krievu" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "Serbu" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "Spāņu" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "Zviedru" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "Turku" @@ -9229,10 +9264,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9330,7 +9365,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "" @@ -9523,62 +9558,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "" @@ -10172,7 +10207,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "" @@ -10292,7 +10327,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10313,7 +10348,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10332,7 +10367,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10347,49 +10382,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "" @@ -10551,7 +10586,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10588,7 +10623,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11027,37 +11062,41 @@ msgstr "" msgid "Last Upload" msgstr "" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" msgstr "" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "" @@ -11595,7 +11634,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -11643,7 +11682,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12180,20 +12219,12 @@ msgstr "" msgid "Toot on Mastodon" msgstr "" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "" @@ -12218,11 +12249,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12232,25 +12263,25 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "" @@ -12263,38 +12294,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12303,8 +12334,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "" @@ -12325,7 +12356,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12369,7 +12400,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "" @@ -12436,7 +12467,7 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -12444,7 +12475,7 @@ msgstr "" msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -12452,91 +12483,95 @@ msgstr "" msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:769 -msgid "Send" +#: application/views/qso/index.php:778 +msgid "Stop" msgstr "" #: application/views/qso/index.php:779 -msgid "Suggestions" +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:785 +msgid "Enter text..." msgstr "" #: application/views/qso/index.php:786 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:798 +msgid "Suggestions" +msgstr "" + +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "" @@ -13824,6 +13859,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14830,10 +14866,6 @@ msgstr "" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "" diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.mo b/application/locale/nl_NL/LC_MESSAGES/messages.mo index 171df5d82..0208bac1e 100644 Binary files a/application/locale/nl_NL/LC_MESSAGES/messages.mo and b/application/locale/nl_NL/LC_MESSAGES/messages.mo differ diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.po b/application/locale/nl_NL/LC_MESSAGES/messages.po index 4620a42d8..c1452ef0d 100644 --- a/application/locale/nl_NL/LC_MESSAGES/messages.po +++ b/application/locale/nl_NL/LC_MESSAGES/messages.po @@ -10,11 +10,11 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" -"PO-Revision-Date: 2025-10-15 05:17+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" +"PO-Revision-Date: 2025-10-24 20:12+0000\n" "Last-Translator: Alexander \n" -"Language-Team: Dutch \n" +"Language-Team: Dutch \n" "Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -74,9 +74,9 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:79 application/controllers/Lotw.php:105 -#: application/controllers/Lotw.php:375 application/controllers/Lotw.php:398 -#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:839 -#: application/controllers/Lotw.php:944 application/controllers/Mode.php:15 +#: application/controllers/Lotw.php:383 application/controllers/Lotw.php:406 +#: application/controllers/Lotw.php:763 application/controllers/Lotw.php:847 +#: application/controllers/Lotw.php:952 application/controllers/Mode.php:15 #: application/controllers/Notes.php:11 application/controllers/Options.php:14 #: application/controllers/Oqrs.php:15 application/controllers/Oqrs.php:165 #: application/controllers/Qrbcalc.php:13 application/controllers/Qrz.php:200 @@ -85,8 +85,8 @@ msgstr "" #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:187 -#: application/controllers/Qso.php:287 application/controllers/Qso.php:308 -#: application/controllers/Qso.php:331 application/controllers/Qso.php:629 +#: application/controllers/Qso.php:318 application/controllers/Qso.php:339 +#: application/controllers/Qso.php:362 application/controllers/Qso.php:662 #: application/controllers/Radio.php:32 application/controllers/Radio.php:291 #: application/controllers/Radio.php:317 application/controllers/Radio.php:333 #: application/controllers/Reg1test.php:17 @@ -144,7 +144,7 @@ msgstr "Kaart met geactiveerde Locatorvakken" #: application/controllers/Activated_gridmap.php:31 #: application/controllers/Awards.php:1003 #: application/controllers/Awards.php:1035 -#: application/controllers/Gridmap.php:31 +#: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 #: application/views/interface_assets/footer.php:47 @@ -154,13 +154,13 @@ msgid "Gridsquares" msgstr "Locatorvakken" #: application/controllers/Activated_gridmap.php:32 -#: application/controllers/Gridmap.php:32 +#: application/controllers/Gridmap.php:33 #: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "Bevestigde locatorvakken" #: application/controllers/Activated_gridmap.php:33 -#: application/controllers/Gridmap.php:33 +#: application/controllers/Gridmap.php:34 #: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "Niet bevestigde locatorvakken" @@ -170,25 +170,25 @@ msgid "Total gridsquares activated" msgstr "Totaal geactiveerde locatorvakken" #: application/controllers/Activated_gridmap.php:36 -#: application/controllers/Gridmap.php:36 +#: application/controllers/Gridmap.php:37 #: application/controllers/Visitor.php:390 msgid "Fields" msgstr "Vakken" #: application/controllers/Activated_gridmap.php:37 -#: application/controllers/Gridmap.php:37 +#: application/controllers/Gridmap.php:38 #: application/controllers/Visitor.php:391 msgid "Fields confirmed" msgstr "Bevestigde vakken" #: application/controllers/Activated_gridmap.php:38 -#: application/controllers/Gridmap.php:38 +#: application/controllers/Gridmap.php:39 #: application/controllers/Visitor.php:392 msgid "Fields not confirmed" msgstr "Onbevestigde vakken" #: application/controllers/Activated_gridmap.php:39 -#: application/controllers/Gridmap.php:39 +#: application/controllers/Gridmap.php:40 #: application/controllers/Visitor.php:393 msgid "Total fields worked" msgstr "Totaal aantal gewerkte vakken" @@ -338,13 +338,13 @@ msgstr "Awards - %s" #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:401 application/views/qso/index.php:302 -#: application/views/qso/index.php:593 application/views/user/edit.php:682 +#: application/views/qso/index.php:594 application/views/user/edit.php:682 #: application/views/view_log/qso.php:460 msgid "DOK" msgstr "DOK" #: application/controllers/Awards.php:176 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:130 application/views/bands/index.php:50 +#: application/views/bandmap/list.php:131 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:180 @@ -357,7 +357,7 @@ msgstr "DOK" #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 -#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:402 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 #: application/views/search/result.php:27 @@ -560,7 +560,7 @@ msgstr "Fred Fish Memorial Award (FFMA)" #: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:286 -#: application/views/qso/index.php:579 application/views/user/edit.php:678 +#: application/views/qso/index.php:580 application/views/user/edit.php:678 #: application/views/view_log/qso.php:425 #: application/views/view_log/qso.php:736 msgid "SIG" @@ -826,7 +826,7 @@ msgstr "Cronjob bewerken" #: application/views/debug/index.php:539 application/views/debug/index.php:544 #: application/views/debug/index.php:549 application/views/debug/index.php:554 #: application/views/debug/index.php:559 application/views/debug/index.php:564 -#: application/views/debug/index.php:569 +#: application/views/debug/index.php:569 application/views/debug/index.php:574 msgid "never" msgstr "nooit" @@ -884,7 +884,7 @@ msgstr "Draait niet" msgid "SOTA CSV Export" msgstr "SOTA CSV-export" -#: application/controllers/Dashboard.php:152 +#: application/controllers/Dashboard.php:154 #: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "Dashboard" @@ -937,35 +937,35 @@ msgstr "Geen stationprofielen gevonden om naar DCL te uploaden" msgid "Key(s) Deleted." msgstr "Sleutel(s) verwijderd." -#: application/controllers/Debug.php:117 +#: application/controllers/Debug.php:118 msgid "Debug" msgstr "Debug" -#: application/controllers/Debug.php:156 +#: application/controllers/Debug.php:157 msgid "Migrate data now" msgstr "Gegevens nu migreren" -#: application/controllers/Debug.php:159 +#: application/controllers/Debug.php:160 msgid "Migration already done. Run again?" msgstr "Migratie al voltooid. Opnieuw uitvoeren?" -#: application/controllers/Debug.php:163 +#: application/controllers/Debug.php:164 msgid "No data to migrate" msgstr "Geen gegevens om te migreren" -#: application/controllers/Debug.php:167 application/controllers/Debug.php:172 +#: application/controllers/Debug.php:168 application/controllers/Debug.php:173 msgid "No migration possible" msgstr "Geen migratie mogelijk" -#: application/controllers/Debug.php:237 +#: application/controllers/Debug.php:238 msgid "Wavelog was updated successfully!" msgstr "Wavelog is succesvol bijgewerkt!" -#: application/controllers/Debug.php:255 +#: application/controllers/Debug.php:256 msgid "Selfupdate() not available. Check the Error Log." msgstr "Selfupdate() niet beschikbaar. Controleer het foutlogboek." -#: application/controllers/Debug.php:299 +#: application/controllers/Debug.php:300 msgid "" "File Migration was successfull, but please check also manually. If " "everything seems right you can delete the folders 'assets/qslcard' and " @@ -975,7 +975,7 @@ msgstr "" "goed lijkt, kun je de directories 'assets/qslcard' en 'images/" "eqsl_card_images' verwijderen." -#: application/controllers/Debug.php:302 +#: application/controllers/Debug.php:303 msgid "File Migration failed. Please check the Error Log." msgstr "Bestandsoverdracht mislukt. Controleer het foutlogboek." @@ -1016,7 +1016,7 @@ msgid "DX Calendar" msgstr "DX-kalender" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:404 +#: application/views/dashboard/index.php:409 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:310 msgid "eQSL Cards" @@ -1076,7 +1076,7 @@ msgstr "Bevestigingen" msgid "Gridsquare Map" msgstr "Locatorvakken kaart" -#: application/controllers/Gridmap.php:34 +#: application/controllers/Gridmap.php:35 #: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "Totaal aantal vakken gewerkt" @@ -1281,7 +1281,7 @@ msgstr "Logboek" #: application/views/awards/wapc/index.php:44 #: application/views/awards/was/index.php:56 #: application/views/awards/wpx/index.php:28 -#: application/views/gridmap/index.php:101 +#: application/views/gridmap/index.php:141 #: application/views/logbookadvanced/index.php:794 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/oqrs/qsolist.php:12 @@ -1313,8 +1313,8 @@ msgstr "QSL" #: application/views/awards/wapc/index.php:48 #: application/views/awards/was/index.php:60 #: application/views/awards/wpx/index.php:32 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:109 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:149 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 @@ -1350,8 +1350,8 @@ msgstr "LoTW" #: application/views/awards/wapc/index.php:52 #: application/views/awards/was/index.php:64 #: application/views/awards/wpx/index.php:36 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:117 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:157 #: application/views/logbookadvanced/useroptions.php:78 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 @@ -1393,23 +1393,23 @@ msgstr "eQSL" #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:110 -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:136 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 #: application/views/contesting/index.php:118 -#: application/views/contesting/index.php:264 +#: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:597 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 -#: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 -#: application/views/kml/index.php:31 +#: application/views/gridmap/index.php:104 +#: application/views/hamsat/index.php:33 application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:12 #: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/index.php:764 @@ -1459,8 +1459,8 @@ msgstr "Modus" #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:179 -#: application/views/contesting/index.php:265 +#: application/views/contesting/index.php:180 +#: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 #: application/views/logbookadvanced/index.php:767 #: application/views/logbookadvanced/useroptions.php:38 @@ -1488,8 +1488,8 @@ msgstr "RST (S)" #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 -#: application/views/contesting/index.php:203 -#: application/views/contesting/index.php:266 +#: application/views/contesting/index.php:204 +#: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 #: application/views/logbookadvanced/index.php:770 #: application/views/logbookadvanced/useroptions.php:42 @@ -1597,9 +1597,9 @@ msgstr "Staat" #: application/views/awards/gridmaster/index.php:50 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:26 -#: application/views/contesting/index.php:271 +#: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 -#: application/views/gridmap/index.php:152 +#: application/views/gridmap/index.php:193 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 @@ -1643,7 +1643,7 @@ msgstr "Locatorvak" #: application/views/dashboard/index.php:14 #: application/views/distancerecords/index.php:15 #: application/views/distances/index.php:13 -#: application/views/gridmap/index.php:154 +#: application/views/gridmap/index.php:195 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 #: application/views/logbookadvanced/index.php:869 @@ -1692,17 +1692,17 @@ msgstr "Afstand" #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:96 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:97 #: application/views/bands/create.php:24 application/views/bands/edit.php:7 #: application/views/bands/index.php:47 application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:263 +#: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:593 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:598 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 -#: application/views/gridmap/index.php:10 application/views/kml/index.php:19 +#: application/views/gridmap/index.php:26 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:6 #: application/views/logbookadvanced/index.php:281 #: application/views/logbookadvanced/index.php:773 @@ -1750,7 +1750,7 @@ msgid "Band" msgstr "Band" #: application/controllers/Logbook.php:1324 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:128 +#: application/controllers/Radio.php:45 application/views/bandmap/list.php:129 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:776 @@ -1809,9 +1809,9 @@ msgstr "Operator" #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:252 #: application/views/lookup/index.php:47 -#: application/views/lotw_views/index.php:49 +#: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 -#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:411 #: application/views/station_profile/create.php:77 #: application/views/station_profile/edit.php:109 #: application/views/stationsetup/linkedlocations.php:17 @@ -1852,11 +1852,11 @@ msgstr "Certificaat geïmporteerd." msgid "Certificate Updated." msgstr "Certificaat bijgewerkt." -#: application/controllers/Lotw.php:381 +#: application/controllers/Lotw.php:389 msgid "Certificate Deleted." msgstr "Certificaat verwijderd." -#: application/controllers/Lotw.php:410 +#: application/controllers/Lotw.php:418 #, php-format msgid "" "Found no certificate in file %s. If the filename contains 'key-only' this is " @@ -1866,52 +1866,52 @@ msgstr "" "bevat, is dit meestal een certificaataanvraag die nog niet door LoTW is " "verwerkt." -#: application/controllers/Lotw.php:646 +#: application/controllers/Lotw.php:654 msgid "LoTW ADIF Information" msgstr "LoTW ADIF Informatie" -#: application/controllers/Lotw.php:812 application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:820 application/controllers/Lotw.php:823 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "LoTW-login mislukt voor gebruiker %s: %s." -#: application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:823 msgid "Username/password incorrect" msgstr "Gebruikersnaam/wachtwoord onjuist" -#: application/controllers/Lotw.php:818 +#: application/controllers/Lotw.php:826 msgid "LoTW login OK!" msgstr "LoTW login oké!" -#: application/controllers/Lotw.php:822 +#: application/controllers/Lotw.php:830 msgid "LoTW currently not available. Try again later." msgstr "LoTW momenteel niet beschikbaar. Probeer het later opnieuw." -#: application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 msgid "No LoTW credentials provided." msgstr "Geen LoTW-gegevens verstrekt." -#: application/controllers/Lotw.php:845 +#: application/controllers/Lotw.php:853 msgid "LoTW ADIF Import" msgstr "LoTW ADIF importeren" -#: application/controllers/Lotw.php:871 application/controllers/Lotw.php:979 +#: application/controllers/Lotw.php:879 application/controllers/Lotw.php:987 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Je hebt je ARRL LoTW-gegevens niet gedefinieerd!" -#: application/controllers/Lotw.php:946 +#: application/controllers/Lotw.php:954 msgid "LoTW .TQ8 Upload" msgstr "LoTW .TQ8 uploaden" -#: application/controllers/Lotw.php:1024 +#: application/controllers/Lotw.php:1032 msgid "Your ARRL username and/or password is incorrect." msgstr "Je ARRL-gebruikersnaam en/of wachtwoord is onjuist." -#: application/controllers/Lotw.php:1043 application/controllers/Lotw.php:1048 +#: application/controllers/Lotw.php:1051 application/controllers/Lotw.php:1056 msgid "LoTW .TQ8 Sent" msgstr "LoTW .TQ8 verzonden" -#: application/controllers/Lotw.php:1055 +#: application/controllers/Lotw.php:1063 msgid "LoTW .TQ8 Not Sent" msgstr "LoTW .TQ8 niet verzonden" @@ -1932,7 +1932,7 @@ msgstr "Modus bewerken" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:409 application/views/qso/index.php:71 -#: application/views/qso/index.php:642 application/views/view_log/qso.php:14 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:14 #: application/views/view_log/qso.php:749 msgid "Notes" msgstr "Aantekeningen" @@ -2196,8 +2196,8 @@ msgstr "QRZ QSL importeren" msgid "QRZ ADIF Information" msgstr "QRZ ADIF Informatie" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:356 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:361 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:287 msgid "QSL Cards" @@ -2219,15 +2219,15 @@ msgstr "Aangevraagde QSL's afdrukken" msgid "Add QSO" msgstr "QSO toevoegen" -#: application/controllers/Qso.php:690 +#: application/controllers/Qso.php:723 msgid "You have to be logged in to access this URL." msgstr "Je moet ingelogd zijn om deze URL te openen." -#: application/controllers/Qso.php:696 +#: application/controllers/Qso.php:729 msgid "Call Transfer" msgstr "Roepnaam overdracht" -#: application/controllers/Qso.php:703 +#: application/controllers/Qso.php:736 msgid "No callsign provided." msgstr "Geen roepnaam opgegeven." @@ -2257,7 +2257,7 @@ msgid "Options" msgstr "Opties" #: application/controllers/Radio.php:50 application/views/debug/index.php:312 -#: application/views/qso/index.php:749 +#: application/views/qso/index.php:750 msgid "Settings" msgstr "Instellingen" @@ -2266,8 +2266,8 @@ msgid "UNKNOWN" msgstr "ONBEKEND" #: application/controllers/Radio.php:98 -#: application/views/contesting/index.php:161 -#: application/views/qso/index.php:354 +#: application/views/contesting/index.php:162 +#: application/views/qso/index.php:355 msgid "last updated" msgstr "laatst bijgewerkt" @@ -2305,13 +2305,13 @@ msgstr "Bewerken" #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:63 -#: application/views/interface_assets/footer.php:2802 -#: application/views/interface_assets/footer.php:2820 -#: application/views/interface_assets/footer.php:2841 -#: application/views/interface_assets/footer.php:2859 +#: application/views/interface_assets/footer.php:2900 +#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:2939 +#: application/views/interface_assets/footer.php:2957 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:734 -#: application/views/lotw_views/index.php:111 +#: application/views/lotw_views/index.php:128 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 #: application/views/qslcard/index.php:76 @@ -2523,7 +2523,7 @@ msgstr "Niet toegestaan" #: application/controllers/Stationsetup.php:156 #: application/controllers/Stationsetup.php:177 #: application/controllers/Stationsetup.php:478 -#: application/views/qso/index.php:708 application/views/simplefle/index.php:39 +#: application/views/qso/index.php:709 application/views/simplefle/index.php:39 #: application/views/widgets/on_air.php:102 msgid "Error" msgstr "Fout" @@ -2824,6 +2824,14 @@ msgstr "LoTW SAT update" msgid "Update of Hams of Note" msgstr "Update van Vermeldenswaardige Radiozendamateurs" +#: application/controllers/Update.php:718 +msgid "VUCC Grid file update complete. Result: " +msgstr "VUCC-vakken bestand update voltooid. Resultaat: " + +#: application/controllers/Update.php:720 +msgid "VUCC Grid file update failed. Result: " +msgstr "VUCC-vakken bestandsupdate mislukt. Resultaat: " + #: application/controllers/User.php:50 #: application/views/interface_assets/header.php:306 msgid "User Accounts" @@ -2954,7 +2962,7 @@ msgstr "Gebruiker %s heeft zich afgemeld." msgid "Station Name" msgstr "Stationsnaam" -#: application/controllers/User.php:1262 application/views/debug/index.php:594 +#: application/controllers/User.php:1262 application/views/debug/index.php:599 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:61 #: application/views/station_profile/edit.php:77 @@ -3413,7 +3421,7 @@ msgstr "QSO bijgewerkt" #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 #: application/views/dashboard/index.php:19 -#: application/views/gridmap/index.php:156 +#: application/views/gridmap/index.php:197 #: application/views/logbookadvanced/index.php:15 #: application/views/user/edit.php:256 application/views/user/edit.php:279 #: application/views/user/edit.php:302 application/views/user/edit.php:325 @@ -3513,7 +3521,7 @@ msgid "Accumulated number of WAJA worked" msgstr "Opgeteld aantal WAJA gewerkt" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:317 +#: application/views/dashboard/index.php:322 #: application/views/dayswithqso/index.php:42 #: application/views/dayswithqso/index.php:82 #: application/views/statistics/index.php:19 @@ -3530,7 +3538,7 @@ msgid "Yearly" msgstr "Jaarlijks" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:327 #: application/views/visitor/index.php:255 msgid "Month" msgstr "Maand" @@ -3582,8 +3590,8 @@ msgstr "Verschil" #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:86 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:79 application/views/bandmap/list.php:87 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:113 #: application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 @@ -3606,14 +3614,15 @@ msgstr "Verschil" #: application/views/dxatlas/index.php:60 #: application/views/dxatlas/index.php:82 #: application/views/dxatlas/index.php:94 -#: application/views/gridmap/index.php:13 -#: application/views/gridmap/index.php:28 -#: application/views/gridmap/index.php:41 -#: application/views/gridmap/index.php:70 -#: application/views/gridmap/index.php:83 +#: application/views/gridmap/index.php:29 +#: application/views/gridmap/index.php:44 +#: application/views/gridmap/index.php:78 +#: application/views/gridmap/index.php:93 +#: application/views/gridmap/index.php:107 +#: application/views/gridmap/index.php:121 #: application/views/interface_assets/footer.php:46 -#: application/views/interface_assets/footer.php:1692 -#: application/views/interface_assets/footer.php:1831 +#: application/views/interface_assets/footer.php:1790 +#: application/views/interface_assets/footer.php:1929 #: 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 @@ -3700,7 +3709,7 @@ msgstr "Periode" #: application/views/accumulate/index.php:80 #: application/views/callstats/index.php:65 #: application/views/distances/index.php:53 -#: application/views/gridmap/index.php:38 +#: application/views/gridmap/index.php:41 #: application/views/logbookadvanced/edit.php:14 #: application/views/logbookadvanced/index.php:310 #: application/views/logbookadvanced/index.php:857 @@ -3720,7 +3729,7 @@ msgstr "Alles behalve SAT" #: application/views/accumulate/index.php:85 #: application/views/callstats/index.php:69 #: application/views/distances/index.php:58 -#: application/views/gridmap/index.php:42 +#: application/views/gridmap/index.php:45 #: application/views/logbookadvanced/edit.php:207 #: application/views/logbookadvanced/edit.php:215 #: application/views/logbookadvanced/index.php:406 @@ -3732,9 +3741,9 @@ msgstr "Geen/Leeg" #: application/views/callstats/index.php:71 application/views/csv/index.php:95 #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 +#: application/views/gridmap/index.php:47 application/views/kml/index.php:80 #: application/views/logbookadvanced/index.php:314 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:477 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:478 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 #: application/views/view_log/qso.php:233 @@ -3746,9 +3755,9 @@ msgstr "Aircraft Scatter" #: application/views/callstats/index.php:72 application/views/csv/index.php:96 #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 +#: application/views/gridmap/index.php:48 application/views/kml/index.php:81 #: application/views/logbookadvanced/index.php:315 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:478 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:479 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 #: application/views/view_log/qso.php:236 @@ -3760,9 +3769,9 @@ msgstr "Aurora" #: application/views/callstats/index.php:73 application/views/csv/index.php:97 #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 +#: application/views/gridmap/index.php:49 application/views/kml/index.php:82 #: application/views/logbookadvanced/index.php:316 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:479 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:480 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 #: application/views/view_log/qso.php:239 @@ -3774,9 +3783,9 @@ msgstr "Aurora-E" #: application/views/callstats/index.php:74 application/views/csv/index.php:98 #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 +#: application/views/gridmap/index.php:50 application/views/kml/index.php:83 #: application/views/logbookadvanced/index.php:317 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:480 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:481 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 #: application/views/view_log/qso.php:242 @@ -3788,9 +3797,9 @@ msgstr "Back scatter" #: application/views/callstats/index.php:75 application/views/csv/index.php:99 #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 +#: application/views/gridmap/index.php:51 application/views/kml/index.php:84 #: application/views/logbookadvanced/index.php:318 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:481 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:482 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 #: application/views/view_log/qso.php:245 @@ -3802,9 +3811,9 @@ msgstr "EchoLink" #: application/views/callstats/index.php:76 application/views/csv/index.php:100 #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 +#: application/views/gridmap/index.php:52 application/views/kml/index.php:85 #: application/views/logbookadvanced/index.php:319 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:482 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:483 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 #: application/views/view_log/qso.php:248 @@ -3816,9 +3825,9 @@ msgstr "Earth-Moon-Earth" #: application/views/callstats/index.php:77 application/views/csv/index.php:101 #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 +#: application/views/gridmap/index.php:53 application/views/kml/index.php:86 #: application/views/logbookadvanced/index.php:320 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:483 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:484 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 #: application/views/view_log/qso.php:251 @@ -3830,9 +3839,9 @@ msgstr "Sporadic E" #: application/views/callstats/index.php:78 application/views/csv/index.php:102 #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 +#: application/views/gridmap/index.php:54 application/views/kml/index.php:87 #: application/views/logbookadvanced/index.php:321 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:484 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:485 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 #: application/views/view_log/qso.php:254 @@ -3844,9 +3853,9 @@ msgstr "Field Aligned Irregularities" #: application/views/callstats/index.php:79 application/views/csv/index.php:103 #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 +#: application/views/gridmap/index.php:55 application/views/kml/index.php:88 #: application/views/logbookadvanced/index.php:322 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:485 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:486 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 #: application/views/view_log/qso.php:257 @@ -3858,9 +3867,9 @@ msgstr "F2 Reflection" #: application/views/callstats/index.php:80 application/views/csv/index.php:104 #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 +#: application/views/gridmap/index.php:56 application/views/kml/index.php:89 #: application/views/logbookadvanced/index.php:323 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:486 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:487 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 #: application/views/view_log/qso.php:260 @@ -3872,9 +3881,9 @@ msgstr "Internet-ondersteund" #: application/views/callstats/index.php:81 application/views/csv/index.php:105 #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 +#: application/views/gridmap/index.php:57 application/views/kml/index.php:90 #: application/views/logbookadvanced/index.php:324 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:487 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:488 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 #: application/views/view_log/qso.php:263 @@ -3886,9 +3895,9 @@ msgstr "Ionoscatter" #: application/views/callstats/index.php:82 application/views/csv/index.php:106 #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 +#: application/views/gridmap/index.php:58 application/views/kml/index.php:91 #: application/views/logbookadvanced/index.php:325 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:488 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:489 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 #: application/views/view_log/qso.php:266 @@ -3900,9 +3909,9 @@ msgstr "IRLP" #: application/views/callstats/index.php:83 application/views/csv/index.php:107 #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 +#: application/views/gridmap/index.php:59 application/views/kml/index.php:92 #: application/views/logbookadvanced/index.php:326 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:489 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:490 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 #: application/views/view_log/qso.php:269 @@ -3914,9 +3923,9 @@ msgstr "Meteor scatter" #: application/views/callstats/index.php:84 application/views/csv/index.php:108 #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 +#: application/views/gridmap/index.php:60 application/views/kml/index.php:93 #: application/views/logbookadvanced/index.php:327 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:490 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:491 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 #: application/views/view_log/qso.php:272 @@ -3928,9 +3937,9 @@ msgstr "Terrestrische of atmosferische repeater of transponder" #: application/views/callstats/index.php:85 application/views/csv/index.php:109 #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 +#: application/views/gridmap/index.php:61 application/views/kml/index.php:94 #: application/views/logbookadvanced/index.php:328 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:491 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:492 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 #: application/views/view_log/qso.php:275 @@ -3942,9 +3951,9 @@ msgstr "Regen scatter" #: application/views/callstats/index.php:86 application/views/csv/index.php:110 #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 +#: application/views/gridmap/index.php:62 application/views/kml/index.php:95 #: application/views/logbookadvanced/index.php:329 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:492 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:493 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 #: application/views/view_log/qso.php:278 @@ -3956,9 +3965,9 @@ msgstr "Satelliet" #: application/views/callstats/index.php:87 application/views/csv/index.php:111 #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 +#: application/views/gridmap/index.php:63 application/views/kml/index.php:96 #: application/views/logbookadvanced/index.php:330 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:493 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:494 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 #: application/views/view_log/qso.php:281 @@ -3970,9 +3979,9 @@ msgstr "Trans-equatoriaal" #: application/views/callstats/index.php:88 application/views/csv/index.php:112 #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 +#: application/views/gridmap/index.php:64 application/views/kml/index.php:97 #: application/views/logbookadvanced/index.php:331 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:494 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:495 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 #: application/views/view_log/qso.php:284 @@ -4027,7 +4036,7 @@ msgstr "Toon" #: application/views/components/hamsat/table.php:29 #: application/views/distancerecords/index.php:14 #: application/views/distances/index.php:34 -#: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 +#: application/views/gridmap/index.php:73 application/views/hamsat/index.php:32 #: application/views/interface_assets/header.php:198 #: application/views/logbookadvanced/edit.php:17 #: application/views/logbookadvanced/index.php:292 @@ -4050,7 +4059,7 @@ msgstr "Satelliet" #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 -#: application/views/gridmap/index.php:80 +#: application/views/gridmap/index.php:88 #: application/views/logbookadvanced/index.php:301 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 @@ -4063,7 +4072,7 @@ msgstr "Baan" #: application/views/activated_gridmap/index.php:50 #: application/views/awards/wab/index.php:65 -#: application/views/gridmap/index.php:92 +#: application/views/gridmap/index.php:132 #: application/views/timeline/index.php:52 msgid "Confirmation" msgstr "Bevestiging" @@ -4085,24 +4094,24 @@ msgstr "Bevestiging" #: application/views/awards/wapc/index.php:56 #: application/views/awards/was/index.php:68 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:125 application/views/user/edit.php:810 +#: application/views/gridmap/index.php:165 application/views/user/edit.php:810 msgid "QRZ.com" msgstr "QRZ.com" #: application/views/activated_gridmap/index.php:86 -#: application/views/gridmap/index.php:130 +#: application/views/gridmap/index.php:17 msgid "Plot" msgstr "Plot" #: application/views/activated_gridmap/index.php:87 -#: application/views/gridmap/index.php:131 +#: application/views/gridmap/index.php:18 msgid "Clear Markers" msgstr "Markeringen wissen" #: application/views/activated_gridmap/index.php:102 #: application/views/awards/ffma/index.php:31 #: application/views/awards/gridmaster/index.php:46 -#: application/views/gridmap/index.php:148 +#: application/views/gridmap/index.php:189 #: application/views/logbookadvanced/index.php:10 msgid "Latitude" msgstr "Breedtegraad" @@ -4110,7 +4119,7 @@ msgstr "Breedtegraad" #: application/views/activated_gridmap/index.php:104 #: application/views/awards/ffma/index.php:33 #: application/views/awards/gridmaster/index.php:48 -#: application/views/gridmap/index.php:150 +#: application/views/gridmap/index.php:191 #: application/views/logbookadvanced/index.php:11 msgid "Longitude" msgstr "Lengtegraad" @@ -4171,8 +4180,8 @@ msgstr "Niets gevonden!" #: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:170 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:244 +#: application/views/contesting/index.php:171 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:249 #: application/views/dcl_views/index.php:27 #: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 @@ -4278,12 +4287,12 @@ msgstr "" #: application/views/awards/pota/index.php:33 #: application/views/awards/sota/index.php:31 #: application/views/awards/wwff/index.php:33 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:25 #: application/views/contesting/index.php:103 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:239 -#: application/views/debug/index.php:589 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:244 +#: application/views/debug/index.php:594 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4324,12 +4333,12 @@ msgstr "Datum" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:590 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:247 +#: application/views/debug/index.php:595 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4355,10 +4364,10 @@ msgstr "Tijd" #: application/views/adif/dcl_success.php:31 #: application/views/adif/pota_success.php:31 #: application/views/awards/vucc/band.php:18 -#: application/views/bandmap/list.php:129 -#: application/views/contesting/index.php:262 +#: application/views/bandmap/list.php:130 +#: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:591 application/views/debug/index.php:626 +#: application/views/debug/index.php:596 application/views/debug/index.php:631 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4400,8 +4409,7 @@ msgstr "CBR Importeren" #: application/views/adif/import.php:73 application/views/adif/import.php:379 #: application/views/adif/import.php:400 application/views/api/index.php:22 #: application/views/dashboard/index.php:180 -#: application/views/dashboard/index.php:209 -#: application/views/dashboard/index.php:214 +#: application/views/dashboard/index.php:213 #: application/views/eqsl/import.php:46 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 #: application/views/options/maptiles.php:48 @@ -4420,7 +4428,7 @@ msgstr "Maximale bestandsgrootte voor uploaden is " #: application/views/adif/import.php:349 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:193 application/views/debug/index.php:210 -#: application/views/debug/index.php:581 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:586 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 @@ -4489,7 +4497,7 @@ msgstr "" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 #: application/views/interface_assets/footer.php:580 -#: application/views/interface_assets/footer.php:2564 +#: application/views/interface_assets/footer.php:2662 msgid "DANGER" msgstr "GEVAAR" @@ -4714,7 +4722,7 @@ msgstr "" #: application/views/adif/import.php:399 #: application/views/adif/import_success.php:40 #: application/views/dcl_views/index.php:76 -#: application/views/lotw_views/index.php:137 +#: application/views/lotw_views/index.php:154 msgid "Information" msgstr "Informatie" @@ -5230,7 +5238,7 @@ msgstr "Counties bevestigd" #: application/views/awards/wapc/index.php:145 #: application/views/awards/was/index.php:180 #: application/views/awards/wpx/index.php:172 -#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:317 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -5250,7 +5258,8 @@ msgstr "Totaal" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:151 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/dxatlas/index.php:80 +#: application/views/gridmap/index.php:199 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 #: application/views/logbookadvanced/index.php:335 @@ -5258,7 +5267,7 @@ msgstr "Totaal" #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:308 -#: application/views/qso/index.php:450 +#: application/views/qso/index.php:451 #: application/views/search/cqzones_result.php:13 #: application/views/station_profile/create.php:110 #: application/views/station_profile/edit.php:157 @@ -5319,9 +5328,9 @@ msgstr "Awards - CQ WAZ" #: application/views/awards/wab/list.php:6 #: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:81 -#: application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:457 +#: application/views/bandmap/list.php:82 +#: application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:462 #: application/views/interface_assets/footer.php:43 #: application/views/search/result.php:32 #: application/views/visitor/index.php:270 @@ -5331,9 +5340,9 @@ msgstr "Bevestigd" #: application/views/awards/cq/index.php:35 #: application/views/awards/itu/index.php:35 #: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:80 -#: application/views/dashboard/index.php:335 -#: application/views/dashboard/index.php:451 +#: application/views/bandmap/list.php:81 +#: application/views/dashboard/index.php:340 +#: application/views/dashboard/index.php:456 #: application/views/search/result.php:35 #: application/views/visitor/index.php:266 msgid "Worked" @@ -5411,7 +5420,7 @@ msgstr "Toon QSO met QSL-type" #: application/views/awards/iota/index.php:62 #: application/views/awards/itu/index.php:57 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2543 +#: application/views/interface_assets/footer.php:2641 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -5669,6 +5678,7 @@ msgstr "" #: application/views/awards/dxcc/index.php:28 #: application/views/awards/wpx/index.php:13 +#: application/views/gridmap/index.php:16 #: application/views/logbookadvanced/index.php:221 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" @@ -5686,12 +5696,12 @@ msgstr "Inclusief verwijderd" #: application/views/awards/dxcc/index.php:97 #: application/views/awards/iota/index.php:88 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:88 +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:89 #: application/views/logbookadvanced/edit.php:217 #: application/views/logbookadvanced/index.php:408 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 -#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:425 +#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:426 #: application/views/view_log/qso.php:350 msgid "Antarctica" msgstr "Antarctica" @@ -5699,12 +5709,12 @@ msgstr "Antarctica" #: application/views/awards/dxcc/index.php:101 #: application/views/awards/iota/index.php:92 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:87 +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:88 #: application/views/logbookadvanced/edit.php:216 #: application/views/logbookadvanced/index.php:407 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 -#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:424 +#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:425 #: application/views/view_log/qso.php:347 msgid "Africa" msgstr "Afrika" @@ -5712,12 +5722,12 @@ msgstr "Afrika" #: application/views/awards/dxcc/index.php:105 #: application/views/awards/iota/index.php:96 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:89 +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:90 #: application/views/logbookadvanced/edit.php:219 #: application/views/logbookadvanced/index.php:410 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 -#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:426 +#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:427 #: application/views/view_log/qso.php:353 msgid "Asia" msgstr "Azië" @@ -5725,12 +5735,12 @@ msgstr "Azië" #: application/views/awards/dxcc/index.php:109 #: application/views/awards/iota/index.php:100 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:90 +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:91 #: application/views/logbookadvanced/edit.php:220 #: application/views/logbookadvanced/index.php:411 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 -#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:427 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:428 #: application/views/view_log/qso.php:356 msgid "Europe" msgstr "Europa" @@ -5738,12 +5748,12 @@ msgstr "Europa" #: application/views/awards/dxcc/index.php:113 #: application/views/awards/iota/index.php:104 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:91 +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:92 #: application/views/logbookadvanced/edit.php:218 #: application/views/logbookadvanced/index.php:409 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 -#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:428 +#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:429 #: application/views/view_log/qso.php:359 msgid "North America" msgstr "Noord-Amerika" @@ -5751,12 +5761,12 @@ msgstr "Noord-Amerika" #: application/views/awards/dxcc/index.php:117 #: application/views/awards/iota/index.php:108 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:93 +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:94 #: application/views/logbookadvanced/edit.php:221 #: application/views/logbookadvanced/index.php:412 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 -#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:430 +#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:431 #: application/views/view_log/qso.php:365 msgid "South America" msgstr "Zuid-Amerika" @@ -5764,12 +5774,12 @@ msgstr "Zuid-Amerika" #: application/views/awards/dxcc/index.php:121 #: application/views/awards/iota/index.php:112 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:92 +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:93 #: application/views/logbookadvanced/edit.php:222 #: application/views/logbookadvanced/index.php:413 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 -#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:429 +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:430 #: application/views/view_log/qso.php:362 msgid "Oceania" msgstr "Oceanië" @@ -6086,7 +6096,7 @@ msgstr "Toon IOTA-kaart" #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 #: application/views/contesting/index.php:64 -#: application/views/contesting/index.php:228 +#: 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:782 @@ -6114,13 +6124,14 @@ msgstr "Verwijderd" #: application/views/awards/itu/index.php:3 #: application/views/awards/itu/index.php:151 +#: application/views/gridmap/index.php:201 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 #: application/views/logbookadvanced/index.php:349 #: application/views/logbookadvanced/index.php:827 #: application/views/logbookadvanced/useroptions.php:118 #: application/views/lookup/index.php:8 application/views/qso/edit_ajax.php:316 -#: application/views/qso/index.php:460 +#: application/views/qso/index.php:461 #: application/views/search/ituzones_result.php:13 #: application/views/station_profile/create.php:124 #: application/views/station_profile/edit.php:174 @@ -6217,7 +6228,7 @@ msgid "City" msgstr "Woonplaats" #: application/views/awards/jcc/index.php:188 -#: application/views/dashboard/index.php:447 +#: application/views/dashboard/index.php:452 #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 @@ -6267,7 +6278,7 @@ msgstr "" "Velden genomen voor deze Award: POTA_REF (moet Park-Referentie bevatten)" #: application/views/awards/pota/index.php:32 -#: application/views/qso/index.php:274 application/views/qso/index.php:567 +#: application/views/qso/index.php:274 application/views/qso/index.php:568 #: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:276 #: application/views/user/edit.php:674 application/views/view_log/qso.php:403 @@ -6507,7 +6518,7 @@ msgstr "Awards - Worked All Continents (WAC)" #: application/views/logbookadvanced/index.php:866 #: application/views/logbookadvanced/useroptions.php:170 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 -#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:422 #: application/views/view_log/qso.php:342 msgid "Continent" msgstr "Continent" @@ -6795,7 +6806,7 @@ msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" msgstr "Velden genomen voor deze Award: WWFF (ADIF: WWFF_REF)" #: application/views/awards/wwff/index.php:32 -#: application/views/qso/index.php:262 application/views/qso/index.php:554 +#: application/views/qso/index.php:262 application/views/qso/index.php:555 #: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:263 #: application/views/user/edit.php:670 application/views/view_log/qso.php:396 @@ -6870,7 +6881,7 @@ msgstr "Bandlijst" msgid "None" msgstr "Geen" -#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:84 +#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:85 msgid "Spots de" msgstr "Spotters uit" @@ -6882,40 +6893,46 @@ msgstr "Pop-up werd geblokkeerd! Sta pop-ups voor deze site permanent toe." msgid "Click to prepare logging." msgstr "Klik om de logging voor te bereiden." -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:70 +#: application/views/contesting/index.php:160 +#: application/views/qso/index.php:353 +msgid "WebSocket (Requires WLGate>1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "DXCC-status" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "Niet gewerkt" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "Gewerkt maar niet bevestigd" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "Spraak" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "CW" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "Digitaal" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "WAC" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "Spotter" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6923,7 +6940,7 @@ msgstr "Spotter" msgid "Message" msgstr "Bericht" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "Laatst gewerkt" @@ -7338,7 +7355,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7401,7 +7418,7 @@ msgstr "Ja" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7448,7 +7465,7 @@ msgid "No contests were found in your log." msgstr "Er werden geen contesten in je logboek gevonden." #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "Alles behalve SAT" @@ -7807,7 +7824,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "Geen aankomende activaties gevonden. Kom later terug." #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7872,10 +7889,10 @@ msgid "Show Details" msgstr "Details weergeven" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "Vandaag" @@ -8035,7 +8052,7 @@ msgstr "Serienummer + Locatorvak + Uitwisseling" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "Operator roepnaam" @@ -8116,54 +8133,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "Serienummer" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "Serienummer (S)" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "Locatorvak (S)" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "Verz (S)" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "Serienummer (R)" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "Locatorvak (R)" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "Ontv (R)" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "Wis QSO" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "Bewaar QSO" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "Aanbevelingen voor roepnamen" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "Contest Logboek" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "VUCC Locatorvak" @@ -8334,7 +8351,7 @@ msgstr "Alleen QSOs met SOTA-informatie worden geëxporteerd!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "Propagattie Mode" @@ -8427,46 +8444,63 @@ msgstr "" "Je hebt thema's zonder gedefinieerde themamodus. Vraag de beheerder om de " "thema's te bewerken." -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" -msgstr "Ten minste één van je %sLoTW-certificaten%s is verlopen!" - -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" msgstr "" -"Ten minste een van je %sLoTW-certificaten%s staat op het punt te verlopen!" +"LoTW-waarschuwing: Er is een probleem met ten minste één van je %sLoTW-" +"certificaten%s!" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" +msgstr "Minstens één van je certificaten is verlopen" + +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "Ten minste een van je certificaten verloopt" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" +"De QSO-einddatum van ten minste één van je certificaten is overschreden" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" +"De QSO-einddatum van ten minste één van je certificaten dreigt te worden " +"overschreden" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" msgstr[0] "Max. %d vorige contacten worden getoond" msgstr[1] "Max. %d vorige contacten worden getoond" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "QSOs overzicht" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "DXCC's overzicht" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "Nodig" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8477,7 +8511,7 @@ msgstr "Nodig" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8500,10 +8534,10 @@ msgstr "Nodig" msgid "Sent" msgstr "Verzonden" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8536,7 +8570,7 @@ msgstr "Verzonden" msgid "Received" msgstr "Ontvangen" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8562,7 +8596,7 @@ msgstr "Ontvangen" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8576,25 +8610,25 @@ msgstr "Ontvangen" msgid "Requested" msgstr "Aangevraagd" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "Logbook of The World" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "VUCC-Vakken" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "Zondata & Propagatie" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "Laatste update om %s." -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "Gegevens verstrekt door HAMqsl." @@ -8765,12 +8799,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "De volgende automatische synchronisatie met DCL zal plaatsvinden om: " #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "Handmatige synchronisatie" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "bezig..." @@ -9132,6 +9166,7 @@ msgstr "DXCC-update van Club Log" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "Bijwerken" @@ -9172,11 +9207,15 @@ msgstr "Radioamateurs van belang update" msgid "HAMqsl" msgstr "HAMqsl" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "VUCC-Vakken" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "QSO-DB Onderhoud" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -9184,141 +9223,141 @@ msgid_plural "" msgstr[0] "De database bevat %d QSO zonder een stationsprofiel (locatie)" msgstr[1] "De database bevat %d QSO's zonder een station-profiel (locatie)" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "Markeer QSOs en wijs ze opnieuw toe aan een bestaande stationslocatie:" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "Doellocatie" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "Opnieuw toewijzen" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Elke QSO in je database is toegewezen aan een stationsprofiel (locatie)" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "Alles oké" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "Albanees" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "Armeens" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "Bosnisch" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "Bulgaars" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "Chinees (Vereenvoudigd)" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "Kroatisch" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "Tsjechisch" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "Nederlands" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "Engels" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "Estisch" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "Fins" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "Frans" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "Duits" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "Grieks" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "Hongaars" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "Italiaans" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "Japans" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "Lets" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "Litouws" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "Montenegrijnse" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "Pools" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "Portugees" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "Russisch" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "Servisch" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "Slowaaks" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "Sloveens" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "Spaans" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "Zweeds" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "Turks" @@ -9779,10 +9818,10 @@ msgid "QSL Date" msgstr "QSL Datum" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9888,7 +9927,7 @@ msgid "Worked not confirmed" msgstr "Gewerkt maar niet bevestigd" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "Wissen" @@ -10088,62 +10127,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Locatorvakken" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "Je bent niet ingelogd. Gelieve %sinloggen%s" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "locatorvak" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "Totaal aantal" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "QSL-kaart voor " -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Waarschuwing! Weet je zeker dat je deze QSL-kaart wilt verwijderen?" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL-kaart" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "eQSL-kaart voor " -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "QSL-afbeeldingsbestand" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "Voorkant QSL-kaart:" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "Achterkant QSL-kaart:" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "Voeg extra QSOs toe aan een QSL-kaart" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "Er is iets misgegaan. Probeer het opnieuw!" @@ -10746,7 +10785,7 @@ msgstr "Zendvermogen" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "Regio" @@ -10866,7 +10905,7 @@ msgstr "Geverifieerd" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10887,7 +10926,7 @@ msgstr "Direct" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10906,7 +10945,7 @@ msgstr "Bureau" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10921,49 +10960,49 @@ msgstr "Elektronisch" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Manager" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "GEEN" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "Afrikaans Italië" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "Beren Eiland" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "Europees Turkije" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "ITU Wenen" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "Kosovo" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "Shetlandeilanden" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "Sicilië" @@ -11136,7 +11175,7 @@ msgstr "QSL verzonden" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -11173,7 +11212,7 @@ msgstr "In de wachtrij geplaatst" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11623,38 +11662,42 @@ msgstr "Vervaldatum" msgid "Last Upload" msgstr "Last upload" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "Verlopen" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "Verloopt" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" -msgstr "Geldig" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" +msgstr "Certificaat verlopen" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "Certificaat verloopt" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "Certificaat geldig" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "Datum voor laatste QSO nadert" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "Laatste succes: %s" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "Laatste mislukking: %s" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "Niet gesynchroniseerd" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" "Je moet enkele LoTW p12-certificaten uploaden om dit gebied te gebruiken." -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "De volgende automatische synchronisatie met LoTW zal plaatsvinden op: " @@ -12253,7 +12296,7 @@ msgstr "Is er nog extra informatie die we moeten weten?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -12301,7 +12344,7 @@ msgstr "Station" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12869,20 +12912,12 @@ msgstr "Plaatsen op Bluesky" msgid "Toot on Mastodon" msgstr "Toet op Mastodon" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "Functie %d - Naam" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "Functie %d - Macro" @@ -12907,11 +12942,11 @@ msgstr "RX Frequentie" msgid "RX Band" msgstr "RX-band" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Geef vermogen in Watt. Vermeld alleen cijfers." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12921,25 +12956,25 @@ msgstr "Vermogen (W)" msgid "Used for VUCC MultiGrids" msgstr "Gebruikt voor VUCC MultiGrids" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "Antennepad" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "Grijze lijn" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "Andere" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "Korte pad" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "Lange pad" @@ -12952,38 +12987,38 @@ msgstr "Satellietnaam" msgid "Sat Mode" msgstr "Satellietmodus" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "Antenna-azimut (°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "Antenne-azimut in decimale graden." -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "Antenne Elevatie (°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "Antenne-elevatie in decimale graden." -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "Station County" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "SIG-info" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "Opmerking: Wordt geëxporteerd naar diensten van derden." @@ -12992,8 +13027,8 @@ msgid "Sent Method" msgstr "Verzendmethode" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "Methode" @@ -13014,7 +13049,7 @@ msgstr "Geverifieerd (Komt overeen)" msgid "Received Method" msgstr "Ontvangen methode" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "Haal het standaardbericht voor eQSL op, voor dit station." @@ -13058,7 +13093,7 @@ msgstr "Wijzigingen opslaan" msgid "TimeOff is less than TimeOn" msgstr "TimeOff is minder dan TimeOn" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "Eerdere verbindingen" @@ -13125,7 +13160,7 @@ msgstr "Eindtijd" msgid "Search DXCluster for latest Spot" msgstr "Zoek DXCluster voor de laatste spotter rapport" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -13133,7 +13168,7 @@ msgstr "Zoek DXCluster voor de laatste spotter rapport" msgid "IOTA Reference" msgstr "IOTA Referentie" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -13141,91 +13176,95 @@ msgstr "IOTA Referentie" msgid "SOTA Reference" msgstr "SOTA Referentie" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "Frequentie (RX)" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "Band (RX)" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "Bijvoorbeeld: GM/NS-001." -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "Bijvoorbeeld: DLFF-0069." -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "Bijvoorbeeld: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "Bijvoorbeeld: GMA" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "Bijvoorbeeld: DA/NW-357" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "Bijvoorbeeld: Q03" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "E-mailadres van QSO-partner" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "Satelliet Naam" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "Satelliet Mode" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "QSL Bericht" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "Opnieuw instellen naar standaard" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "Verbinden" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "Stoppen" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "Afstemmen" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "Stop afstemmen" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "CW-snelheid" -#: application/views/qso/index.php:769 +#: application/views/qso/index.php:778 +msgid "Stop" +msgstr "Stoppen" + +#: application/views/qso/index.php:779 +msgid "Tune" +msgstr "Afstemmen" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "Stop afstemmen" + +#: application/views/qso/index.php:785 +msgid "Enter text..." +msgstr "Voer tekst in..." + +#: application/views/qso/index.php:786 msgid "Send" msgstr "Zend" -#: application/views/qso/index.php:779 +#: application/views/qso/index.php:798 msgid "Suggestions" msgstr "Suggesties" -#: application/views/qso/index.php:786 +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "Profielfoto" @@ -14621,6 +14660,7 @@ msgid "Special Interest Group Information" msgstr "Informatie over Special Interest Group" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Problemen? Raadpleeg de %swiki%s." @@ -15733,10 +15773,6 @@ msgstr "URL van Mastodonserver" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "Hoofd-URL van je Mastodon-server, bijv. %s" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "Experimenteel" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "Winkeyer" @@ -16475,6 +16511,29 @@ msgstr "Verzoek indienen" msgid "Rcvd" msgstr "Ontvangen" +#, php-format +#~ msgctxt "LoTW Warning" +#~ msgid "At least one of your %sLoTW certificates%s is expired!" +#~ msgstr "Ten minste één van je %sLoTW-certificaten%s is verlopen!" + +#, php-format +#~ msgctxt "LoTW Warning" +#~ msgid "At least one of your %sLoTW certificates%s is about to expire!" +#~ msgstr "" +#~ "Ten minste een van je %sLoTW-certificaten%s staat op het punt te verlopen!" + +#~ msgid "Expired" +#~ msgstr "Verlopen" + +#~ msgid "Expiring" +#~ msgstr "Verloopt" + +#~ msgid "Valid" +#~ msgstr "Geldig" + +#~ msgid "Experimental" +#~ msgstr "Experimenteel" + #, php-format #~ msgctxt "Dashboard Warning" #~ msgid "" diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.mo b/application/locale/pl_PL/LC_MESSAGES/messages.mo index 6620f30c3..91482a10c 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 5456c7f7a..5e0d52ca1 100644 --- a/application/locale/pl_PL/LC_MESSAGES/messages.po +++ b/application/locale/pl_PL/LC_MESSAGES/messages.po @@ -11,11 +11,12 @@ # Fabian Berg , 2025. # Szymon Porwolik , 2025. # Szymon , 2025. +# notzaleewa , 2025. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" -"PO-Revision-Date: 2025-10-08 00:36+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" +"PO-Revision-Date: 2025-10-18 06:44+0000\n" "Last-Translator: Szymon \n" "Language-Team: Polish \n" @@ -79,9 +80,9 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:79 application/controllers/Lotw.php:105 -#: application/controllers/Lotw.php:375 application/controllers/Lotw.php:398 -#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:839 -#: application/controllers/Lotw.php:944 application/controllers/Mode.php:15 +#: application/controllers/Lotw.php:383 application/controllers/Lotw.php:406 +#: application/controllers/Lotw.php:763 application/controllers/Lotw.php:847 +#: application/controllers/Lotw.php:952 application/controllers/Mode.php:15 #: application/controllers/Notes.php:11 application/controllers/Options.php:14 #: application/controllers/Oqrs.php:15 application/controllers/Oqrs.php:165 #: application/controllers/Qrbcalc.php:13 application/controllers/Qrz.php:200 @@ -90,8 +91,8 @@ msgstr "" #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:187 -#: application/controllers/Qso.php:287 application/controllers/Qso.php:308 -#: application/controllers/Qso.php:331 application/controllers/Qso.php:629 +#: application/controllers/Qso.php:318 application/controllers/Qso.php:339 +#: application/controllers/Qso.php:362 application/controllers/Qso.php:662 #: application/controllers/Radio.php:32 application/controllers/Radio.php:291 #: application/controllers/Radio.php:317 application/controllers/Radio.php:333 #: application/controllers/Reg1test.php:17 @@ -149,7 +150,7 @@ msgstr "Mapa aktywowanych lokatorów" #: application/controllers/Activated_gridmap.php:31 #: application/controllers/Awards.php:1003 #: application/controllers/Awards.php:1035 -#: application/controllers/Gridmap.php:31 +#: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 #: application/views/interface_assets/footer.php:47 @@ -159,13 +160,13 @@ msgid "Gridsquares" msgstr "Lokatory" #: application/controllers/Activated_gridmap.php:32 -#: application/controllers/Gridmap.php:32 +#: application/controllers/Gridmap.php:33 #: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "Potwierdzone lokatory" #: application/controllers/Activated_gridmap.php:33 -#: application/controllers/Gridmap.php:33 +#: application/controllers/Gridmap.php:34 #: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "Niepotwierdzone lokatory" @@ -175,25 +176,25 @@ msgid "Total gridsquares activated" msgstr "Razem aktywowanych lokatorów" #: application/controllers/Activated_gridmap.php:36 -#: application/controllers/Gridmap.php:36 +#: application/controllers/Gridmap.php:37 #: application/controllers/Visitor.php:390 msgid "Fields" msgstr "Pola" #: application/controllers/Activated_gridmap.php:37 -#: application/controllers/Gridmap.php:37 +#: application/controllers/Gridmap.php:38 #: application/controllers/Visitor.php:391 msgid "Fields confirmed" msgstr "Pola potwierdzone" #: application/controllers/Activated_gridmap.php:38 -#: application/controllers/Gridmap.php:38 +#: application/controllers/Gridmap.php:39 #: application/controllers/Visitor.php:392 msgid "Fields not confirmed" msgstr "Pola niepotwierdzone" #: application/controllers/Activated_gridmap.php:39 -#: application/controllers/Gridmap.php:39 +#: application/controllers/Gridmap.php:40 #: application/controllers/Visitor.php:393 msgid "Total fields worked" msgstr "Suma zaliczonych pól" @@ -343,13 +344,13 @@ msgstr "Nagrody - %s" #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:401 application/views/qso/index.php:302 -#: application/views/qso/index.php:593 application/views/user/edit.php:682 +#: application/views/qso/index.php:594 application/views/user/edit.php:682 #: application/views/view_log/qso.php:460 msgid "DOK" msgstr "DOK" #: application/controllers/Awards.php:176 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:130 application/views/bands/index.php:50 +#: application/views/bandmap/list.php:131 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:180 @@ -362,7 +363,7 @@ msgstr "DOK" #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 -#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:402 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 #: application/views/search/result.php:27 @@ -565,7 +566,7 @@ msgstr "Fred Fish Memorial Award (FFMA)" #: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:286 -#: application/views/qso/index.php:579 application/views/user/edit.php:678 +#: application/views/qso/index.php:580 application/views/user/edit.php:678 #: application/views/view_log/qso.php:425 #: application/views/view_log/qso.php:736 msgid "SIG" @@ -602,7 +603,7 @@ msgstr "73 on 73" #: application/controllers/Awards.php:2281 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" -msgstr "" +msgstr "WPX" #: application/controllers/Backup.php:15 application/views/backup/main.php:14 #: application/views/interface_assets/header.php:318 @@ -830,7 +831,7 @@ msgstr "Edytuj zadanie cron" #: application/views/debug/index.php:539 application/views/debug/index.php:544 #: application/views/debug/index.php:549 application/views/debug/index.php:554 #: application/views/debug/index.php:559 application/views/debug/index.php:564 -#: application/views/debug/index.php:569 +#: application/views/debug/index.php:569 application/views/debug/index.php:574 msgid "never" msgstr "nigdy" @@ -887,7 +888,7 @@ msgstr "Nie działa" msgid "SOTA CSV Export" msgstr "Eksport CSV SOTA" -#: application/controllers/Dashboard.php:152 +#: application/controllers/Dashboard.php:154 #: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "Panel użytkownika" @@ -940,35 +941,35 @@ msgstr "Nie znaleziono profili stacji do przesłania do DCL" msgid "Key(s) Deleted." msgstr "Klucz(e) usunięto." -#: application/controllers/Debug.php:117 +#: application/controllers/Debug.php:118 msgid "Debug" msgstr "Informacje debug" -#: application/controllers/Debug.php:156 +#: application/controllers/Debug.php:157 msgid "Migrate data now" msgstr "Migruj dane teraz" -#: application/controllers/Debug.php:159 +#: application/controllers/Debug.php:160 msgid "Migration already done. Run again?" msgstr "Migracja była już wykonana. Uruchomić ponownie?" -#: application/controllers/Debug.php:163 +#: application/controllers/Debug.php:164 msgid "No data to migrate" msgstr "Brak danych do migracji" -#: application/controllers/Debug.php:167 application/controllers/Debug.php:172 +#: application/controllers/Debug.php:168 application/controllers/Debug.php:173 msgid "No migration possible" msgstr "Migracja niemożliwa" -#: application/controllers/Debug.php:237 +#: application/controllers/Debug.php:238 msgid "Wavelog was updated successfully!" msgstr "Wavelog został zaktualizowany pomyślnie!" -#: application/controllers/Debug.php:255 +#: application/controllers/Debug.php:256 msgid "Selfupdate() not available. Check the Error Log." msgstr "Selfupdate() niedostępne. Należy sprawdzić dziennik błędów." -#: application/controllers/Debug.php:299 +#: application/controllers/Debug.php:300 msgid "" "File Migration was successfull, but please check also manually. If " "everything seems right you can delete the folders 'assets/qslcard' and " @@ -978,7 +979,7 @@ msgstr "" "ręcznie. Jeśli wszystko wydaje się w porządku, można usunąć foldery 'assets/" "qslcard' i 'images/eqsl_card_images'." -#: application/controllers/Debug.php:302 +#: application/controllers/Debug.php:303 msgid "File Migration failed. Please check the Error Log." msgstr "Migracja plików nie powiodła się. Należy sprawdzić dziennik błędów." @@ -1019,7 +1020,7 @@ msgid "DX Calendar" msgstr "Kalendarz DX" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:404 +#: application/views/dashboard/index.php:409 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:310 msgid "eQSL Cards" @@ -1079,7 +1080,7 @@ msgstr "Ostatnie potwierdzenia" msgid "Gridsquare Map" msgstr "Mapa lokatorów" -#: application/controllers/Gridmap.php:34 +#: application/controllers/Gridmap.php:35 #: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "Suma zaliczonych lokatorów" @@ -1285,7 +1286,7 @@ msgstr "Dziennik łączności" #: application/views/awards/wapc/index.php:44 #: application/views/awards/was/index.php:56 #: application/views/awards/wpx/index.php:28 -#: application/views/gridmap/index.php:101 +#: application/views/gridmap/index.php:141 #: application/views/logbookadvanced/index.php:794 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/oqrs/qsolist.php:12 @@ -1317,8 +1318,8 @@ msgstr "QSL" #: application/views/awards/wapc/index.php:48 #: application/views/awards/was/index.php:60 #: application/views/awards/wpx/index.php:32 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:109 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:149 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 @@ -1354,8 +1355,8 @@ msgstr "LoTW" #: application/views/awards/wapc/index.php:52 #: application/views/awards/was/index.php:64 #: application/views/awards/wpx/index.php:36 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:117 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:157 #: application/views/logbookadvanced/useroptions.php:78 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 @@ -1397,23 +1398,23 @@ msgstr "eQSL" #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:110 -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:136 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 #: application/views/contesting/index.php:118 -#: application/views/contesting/index.php:264 +#: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:597 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 -#: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 -#: application/views/kml/index.php:31 +#: application/views/gridmap/index.php:104 +#: application/views/hamsat/index.php:33 application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:12 #: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/index.php:764 @@ -1463,8 +1464,8 @@ msgstr "Emisja" #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:179 -#: application/views/contesting/index.php:265 +#: application/views/contesting/index.php:180 +#: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 #: application/views/logbookadvanced/index.php:767 #: application/views/logbookadvanced/useroptions.php:38 @@ -1492,8 +1493,8 @@ msgstr "RST (S)" #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 -#: application/views/contesting/index.php:203 -#: application/views/contesting/index.php:266 +#: application/views/contesting/index.php:204 +#: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 #: application/views/logbookadvanced/index.php:770 #: application/views/logbookadvanced/useroptions.php:42 @@ -1601,9 +1602,9 @@ msgstr "Stan" #: application/views/awards/gridmaster/index.php:50 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:26 -#: application/views/contesting/index.php:271 +#: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 -#: application/views/gridmap/index.php:152 +#: application/views/gridmap/index.php:193 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 @@ -1647,7 +1648,7 @@ msgstr "Lokator" #: application/views/dashboard/index.php:14 #: application/views/distancerecords/index.php:15 #: application/views/distances/index.php:13 -#: application/views/gridmap/index.php:154 +#: application/views/gridmap/index.php:195 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 #: application/views/logbookadvanced/index.php:869 @@ -1696,17 +1697,17 @@ msgstr "Odległość" #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:96 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:97 #: application/views/bands/create.php:24 application/views/bands/edit.php:7 #: application/views/bands/index.php:47 application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:263 +#: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:593 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:598 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 -#: application/views/gridmap/index.php:10 application/views/kml/index.php:19 +#: application/views/gridmap/index.php:26 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:6 #: application/views/logbookadvanced/index.php:281 #: application/views/logbookadvanced/index.php:773 @@ -1754,7 +1755,7 @@ msgid "Band" msgstr "Pasmo" #: application/controllers/Logbook.php:1324 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:128 +#: application/controllers/Radio.php:45 application/views/bandmap/list.php:129 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:776 @@ -1813,9 +1814,9 @@ msgstr "Operator" #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:252 #: application/views/lookup/index.php:47 -#: application/views/lotw_views/index.php:49 +#: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 -#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:411 #: application/views/station_profile/create.php:77 #: application/views/station_profile/edit.php:109 #: application/views/stationsetup/linkedlocations.php:17 @@ -1856,11 +1857,11 @@ msgstr "Zaimportowano certyfikat." msgid "Certificate Updated." msgstr "Zaktualizowano certyfikat." -#: application/controllers/Lotw.php:381 +#: application/controllers/Lotw.php:389 msgid "Certificate Deleted." msgstr "Usunięto certyfikat." -#: application/controllers/Lotw.php:410 +#: application/controllers/Lotw.php:418 #, php-format msgid "" "Found no certificate in file %s. If the filename contains 'key-only' this is " @@ -1870,52 +1871,52 @@ msgstr "" "jest to zazwyczaj żądanie certyfikatu, które nie zostało jeszcze " "przetworzone przez LoTW." -#: application/controllers/Lotw.php:646 +#: application/controllers/Lotw.php:654 msgid "LoTW ADIF Information" msgstr "Informacje ADIF LoTW" -#: application/controllers/Lotw.php:812 application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:820 application/controllers/Lotw.php:823 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "Dla użytkownika %s: %s logowanie do LoTW nie powiodło się." -#: application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:823 msgid "Username/password incorrect" msgstr "Nieprawidłowa nazwa użytkownika/hasło" -#: application/controllers/Lotw.php:818 +#: application/controllers/Lotw.php:826 msgid "LoTW login OK!" msgstr "Logowanie do LoTW OK!" -#: application/controllers/Lotw.php:822 +#: application/controllers/Lotw.php:830 msgid "LoTW currently not available. Try again later." msgstr "LoTW jest obecnie niedostępne. Spróbuj ponownie później." -#: application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 msgid "No LoTW credentials provided." msgstr "Nie podano danych uwierzytelniających LoTW." -#: application/controllers/Lotw.php:845 +#: application/controllers/Lotw.php:853 msgid "LoTW ADIF Import" msgstr "Import ADIF LoTW" -#: application/controllers/Lotw.php:871 application/controllers/Lotw.php:979 +#: application/controllers/Lotw.php:879 application/controllers/Lotw.php:987 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Nie zdefiniowano danych logowania ARRL LoTW!" -#: application/controllers/Lotw.php:946 +#: application/controllers/Lotw.php:954 msgid "LoTW .TQ8 Upload" msgstr "Przesyłanie .TQ8 LoTW" -#: application/controllers/Lotw.php:1024 +#: application/controllers/Lotw.php:1032 msgid "Your ARRL username and/or password is incorrect." msgstr "Nazwa użytkownika i/lub hasło ARRL jest niepoprawna." -#: application/controllers/Lotw.php:1043 application/controllers/Lotw.php:1048 +#: application/controllers/Lotw.php:1051 application/controllers/Lotw.php:1056 msgid "LoTW .TQ8 Sent" msgstr "Przesłano LoTW .TQ8" -#: application/controllers/Lotw.php:1055 +#: application/controllers/Lotw.php:1063 msgid "LoTW .TQ8 Not Sent" msgstr "Nie przesłano LoTW .TQ8" @@ -1936,7 +1937,7 @@ msgstr "Edytuj emisję" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:409 application/views/qso/index.php:71 -#: application/views/qso/index.php:642 application/views/view_log/qso.php:14 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:14 #: application/views/view_log/qso.php:749 msgid "Notes" msgstr "Notatki" @@ -2204,8 +2205,8 @@ msgstr "Import QSL QRZ" msgid "QRZ ADIF Information" msgstr "Informacje ADIF QRZ" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:356 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:361 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:287 msgid "QSL Cards" @@ -2227,15 +2228,15 @@ msgstr "Wydruk żądanych QSL" msgid "Add QSO" msgstr "Dodaj QSO" -#: application/controllers/Qso.php:690 +#: application/controllers/Qso.php:723 msgid "You have to be logged in to access this URL." msgstr "Należy być zalogowanym, aby uzyskać dostęp do tej strony." -#: application/controllers/Qso.php:696 +#: application/controllers/Qso.php:729 msgid "Call Transfer" msgstr "Przekazywanie znaków wywoławczych" -#: application/controllers/Qso.php:703 +#: application/controllers/Qso.php:736 msgid "No callsign provided." msgstr "Nie podano znaku wywoławczego." @@ -2265,7 +2266,7 @@ msgid "Options" msgstr "Opcje" #: application/controllers/Radio.php:50 application/views/debug/index.php:312 -#: application/views/qso/index.php:749 +#: application/views/qso/index.php:750 msgid "Settings" msgstr "Ustawienia" @@ -2274,8 +2275,8 @@ msgid "UNKNOWN" msgstr "NIEZNANE" #: application/controllers/Radio.php:98 -#: application/views/contesting/index.php:161 -#: application/views/qso/index.php:354 +#: application/views/contesting/index.php:162 +#: application/views/qso/index.php:355 msgid "last updated" msgstr "ostatnia aktualizacja" @@ -2313,13 +2314,13 @@ msgstr "Edytuj" #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:63 -#: application/views/interface_assets/footer.php:2802 -#: application/views/interface_assets/footer.php:2820 -#: application/views/interface_assets/footer.php:2841 -#: application/views/interface_assets/footer.php:2859 +#: application/views/interface_assets/footer.php:2900 +#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:2939 +#: application/views/interface_assets/footer.php:2957 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:734 -#: application/views/lotw_views/index.php:111 +#: application/views/lotw_views/index.php:128 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 #: application/views/qslcard/index.php:76 @@ -2531,7 +2532,7 @@ msgstr "Niedozwolone" #: application/controllers/Stationsetup.php:156 #: application/controllers/Stationsetup.php:177 #: application/controllers/Stationsetup.php:478 -#: application/views/qso/index.php:708 application/views/simplefle/index.php:39 +#: application/views/qso/index.php:709 application/views/simplefle/index.php:39 #: application/views/widgets/on_air.php:102 msgid "Error" msgstr "Błąd" @@ -2829,6 +2830,14 @@ msgstr "Aktualizacja LoTW SAT" msgid "Update of Hams of Note" msgstr "Aktualizacja Hams of Note" +#: application/controllers/Update.php:718 +msgid "VUCC Grid file update complete. Result: " +msgstr "" + +#: application/controllers/Update.php:720 +msgid "VUCC Grid file update failed. Result: " +msgstr "" + #: application/controllers/User.php:50 #: application/views/interface_assets/header.php:306 msgid "User Accounts" @@ -2960,7 +2969,7 @@ msgstr "Użytkownik %s wylogowany." msgid "Station Name" msgstr "Nazwa Stacji" -#: application/controllers/User.php:1262 application/views/debug/index.php:594 +#: application/controllers/User.php:1262 application/views/debug/index.php:599 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:61 #: application/views/station_profile/edit.php:77 @@ -3420,7 +3429,7 @@ msgstr "QSO zaktualizowane" #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 #: application/views/dashboard/index.php:19 -#: application/views/gridmap/index.php:156 +#: application/views/gridmap/index.php:197 #: application/views/logbookadvanced/index.php:15 #: application/views/user/edit.php:256 application/views/user/edit.php:279 #: application/views/user/edit.php:302 application/views/user/edit.php:325 @@ -3521,7 +3530,7 @@ msgid "Accumulated number of WAJA worked" msgstr "Łączna liczba zaliczonych WAJA" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:317 +#: application/views/dashboard/index.php:322 #: application/views/dayswithqso/index.php:42 #: application/views/dayswithqso/index.php:82 #: application/views/statistics/index.php:19 @@ -3538,7 +3547,7 @@ msgid "Yearly" msgstr "Rocznie" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:327 #: application/views/visitor/index.php:255 msgid "Month" msgstr "Miesiąc" @@ -3590,8 +3599,8 @@ msgstr "Różnica" #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:86 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:79 application/views/bandmap/list.php:87 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:113 #: application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 @@ -3614,14 +3623,15 @@ msgstr "Różnica" #: application/views/dxatlas/index.php:60 #: application/views/dxatlas/index.php:82 #: application/views/dxatlas/index.php:94 -#: application/views/gridmap/index.php:13 -#: application/views/gridmap/index.php:28 -#: application/views/gridmap/index.php:41 -#: application/views/gridmap/index.php:70 -#: application/views/gridmap/index.php:83 +#: application/views/gridmap/index.php:29 +#: application/views/gridmap/index.php:44 +#: application/views/gridmap/index.php:78 +#: application/views/gridmap/index.php:93 +#: application/views/gridmap/index.php:107 +#: application/views/gridmap/index.php:121 #: application/views/interface_assets/footer.php:46 -#: application/views/interface_assets/footer.php:1692 -#: application/views/interface_assets/footer.php:1831 +#: application/views/interface_assets/footer.php:1790 +#: application/views/interface_assets/footer.php:1929 #: 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 @@ -3708,7 +3718,7 @@ msgstr "Okres" #: application/views/accumulate/index.php:80 #: application/views/callstats/index.php:65 #: application/views/distances/index.php:53 -#: application/views/gridmap/index.php:38 +#: application/views/gridmap/index.php:41 #: application/views/logbookadvanced/edit.php:14 #: application/views/logbookadvanced/index.php:310 #: application/views/logbookadvanced/index.php:857 @@ -3728,7 +3738,7 @@ msgstr "Wszystkie oprócz SAT" #: application/views/accumulate/index.php:85 #: application/views/callstats/index.php:69 #: application/views/distances/index.php:58 -#: application/views/gridmap/index.php:42 +#: application/views/gridmap/index.php:45 #: application/views/logbookadvanced/edit.php:207 #: application/views/logbookadvanced/edit.php:215 #: application/views/logbookadvanced/index.php:406 @@ -3740,9 +3750,9 @@ msgstr "Brak/Pusty" #: application/views/callstats/index.php:71 application/views/csv/index.php:95 #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 +#: application/views/gridmap/index.php:47 application/views/kml/index.php:80 #: application/views/logbookadvanced/index.php:314 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:477 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:478 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 #: application/views/view_log/qso.php:233 @@ -3754,9 +3764,9 @@ msgstr "Aircraft Scatter" #: application/views/callstats/index.php:72 application/views/csv/index.php:96 #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 +#: application/views/gridmap/index.php:48 application/views/kml/index.php:81 #: application/views/logbookadvanced/index.php:315 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:478 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:479 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 #: application/views/view_log/qso.php:236 @@ -3768,9 +3778,9 @@ msgstr "Aurora" #: application/views/callstats/index.php:73 application/views/csv/index.php:97 #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 +#: application/views/gridmap/index.php:49 application/views/kml/index.php:82 #: application/views/logbookadvanced/index.php:316 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:479 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:480 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 #: application/views/view_log/qso.php:239 @@ -3782,9 +3792,9 @@ msgstr "Aurora-E" #: application/views/callstats/index.php:74 application/views/csv/index.php:98 #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 +#: application/views/gridmap/index.php:50 application/views/kml/index.php:83 #: application/views/logbookadvanced/index.php:317 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:480 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:481 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 #: application/views/view_log/qso.php:242 @@ -3796,9 +3806,9 @@ msgstr "Back scatter" #: application/views/callstats/index.php:75 application/views/csv/index.php:99 #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 +#: application/views/gridmap/index.php:51 application/views/kml/index.php:84 #: application/views/logbookadvanced/index.php:318 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:481 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:482 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 #: application/views/view_log/qso.php:245 @@ -3810,9 +3820,9 @@ msgstr "EchoLink" #: application/views/callstats/index.php:76 application/views/csv/index.php:100 #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 +#: application/views/gridmap/index.php:52 application/views/kml/index.php:85 #: application/views/logbookadvanced/index.php:319 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:482 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:483 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 #: application/views/view_log/qso.php:248 @@ -3824,9 +3834,9 @@ msgstr "Earth-Moon-Earth" #: application/views/callstats/index.php:77 application/views/csv/index.php:101 #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 +#: application/views/gridmap/index.php:53 application/views/kml/index.php:86 #: application/views/logbookadvanced/index.php:320 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:483 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:484 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 #: application/views/view_log/qso.php:251 @@ -3838,9 +3848,9 @@ msgstr "Sporadic E" #: application/views/callstats/index.php:78 application/views/csv/index.php:102 #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 +#: application/views/gridmap/index.php:54 application/views/kml/index.php:87 #: application/views/logbookadvanced/index.php:321 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:484 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:485 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 #: application/views/view_log/qso.php:254 @@ -3852,9 +3862,9 @@ msgstr "Field Aligned Irregularities" #: application/views/callstats/index.php:79 application/views/csv/index.php:103 #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 +#: application/views/gridmap/index.php:55 application/views/kml/index.php:88 #: application/views/logbookadvanced/index.php:322 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:485 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:486 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 #: application/views/view_log/qso.php:257 @@ -3866,9 +3876,9 @@ msgstr "Odbicie F2" #: application/views/callstats/index.php:80 application/views/csv/index.php:104 #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 +#: application/views/gridmap/index.php:56 application/views/kml/index.php:89 #: application/views/logbookadvanced/index.php:323 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:486 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:487 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 #: application/views/view_log/qso.php:260 @@ -3880,9 +3890,9 @@ msgstr "Wspomagana internetowo" #: application/views/callstats/index.php:81 application/views/csv/index.php:105 #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 +#: application/views/gridmap/index.php:57 application/views/kml/index.php:90 #: application/views/logbookadvanced/index.php:324 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:487 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:488 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 #: application/views/view_log/qso.php:263 @@ -3894,9 +3904,9 @@ msgstr "Ionoscatter" #: application/views/callstats/index.php:82 application/views/csv/index.php:106 #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 +#: application/views/gridmap/index.php:58 application/views/kml/index.php:91 #: application/views/logbookadvanced/index.php:325 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:488 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:489 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 #: application/views/view_log/qso.php:266 @@ -3908,9 +3918,9 @@ msgstr "IRLP" #: application/views/callstats/index.php:83 application/views/csv/index.php:107 #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 +#: application/views/gridmap/index.php:59 application/views/kml/index.php:92 #: application/views/logbookadvanced/index.php:326 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:489 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:490 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 #: application/views/view_log/qso.php:269 @@ -3922,9 +3932,9 @@ msgstr "Meteor scatter" #: application/views/callstats/index.php:84 application/views/csv/index.php:108 #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 +#: application/views/gridmap/index.php:60 application/views/kml/index.php:93 #: application/views/logbookadvanced/index.php:327 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:490 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:491 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 #: application/views/view_log/qso.php:272 @@ -3936,9 +3946,9 @@ msgstr "Naziemny lub atmosferyczny przemiennik lub transponder" #: application/views/callstats/index.php:85 application/views/csv/index.php:109 #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 +#: application/views/gridmap/index.php:61 application/views/kml/index.php:94 #: application/views/logbookadvanced/index.php:328 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:491 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:492 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 #: application/views/view_log/qso.php:275 @@ -3950,9 +3960,9 @@ msgstr "Rain scatter" #: application/views/callstats/index.php:86 application/views/csv/index.php:110 #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 +#: application/views/gridmap/index.php:62 application/views/kml/index.php:95 #: application/views/logbookadvanced/index.php:329 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:492 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:493 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 #: application/views/view_log/qso.php:278 @@ -3964,9 +3974,9 @@ msgstr "Satelita" #: application/views/callstats/index.php:87 application/views/csv/index.php:111 #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 +#: application/views/gridmap/index.php:63 application/views/kml/index.php:96 #: application/views/logbookadvanced/index.php:330 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:493 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:494 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 #: application/views/view_log/qso.php:281 @@ -3978,9 +3988,9 @@ msgstr "Trans-equatorial" #: application/views/callstats/index.php:88 application/views/csv/index.php:112 #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 +#: application/views/gridmap/index.php:64 application/views/kml/index.php:97 #: application/views/logbookadvanced/index.php:331 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:494 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:495 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 #: application/views/view_log/qso.php:284 @@ -4035,7 +4045,7 @@ msgstr "Pokaż" #: application/views/components/hamsat/table.php:29 #: application/views/distancerecords/index.php:14 #: application/views/distances/index.php:34 -#: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 +#: application/views/gridmap/index.php:73 application/views/hamsat/index.php:32 #: application/views/interface_assets/header.php:198 #: application/views/logbookadvanced/edit.php:17 #: application/views/logbookadvanced/index.php:292 @@ -4058,7 +4068,7 @@ msgstr "Satelita" #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 -#: application/views/gridmap/index.php:80 +#: application/views/gridmap/index.php:88 #: application/views/logbookadvanced/index.php:301 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 @@ -4071,7 +4081,7 @@ msgstr "Orbita" #: application/views/activated_gridmap/index.php:50 #: application/views/awards/wab/index.php:65 -#: application/views/gridmap/index.php:92 +#: application/views/gridmap/index.php:132 #: application/views/timeline/index.php:52 msgid "Confirmation" msgstr "Potwierdzenie" @@ -4093,24 +4103,24 @@ msgstr "Potwierdzenie" #: application/views/awards/wapc/index.php:56 #: application/views/awards/was/index.php:68 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:125 application/views/user/edit.php:810 +#: application/views/gridmap/index.php:165 application/views/user/edit.php:810 msgid "QRZ.com" msgstr "QRZ.com" #: application/views/activated_gridmap/index.php:86 -#: application/views/gridmap/index.php:130 +#: application/views/gridmap/index.php:17 msgid "Plot" msgstr "Wyświetl" #: application/views/activated_gridmap/index.php:87 -#: application/views/gridmap/index.php:131 +#: application/views/gridmap/index.php:18 msgid "Clear Markers" msgstr "Usuń markery" #: application/views/activated_gridmap/index.php:102 #: application/views/awards/ffma/index.php:31 #: application/views/awards/gridmaster/index.php:46 -#: application/views/gridmap/index.php:148 +#: application/views/gridmap/index.php:189 #: application/views/logbookadvanced/index.php:10 msgid "Latitude" msgstr "Szerokość geograficzna" @@ -4118,7 +4128,7 @@ msgstr "Szerokość geograficzna" #: application/views/activated_gridmap/index.php:104 #: application/views/awards/ffma/index.php:33 #: application/views/awards/gridmaster/index.php:48 -#: application/views/gridmap/index.php:150 +#: application/views/gridmap/index.php:191 #: application/views/logbookadvanced/index.php:11 msgid "Longitude" msgstr "Długość geograficzna" @@ -4179,8 +4189,8 @@ msgstr "Nie znaleziono!" #: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:170 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:244 +#: application/views/contesting/index.php:171 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:249 #: application/views/dcl_views/index.php:27 #: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 @@ -4285,12 +4295,12 @@ msgstr "W logu masz inne dane dla DOK w porównaniu do DCL" #: application/views/awards/pota/index.php:33 #: application/views/awards/sota/index.php:31 #: application/views/awards/wwff/index.php:33 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:25 #: application/views/contesting/index.php:103 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:239 -#: application/views/debug/index.php:589 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:244 +#: application/views/debug/index.php:594 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4331,12 +4341,12 @@ msgstr "Data" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:590 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:247 +#: application/views/debug/index.php:595 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4362,10 +4372,10 @@ msgstr "Godzina" #: application/views/adif/dcl_success.php:31 #: application/views/adif/pota_success.php:31 #: application/views/awards/vucc/band.php:18 -#: application/views/bandmap/list.php:129 -#: application/views/contesting/index.php:262 +#: application/views/bandmap/list.php:130 +#: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:591 application/views/debug/index.php:626 +#: application/views/debug/index.php:596 application/views/debug/index.php:631 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4407,8 +4417,7 @@ msgstr "Import CBR" #: application/views/adif/import.php:73 application/views/adif/import.php:379 #: application/views/adif/import.php:400 application/views/api/index.php:22 #: application/views/dashboard/index.php:180 -#: application/views/dashboard/index.php:209 -#: application/views/dashboard/index.php:214 +#: application/views/dashboard/index.php:213 #: application/views/eqsl/import.php:46 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 #: application/views/options/maptiles.php:48 @@ -4427,7 +4436,7 @@ msgstr "Maksymalny rozmiar przesyłanego pliku to " #: application/views/adif/import.php:349 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:193 application/views/debug/index.php:210 -#: application/views/debug/index.php:581 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:586 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 @@ -4479,6 +4488,8 @@ msgstr "Importuj zduplikowane QSO" #: application/views/adif/import.php:126 msgid "Select if QSOs shall be imported, even if they already exist." msgstr "" +"Zaznacz, jeśli wszystkie QSO mają zostać zaimportowane, nawet jeśli już " +"istnieją." #: application/views/adif/import.php:131 msgid "Use DXCC information from ADIF" @@ -4495,7 +4506,7 @@ msgstr "" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 #: application/views/interface_assets/footer.php:580 -#: application/views/interface_assets/footer.php:2564 +#: application/views/interface_assets/footer.php:2662 msgid "DANGER" msgstr "NIEBEZPIECZEŃSTWO" @@ -4721,7 +4732,7 @@ msgstr "" #: application/views/adif/import.php:399 #: application/views/adif/import_success.php:40 #: application/views/dcl_views/index.php:76 -#: application/views/lotw_views/index.php:137 +#: application/views/lotw_views/index.php:154 msgid "Information" msgstr "Informacje" @@ -5235,7 +5246,7 @@ msgstr "Potwierdzone hrabstwa" #: application/views/awards/wapc/index.php:145 #: application/views/awards/was/index.php:180 #: application/views/awards/wpx/index.php:172 -#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:317 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -5255,7 +5266,8 @@ msgstr "Razem" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:151 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/dxatlas/index.php:80 +#: application/views/gridmap/index.php:199 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 #: application/views/logbookadvanced/index.php:335 @@ -5263,7 +5275,7 @@ msgstr "Razem" #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:308 -#: application/views/qso/index.php:450 +#: application/views/qso/index.php:451 #: application/views/search/cqzones_result.php:13 #: application/views/station_profile/create.php:110 #: application/views/station_profile/edit.php:157 @@ -5326,9 +5338,9 @@ msgstr "Nagrody - CQ WAZ" #: application/views/awards/wab/list.php:6 #: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:81 -#: application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:457 +#: application/views/bandmap/list.php:82 +#: application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:462 #: application/views/interface_assets/footer.php:43 #: application/views/search/result.php:32 #: application/views/visitor/index.php:270 @@ -5338,9 +5350,9 @@ msgstr "Potwierdzone" #: application/views/awards/cq/index.php:35 #: application/views/awards/itu/index.php:35 #: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:80 -#: application/views/dashboard/index.php:335 -#: application/views/dashboard/index.php:451 +#: application/views/bandmap/list.php:81 +#: application/views/dashboard/index.php:340 +#: application/views/dashboard/index.php:456 #: application/views/search/result.php:35 #: application/views/visitor/index.php:266 msgid "Worked" @@ -5418,7 +5430,7 @@ msgstr "Pokaż QSO z typem QSL" #: application/views/awards/iota/index.php:62 #: application/views/awards/itu/index.php:57 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2543 +#: application/views/interface_assets/footer.php:2641 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -5675,6 +5687,7 @@ msgstr "" #: application/views/awards/dxcc/index.php:28 #: application/views/awards/wpx/index.php:13 +#: application/views/gridmap/index.php:16 #: application/views/logbookadvanced/index.php:221 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" @@ -5692,12 +5705,12 @@ msgstr "Licz usunięte" #: application/views/awards/dxcc/index.php:97 #: application/views/awards/iota/index.php:88 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:88 +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:89 #: application/views/logbookadvanced/edit.php:217 #: application/views/logbookadvanced/index.php:408 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 -#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:425 +#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:426 #: application/views/view_log/qso.php:350 msgid "Antarctica" msgstr "Antarktyda" @@ -5705,12 +5718,12 @@ msgstr "Antarktyda" #: application/views/awards/dxcc/index.php:101 #: application/views/awards/iota/index.php:92 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:87 +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:88 #: application/views/logbookadvanced/edit.php:216 #: application/views/logbookadvanced/index.php:407 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 -#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:424 +#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:425 #: application/views/view_log/qso.php:347 msgid "Africa" msgstr "Afryka" @@ -5718,12 +5731,12 @@ msgstr "Afryka" #: application/views/awards/dxcc/index.php:105 #: application/views/awards/iota/index.php:96 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:89 +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:90 #: application/views/logbookadvanced/edit.php:219 #: application/views/logbookadvanced/index.php:410 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 -#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:426 +#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:427 #: application/views/view_log/qso.php:353 msgid "Asia" msgstr "Azja" @@ -5731,12 +5744,12 @@ msgstr "Azja" #: application/views/awards/dxcc/index.php:109 #: application/views/awards/iota/index.php:100 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:90 +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:91 #: application/views/logbookadvanced/edit.php:220 #: application/views/logbookadvanced/index.php:411 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 -#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:427 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:428 #: application/views/view_log/qso.php:356 msgid "Europe" msgstr "Europa" @@ -5744,12 +5757,12 @@ msgstr "Europa" #: application/views/awards/dxcc/index.php:113 #: application/views/awards/iota/index.php:104 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:91 +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:92 #: application/views/logbookadvanced/edit.php:218 #: application/views/logbookadvanced/index.php:409 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 -#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:428 +#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:429 #: application/views/view_log/qso.php:359 msgid "North America" msgstr "Ameryka Północna" @@ -5757,12 +5770,12 @@ msgstr "Ameryka Północna" #: application/views/awards/dxcc/index.php:117 #: application/views/awards/iota/index.php:108 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:93 +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:94 #: application/views/logbookadvanced/edit.php:221 #: application/views/logbookadvanced/index.php:412 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 -#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:430 +#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:431 #: application/views/view_log/qso.php:365 msgid "South America" msgstr "Ameryka Południowa" @@ -5770,12 +5783,12 @@ msgstr "Ameryka Południowa" #: application/views/awards/dxcc/index.php:121 #: application/views/awards/iota/index.php:112 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:92 +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:93 #: application/views/logbookadvanced/edit.php:222 #: application/views/logbookadvanced/index.php:413 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 -#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:429 +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:430 #: application/views/view_log/qso.php:362 msgid "Oceania" msgstr "Oceania" @@ -6090,7 +6103,7 @@ msgstr "Wyświetl mapę IOTA" #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 #: application/views/contesting/index.php:64 -#: application/views/contesting/index.php:228 +#: 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:782 @@ -6118,13 +6131,14 @@ msgstr "Usunięto" #: application/views/awards/itu/index.php:3 #: application/views/awards/itu/index.php:151 +#: application/views/gridmap/index.php:201 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 #: application/views/logbookadvanced/index.php:349 #: application/views/logbookadvanced/index.php:827 #: application/views/logbookadvanced/useroptions.php:118 #: application/views/lookup/index.php:8 application/views/qso/edit_ajax.php:316 -#: application/views/qso/index.php:460 +#: application/views/qso/index.php:461 #: application/views/search/ituzones_result.php:13 #: application/views/station_profile/create.php:124 #: application/views/station_profile/edit.php:174 @@ -6220,7 +6234,7 @@ msgid "City" msgstr "Miasto" #: application/views/awards/jcc/index.php:188 -#: application/views/dashboard/index.php:447 +#: application/views/dashboard/index.php:452 #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 @@ -6270,7 +6284,7 @@ msgstr "" "Pola uwzględnione w tej nagrodzie: POTA_REF (musi zawierać referencje parku)" #: application/views/awards/pota/index.php:32 -#: application/views/qso/index.php:274 application/views/qso/index.php:567 +#: application/views/qso/index.php:274 application/views/qso/index.php:568 #: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:276 #: application/views/user/edit.php:674 application/views/view_log/qso.php:403 @@ -6511,7 +6525,7 @@ msgstr "Nagrody – Worked All Continents (WAC)" #: application/views/logbookadvanced/index.php:866 #: application/views/logbookadvanced/useroptions.php:170 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 -#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:422 #: application/views/view_log/qso.php:342 msgid "Continent" msgstr "Kontynent" @@ -6765,7 +6779,7 @@ msgstr "Wyświetl mapę WAS" #: application/views/awards/wpx/index.php:76 msgid "Band / Satellite / Orbit" -msgstr "" +msgstr "Pasmo / Satelita / Orbita" #: application/views/awards/wpx/wpx_details.php:21 #: application/views/oqrs/showrequests.php:86 @@ -6804,7 +6818,7 @@ msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" msgstr "Pola użyte dla tej nagrody: WWFF (ADIF: WWFF_REF)" #: application/views/awards/wwff/index.php:32 -#: application/views/qso/index.php:262 application/views/qso/index.php:554 +#: application/views/qso/index.php:262 application/views/qso/index.php:555 #: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:263 #: application/views/user/edit.php:670 application/views/view_log/qso.php:396 @@ -6878,7 +6892,7 @@ msgstr "Lista pasma" msgid "None" msgstr "Brak" -#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:84 +#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:85 msgid "Spots de" msgstr "Spoty z" @@ -6892,40 +6906,46 @@ msgstr "" msgid "Click to prepare logging." msgstr "Kliknij, aby przygotować logowanie." -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:70 +#: application/views/contesting/index.php:160 +#: application/views/qso/index.php:353 +msgid "WebSocket (Requires WLGate>1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "Status DXCC" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "Niezaliczone" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "Zaliczono, niepotwierdzone" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "Fonia" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "CW" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "Emisje cyfrowe" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "WAC" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "Spoter" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6933,7 +6953,7 @@ msgstr "Spoter" msgid "Message" msgstr "Wiadomość" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "Ostatnio zaliczono" @@ -7351,7 +7371,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7414,7 +7434,7 @@ msgstr "Tak" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7460,7 +7480,7 @@ msgid "No contests were found in your log." msgstr "Nie znaleziono zawodów w twoim logu." #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "Wszystkie poza satelitarnymi" @@ -7820,7 +7840,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "Brak nadchodzących aktywacji. Należy sprawdzić ponownie później." #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7885,10 +7905,10 @@ msgid "Show Details" msgstr "Wyświetl szczegóły" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "Dzisiaj" @@ -8046,7 +8066,7 @@ msgstr "Numer seryjny + Lokator + Wymiana" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "Znak wywoławczy operatora" @@ -8125,54 +8145,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "Numer" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "Numer (S)" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "Lokator (TX)" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "Wymiana (S)" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "Numer (R)" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "Lokator (RX)" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "Wymiana (R)" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "Wyczyść łączność" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "Zapisz łączność" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "Podpowiadanie znaków" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "Dziennik zawodów" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "Lokator VUCC" @@ -8343,7 +8363,7 @@ msgstr "Wyeksportowane zostaną tylko QSO z informacjami SOTA!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "Typ propagacji" @@ -8395,12 +8415,16 @@ msgid "" "Your active station location is not linked to your active station logbook. " "Click %shere%s to do it." msgstr "" +"Lokalizacja twojej stacji nie jest powiązana z aktywnym dziennikiem. Kliknij " +"%stutaj%s, aby to zrobić." #: application/views/dashboard/index.php:163 #, php-format msgctxt "Dashboard Warning" msgid "You have no station linked to your logbook. Click %shere%s to do it." msgstr "" +"Żadna stacja nie jest powiązana z twoim dziennikiem. Kliknij %stutaj%s, aby " +"to zrobić." #: application/views/dashboard/index.php:173 #, php-format @@ -8435,21 +8459,33 @@ msgstr "" "Masz motywy bez zdefiniowanego trybu motywu. Poproś administratora o edycję " "motywów." -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" -msgstr "Przynajmniej jeden z twoich %scertyfikatów LoTW%s utracił ważność!" - -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" msgstr "" -"Przynajmniej jeden z twoich %scertyfikatów LoTW%s niedługo straci ważność!" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" +msgstr "" + +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8457,25 +8493,25 @@ msgstr[0] "Maksymalnie jeden poprzedni kontakt jest pokazywany" msgstr[1] "Maksymalnie %d poprzednie kontakty są pokazywane" msgstr[2] "Maksymalnie %d poprzednich kontaktów jest pokazywanych" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "Rozbicie łączności" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "Rozbicie DXCC" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "Wymagane" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8486,7 +8522,7 @@ msgstr "Wymagane" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8509,10 +8545,10 @@ msgstr "Wymagane" msgid "Sent" msgstr "Wysłane" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8545,7 +8581,7 @@ msgstr "Wysłane" msgid "Received" msgstr "Odebrane" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8571,7 +8607,7 @@ msgstr "Odebrane" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8585,25 +8621,25 @@ msgstr "Odebrane" msgid "Requested" msgstr "Zażądane" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "Logbook of the World" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "Lokatory VUCC" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "Dane słoneczne oraz propagacja" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "Ostatnie aktualizacja o %s." -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "Dane dostarczone przez HAMqsl." @@ -8774,12 +8810,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "Następna automatyczna synchronizacja DCL odbędzie się o: " #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "Ręczna synchronizacja" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "pracuje..." @@ -9143,6 +9179,7 @@ msgstr "Aktualizacja DXCC z ClubLog" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "Aktualizuj" @@ -9183,11 +9220,15 @@ msgstr "Aktualizacja Hams Of Note" msgid "HAMqsl" msgstr "HAMqsl" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "Konserwacja QSO-DB" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -9196,141 +9237,141 @@ msgstr[0] "Baza danych zawiera pojedyncze QSO bez profilu stacji (lokalizacji)" msgstr[1] "Baza danych zawiera %d QSO bez profilu stacji (lokalizacji)" msgstr[2] "Baza danych zawiera %d QSO bez profilu stacji (lokalizacji)" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "Należy zaznaczyć QSO i przypisać je do istniejącej lokalizacji stacji:" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "Docelowa lokalizacja" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "Przepisz" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Wszystkie QSO w bazie danych są przypisane do profilu stacji (lokalizacji)" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "Wszystko OK" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "Albański" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "Armeński" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "Bośniacki" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "Bułgarski" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "Chiński (uproszczony)" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "Chorwacki" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "Czeski" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "Holenderski" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "Angielski" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "Estoński" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "Fiński" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "Francuski" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "Niemiecki" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "Grecki" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "Węgierski" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "Włoski" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "Japoński" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "Łotewski" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "Litewski" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "Czarnogórski" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "Polski" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "Portugalski" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "Rosyjski" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "Serbski" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "Słowacki" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "Słoweński" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "Hiszpański" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "Szwedzki" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "Turecki" @@ -9787,10 +9828,10 @@ msgid "QSL Date" msgstr "Data QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9897,7 +9938,7 @@ msgid "Worked not confirmed" msgstr "Zaliczone, niepotwierdzone" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "Wyczyść" @@ -10095,62 +10136,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Lokatory" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "Nie jesteś zalogowany. %sZaloguj się%s" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "lokator" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "Całkowita liczba" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "Karta QSL dla " -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Uwaga! Czy na pewno usunąć tę kartę QSL?" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "Karta eQSL" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "Karta eQSL dla " -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "Plik obrazu QSL" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "Przód karty QSL:" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "Tył karty QSL:" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "Dodaj dodatkowe QSO do karty QSL" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "Coś poszło nie tak. Spróbuj jeszcze raz!" @@ -10237,7 +10278,7 @@ msgstr "Worked All Europe (WAE)" #: application/views/interface_assets/header.php:192 msgid "Worked All Prefixes (WPX)" -msgstr "" +msgstr "Worked All Prefixes (WPX)" #: application/views/interface_assets/header.php:214 msgid "Canada" @@ -10753,7 +10794,7 @@ msgstr "Moc stacji" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "Region" @@ -10873,7 +10914,7 @@ msgstr "Zweryfikowano" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10894,7 +10935,7 @@ msgstr "Bezpośrednio" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10913,7 +10954,7 @@ msgstr "Biuro" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10928,49 +10969,49 @@ msgstr "Elektroniczne" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Manager" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "BRAK" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "Afrykańskie Włochy" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "Wyspa Niedźwiedzia" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "Europejska Turcja" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "ITU Wiedeń" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "Kosowo" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "Wyspy Szetlandzkie" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "Sycylia" @@ -11145,7 +11186,7 @@ msgstr "Wysłano QSL" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -11182,7 +11223,7 @@ msgstr "Zakolejkowano" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11630,37 +11671,41 @@ msgstr "Data wygaśnięcia" msgid "Last Upload" msgstr "Last upload" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "wygaśnięty" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "Wygasa" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" -msgstr "Ważny" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" +msgstr "" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "Ostatnie powodzenie: %s" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "Ostatnie niepowodzenie: %s" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "Nie zsynchronizowany" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "Należy przesłać certyfikat .p12 aby używać tej funkcji." -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "Następna automatyczna synchronizacja z LoTW nastąpi: " @@ -12253,7 +12298,7 @@ msgstr "Czy są jakieś dodatkowe informacje, które powinniśmy znać?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -12301,7 +12346,7 @@ msgstr "Stacja" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12862,20 +12907,12 @@ msgstr "Opublikuj na Bluesky" msgid "Toot on Mastodon" msgstr "Opublikuj na Mastodon" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "Funkcja %d – Nazwa" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "Funkcja %d – Makro" @@ -12900,11 +12937,11 @@ msgstr "Częstotliwość RX" msgid "RX Band" msgstr "Pasmo RX" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Wpisz wartość mocy w watach. W polu podaj same cyfry." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12914,25 +12951,25 @@ msgstr "Moc nadajnika (W)" msgid "Used for VUCC MultiGrids" msgstr "Wykorzystywane w VUCC MultiGrids" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "Ścieżka antenowa" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "Greyline" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "Inne" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "Krótka ścieżka" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "Długa ścieżka" @@ -12945,38 +12982,38 @@ msgstr "Nazwa SAT" msgid "Sat Mode" msgstr "Tryb SAT" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "Azymut anteny (°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "Azymut anteny w stopniach dziesiętnych." -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "Elewacja anteny (°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "Elewacja anteny w stopniach dziesiętnych." -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "Powiat/Hrabstwo stacji" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "Informacja SIG" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "Uwaga: Zostaną wyeksportowane do usług zewnętrznych." @@ -12985,8 +13022,8 @@ msgid "Sent Method" msgstr "Metoda wysłania" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "Metoda" @@ -13007,7 +13044,7 @@ msgstr "Zweryfikowano (dopasowanie)" msgid "Received Method" msgstr "Metoda otrzymania" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "Pobierz domyślną wiadomość dla eQSL dla tej stacji." @@ -13051,7 +13088,7 @@ msgstr "Zapisz zmiany" msgid "TimeOff is less than TimeOn" msgstr "Czas zakończenia jest wcześniejszy niż czas rozpoczęcia" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "Poprzednie łączności" @@ -13118,7 +13155,7 @@ msgstr "Czas zakończenia" msgid "Search DXCluster for latest Spot" msgstr "Wyszukaj ostatnie spoty w DXCluster" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -13126,7 +13163,7 @@ msgstr "Wyszukaj ostatnie spoty w DXCluster" msgid "IOTA Reference" msgstr "Podmiot IOTA" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -13134,91 +13171,95 @@ msgstr "Podmiot IOTA" msgid "SOTA Reference" msgstr "Podmiot SOTA" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "Częstotliwość (RX)" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "Pasmo (RX)" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "Na przykład: GM/NS-001." -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "Na przykład: DLFF-0069." -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "Na przykład: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "Na przykład: GMA" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "Na przykład: DA/NW-357" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "Na przykład: Q03" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "Adres email partnera QSO" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "Nazwa satelity" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "Tryb Satelitarny" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "Wiadomość QSL" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "Przywróć domyślne ustawienia" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "Połącz" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "Zatrzymaj" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "Strojenie" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "Zatrzymaj strojenie" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "Prędkość CW" -#: application/views/qso/index.php:769 +#: application/views/qso/index.php:778 +msgid "Stop" +msgstr "Zatrzymaj" + +#: application/views/qso/index.php:779 +msgid "Tune" +msgstr "Strojenie" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "Zatrzymaj strojenie" + +#: application/views/qso/index.php:785 +msgid "Enter text..." +msgstr "Wprowadź tekst..." + +#: application/views/qso/index.php:786 msgid "Send" msgstr "Wyślij" -#: application/views/qso/index.php:779 +#: application/views/qso/index.php:798 msgid "Suggestions" msgstr "Sugestie" -#: application/views/qso/index.php:786 +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "Zdjęcie profilowe" @@ -14626,6 +14667,7 @@ msgid "Special Interest Group Information" msgstr "Informacja Specjalnej Grupy Zainteresowań" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Problemy? Sprawdzenie %swiki%s." @@ -15739,10 +15781,6 @@ msgstr "URL serwera Mastodon" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "Główny URL twojego serwera Mastodon, np. %s" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "Eksperymentalne" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "Winkeyer" @@ -16474,6 +16512,29 @@ msgstr "Prześlij prośbę" msgid "Rcvd" msgstr "Rcvd" +#, php-format +#~ msgctxt "LoTW Warning" +#~ msgid "At least one of your %sLoTW certificates%s is expired!" +#~ msgstr "Przynajmniej jeden z twoich %scertyfikatów LoTW%s utracił ważność!" + +#, php-format +#~ msgctxt "LoTW Warning" +#~ msgid "At least one of your %sLoTW certificates%s is about to expire!" +#~ msgstr "" +#~ "Przynajmniej jeden z twoich %scertyfikatów LoTW%s niedługo straci ważność!" + +#~ msgid "Expired" +#~ msgstr "wygaśnięty" + +#~ msgid "Expiring" +#~ msgstr "Wygasa" + +#~ msgid "Valid" +#~ msgstr "Ważny" + +#~ msgid "Experimental" +#~ msgstr "Eksperymentalne" + #, php-format #~ msgctxt "Dashboard Warning" #~ msgid "" diff --git a/application/locale/pt_PT/LC_MESSAGES/messages.mo b/application/locale/pt_PT/LC_MESSAGES/messages.mo index cb8ad03e9..24f4945f5 100644 Binary files a/application/locale/pt_PT/LC_MESSAGES/messages.mo and b/application/locale/pt_PT/LC_MESSAGES/messages.mo differ diff --git a/application/locale/pt_PT/LC_MESSAGES/messages.po b/application/locale/pt_PT/LC_MESSAGES/messages.po index b61bcd4c9..8d3ae51ae 100644 --- a/application/locale/pt_PT/LC_MESSAGES/messages.po +++ b/application/locale/pt_PT/LC_MESSAGES/messages.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" -"PO-Revision-Date: 2025-09-06 12:34+0000\n" -"Last-Translator: \"Francisco (F4VSE)\" \n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" +"PO-Revision-Date: 2025-10-22 00:19+0000\n" +"Last-Translator: David Quental \n" "Language-Team: Portuguese (Portugal) \n" "Language: pt_PT\n" @@ -20,7 +20,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 5.12.2\n" +"X-Generator: Weblate 5.13.2\n" #: application/controllers/Accumulated.php:12 #: application/controllers/Activators.php:13 @@ -74,9 +74,9 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:79 application/controllers/Lotw.php:105 -#: application/controllers/Lotw.php:375 application/controllers/Lotw.php:398 -#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:839 -#: application/controllers/Lotw.php:944 application/controllers/Mode.php:15 +#: application/controllers/Lotw.php:383 application/controllers/Lotw.php:406 +#: application/controllers/Lotw.php:763 application/controllers/Lotw.php:847 +#: application/controllers/Lotw.php:952 application/controllers/Mode.php:15 #: application/controllers/Notes.php:11 application/controllers/Options.php:14 #: application/controllers/Oqrs.php:15 application/controllers/Oqrs.php:165 #: application/controllers/Qrbcalc.php:13 application/controllers/Qrz.php:200 @@ -85,8 +85,8 @@ msgstr "" #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:187 -#: application/controllers/Qso.php:287 application/controllers/Qso.php:308 -#: application/controllers/Qso.php:331 application/controllers/Qso.php:629 +#: application/controllers/Qso.php:318 application/controllers/Qso.php:339 +#: application/controllers/Qso.php:362 application/controllers/Qso.php:662 #: application/controllers/Radio.php:32 application/controllers/Radio.php:291 #: application/controllers/Radio.php:317 application/controllers/Radio.php:333 #: application/controllers/Reg1test.php:17 @@ -144,7 +144,7 @@ msgstr "Mapa Gridsquare activadas" #: application/controllers/Activated_gridmap.php:31 #: application/controllers/Awards.php:1003 #: application/controllers/Awards.php:1035 -#: application/controllers/Gridmap.php:31 +#: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 #: application/views/interface_assets/footer.php:47 @@ -154,13 +154,13 @@ msgid "Gridsquares" msgstr "Gridsquares" #: application/controllers/Activated_gridmap.php:32 -#: application/controllers/Gridmap.php:32 +#: application/controllers/Gridmap.php:33 #: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "Gridsquares confirmadas" #: application/controllers/Activated_gridmap.php:33 -#: application/controllers/Gridmap.php:33 +#: application/controllers/Gridmap.php:34 #: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "Gridsquares não confirmadas" @@ -170,25 +170,25 @@ msgid "Total gridsquares activated" msgstr "Total de gridsquares activadas" #: application/controllers/Activated_gridmap.php:36 -#: application/controllers/Gridmap.php:36 +#: application/controllers/Gridmap.php:37 #: application/controllers/Visitor.php:390 msgid "Fields" msgstr "Campos" #: application/controllers/Activated_gridmap.php:37 -#: application/controllers/Gridmap.php:37 +#: application/controllers/Gridmap.php:38 #: application/controllers/Visitor.php:391 msgid "Fields confirmed" msgstr "Campos confirmados" #: application/controllers/Activated_gridmap.php:38 -#: application/controllers/Gridmap.php:38 +#: application/controllers/Gridmap.php:39 #: application/controllers/Visitor.php:392 msgid "Fields not confirmed" msgstr "Campos não confirmados" #: application/controllers/Activated_gridmap.php:39 -#: application/controllers/Gridmap.php:39 +#: application/controllers/Gridmap.php:40 #: application/controllers/Visitor.php:393 msgid "Total fields worked" msgstr "Total de campos trabalhados" @@ -338,13 +338,13 @@ msgstr "Prémios - %s" #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:401 application/views/qso/index.php:302 -#: application/views/qso/index.php:593 application/views/user/edit.php:682 +#: application/views/qso/index.php:594 application/views/user/edit.php:682 #: application/views/view_log/qso.php:460 msgid "DOK" msgstr "DOK" #: application/controllers/Awards.php:176 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:130 application/views/bands/index.php:50 +#: application/views/bandmap/list.php:131 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:180 @@ -357,7 +357,7 @@ msgstr "DOK" #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 -#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:402 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 #: application/views/search/result.php:27 @@ -560,7 +560,7 @@ msgstr "Fred Fish Memorial Award (FFMA)" #: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:286 -#: application/views/qso/index.php:579 application/views/user/edit.php:678 +#: application/views/qso/index.php:580 application/views/user/edit.php:678 #: application/views/view_log/qso.php:425 #: application/views/view_log/qso.php:736 msgid "SIG" @@ -597,7 +597,7 @@ msgstr "73 em 73" #: application/controllers/Awards.php:2281 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" -msgstr "" +msgstr "WPX" #: application/controllers/Backup.php:15 application/views/backup/main.php:14 #: application/views/interface_assets/header.php:318 @@ -829,7 +829,7 @@ msgstr "Editar Cronjob" #: application/views/debug/index.php:539 application/views/debug/index.php:544 #: application/views/debug/index.php:549 application/views/debug/index.php:554 #: application/views/debug/index.php:559 application/views/debug/index.php:564 -#: application/views/debug/index.php:569 +#: application/views/debug/index.php:569 application/views/debug/index.php:574 msgid "never" msgstr "nunca" @@ -886,7 +886,7 @@ msgstr "Não está a funcionar" msgid "SOTA CSV Export" msgstr "Exportar CSV SOTA" -#: application/controllers/Dashboard.php:152 +#: application/controllers/Dashboard.php:154 #: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "Dashboard" @@ -939,35 +939,35 @@ msgstr "Nenhum perfil de estação encontrado para carregar no DCL" msgid "Key(s) Deleted." msgstr "Chave(s) eliminada(s)." -#: application/controllers/Debug.php:117 +#: application/controllers/Debug.php:118 msgid "Debug" msgstr "Debug" -#: application/controllers/Debug.php:156 +#: application/controllers/Debug.php:157 msgid "Migrate data now" msgstr "Migrar dados agora" -#: application/controllers/Debug.php:159 +#: application/controllers/Debug.php:160 msgid "Migration already done. Run again?" msgstr "A migração já foi efectuada. Executar novamente?" -#: application/controllers/Debug.php:163 +#: application/controllers/Debug.php:164 msgid "No data to migrate" msgstr "Não há dados a migrar" -#: application/controllers/Debug.php:167 application/controllers/Debug.php:172 +#: application/controllers/Debug.php:168 application/controllers/Debug.php:173 msgid "No migration possible" msgstr "Não é possível efetuar a migração" -#: application/controllers/Debug.php:237 +#: application/controllers/Debug.php:238 msgid "Wavelog was updated successfully!" msgstr "Wavelog foi atualizado com sucesso!" -#: application/controllers/Debug.php:255 +#: application/controllers/Debug.php:256 msgid "Selfupdate() not available. Check the Error Log." msgstr "Selfupdate() não disponível. Verifique o log de Erros." -#: application/controllers/Debug.php:299 +#: application/controllers/Debug.php:300 msgid "" "File Migration was successfull, but please check also manually. If " "everything seems right you can delete the folders 'assets/qslcard' and " @@ -977,7 +977,7 @@ msgstr "" "Se tudo parecer correto, pode apagar as pastas 'assets/qslcard' e 'images/" "eqsl_card_images'." -#: application/controllers/Debug.php:302 +#: application/controllers/Debug.php:303 msgid "File Migration failed. Please check the Error Log." msgstr "A migração de ficheiros falhou. Verifique o registo de erros." @@ -1018,7 +1018,7 @@ msgid "DX Calendar" msgstr "Calendário DX" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:404 +#: application/views/dashboard/index.php:409 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:310 msgid "eQSL Cards" @@ -1078,7 +1078,7 @@ msgstr "Confirmações" msgid "Gridsquare Map" msgstr "Mapa Gridsquare" -#: application/controllers/Gridmap.php:34 +#: application/controllers/Gridmap.php:35 #: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "Total de gridsquares trabalhadas" @@ -1089,7 +1089,7 @@ msgstr "Hamsat - Satélite Roving" #: application/controllers/Hrdlog.php:70 application/controllers/Hrdlog.php:71 msgid "HRD Log upload for this station is disabled." -msgstr "" +msgstr "O upload do Log HRD para esta estação está desativado." #: application/controllers/Hrdlog.php:93 #, php-format @@ -1284,7 +1284,7 @@ msgstr "Logbook" #: application/views/awards/wapc/index.php:44 #: application/views/awards/was/index.php:56 #: application/views/awards/wpx/index.php:28 -#: application/views/gridmap/index.php:101 +#: application/views/gridmap/index.php:141 #: application/views/logbookadvanced/index.php:794 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/oqrs/qsolist.php:12 @@ -1316,8 +1316,8 @@ msgstr "QSL" #: application/views/awards/wapc/index.php:48 #: application/views/awards/was/index.php:60 #: application/views/awards/wpx/index.php:32 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:109 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:149 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 @@ -1353,8 +1353,8 @@ msgstr "LoTW" #: application/views/awards/wapc/index.php:52 #: application/views/awards/was/index.php:64 #: application/views/awards/wpx/index.php:36 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:117 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:157 #: application/views/logbookadvanced/useroptions.php:78 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 @@ -1396,23 +1396,23 @@ msgstr "eQSL" #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:110 -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:136 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 #: application/views/contesting/index.php:118 -#: application/views/contesting/index.php:264 +#: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:597 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 -#: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 -#: application/views/kml/index.php:31 +#: application/views/gridmap/index.php:104 +#: application/views/hamsat/index.php:33 application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:12 #: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/index.php:764 @@ -1462,8 +1462,8 @@ msgstr "Modo" #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:179 -#: application/views/contesting/index.php:265 +#: application/views/contesting/index.php:180 +#: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 #: application/views/logbookadvanced/index.php:767 #: application/views/logbookadvanced/useroptions.php:38 @@ -1491,8 +1491,8 @@ msgstr "RST (E)" #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 -#: application/views/contesting/index.php:203 -#: application/views/contesting/index.php:266 +#: application/views/contesting/index.php:204 +#: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 #: application/views/logbookadvanced/index.php:770 #: application/views/logbookadvanced/useroptions.php:42 @@ -1600,9 +1600,9 @@ msgstr "Estado" #: application/views/awards/gridmaster/index.php:50 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:26 -#: application/views/contesting/index.php:271 +#: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 -#: application/views/gridmap/index.php:152 +#: application/views/gridmap/index.php:193 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 @@ -1646,7 +1646,7 @@ msgstr "Gridsquare" #: application/views/dashboard/index.php:14 #: application/views/distancerecords/index.php:15 #: application/views/distances/index.php:13 -#: application/views/gridmap/index.php:154 +#: application/views/gridmap/index.php:195 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 #: application/views/logbookadvanced/index.php:869 @@ -1695,17 +1695,17 @@ msgstr "Distância" #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:96 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:97 #: application/views/bands/create.php:24 application/views/bands/edit.php:7 #: application/views/bands/index.php:47 application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:263 +#: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:593 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:598 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 -#: application/views/gridmap/index.php:10 application/views/kml/index.php:19 +#: application/views/gridmap/index.php:26 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:6 #: application/views/logbookadvanced/index.php:281 #: application/views/logbookadvanced/index.php:773 @@ -1753,7 +1753,7 @@ msgid "Band" msgstr "Banda" #: application/controllers/Logbook.php:1324 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:128 +#: application/controllers/Radio.php:45 application/views/bandmap/list.php:129 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:776 @@ -1812,9 +1812,9 @@ msgstr "Operador" #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:252 #: application/views/lookup/index.php:47 -#: application/views/lotw_views/index.php:49 +#: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 -#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:411 #: application/views/station_profile/create.php:77 #: application/views/station_profile/edit.php:109 #: application/views/stationsetup/linkedlocations.php:17 @@ -1855,11 +1855,11 @@ msgstr "Certificado Importado." msgid "Certificate Updated." msgstr "Certificado atualizado." -#: application/controllers/Lotw.php:381 +#: application/controllers/Lotw.php:389 msgid "Certificate Deleted." msgstr "Certificado eliminado." -#: application/controllers/Lotw.php:410 +#: application/controllers/Lotw.php:418 #, php-format msgid "" "Found no certificate in file %s. If the filename contains 'key-only' this is " @@ -1869,52 +1869,52 @@ msgstr "" "contiver 'key-only', isto é tipicamente um pedido de certificado que ainda " "não foi processado pelo LoTW." -#: application/controllers/Lotw.php:646 +#: application/controllers/Lotw.php:654 msgid "LoTW ADIF Information" msgstr "Informações sobre o ADIF LoTW" -#: application/controllers/Lotw.php:812 application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:820 application/controllers/Lotw.php:823 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "Falha no login do LoTW para o utilizador %s: %s." -#: application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:823 msgid "Username/password incorrect" msgstr "Nome de utilizador/palavra-passe incorretos" -#: application/controllers/Lotw.php:818 +#: application/controllers/Lotw.php:826 msgid "LoTW login OK!" msgstr "Login LoTW OK!" -#: application/controllers/Lotw.php:822 +#: application/controllers/Lotw.php:830 msgid "LoTW currently not available. Try again later." msgstr "LoTW atualmente não disponível. Tente novamente mais tarde." -#: application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 msgid "No LoTW credentials provided." msgstr "Nenhuma credencial LoTW fornecida." -#: application/controllers/Lotw.php:845 +#: application/controllers/Lotw.php:853 msgid "LoTW ADIF Import" msgstr "Importação ADIF LoTW" -#: application/controllers/Lotw.php:871 application/controllers/Lotw.php:979 +#: application/controllers/Lotw.php:879 application/controllers/Lotw.php:987 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Não definiu as suas credenciais LoTW da ARRL !" -#: application/controllers/Lotw.php:946 +#: application/controllers/Lotw.php:954 msgid "LoTW .TQ8 Upload" msgstr "Enviar .TQ8 LoTW" -#: application/controllers/Lotw.php:1024 +#: application/controllers/Lotw.php:1032 msgid "Your ARRL username and/or password is incorrect." msgstr "O seu nome de utilizador e/ou palavra-passe da ARRL está incorreto." -#: application/controllers/Lotw.php:1043 application/controllers/Lotw.php:1048 +#: application/controllers/Lotw.php:1051 application/controllers/Lotw.php:1056 msgid "LoTW .TQ8 Sent" msgstr ".TQ8 LoTW enviado" -#: application/controllers/Lotw.php:1055 +#: application/controllers/Lotw.php:1063 msgid "LoTW .TQ8 Not Sent" msgstr ".TQ8 LoTW não enviado" @@ -1935,7 +1935,7 @@ msgstr "Editar Modo" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:409 application/views/qso/index.php:71 -#: application/views/qso/index.php:642 application/views/view_log/qso.php:14 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:14 #: application/views/view_log/qso.php:749 msgid "Notes" msgstr "Notas" @@ -1960,12 +1960,16 @@ msgid "" "Contacts note title must be a callsign only, without prefix/suffix. " "Suggested: %s" msgstr "" +"O título da nota dos contatos deve ser apenas um indicativo de chamada, sem " +"prefixo/sufixo. Sugestão: %s" #: application/controllers/Notes.php:284 application/controllers/Notes.php:311 msgid "" "A note with this callsign already exists in your Contacts. Please enter a " "unique callsign." msgstr "" +"Já existe uma nota com este indicativo nos teus Contactos. Por favor, insere " +"um indicativo único." #: application/controllers/Options.php:23 #: application/controllers/Options.php:33 @@ -2195,8 +2199,8 @@ msgstr "Importação de QSL QRZ" msgid "QRZ ADIF Information" msgstr "Informação ADIF QRZ" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:356 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:361 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:287 msgid "QSL Cards" @@ -2218,15 +2222,15 @@ msgstr "Imprimir QSLs solicitadas" msgid "Add QSO" msgstr "Adicionar contacto" -#: application/controllers/Qso.php:690 +#: application/controllers/Qso.php:723 msgid "You have to be logged in to access this URL." msgstr "É necessário estar logado para aceder a este URL." -#: application/controllers/Qso.php:696 +#: application/controllers/Qso.php:729 msgid "Call Transfer" msgstr "Transferência de Chamada" -#: application/controllers/Qso.php:703 +#: application/controllers/Qso.php:736 msgid "No callsign provided." msgstr "Nenhum indicativo fornecido." @@ -2256,7 +2260,7 @@ msgid "Options" msgstr "Opções" #: application/controllers/Radio.php:50 application/views/debug/index.php:312 -#: application/views/qso/index.php:749 +#: application/views/qso/index.php:750 msgid "Settings" msgstr "Configurações" @@ -2265,8 +2269,8 @@ msgid "UNKNOWN" msgstr "DESCONHECIDO" #: application/controllers/Radio.php:98 -#: application/views/contesting/index.php:161 -#: application/views/qso/index.php:354 +#: application/views/contesting/index.php:162 +#: application/views/qso/index.php:355 msgid "last updated" msgstr "última atualização" @@ -2304,13 +2308,13 @@ msgstr "Editar" #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:63 -#: application/views/interface_assets/footer.php:2802 -#: application/views/interface_assets/footer.php:2820 -#: application/views/interface_assets/footer.php:2841 -#: application/views/interface_assets/footer.php:2859 +#: application/views/interface_assets/footer.php:2900 +#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:2939 +#: application/views/interface_assets/footer.php:2957 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:734 -#: application/views/lotw_views/index.php:111 +#: application/views/lotw_views/index.php:128 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 #: application/views/qslcard/index.php:76 @@ -2522,7 +2526,7 @@ msgstr "Não autorizado" #: application/controllers/Stationsetup.php:156 #: application/controllers/Stationsetup.php:177 #: application/controllers/Stationsetup.php:478 -#: application/views/qso/index.php:708 application/views/simplefle/index.php:39 +#: application/views/qso/index.php:709 application/views/simplefle/index.php:39 #: application/views/widgets/on_air.php:102 msgid "Error" msgstr "Erro" @@ -2794,11 +2798,11 @@ msgstr "Atualização do WWFF falhou. Resultado: " #: application/controllers/Update.php:555 msgid "HAMqsl Update complete. Result: " -msgstr "" +msgstr "Atualização do HAMqsl concluída. Resultado: " #: application/controllers/Update.php:557 msgid "HAMqsl Update failed. Result: " -msgstr "" +msgstr "A atualização do HAMqsl falhou. Resultado: " #: application/controllers/Update.php:590 msgid "POTA Update complete. Result: " @@ -2824,6 +2828,14 @@ msgstr "Atualização SAT LoTW" msgid "Update of Hams of Note" msgstr "Atualização dos radioamadores nas notas" +#: application/controllers/Update.php:718 +msgid "VUCC Grid file update complete. Result: " +msgstr "" + +#: application/controllers/Update.php:720 +msgid "VUCC Grid file update failed. Result: " +msgstr "" + #: application/controllers/User.php:50 #: application/views/interface_assets/header.php:306 msgid "User Accounts" @@ -2955,7 +2967,7 @@ msgstr "O utilizador %s terminou a sessão." msgid "Station Name" msgstr "Nome da estação" -#: application/controllers/User.php:1262 application/views/debug/index.php:594 +#: application/controllers/User.php:1262 application/views/debug/index.php:599 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:61 #: application/views/station_profile/edit.php:77 @@ -3348,6 +3360,8 @@ msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " "imported. It's invalid" msgstr "" +"QSO em %s: Você tentou importar um QSO sem banda alguma. Este QSO não foi " +"importado. É inválido" #: application/models/Logbook_model.php:4388 msgid "the qslrdate is invalid (YYYYMMDD)" @@ -3419,7 +3433,7 @@ msgstr "QSO atualizado" #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 #: application/views/dashboard/index.php:19 -#: application/views/gridmap/index.php:156 +#: application/views/gridmap/index.php:197 #: application/views/logbookadvanced/index.php:15 #: application/views/user/edit.php:256 application/views/user/edit.php:279 #: application/views/user/edit.php:302 application/views/user/edit.php:325 @@ -3430,7 +3444,7 @@ msgstr "Direção" #: application/models/Note.php:7 msgid "Contacts" -msgstr "" +msgstr "Contactos" #: application/models/Note.php:8 application/views/qso/index.php:61 #: application/views/statistics/index.php:46 @@ -3444,7 +3458,7 @@ msgstr "Antenas" #: application/models/Note.php:45 application/models/Note.php:69 msgid "In Contacts category, the titles of the notes need to be unique." -msgstr "" +msgstr "Na categoria Contatos, os títulos das notas precisam ser únicos." #: application/models/Update_model.php:352 msgid "Newer release available:" @@ -3519,7 +3533,7 @@ msgid "Accumulated number of WAJA worked" msgstr "Número acumulado de WAJA contactados" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:317 +#: application/views/dashboard/index.php:322 #: application/views/dayswithqso/index.php:42 #: application/views/dayswithqso/index.php:82 #: application/views/statistics/index.php:19 @@ -3536,7 +3550,7 @@ msgid "Yearly" msgstr "Anual" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:327 #: application/views/visitor/index.php:255 msgid "Month" msgstr "Mês" @@ -3588,8 +3602,8 @@ msgstr "Diferença" #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:86 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:79 application/views/bandmap/list.php:87 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:113 #: application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 @@ -3612,14 +3626,15 @@ msgstr "Diferença" #: application/views/dxatlas/index.php:60 #: application/views/dxatlas/index.php:82 #: application/views/dxatlas/index.php:94 -#: application/views/gridmap/index.php:13 -#: application/views/gridmap/index.php:28 -#: application/views/gridmap/index.php:41 -#: application/views/gridmap/index.php:70 -#: application/views/gridmap/index.php:83 +#: application/views/gridmap/index.php:29 +#: application/views/gridmap/index.php:44 +#: application/views/gridmap/index.php:78 +#: application/views/gridmap/index.php:93 +#: application/views/gridmap/index.php:107 +#: application/views/gridmap/index.php:121 #: application/views/interface_assets/footer.php:46 -#: application/views/interface_assets/footer.php:1692 -#: application/views/interface_assets/footer.php:1831 +#: application/views/interface_assets/footer.php:1790 +#: application/views/interface_assets/footer.php:1929 #: 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 @@ -3706,7 +3721,7 @@ msgstr "Período" #: application/views/accumulate/index.php:80 #: application/views/callstats/index.php:65 #: application/views/distances/index.php:53 -#: application/views/gridmap/index.php:38 +#: application/views/gridmap/index.php:41 #: application/views/logbookadvanced/edit.php:14 #: application/views/logbookadvanced/index.php:310 #: application/views/logbookadvanced/index.php:857 @@ -3726,7 +3741,7 @@ msgstr "Todos menos SAT" #: application/views/accumulate/index.php:85 #: application/views/callstats/index.php:69 #: application/views/distances/index.php:58 -#: application/views/gridmap/index.php:42 +#: application/views/gridmap/index.php:45 #: application/views/logbookadvanced/edit.php:207 #: application/views/logbookadvanced/edit.php:215 #: application/views/logbookadvanced/index.php:406 @@ -3738,9 +3753,9 @@ msgstr "Nenhum/Vazio" #: application/views/callstats/index.php:71 application/views/csv/index.php:95 #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 +#: application/views/gridmap/index.php:47 application/views/kml/index.php:80 #: application/views/logbookadvanced/index.php:314 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:477 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:478 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 #: application/views/view_log/qso.php:233 @@ -3752,9 +3767,9 @@ msgstr "Aircraft Scatter" #: application/views/callstats/index.php:72 application/views/csv/index.php:96 #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 +#: application/views/gridmap/index.php:48 application/views/kml/index.php:81 #: application/views/logbookadvanced/index.php:315 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:478 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:479 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 #: application/views/view_log/qso.php:236 @@ -3766,9 +3781,9 @@ msgstr "Aurora" #: application/views/callstats/index.php:73 application/views/csv/index.php:97 #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 +#: application/views/gridmap/index.php:49 application/views/kml/index.php:82 #: application/views/logbookadvanced/index.php:316 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:479 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:480 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 #: application/views/view_log/qso.php:239 @@ -3780,9 +3795,9 @@ msgstr "Aurora-E" #: application/views/callstats/index.php:74 application/views/csv/index.php:98 #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 +#: application/views/gridmap/index.php:50 application/views/kml/index.php:83 #: application/views/logbookadvanced/index.php:317 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:480 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:481 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 #: application/views/view_log/qso.php:242 @@ -3794,9 +3809,9 @@ msgstr "Back scatter" #: application/views/callstats/index.php:75 application/views/csv/index.php:99 #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 +#: application/views/gridmap/index.php:51 application/views/kml/index.php:84 #: application/views/logbookadvanced/index.php:318 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:481 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:482 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 #: application/views/view_log/qso.php:245 @@ -3808,9 +3823,9 @@ msgstr "EchoLink" #: application/views/callstats/index.php:76 application/views/csv/index.php:100 #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 +#: application/views/gridmap/index.php:52 application/views/kml/index.php:85 #: application/views/logbookadvanced/index.php:319 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:482 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:483 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 #: application/views/view_log/qso.php:248 @@ -3822,9 +3837,9 @@ msgstr "Terra-Lua-Terra" #: application/views/callstats/index.php:77 application/views/csv/index.php:101 #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 +#: application/views/gridmap/index.php:53 application/views/kml/index.php:86 #: application/views/logbookadvanced/index.php:320 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:483 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:484 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 #: application/views/view_log/qso.php:251 @@ -3836,9 +3851,9 @@ msgstr "Esporádico E" #: application/views/callstats/index.php:78 application/views/csv/index.php:102 #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 +#: application/views/gridmap/index.php:54 application/views/kml/index.php:87 #: application/views/logbookadvanced/index.php:321 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:484 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:485 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 #: application/views/view_log/qso.php:254 @@ -3850,9 +3865,9 @@ msgstr "Irregularidades Alinhadas ao Campo" #: application/views/callstats/index.php:79 application/views/csv/index.php:103 #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 +#: application/views/gridmap/index.php:55 application/views/kml/index.php:88 #: application/views/logbookadvanced/index.php:322 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:485 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:486 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 #: application/views/view_log/qso.php:257 @@ -3864,9 +3879,9 @@ msgstr "Reflexão F2" #: application/views/callstats/index.php:80 application/views/csv/index.php:104 #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 +#: application/views/gridmap/index.php:56 application/views/kml/index.php:89 #: application/views/logbookadvanced/index.php:323 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:486 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:487 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 #: application/views/view_log/qso.php:260 @@ -3878,9 +3893,9 @@ msgstr "Assistido pela Internet" #: application/views/callstats/index.php:81 application/views/csv/index.php:105 #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 +#: application/views/gridmap/index.php:57 application/views/kml/index.php:90 #: application/views/logbookadvanced/index.php:324 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:487 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:488 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 #: application/views/view_log/qso.php:263 @@ -3892,9 +3907,9 @@ msgstr "Ionoscatter" #: application/views/callstats/index.php:82 application/views/csv/index.php:106 #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 +#: application/views/gridmap/index.php:58 application/views/kml/index.php:91 #: application/views/logbookadvanced/index.php:325 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:488 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:489 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 #: application/views/view_log/qso.php:266 @@ -3906,9 +3921,9 @@ msgstr "IRLP" #: application/views/callstats/index.php:83 application/views/csv/index.php:107 #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 +#: application/views/gridmap/index.php:59 application/views/kml/index.php:92 #: application/views/logbookadvanced/index.php:326 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:489 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:490 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 #: application/views/view_log/qso.php:269 @@ -3920,9 +3935,9 @@ msgstr "Dispersão meteorítica" #: application/views/callstats/index.php:84 application/views/csv/index.php:108 #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 +#: application/views/gridmap/index.php:60 application/views/kml/index.php:93 #: application/views/logbookadvanced/index.php:327 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:490 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:491 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 #: application/views/view_log/qso.php:272 @@ -3934,9 +3949,9 @@ msgstr "Repetidor ou transponder terrestre ou atmosférico" #: application/views/callstats/index.php:85 application/views/csv/index.php:109 #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 +#: application/views/gridmap/index.php:61 application/views/kml/index.php:94 #: application/views/logbookadvanced/index.php:328 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:491 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:492 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 #: application/views/view_log/qso.php:275 @@ -3948,9 +3963,9 @@ msgstr "Dispersão de chuva" #: application/views/callstats/index.php:86 application/views/csv/index.php:110 #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 +#: application/views/gridmap/index.php:62 application/views/kml/index.php:95 #: application/views/logbookadvanced/index.php:329 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:492 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:493 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 #: application/views/view_log/qso.php:278 @@ -3962,9 +3977,9 @@ msgstr "Satélite" #: application/views/callstats/index.php:87 application/views/csv/index.php:111 #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 +#: application/views/gridmap/index.php:63 application/views/kml/index.php:96 #: application/views/logbookadvanced/index.php:330 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:493 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:494 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 #: application/views/view_log/qso.php:281 @@ -3976,9 +3991,9 @@ msgstr "Trans-equatorial" #: application/views/callstats/index.php:88 application/views/csv/index.php:112 #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 +#: application/views/gridmap/index.php:64 application/views/kml/index.php:97 #: application/views/logbookadvanced/index.php:331 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:494 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:495 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 #: application/views/view_log/qso.php:284 @@ -4033,7 +4048,7 @@ msgstr "Mostrar" #: application/views/components/hamsat/table.php:29 #: application/views/distancerecords/index.php:14 #: application/views/distances/index.php:34 -#: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 +#: application/views/gridmap/index.php:73 application/views/hamsat/index.php:32 #: application/views/interface_assets/header.php:198 #: application/views/logbookadvanced/edit.php:17 #: application/views/logbookadvanced/index.php:292 @@ -4056,7 +4071,7 @@ msgstr "Satélite" #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 -#: application/views/gridmap/index.php:80 +#: application/views/gridmap/index.php:88 #: application/views/logbookadvanced/index.php:301 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 @@ -4069,7 +4084,7 @@ msgstr "Órbita" #: application/views/activated_gridmap/index.php:50 #: application/views/awards/wab/index.php:65 -#: application/views/gridmap/index.php:92 +#: application/views/gridmap/index.php:132 #: application/views/timeline/index.php:52 msgid "Confirmation" msgstr "Confirmação" @@ -4091,24 +4106,24 @@ msgstr "Confirmação" #: application/views/awards/wapc/index.php:56 #: application/views/awards/was/index.php:68 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:125 application/views/user/edit.php:810 +#: application/views/gridmap/index.php:165 application/views/user/edit.php:810 msgid "QRZ.com" msgstr "QRZ.com" #: application/views/activated_gridmap/index.php:86 -#: application/views/gridmap/index.php:130 +#: application/views/gridmap/index.php:17 msgid "Plot" msgstr "Traçar" #: application/views/activated_gridmap/index.php:87 -#: application/views/gridmap/index.php:131 +#: application/views/gridmap/index.php:18 msgid "Clear Markers" msgstr "Limpar marcadores" #: application/views/activated_gridmap/index.php:102 #: application/views/awards/ffma/index.php:31 #: application/views/awards/gridmaster/index.php:46 -#: application/views/gridmap/index.php:148 +#: application/views/gridmap/index.php:189 #: application/views/logbookadvanced/index.php:10 msgid "Latitude" msgstr "Latitude" @@ -4116,7 +4131,7 @@ msgstr "Latitude" #: application/views/activated_gridmap/index.php:104 #: application/views/awards/ffma/index.php:33 #: application/views/awards/gridmaster/index.php:48 -#: application/views/gridmap/index.php:150 +#: application/views/gridmap/index.php:191 #: application/views/logbookadvanced/index.php:11 msgid "Longitude" msgstr "Longitude" @@ -4177,8 +4192,8 @@ msgstr "Nada encontrado!" #: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:170 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:244 +#: application/views/contesting/index.php:171 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:249 #: application/views/dcl_views/index.php:27 #: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 @@ -4283,12 +4298,12 @@ msgstr "Há dados diferentes para DOK no teu log em comparação com DCL" #: application/views/awards/pota/index.php:33 #: application/views/awards/sota/index.php:31 #: application/views/awards/wwff/index.php:33 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:25 #: application/views/contesting/index.php:103 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:239 -#: application/views/debug/index.php:589 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:244 +#: application/views/debug/index.php:594 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4329,12 +4344,12 @@ msgstr "Data" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:590 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:247 +#: application/views/debug/index.php:595 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4360,10 +4375,10 @@ msgstr "Tempo" #: application/views/adif/dcl_success.php:31 #: application/views/adif/pota_success.php:31 #: application/views/awards/vucc/band.php:18 -#: application/views/bandmap/list.php:129 -#: application/views/contesting/index.php:262 +#: application/views/bandmap/list.php:130 +#: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:591 application/views/debug/index.php:626 +#: application/views/debug/index.php:596 application/views/debug/index.php:631 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4405,8 +4420,7 @@ msgstr "Importar CBR" #: application/views/adif/import.php:73 application/views/adif/import.php:379 #: application/views/adif/import.php:400 application/views/api/index.php:22 #: application/views/dashboard/index.php:180 -#: application/views/dashboard/index.php:209 -#: application/views/dashboard/index.php:214 +#: application/views/dashboard/index.php:213 #: application/views/eqsl/import.php:46 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 #: application/views/options/maptiles.php:48 @@ -4425,7 +4439,7 @@ msgstr "O tamanho máximo de upload de ficheiro é " #: application/views/adif/import.php:349 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:193 application/views/debug/index.php:210 -#: application/views/debug/index.php:581 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:586 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 @@ -4476,7 +4490,7 @@ msgstr "Importar contactos duplicados" #: application/views/adif/import.php:126 msgid "Select if QSOs shall be imported, even if they already exist." -msgstr "" +msgstr "Selecione se os QSOs devem ser importados, mesmo que já existam." #: application/views/adif/import.php:131 msgid "Use DXCC information from ADIF" @@ -4493,7 +4507,7 @@ msgstr "" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 #: application/views/interface_assets/footer.php:580 -#: application/views/interface_assets/footer.php:2564 +#: application/views/interface_assets/footer.php:2662 msgid "DANGER" msgstr "PERIGO" @@ -4702,6 +4716,8 @@ msgid "" "An example for a tool to export the POTA hunter log in ADIF format is %s " "made by AF0G and available on GitHub." msgstr "" +"Ein Beispiel für ein Tool zum Exportieren des POTA-Hunter-Logs im ADIF-" +"Format ist %s, erstellt von AF0G und auf GitHub verfügbar." #: application/views/adif/import.php:399 msgid "" @@ -4720,7 +4736,7 @@ msgstr "" #: application/views/adif/import.php:399 #: application/views/adif/import_success.php:40 #: application/views/dcl_views/index.php:76 -#: application/views/lotw_views/index.php:137 +#: application/views/lotw_views/index.php:154 msgid "Information" msgstr "Informação" @@ -5237,7 +5253,7 @@ msgstr "Condados Confirmados" #: application/views/awards/wapc/index.php:145 #: application/views/awards/was/index.php:180 #: application/views/awards/wpx/index.php:172 -#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:317 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -5257,7 +5273,8 @@ msgstr "Total" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:151 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/dxatlas/index.php:80 +#: application/views/gridmap/index.php:199 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 #: application/views/logbookadvanced/index.php:335 @@ -5265,7 +5282,7 @@ msgstr "Total" #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:308 -#: application/views/qso/index.php:450 +#: application/views/qso/index.php:451 #: application/views/search/cqzones_result.php:13 #: application/views/station_profile/create.php:110 #: application/views/station_profile/edit.php:157 @@ -5326,9 +5343,9 @@ msgstr "Prémios - CQ WAZ" #: application/views/awards/wab/list.php:6 #: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:81 -#: application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:457 +#: application/views/bandmap/list.php:82 +#: application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:462 #: application/views/interface_assets/footer.php:43 #: application/views/search/result.php:32 #: application/views/visitor/index.php:270 @@ -5338,9 +5355,9 @@ msgstr "Confirmado" #: application/views/awards/cq/index.php:35 #: application/views/awards/itu/index.php:35 #: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:80 -#: application/views/dashboard/index.php:335 -#: application/views/dashboard/index.php:451 +#: application/views/bandmap/list.php:81 +#: application/views/dashboard/index.php:340 +#: application/views/dashboard/index.php:456 #: application/views/search/result.php:35 #: application/views/visitor/index.php:266 msgid "Worked" @@ -5418,7 +5435,7 @@ msgstr "Mostrar contactos com tipo de QSL" #: application/views/awards/iota/index.php:62 #: application/views/awards/itu/index.php:57 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2543 +#: application/views/interface_assets/footer.php:2641 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -5675,6 +5692,7 @@ msgstr "" #: application/views/awards/dxcc/index.php:28 #: application/views/awards/wpx/index.php:13 +#: application/views/gridmap/index.php:16 #: application/views/logbookadvanced/index.php:221 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" @@ -5692,12 +5710,12 @@ msgstr "Incluir eliminadas" #: application/views/awards/dxcc/index.php:97 #: application/views/awards/iota/index.php:88 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:88 +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:89 #: application/views/logbookadvanced/edit.php:217 #: application/views/logbookadvanced/index.php:408 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 -#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:425 +#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:426 #: application/views/view_log/qso.php:350 msgid "Antarctica" msgstr "Antártica" @@ -5705,12 +5723,12 @@ msgstr "Antártica" #: application/views/awards/dxcc/index.php:101 #: application/views/awards/iota/index.php:92 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:87 +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:88 #: application/views/logbookadvanced/edit.php:216 #: application/views/logbookadvanced/index.php:407 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 -#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:424 +#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:425 #: application/views/view_log/qso.php:347 msgid "Africa" msgstr "África" @@ -5718,12 +5736,12 @@ msgstr "África" #: application/views/awards/dxcc/index.php:105 #: application/views/awards/iota/index.php:96 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:89 +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:90 #: application/views/logbookadvanced/edit.php:219 #: application/views/logbookadvanced/index.php:410 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 -#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:426 +#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:427 #: application/views/view_log/qso.php:353 msgid "Asia" msgstr "Ásia" @@ -5731,12 +5749,12 @@ msgstr "Ásia" #: application/views/awards/dxcc/index.php:109 #: application/views/awards/iota/index.php:100 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:90 +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:91 #: application/views/logbookadvanced/edit.php:220 #: application/views/logbookadvanced/index.php:411 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 -#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:427 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:428 #: application/views/view_log/qso.php:356 msgid "Europe" msgstr "Europa" @@ -5744,12 +5762,12 @@ msgstr "Europa" #: application/views/awards/dxcc/index.php:113 #: application/views/awards/iota/index.php:104 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:91 +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:92 #: application/views/logbookadvanced/edit.php:218 #: application/views/logbookadvanced/index.php:409 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 -#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:428 +#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:429 #: application/views/view_log/qso.php:359 msgid "North America" msgstr "América do Norte" @@ -5757,12 +5775,12 @@ msgstr "América do Norte" #: application/views/awards/dxcc/index.php:117 #: application/views/awards/iota/index.php:108 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:93 +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:94 #: application/views/logbookadvanced/edit.php:221 #: application/views/logbookadvanced/index.php:412 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 -#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:430 +#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:431 #: application/views/view_log/qso.php:365 msgid "South America" msgstr "América do Sul" @@ -5770,12 +5788,12 @@ msgstr "América do Sul" #: application/views/awards/dxcc/index.php:121 #: application/views/awards/iota/index.php:112 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:92 +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:93 #: application/views/logbookadvanced/edit.php:222 #: application/views/logbookadvanced/index.php:413 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 -#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:429 +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:430 #: application/views/view_log/qso.php:362 msgid "Oceania" msgstr "Oceânia" @@ -6090,7 +6108,7 @@ msgstr "Mostrar mapa IOTA" #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 #: application/views/contesting/index.php:64 -#: application/views/contesting/index.php:228 +#: 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:782 @@ -6118,13 +6136,14 @@ msgstr "Suprimido" #: application/views/awards/itu/index.php:3 #: application/views/awards/itu/index.php:151 +#: application/views/gridmap/index.php:201 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 #: application/views/logbookadvanced/index.php:349 #: application/views/logbookadvanced/index.php:827 #: application/views/logbookadvanced/useroptions.php:118 #: application/views/lookup/index.php:8 application/views/qso/edit_ajax.php:316 -#: application/views/qso/index.php:460 +#: application/views/qso/index.php:461 #: application/views/search/ituzones_result.php:13 #: application/views/station_profile/create.php:124 #: application/views/station_profile/edit.php:174 @@ -6221,7 +6240,7 @@ msgid "City" msgstr "Cidade" #: application/views/awards/jcc/index.php:188 -#: application/views/dashboard/index.php:447 +#: application/views/dashboard/index.php:452 #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 @@ -6272,7 +6291,7 @@ msgstr "" "Parque)" #: application/views/awards/pota/index.php:32 -#: application/views/qso/index.php:274 application/views/qso/index.php:567 +#: application/views/qso/index.php:274 application/views/qso/index.php:568 #: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:276 #: application/views/user/edit.php:674 application/views/view_log/qso.php:403 @@ -6512,7 +6531,7 @@ msgstr "Diplomas - Worked All Continents (WAC)" #: application/views/logbookadvanced/index.php:866 #: application/views/logbookadvanced/useroptions.php:170 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 -#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:422 #: application/views/view_log/qso.php:342 msgid "Continent" msgstr "Continente" @@ -6767,7 +6786,7 @@ msgstr "Mostrar mapa WAS" #: application/views/awards/wpx/index.php:76 msgid "Band / Satellite / Orbit" -msgstr "" +msgstr "Banda / Satélite / Órbita" #: application/views/awards/wpx/wpx_details.php:21 #: application/views/oqrs/showrequests.php:86 @@ -6804,7 +6823,7 @@ msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" msgstr "Campos considerados para este diploma: WWFF (ADIF: WWFF_REF)" #: application/views/awards/wwff/index.php:32 -#: application/views/qso/index.php:262 application/views/qso/index.php:554 +#: application/views/qso/index.php:262 application/views/qso/index.php:555 #: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:263 #: application/views/user/edit.php:670 application/views/view_log/qso.php:396 @@ -6880,7 +6899,7 @@ msgstr "Lista de Bandas" msgid "None" msgstr "Nenhum" -#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:84 +#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:85 msgid "Spots de" msgstr "Spots de" @@ -6894,40 +6913,46 @@ msgstr "" msgid "Click to prepare logging." msgstr "Clique para preparar o registo." -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:70 +#: application/views/contesting/index.php:160 +#: application/views/qso/index.php:353 +msgid "WebSocket (Requires WLGate>1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "Status DXCC" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "Não contactado" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "Contactado, não confirmado" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "Fonia" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "CW" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "Digital" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "WAC" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "Spotter" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6935,7 +6960,7 @@ msgstr "Spotter" msgid "Message" msgstr "Mensagem" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "Último Trabalhado" @@ -7024,6 +7049,8 @@ msgid "" "Changes made here are instance-wide and will affect EVERY User. You see " "this, because you're an instance-admin" msgstr "" +"As alterações feitas aqui são para toda a instância e afetarão TODOS os " +"usuários. Vês isso porque és um administrador da instância" #: application/views/bands/edit.php:2 application/views/update/index.php:35 #: application/views/update/index.php:59 @@ -7350,7 +7377,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7413,7 +7440,7 @@ msgstr "Sim" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7459,7 +7486,7 @@ msgid "No contests were found in your log." msgstr "Não foram encontrados concursos no seu log." #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "Todos exceto satélite" @@ -7819,7 +7846,7 @@ msgstr "" "Não foram encontradas activações futuras. Verifique novamente mais tarde." #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7884,10 +7911,10 @@ msgid "Show Details" msgstr "Mostrar detalhes" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "Hoje" @@ -8046,7 +8073,7 @@ msgstr "Número de série + Locator + Troca" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "Indicativo do operador" @@ -8125,54 +8152,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "Serial" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "Serial (E)" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "Gridsquare (E)" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "Exch (E)" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "Serial (R)" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "Gridsquare (R)" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "Exch (R)" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "Reiniciar contacto" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "Guardar contacto" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "Sugestões de Indicativos" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "Logbook de Concursos" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "Gridsquare VUCC" @@ -8256,7 +8283,7 @@ msgstr "Como funciona" #: application/views/cron/index.php:21 #, php-format msgid "For more information or help, take a look in the %s." -msgstr "" +msgstr "Para mais informações ou ajuda, dá uma vista de olhos no %s." #: application/views/cron/index.php:28 msgid "" @@ -8343,7 +8370,7 @@ msgstr "Apenas os contactos com informações SOTA serão exportados!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "Modo de Propagação" @@ -8361,6 +8388,7 @@ msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your version " "is: %s." msgstr "" +"Tem de atualizar a sua versão do PHP. A versão mínima é %s. A sua versão é %s" #: application/views/dashboard/index.php:118 #, php-format @@ -8394,12 +8422,15 @@ msgid "" "Your active station location is not linked to your active station logbook. " "Click %shere%s to do it." msgstr "" +"A tua localização de estação activa não está ligada ao teu diário de estação " +"activo. Clica %saqui%s para o fazeres." #: application/views/dashboard/index.php:163 #, php-format msgctxt "Dashboard Warning" msgid "You have no station linked to your logbook. Click %shere%s to do it." msgstr "" +"Não tem nenhuma estação ligada ao seu Logbook. Clique %saqui%s para o fazer." #: application/views/dashboard/index.php:173 #, php-format @@ -8414,6 +8445,8 @@ msgid "" "Don't loose your streak - You have already had at least one QSO for the last " "%s consecutive days." msgstr "" +"Não percas a tua sequência - Já tiveste pelo menos um QSO nos últimos %s " +"dias consecutivos." #: application/views/dashboard/index.php:184 msgid "You have made no QSOs today; time to turn on the radio!" @@ -8431,45 +8464,58 @@ msgstr "" "Tem temas sem modo de tema definido. Peça ao administrador para editar os " "temas." -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" -msgstr "Pelo menos um dos seus %scertificados LoTW%s está expirado!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" +msgstr "" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" -msgstr "Pelo menos um dos seus %scertificados LoTW%s está prestes a expirar!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" +msgstr "" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" msgstr[0] "Máximo. %d contacto anterior é mostrado" msgstr[1] "Máximo. %d contactos anteriores são mostrados" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "Distribuição de contactos" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "Distribuição de DXCCs" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "Necessário" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8480,7 +8526,7 @@ msgstr "Necessário" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8503,10 +8549,10 @@ msgstr "Necessário" msgid "Sent" msgstr "Enviado" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8539,7 +8585,7 @@ msgstr "Enviado" msgid "Received" msgstr "Recebido" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8565,7 +8611,7 @@ msgstr "Recebido" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8579,27 +8625,27 @@ msgstr "Recebido" msgid "Requested" msgstr "Solicitado" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "Logbook of the World" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "VUCC-Grids" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" -msgstr "" +msgstr "Dados Solares e Propagação" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." -msgstr "" +msgstr "Última atualização às %s." -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." -msgstr "" +msgstr "Dados fornecidos pela HAMqsl." #: application/views/dayswithqso/index.php:3 msgid "Number of QSOs for this day of the week" @@ -8737,80 +8783,84 @@ msgstr "" #: application/views/dcl_views/import.php:54 msgid "Import DCL Matches" -msgstr "" +msgstr "Importar partidas DCL" #: application/views/dcl_views/index.php:8 msgid "Delete Keys" -msgstr "" +msgstr "Apagar Teclas" #: application/views/dcl_views/index.php:9 msgid "Available DCL-Keys" -msgstr "" +msgstr "Chaves DCL disponíveis" #: application/views/dcl_views/index.php:9 msgid "Request DCL Key" -msgstr "" +msgstr "Solicitar chave DCL" #: application/views/dcl_views/index.php:28 msgid "Valid from" -msgstr "" +msgstr "Válido a partir de" #: application/views/dcl_views/index.php:29 msgid "Valid till" -msgstr "" +msgstr "Válido até" #: application/views/dcl_views/index.php:61 msgid "You need to request DCL keys to use this function." -msgstr "" +msgstr "Deve solicitar as chaves DCL para utilizar esta função." #: application/views/dcl_views/index.php:80 msgid "The next automatic sync with DCL will happen at: " -msgstr "" +msgstr "A próxima sincronização automática com DCL ocorrerá às: " #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "Sincronização manual" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "a correr..." #: application/views/dcl_views/key_import.php:8 msgid "DCL Key Management" -msgstr "" +msgstr "Gestão de Chaves DCL" #: application/views/dcl_views/key_import.php:13 msgid "Import Key" -msgstr "" +msgstr "Chave de Importação" #: application/views/dcl_views/key_import.php:14 msgid "" "You requested a key for DCL-Dataexchange, which was successful. The " "following data has been imported" msgstr "" +"Solicitaste uma chave para o DCL-Dataexchange, que foi bem-sucedida. Os " +"seguintes dados foram importados" #: application/views/dcl_views/key_import.php:19 msgid "Received a valid DCL-Key" -msgstr "" +msgstr "Chave DCL válida recebida" #: application/views/dcl_views/key_import.php:20 msgid "DOK History" -msgstr "" +msgstr "História do DOK" #: application/views/dcl_views/key_import.php:24 #: application/views/dcl_views/key_import.php:46 msgid "Validity" -msgstr "" +msgstr "Validade" #: application/views/dcl_views/key_import.php:42 msgid "Call History" -msgstr "" +msgstr "Histórico de Chamadas" #: application/views/dcl_views/key_import.php:63 msgid "Received an invalid DCL-Key. Please check your DCL-Login, and try again" msgstr "" +"Recebeu uma chave DCL inválida. Por favor, verifica o teu login DCL e tenta " +"novamente." #: application/views/dcl_views/upload_cert.php:8 #: application/views/dcl_views/upload_cert.php:33 @@ -9132,6 +9182,7 @@ msgstr "Atualização do DXCC via Club Log" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "Atualização" @@ -9170,13 +9221,17 @@ msgstr "Atualização dos Hams que estão nas notas" #: application/views/debug/index.php:568 msgid "HAMqsl" +msgstr "HAMqsl" + +#: application/views/debug/index.php:573 +msgid "VUCC Grids" msgstr "" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "Manutenção da QSO-DB" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -9186,144 +9241,144 @@ msgstr[0] "" msgstr[1] "" "A base de dados contém %d contactos sem um perfil de estação (localização)" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" "Por favor marque os contactos e reatribua-os a uma localização de estação " "existente:" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "Localização do objetivo" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "Reatribuir" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Cada contacto na sua base de dados é atribuído a um perfil de estação " "(localização)" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "Tudo ok" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "Albanês" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "Arménio" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "Bósnio" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "Búlgaro" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "Chinês (simplificado)" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "Croata" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "Checo" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "Holandês" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "Inglês" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "Estoniano" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "Finlandês" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "Francês" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "Alemão" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "Grego" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "Húngaro" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "Italiano" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "Japonês" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "Letão" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "Lituano" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "Montenegrino" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "Polaco" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "Português" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "Russo" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "Sérvio" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "Eslovaco" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "Esloveno" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "Espanhol" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "Sueco" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "Turco" @@ -9783,10 +9838,10 @@ msgid "QSL Date" msgstr "Data QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9895,7 +9950,7 @@ msgid "Worked not confirmed" msgstr "Contactado mas não confirmado" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "Limpar" @@ -9940,20 +9995,20 @@ msgstr "Informação de satélites" #: application/views/interface_assets/footer.php:59 msgid "Error loading notes" -msgstr "" +msgstr "Erro ao carregar notas" #: application/views/interface_assets/footer.php:60 msgid "Sorting" -msgstr "" +msgstr "Ordenação" #: application/views/interface_assets/footer.php:61 msgid "Duplication is disabled for Contacts notes" -msgstr "" +msgstr "A duplicação está desativada para as notas de Contactos." #: application/views/interface_assets/footer.php:62 #: application/views/interface_assets/footer.php:64 msgid "Duplicate" -msgstr "" +msgstr "Duplicado" #: application/views/interface_assets/footer.php:65 #: application/views/notes/view.php:48 @@ -9962,23 +10017,23 @@ msgstr "Apagar nota" #: application/views/interface_assets/footer.php:66 msgid "Duplicate Note" -msgstr "" +msgstr "Nota duplicada" #: application/views/interface_assets/footer.php:67 msgid "Delete this note?" -msgstr "" +msgstr "Apagar esta nota?" #: application/views/interface_assets/footer.php:68 msgid "Duplicate this note?" -msgstr "" +msgstr "Duplicar esta nota?" #: application/views/interface_assets/footer.php:69 msgid "Duplication Disabled" -msgstr "" +msgstr "Duplicação desativada" #: application/views/interface_assets/footer.php:70 msgid "No notes were found" -msgstr "" +msgstr "Não foram encontradas notas" #: application/views/interface_assets/footer.php:152 #: application/views/interface_assets/header.php:515 @@ -10094,62 +10149,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Gridsquares" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "Não tem sessão iniciada. Por favor %slogin%s" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "quadrícula" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "Número total" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "Cartão QSL para " -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Aviso! Tem a certeza de que quer eliminar este cartão QSL?" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "Cartão eQSL" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "Cartão eQSL para " -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "Ficheiro de imagem QSL" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "Frente do Cartão QSL:" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "Parte traseira do Cartão QSL:" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "Adicionar QSOs adicionais a um Cartão QSL" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "Algo correu mal. Por favor, tente novamente!" @@ -10236,7 +10291,7 @@ msgstr "Worked All Europe (WAE)" #: application/views/interface_assets/header.php:192 msgid "Worked All Prefixes (WPX)" -msgstr "" +msgstr "Trabalhou Todos os Prefixos (WPX)" #: application/views/interface_assets/header.php:214 msgid "Canada" @@ -10414,7 +10469,7 @@ msgstr "Importação / Exportação do Clublog" #: application/views/interface_assets/header.php:504 msgid "DCL Export" -msgstr "" +msgstr "Exportação DCL" #: application/views/interface_assets/header.php:516 #: application/views/logbookadvanced/index.php:741 @@ -10753,14 +10808,14 @@ msgstr "Potência da estação" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "Região" #: application/views/logbookadvanced/edit.php:37 msgid "QSL / LoTW / Clublog / eQSL / QRZ / DCL" -msgstr "" +msgstr "QSL / LoTW / Clublog / eQSL / QRZ / DCL" #: application/views/logbookadvanced/edit.php:38 msgid "Clublog Received" @@ -10772,11 +10827,11 @@ msgstr "Clublog enviado" #: application/views/logbookadvanced/edit.php:40 msgid "DCL Sent" -msgstr "" +msgstr "DCL Enviado" #: application/views/logbookadvanced/edit.php:41 msgid "DCL Received" -msgstr "" +msgstr "DCL Recebido" #: application/views/logbookadvanced/edit.php:42 msgid "eQSL Received" @@ -10804,11 +10859,11 @@ msgstr "QRZ enviado" #: application/views/logbookadvanced/edit.php:48 msgid "QSL Received" -msgstr "" +msgstr "QSL recebida" #: application/views/logbookadvanced/edit.php:49 msgid "QSL Sent" -msgstr "" +msgstr "QSL enviada" #: application/views/logbookadvanced/edit.php:50 msgid "QSLMSG" @@ -10873,7 +10928,7 @@ msgstr "Verificado" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10894,7 +10949,7 @@ msgstr "Direto" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10913,7 +10968,7 @@ msgstr "Bureau" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10928,49 +10983,49 @@ msgstr "Eletrónico" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Manager" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "NENHUM" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "Itália Africana" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "Ilha do Urso" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "Turquia Europeia" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "ITU Viena" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "Kosovo" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "Ilhas Shetland" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "Sicília" @@ -11146,7 +11201,7 @@ msgstr "QSL enviada" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -11183,7 +11238,7 @@ msgstr "Em fila" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11240,11 +11295,11 @@ msgstr "eQSL recebida" #: application/views/logbookadvanced/index.php:550 msgid "DCL sent" -msgstr "" +msgstr "DCL enviado" #: application/views/logbookadvanced/index.php:559 msgid "DCL received" -msgstr "" +msgstr "DCL Recebido" #: application/views/logbookadvanced/index.php:574 msgid "QSL Images" @@ -11632,39 +11687,43 @@ msgstr "Data de expiração" msgid "Last Upload" msgstr "Último envio" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "Expirado" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "A expirar" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" -msgstr "Válido" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" +msgstr "" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "Último sucesso: %s" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "Última falha: %s" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "Não sincronizado" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" "É necessário carregar um ou mais certificados LoTW \".p12\" para utilizar " "esta área." -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "A próxima sincronização automática com o LoTW ocorrerá em: " @@ -11773,6 +11832,10 @@ msgid "" "store information about QSO partners. These notes are private and are not " "shared with other users nor exported to external services." msgstr "" +"Os Contactos são uma categoria especial de notas usada em vários lugares do " +"Wavelog para armazenar informações sobre parceiros de QSO. Estas notas são " +"privadas e não são partilhadas com outros utilizadores nem exportadas para " +"serviços externos." #: application/views/notes/add.php:48 application/views/notes/edit.php:56 msgid "Note Contents" @@ -11784,27 +11847,27 @@ msgstr "Guardar nota" #: application/views/notes/main.php:25 msgid "All Categories" -msgstr "" +msgstr "Todas as Categorias" #: application/views/notes/main.php:53 msgid "Search notes (min. 3 chars)" -msgstr "" +msgstr "Pesquisar notas (mín. 3 carateres)" #: application/views/notes/main.php:54 msgid "Reset search" -msgstr "" +msgstr "Refazer pesquisa" #: application/views/notes/main.php:72 msgid "Creation" -msgstr "" +msgstr "Criação" #: application/views/notes/main.php:73 msgid "Last Modification" -msgstr "" +msgstr "Última Modificação" #: application/views/notes/view.php:20 msgid "View Note" -msgstr "" +msgstr "Nota de visualização" #: application/views/operator/index.php:9 msgid "" @@ -12262,7 +12325,7 @@ msgstr "Há alguma informação adicional que seja necessário conhecer?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -12310,7 +12373,7 @@ msgstr "Estação" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12656,11 +12719,11 @@ msgstr "Exportar QSLs solicitados para impressão" #: application/views/qslprint/index.php:31 msgid "Show Band or Frequency:" -msgstr "" +msgstr "Mostrar Banda ou Frequência:" #: application/views/qslprint/index.php:35 msgid "Band & Frequency" -msgstr "" +msgstr "Banda e Frequência" #: application/views/qslprint/index.php:39 msgid "" @@ -12712,19 +12775,19 @@ msgstr "Lista de contacto" #: application/views/qslprint/qslprint.php:78 msgid "Mark QSOs for a certain QSL Method:" -msgstr "" +msgstr "Marcar QSOs para um determinado método de QSL:" #: application/views/qslprint/qslprint.php:86 msgid "Mark all QSOs for the chosen QSL method" -msgstr "" +msgstr "Marcar todos os QSOs para o método de QSL escolhido." #: application/views/qslprint/qslprint.php:87 msgid "Unmark every QSO" -msgstr "" +msgstr "Desmarcar todos os QSO" #: application/views/qslprint/qslprint.php:92 msgid "Update QSOs" -msgstr "" +msgstr "Atualizar QSOs" #: application/views/qslprint/qslprint.php:95 msgid "Mark selected QSOs as sent" @@ -12875,20 +12938,12 @@ msgstr "Publicar no Bluesky" msgid "Toot on Mastodon" msgstr "Toot no Mastodon" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "Função %d - Nome" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "Função %d - Macro" @@ -12913,12 +12968,12 @@ msgstr "Frequência RX" msgid "RX Band" msgstr "Banda RX" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" "Forneça o valor da potência em Watts. Inclua apenas números na entrada." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12928,25 +12983,25 @@ msgstr "Potência de Transmissão (W)" msgid "Used for VUCC MultiGrids" msgstr "Usado para VUCC MultiGrids" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "Direção da Antena" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "Linha cinzenta" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "Outro" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "Caminho Curto" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "Caminho Longo" @@ -12959,38 +13014,38 @@ msgstr "Nome do Satélite" msgid "Sat Mode" msgstr "Modo Satélite" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "Azimute da Antena (°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "Azimute da antena em graus decimais." -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "Elevação da Antena (°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "Elevação da antena em graus decimais." -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "Condado da Estação" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "Informação SIG" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "Nota: Exportado para serviços de terceiros." @@ -12999,8 +13054,8 @@ msgid "Sent Method" msgstr "Método de envio" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "Método" @@ -13021,7 +13076,7 @@ msgstr "Verificado (Correspondência)" msgid "Received Method" msgstr "Método de receção" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "Obtém a mensagem padrão para eQSL, para esta estação." @@ -13065,7 +13120,7 @@ msgstr "Guardar alterações" msgid "TimeOff is less than TimeOn" msgstr "O tempo de inatividade é menor que o tempo de atividade" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "Contactos anteriores" @@ -13132,7 +13187,7 @@ msgstr "Tempo desligado" msgid "Search DXCluster for latest Spot" msgstr "Pesquisar DXCluster para o spot mais recente" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -13140,7 +13195,7 @@ msgstr "Pesquisar DXCluster para o spot mais recente" msgid "IOTA Reference" msgstr "Referência IOTA" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -13148,91 +13203,95 @@ msgstr "Referência IOTA" msgid "SOTA Reference" msgstr "Referência SOTA" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "Frequência (RX)" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "Banda (RX)" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "Por exemplo: GM/NS-001." -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "Por exemplo: DLFF-0069." -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "Por exemplo: PA-0150. Vários valores permitidos." -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "Por exemplo: GMA" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "Por exemplo: DA/NW-357" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "Por exemplo: Q03" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "Endereço de correio eletrónico do parceiro de contacto" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "Nome do Satélite" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "Modo Satélite" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "MSG QSL" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "Repor a predefinição" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "Conectar" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "Parar" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "Sintonizar" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "Parar Sintonização" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "Velocidade CW" -#: application/views/qso/index.php:769 +#: application/views/qso/index.php:778 +msgid "Stop" +msgstr "Parar" + +#: application/views/qso/index.php:779 +msgid "Tune" +msgstr "Sintonizar" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "Parar Sintonização" + +#: application/views/qso/index.php:785 +msgid "Enter text..." +msgstr "Insira o texto..." + +#: application/views/qso/index.php:786 msgid "Send" msgstr "Enviar" -#: application/views/qso/index.php:779 +#: application/views/qso/index.php:798 msgid "Suggestions" msgstr "Sugestões" -#: application/views/qso/index.php:786 +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "Foto de Perfil" @@ -14635,6 +14694,7 @@ msgid "Special Interest Group Information" msgstr "Informação do Grupo de Interesse Especial" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Problemas? Verifique a %swiki%s." @@ -15498,12 +15558,12 @@ msgstr "" #: application/views/user/edit.php:641 msgid "Dashboard solar and propagation data" -msgstr "" +msgstr "Painel de dados solares e de propagação" #: application/views/user/edit.php:647 msgid "" "This switches the display of the solar and propagation data on the dashboard." -msgstr "" +msgstr "Isto altera a exibição dos dados solares e de propagação no painel." #: application/views/user/edit.php:655 msgid "Show Reference Fields on QSO Tab" @@ -15634,7 +15694,7 @@ msgstr "ClubLog" #: application/views/user/edit.php:905 msgid "Club Log Email" -msgstr "" +msgstr "Email do Club Log" #: application/views/user/edit.php:911 msgid "Club Log Password" @@ -15744,10 +15804,6 @@ msgstr "URL do Mastodonserver" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "URL principal do seu servidor Mastodon, por exemplo, %s" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "Experimental" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "Winkeyer" @@ -16320,7 +16376,7 @@ msgstr "Este contacto está confirmado no Clublog." #: application/views/view_log/qso.php:581 msgid "This QSO is confirmed on DCL." -msgstr "" +msgstr "Este QSO está confirmado no DCL." #: application/views/view_log/qso.php:594 msgid "More QSOs" @@ -16481,6 +16537,29 @@ msgstr "Submeter pedido" msgid "Rcvd" msgstr "Recebido" +#, php-format +#~ msgctxt "LoTW Warning" +#~ msgid "At least one of your %sLoTW certificates%s is expired!" +#~ msgstr "Pelo menos um dos seus %scertificados LoTW%s está expirado!" + +#, php-format +#~ msgctxt "LoTW Warning" +#~ msgid "At least one of your %sLoTW certificates%s is about to expire!" +#~ msgstr "" +#~ "Pelo menos um dos seus %scertificados LoTW%s está prestes a expirar!" + +#~ msgid "Expired" +#~ msgstr "Expirado" + +#~ msgid "Expiring" +#~ msgstr "A expirar" + +#~ msgid "Valid" +#~ msgstr "Válido" + +#~ msgid "Experimental" +#~ msgstr "Experimental" + #, php-format #~ msgctxt "Dashboard Warning" #~ msgid "" diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.mo b/application/locale/ru_RU/LC_MESSAGES/messages.mo index d1a9d3284..2baa1218d 100644 Binary files a/application/locale/ru_RU/LC_MESSAGES/messages.mo and b/application/locale/ru_RU/LC_MESSAGES/messages.mo differ diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.po b/application/locale/ru_RU/LC_MESSAGES/messages.po index 3a9361790..9be81977b 100644 --- a/application/locale/ru_RU/LC_MESSAGES/messages.po +++ b/application/locale/ru_RU/LC_MESSAGES/messages.po @@ -12,11 +12,11 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" -"PO-Revision-Date: 2025-10-15 05:17+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" +"PO-Revision-Date: 2025-10-20 10:48+0000\n" "Last-Translator: Michael Skolsky \n" -"Language-Team: Russian \n" +"Language-Team: Russian \n" "Language: ru_RU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -77,9 +77,9 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:79 application/controllers/Lotw.php:105 -#: application/controllers/Lotw.php:375 application/controllers/Lotw.php:398 -#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:839 -#: application/controllers/Lotw.php:944 application/controllers/Mode.php:15 +#: application/controllers/Lotw.php:383 application/controllers/Lotw.php:406 +#: application/controllers/Lotw.php:763 application/controllers/Lotw.php:847 +#: application/controllers/Lotw.php:952 application/controllers/Mode.php:15 #: application/controllers/Notes.php:11 application/controllers/Options.php:14 #: application/controllers/Oqrs.php:15 application/controllers/Oqrs.php:165 #: application/controllers/Qrbcalc.php:13 application/controllers/Qrz.php:200 @@ -88,8 +88,8 @@ msgstr "" #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:187 -#: application/controllers/Qso.php:287 application/controllers/Qso.php:308 -#: application/controllers/Qso.php:331 application/controllers/Qso.php:629 +#: application/controllers/Qso.php:318 application/controllers/Qso.php:339 +#: application/controllers/Qso.php:362 application/controllers/Qso.php:662 #: application/controllers/Radio.php:32 application/controllers/Radio.php:291 #: application/controllers/Radio.php:317 application/controllers/Radio.php:333 #: application/controllers/Reg1test.php:17 @@ -147,7 +147,7 @@ msgstr "Карта активированных квадратов" #: application/controllers/Activated_gridmap.php:31 #: application/controllers/Awards.php:1003 #: application/controllers/Awards.php:1035 -#: application/controllers/Gridmap.php:31 +#: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 #: application/views/interface_assets/footer.php:47 @@ -157,13 +157,13 @@ msgid "Gridsquares" msgstr "Квадраты" #: application/controllers/Activated_gridmap.php:32 -#: application/controllers/Gridmap.php:32 +#: application/controllers/Gridmap.php:33 #: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "Подтверждёно квадратов" #: application/controllers/Activated_gridmap.php:33 -#: application/controllers/Gridmap.php:33 +#: application/controllers/Gridmap.php:34 #: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "Не подтверждено квадратов" @@ -173,25 +173,25 @@ msgid "Total gridsquares activated" msgstr "Всего квадратов активировано" #: application/controllers/Activated_gridmap.php:36 -#: application/controllers/Gridmap.php:36 +#: application/controllers/Gridmap.php:37 #: application/controllers/Visitor.php:390 msgid "Fields" msgstr "Поля" #: application/controllers/Activated_gridmap.php:37 -#: application/controllers/Gridmap.php:37 +#: application/controllers/Gridmap.php:38 #: application/controllers/Visitor.php:391 msgid "Fields confirmed" msgstr "Подтверждённые поля" #: application/controllers/Activated_gridmap.php:38 -#: application/controllers/Gridmap.php:38 +#: application/controllers/Gridmap.php:39 #: application/controllers/Visitor.php:392 msgid "Fields not confirmed" msgstr "Неподтверждённые поля" #: application/controllers/Activated_gridmap.php:39 -#: application/controllers/Gridmap.php:39 +#: application/controllers/Gridmap.php:40 #: application/controllers/Visitor.php:393 msgid "Total fields worked" msgstr "Всего полей сработано" @@ -341,13 +341,13 @@ msgstr "Дипломы - %s" #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:401 application/views/qso/index.php:302 -#: application/views/qso/index.php:593 application/views/user/edit.php:682 +#: application/views/qso/index.php:594 application/views/user/edit.php:682 #: application/views/view_log/qso.php:460 msgid "DOK" msgstr "DOK" #: application/controllers/Awards.php:176 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:130 application/views/bands/index.php:50 +#: application/views/bandmap/list.php:131 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:180 @@ -360,7 +360,7 @@ msgstr "DOK" #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 -#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:402 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 #: application/views/search/result.php:27 @@ -563,7 +563,7 @@ msgstr "Fred Fish Memorial Award (FFMA)" #: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:286 -#: application/views/qso/index.php:579 application/views/user/edit.php:678 +#: application/views/qso/index.php:580 application/views/user/edit.php:678 #: application/views/view_log/qso.php:425 #: application/views/view_log/qso.php:736 msgid "SIG" @@ -830,7 +830,7 @@ msgstr "Редактирование задачи" #: application/views/debug/index.php:539 application/views/debug/index.php:544 #: application/views/debug/index.php:549 application/views/debug/index.php:554 #: application/views/debug/index.php:559 application/views/debug/index.php:564 -#: application/views/debug/index.php:569 +#: application/views/debug/index.php:569 application/views/debug/index.php:574 msgid "never" msgstr "никогда" @@ -887,7 +887,7 @@ msgstr "Не работает" msgid "SOTA CSV Export" msgstr "Экспорт SOTA в CSV" -#: application/controllers/Dashboard.php:152 +#: application/controllers/Dashboard.php:154 #: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "Панель управления" @@ -940,35 +940,35 @@ msgstr "Профили QTH с настроенной загрузкой в DCL msgid "Key(s) Deleted." msgstr "Ключ(и) удалены." -#: application/controllers/Debug.php:117 +#: application/controllers/Debug.php:118 msgid "Debug" msgstr "Отладка" -#: application/controllers/Debug.php:156 +#: application/controllers/Debug.php:157 msgid "Migrate data now" msgstr "Переносите данные сейчас" -#: application/controllers/Debug.php:159 +#: application/controllers/Debug.php:160 msgid "Migration already done. Run again?" msgstr "Миграция уже выполнена. Запустить снова?" -#: application/controllers/Debug.php:163 +#: application/controllers/Debug.php:164 msgid "No data to migrate" msgstr "Нет данных для миграции" -#: application/controllers/Debug.php:167 application/controllers/Debug.php:172 +#: application/controllers/Debug.php:168 application/controllers/Debug.php:173 msgid "No migration possible" msgstr "Миграция невозможна" -#: application/controllers/Debug.php:237 +#: application/controllers/Debug.php:238 msgid "Wavelog was updated successfully!" msgstr "Wavelog был успешно обновлен!" -#: application/controllers/Debug.php:255 +#: application/controllers/Debug.php:256 msgid "Selfupdate() not available. Check the Error Log." msgstr "Selfupdate() недоступен. Проверьте журнал ошибок." -#: application/controllers/Debug.php:299 +#: application/controllers/Debug.php:300 msgid "" "File Migration was successfull, but please check also manually. If " "everything seems right you can delete the folders 'assets/qslcard' and " @@ -978,7 +978,7 @@ msgstr "" "Если все в порядке, можете удалить папки 'assets/qslcard' и 'images/" "eqsl_card_images'." -#: application/controllers/Debug.php:302 +#: application/controllers/Debug.php:303 msgid "File Migration failed. Please check the Error Log." msgstr "" "Не удалось выполнить миграцию файлов. Пожалуйста, проверьте журнал ошибок." @@ -1020,7 +1020,7 @@ msgid "DX Calendar" msgstr "Календарь DX экспедиций" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:404 +#: application/views/dashboard/index.php:409 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:310 msgid "eQSL Cards" @@ -1080,7 +1080,7 @@ msgstr "Подтверждения" msgid "Gridsquare Map" msgstr "Карта квадратов" -#: application/controllers/Gridmap.php:34 +#: application/controllers/Gridmap.php:35 #: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "Всего сработано квадратов" @@ -1286,7 +1286,7 @@ msgstr "Журнал" #: application/views/awards/wapc/index.php:44 #: application/views/awards/was/index.php:56 #: application/views/awards/wpx/index.php:28 -#: application/views/gridmap/index.php:101 +#: application/views/gridmap/index.php:141 #: application/views/logbookadvanced/index.php:794 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/oqrs/qsolist.php:12 @@ -1318,8 +1318,8 @@ msgstr "QSL" #: application/views/awards/wapc/index.php:48 #: application/views/awards/was/index.php:60 #: application/views/awards/wpx/index.php:32 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:109 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:149 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 @@ -1355,8 +1355,8 @@ msgstr "LoTW" #: application/views/awards/wapc/index.php:52 #: application/views/awards/was/index.php:64 #: application/views/awards/wpx/index.php:36 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:117 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:157 #: application/views/logbookadvanced/useroptions.php:78 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 @@ -1398,23 +1398,23 @@ msgstr "eQSL" #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:110 -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:136 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 #: application/views/contesting/index.php:118 -#: application/views/contesting/index.php:264 +#: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:597 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 -#: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 -#: application/views/kml/index.php:31 +#: application/views/gridmap/index.php:104 +#: application/views/hamsat/index.php:33 application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:12 #: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/index.php:764 @@ -1464,8 +1464,8 @@ msgstr "Вид модуляции" #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:179 -#: application/views/contesting/index.php:265 +#: application/views/contesting/index.php:180 +#: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 #: application/views/logbookadvanced/index.php:767 #: application/views/logbookadvanced/useroptions.php:38 @@ -1493,8 +1493,8 @@ msgstr "RST (TX)" #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 -#: application/views/contesting/index.php:203 -#: application/views/contesting/index.php:266 +#: application/views/contesting/index.php:204 +#: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 #: application/views/logbookadvanced/index.php:770 #: application/views/logbookadvanced/useroptions.php:42 @@ -1602,9 +1602,9 @@ msgstr "Область/штат" #: application/views/awards/gridmaster/index.php:50 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:26 -#: application/views/contesting/index.php:271 +#: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 -#: application/views/gridmap/index.php:152 +#: application/views/gridmap/index.php:193 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 @@ -1648,7 +1648,7 @@ msgstr "QTH локатор" #: application/views/dashboard/index.php:14 #: application/views/distancerecords/index.php:15 #: application/views/distances/index.php:13 -#: application/views/gridmap/index.php:154 +#: application/views/gridmap/index.php:195 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 #: application/views/logbookadvanced/index.php:869 @@ -1697,17 +1697,17 @@ msgstr "Дистанция" #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:96 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:97 #: application/views/bands/create.php:24 application/views/bands/edit.php:7 #: application/views/bands/index.php:47 application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:263 +#: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:593 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:598 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 -#: application/views/gridmap/index.php:10 application/views/kml/index.php:19 +#: application/views/gridmap/index.php:26 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:6 #: application/views/logbookadvanced/index.php:281 #: application/views/logbookadvanced/index.php:773 @@ -1755,7 +1755,7 @@ msgid "Band" msgstr "Диапазон" #: application/controllers/Logbook.php:1324 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:128 +#: application/controllers/Radio.php:45 application/views/bandmap/list.php:129 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:776 @@ -1814,9 +1814,9 @@ msgstr "Оператор" #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:252 #: application/views/lookup/index.php:47 -#: application/views/lotw_views/index.php:49 +#: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 -#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:411 #: application/views/station_profile/create.php:77 #: application/views/station_profile/edit.php:109 #: application/views/stationsetup/linkedlocations.php:17 @@ -1857,11 +1857,11 @@ msgstr "Сертификат импортирован." msgid "Certificate Updated." msgstr "Сертификат обновлен." -#: application/controllers/Lotw.php:381 +#: application/controllers/Lotw.php:389 msgid "Certificate Deleted." msgstr "Сертификат удален." -#: application/controllers/Lotw.php:410 +#: application/controllers/Lotw.php:418 #, php-format msgid "" "Found no certificate in file %s. If the filename contains 'key-only' this is " @@ -1870,52 +1870,52 @@ msgstr "" "В файле %s не найдено сертификата. Если имя файла содержит 'key-only', это " "обычно запрос на сертификат, который еще не обработан LoTW." -#: application/controllers/Lotw.php:646 +#: application/controllers/Lotw.php:654 msgid "LoTW ADIF Information" msgstr "LoTW. Информация ADIF" -#: application/controllers/Lotw.php:812 application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:820 application/controllers/Lotw.php:823 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "Пользователю %s (%s) не удалось войти в LoTW." -#: application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:823 msgid "Username/password incorrect" msgstr "Имя пользователя/пароль неверны" -#: application/controllers/Lotw.php:818 +#: application/controllers/Lotw.php:826 msgid "LoTW login OK!" msgstr "Вход в LoTW выполнен успешно!" -#: application/controllers/Lotw.php:822 +#: application/controllers/Lotw.php:830 msgid "LoTW currently not available. Try again later." msgstr "LoTW в настоящее время недоступен. Попробуйте позже." -#: application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 msgid "No LoTW credentials provided." msgstr "Отсутствуют учетные данные LoTW." -#: application/controllers/Lotw.php:845 +#: application/controllers/Lotw.php:853 msgid "LoTW ADIF Import" msgstr "LoTW. Импорт ADIF" -#: application/controllers/Lotw.php:871 application/controllers/Lotw.php:979 +#: application/controllers/Lotw.php:879 application/controllers/Lotw.php:987 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Вы не указали свои учетные данные ARRL LoTW!" -#: application/controllers/Lotw.php:946 +#: application/controllers/Lotw.php:954 msgid "LoTW .TQ8 Upload" msgstr "LoTW. TQ8 загрузка" -#: application/controllers/Lotw.php:1024 +#: application/controllers/Lotw.php:1032 msgid "Your ARRL username and/or password is incorrect." msgstr "Ваше имя пользователя и/или пароль ARRL неверны." -#: application/controllers/Lotw.php:1043 application/controllers/Lotw.php:1048 +#: application/controllers/Lotw.php:1051 application/controllers/Lotw.php:1056 msgid "LoTW .TQ8 Sent" msgstr "LoTW. TQ8 загружен" -#: application/controllers/Lotw.php:1055 +#: application/controllers/Lotw.php:1063 msgid "LoTW .TQ8 Not Sent" msgstr "LoTW. TQ8 не загружен" @@ -1936,7 +1936,7 @@ msgstr "Редактировать" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:409 application/views/qso/index.php:71 -#: application/views/qso/index.php:642 application/views/view_log/qso.php:14 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:14 #: application/views/view_log/qso.php:749 msgid "Notes" msgstr "Заметки" @@ -2201,8 +2201,8 @@ msgstr "QRZ. Импорт QSL" msgid "QRZ ADIF Information" msgstr "QRZ. Информация ADIF" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:356 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:361 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:287 msgid "QSL Cards" @@ -2224,15 +2224,15 @@ msgstr "Распечатать запрошенные QSL" msgid "Add QSO" msgstr "Добавить QSO" -#: application/controllers/Qso.php:690 +#: application/controllers/Qso.php:723 msgid "You have to be logged in to access this URL." msgstr "Для доступа к этому URL необходимо войти в систему." -#: application/controllers/Qso.php:696 +#: application/controllers/Qso.php:729 msgid "Call Transfer" msgstr "Перевод вызова" -#: application/controllers/Qso.php:703 +#: application/controllers/Qso.php:736 msgid "No callsign provided." msgstr "Позывной не указан." @@ -2262,7 +2262,7 @@ msgid "Options" msgstr "Опции" #: application/controllers/Radio.php:50 application/views/debug/index.php:312 -#: application/views/qso/index.php:749 +#: application/views/qso/index.php:750 msgid "Settings" msgstr "Настройки" @@ -2271,8 +2271,8 @@ msgid "UNKNOWN" msgstr "НЕИЗВЕСТНО" #: application/controllers/Radio.php:98 -#: application/views/contesting/index.php:161 -#: application/views/qso/index.php:354 +#: application/views/contesting/index.php:162 +#: application/views/qso/index.php:355 msgid "last updated" msgstr "последнее обновление" @@ -2310,13 +2310,13 @@ msgstr "Редактировать" #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:63 -#: application/views/interface_assets/footer.php:2802 -#: application/views/interface_assets/footer.php:2820 -#: application/views/interface_assets/footer.php:2841 -#: application/views/interface_assets/footer.php:2859 +#: application/views/interface_assets/footer.php:2900 +#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:2939 +#: application/views/interface_assets/footer.php:2957 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:734 -#: application/views/lotw_views/index.php:111 +#: application/views/lotw_views/index.php:128 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 #: application/views/qslcard/index.php:76 @@ -2528,7 +2528,7 @@ msgstr "Не разрешено" #: application/controllers/Stationsetup.php:156 #: application/controllers/Stationsetup.php:177 #: application/controllers/Stationsetup.php:478 -#: application/views/qso/index.php:708 application/views/simplefle/index.php:39 +#: application/views/qso/index.php:709 application/views/simplefle/index.php:39 #: application/views/widgets/on_air.php:102 msgid "Error" msgstr "Ошибка" @@ -2826,6 +2826,14 @@ msgstr "Обновление спутников для LoTW" msgid "Update of Hams of Note" msgstr "Обновить \"Заметки о корреспондентах\"" +#: application/controllers/Update.php:718 +msgid "VUCC Grid file update complete. Result: " +msgstr "" + +#: application/controllers/Update.php:720 +msgid "VUCC Grid file update failed. Result: " +msgstr "" + #: application/controllers/User.php:50 #: application/views/interface_assets/header.php:306 msgid "User Accounts" @@ -2958,7 +2966,7 @@ msgstr "Пользователь %s вышел." msgid "Station Name" msgstr "Профиль QTH" -#: application/controllers/User.php:1262 application/views/debug/index.php:594 +#: application/controllers/User.php:1262 application/views/debug/index.php:599 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:61 #: application/views/station_profile/edit.php:77 @@ -3416,7 +3424,7 @@ msgstr "QSO обновлено" #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 #: application/views/dashboard/index.php:19 -#: application/views/gridmap/index.php:156 +#: application/views/gridmap/index.php:197 #: application/views/logbookadvanced/index.php:15 #: application/views/user/edit.php:256 application/views/user/edit.php:279 #: application/views/user/edit.php:302 application/views/user/edit.php:325 @@ -3517,7 +3525,7 @@ msgid "Accumulated number of WAJA worked" msgstr "Накопленное количество отработанных WAJA" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:317 +#: application/views/dashboard/index.php:322 #: application/views/dayswithqso/index.php:42 #: application/views/dayswithqso/index.php:82 #: application/views/statistics/index.php:19 @@ -3534,7 +3542,7 @@ msgid "Yearly" msgstr "Ежегодно" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:327 #: application/views/visitor/index.php:255 msgid "Month" msgstr "Месяц" @@ -3586,8 +3594,8 @@ msgstr "Разница" #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:86 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:79 application/views/bandmap/list.php:87 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:113 #: application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 @@ -3610,14 +3618,15 @@ msgstr "Разница" #: application/views/dxatlas/index.php:60 #: application/views/dxatlas/index.php:82 #: application/views/dxatlas/index.php:94 -#: application/views/gridmap/index.php:13 -#: application/views/gridmap/index.php:28 -#: application/views/gridmap/index.php:41 -#: application/views/gridmap/index.php:70 -#: application/views/gridmap/index.php:83 +#: application/views/gridmap/index.php:29 +#: application/views/gridmap/index.php:44 +#: application/views/gridmap/index.php:78 +#: application/views/gridmap/index.php:93 +#: application/views/gridmap/index.php:107 +#: application/views/gridmap/index.php:121 #: application/views/interface_assets/footer.php:46 -#: application/views/interface_assets/footer.php:1692 -#: application/views/interface_assets/footer.php:1831 +#: application/views/interface_assets/footer.php:1790 +#: application/views/interface_assets/footer.php:1929 #: 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 @@ -3704,7 +3713,7 @@ msgstr "Период" #: application/views/accumulate/index.php:80 #: application/views/callstats/index.php:65 #: application/views/distances/index.php:53 -#: application/views/gridmap/index.php:38 +#: application/views/gridmap/index.php:41 #: application/views/logbookadvanced/edit.php:14 #: application/views/logbookadvanced/index.php:310 #: application/views/logbookadvanced/index.php:857 @@ -3724,7 +3733,7 @@ msgstr "Все, кроме спутников" #: application/views/accumulate/index.php:85 #: application/views/callstats/index.php:69 #: application/views/distances/index.php:58 -#: application/views/gridmap/index.php:42 +#: application/views/gridmap/index.php:45 #: application/views/logbookadvanced/edit.php:207 #: application/views/logbookadvanced/edit.php:215 #: application/views/logbookadvanced/index.php:406 @@ -3736,9 +3745,9 @@ msgstr "Нет/Пусто" #: application/views/callstats/index.php:71 application/views/csv/index.php:95 #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 +#: application/views/gridmap/index.php:47 application/views/kml/index.php:80 #: application/views/logbookadvanced/index.php:314 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:477 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:478 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 #: application/views/view_log/qso.php:233 @@ -3750,9 +3759,9 @@ msgstr "Рассеяние на инверсионном следе самолё #: application/views/callstats/index.php:72 application/views/csv/index.php:96 #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 +#: application/views/gridmap/index.php:48 application/views/kml/index.php:81 #: application/views/logbookadvanced/index.php:315 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:478 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:479 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 #: application/views/view_log/qso.php:236 @@ -3764,9 +3773,9 @@ msgstr "Авроральное" #: application/views/callstats/index.php:73 application/views/csv/index.php:97 #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 +#: application/views/gridmap/index.php:49 application/views/kml/index.php:82 #: application/views/logbookadvanced/index.php:316 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:479 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:480 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 #: application/views/view_log/qso.php:239 @@ -3778,9 +3787,9 @@ msgstr "Авроральное (E)" #: application/views/callstats/index.php:74 application/views/csv/index.php:98 #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 +#: application/views/gridmap/index.php:50 application/views/kml/index.php:83 #: application/views/logbookadvanced/index.php:317 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:480 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:481 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 #: application/views/view_log/qso.php:242 @@ -3792,9 +3801,9 @@ msgstr "Пассивные отражатели" #: application/views/callstats/index.php:75 application/views/csv/index.php:99 #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 +#: application/views/gridmap/index.php:51 application/views/kml/index.php:84 #: application/views/logbookadvanced/index.php:318 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:481 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:482 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 #: application/views/view_log/qso.php:245 @@ -3806,9 +3815,9 @@ msgstr "Эхолинк" #: application/views/callstats/index.php:76 application/views/csv/index.php:100 #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 +#: application/views/gridmap/index.php:52 application/views/kml/index.php:85 #: application/views/logbookadvanced/index.php:319 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:482 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:483 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 #: application/views/view_log/qso.php:248 @@ -3820,9 +3829,9 @@ msgstr "Отражение от Луны" #: application/views/callstats/index.php:77 application/views/csv/index.php:101 #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 +#: application/views/gridmap/index.php:53 application/views/kml/index.php:86 #: application/views/logbookadvanced/index.php:320 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:483 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:484 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 #: application/views/view_log/qso.php:251 @@ -3834,9 +3843,9 @@ msgstr "Спорадическое прохождение (Е)" #: application/views/callstats/index.php:78 application/views/csv/index.php:102 #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 +#: application/views/gridmap/index.php:54 application/views/kml/index.php:87 #: application/views/logbookadvanced/index.php:321 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:484 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:485 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 #: application/views/view_log/qso.php:254 @@ -3848,9 +3857,9 @@ msgstr "Анизотропия ионосферы" #: application/views/callstats/index.php:79 application/views/csv/index.php:103 #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 +#: application/views/gridmap/index.php:55 application/views/kml/index.php:88 #: application/views/logbookadvanced/index.php:322 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:485 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:486 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 #: application/views/view_log/qso.php:257 @@ -3862,9 +3871,9 @@ msgstr "Отражение от слоя F2" #: application/views/callstats/index.php:80 application/views/csv/index.php:104 #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 +#: application/views/gridmap/index.php:56 application/views/kml/index.php:89 #: application/views/logbookadvanced/index.php:323 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:486 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:487 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 #: application/views/view_log/qso.php:260 @@ -3876,9 +3885,9 @@ msgstr "С помощью Интернет" #: application/views/callstats/index.php:81 application/views/csv/index.php:105 #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 +#: application/views/gridmap/index.php:57 application/views/kml/index.php:90 #: application/views/logbookadvanced/index.php:324 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:487 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:488 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 #: application/views/view_log/qso.php:263 @@ -3890,9 +3899,9 @@ msgstr "Ионосферное рассеяние" #: application/views/callstats/index.php:82 application/views/csv/index.php:106 #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 +#: application/views/gridmap/index.php:58 application/views/kml/index.php:91 #: application/views/logbookadvanced/index.php:325 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:488 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:489 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 #: application/views/view_log/qso.php:266 @@ -3904,9 +3913,9 @@ msgstr "IRLP" #: application/views/callstats/index.php:83 application/views/csv/index.php:107 #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 +#: application/views/gridmap/index.php:59 application/views/kml/index.php:92 #: application/views/logbookadvanced/index.php:326 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:489 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:490 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 #: application/views/view_log/qso.php:269 @@ -3918,9 +3927,9 @@ msgstr "Рассеяние на метеорных следах" #: application/views/callstats/index.php:84 application/views/csv/index.php:108 #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 +#: application/views/gridmap/index.php:60 application/views/kml/index.php:93 #: application/views/logbookadvanced/index.php:327 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:490 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:491 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 #: application/views/view_log/qso.php:272 @@ -3932,9 +3941,9 @@ msgstr "Наземный или атмосферный репитер или т #: application/views/callstats/index.php:85 application/views/csv/index.php:109 #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 +#: application/views/gridmap/index.php:61 application/views/kml/index.php:94 #: application/views/logbookadvanced/index.php:328 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:491 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:492 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 #: application/views/view_log/qso.php:275 @@ -3946,9 +3955,9 @@ msgstr "Рассеяние на дожде" #: application/views/callstats/index.php:86 application/views/csv/index.php:110 #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 +#: application/views/gridmap/index.php:62 application/views/kml/index.php:95 #: application/views/logbookadvanced/index.php:329 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:492 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:493 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 #: application/views/view_log/qso.php:278 @@ -3960,9 +3969,9 @@ msgstr "Спутник" #: application/views/callstats/index.php:87 application/views/csv/index.php:111 #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 +#: application/views/gridmap/index.php:63 application/views/kml/index.php:96 #: application/views/logbookadvanced/index.php:330 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:493 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:494 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 #: application/views/view_log/qso.php:281 @@ -3974,9 +3983,9 @@ msgstr "Трансэкваториальное" #: application/views/callstats/index.php:88 application/views/csv/index.php:112 #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 +#: application/views/gridmap/index.php:64 application/views/kml/index.php:97 #: application/views/logbookadvanced/index.php:331 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:494 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:495 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 #: application/views/view_log/qso.php:284 @@ -4031,7 +4040,7 @@ msgstr "Показать" #: application/views/components/hamsat/table.php:29 #: application/views/distancerecords/index.php:14 #: application/views/distances/index.php:34 -#: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 +#: application/views/gridmap/index.php:73 application/views/hamsat/index.php:32 #: application/views/interface_assets/header.php:198 #: application/views/logbookadvanced/edit.php:17 #: application/views/logbookadvanced/index.php:292 @@ -4054,7 +4063,7 @@ msgstr "Спутник" #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 -#: application/views/gridmap/index.php:80 +#: application/views/gridmap/index.php:88 #: application/views/logbookadvanced/index.php:301 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 @@ -4067,7 +4076,7 @@ msgstr "Орбита" #: application/views/activated_gridmap/index.php:50 #: application/views/awards/wab/index.php:65 -#: application/views/gridmap/index.php:92 +#: application/views/gridmap/index.php:132 #: application/views/timeline/index.php:52 msgid "Confirmation" msgstr "Подтверждение" @@ -4089,24 +4098,24 @@ msgstr "Подтверждение" #: application/views/awards/wapc/index.php:56 #: application/views/awards/was/index.php:68 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:125 application/views/user/edit.php:810 +#: application/views/gridmap/index.php:165 application/views/user/edit.php:810 msgid "QRZ.com" msgstr "QRZ.com" #: application/views/activated_gridmap/index.php:86 -#: application/views/gridmap/index.php:130 +#: application/views/gridmap/index.php:17 msgid "Plot" msgstr "Отобразить" #: application/views/activated_gridmap/index.php:87 -#: application/views/gridmap/index.php:131 +#: application/views/gridmap/index.php:18 msgid "Clear Markers" msgstr "Очистить маркеры" #: application/views/activated_gridmap/index.php:102 #: application/views/awards/ffma/index.php:31 #: application/views/awards/gridmaster/index.php:46 -#: application/views/gridmap/index.php:148 +#: application/views/gridmap/index.php:189 #: application/views/logbookadvanced/index.php:10 msgid "Latitude" msgstr "Широта" @@ -4114,7 +4123,7 @@ msgstr "Широта" #: application/views/activated_gridmap/index.php:104 #: application/views/awards/ffma/index.php:33 #: application/views/awards/gridmaster/index.php:48 -#: application/views/gridmap/index.php:150 +#: application/views/gridmap/index.php:191 #: application/views/logbookadvanced/index.php:11 msgid "Longitude" msgstr "Долгота" @@ -4175,8 +4184,8 @@ msgstr "Не найдено!" #: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:170 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:244 +#: application/views/contesting/index.php:171 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:249 #: application/views/dcl_views/index.php:27 #: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 @@ -4281,12 +4290,12 @@ msgstr "Данные DOK в вашем логе отличаются от DCL" #: application/views/awards/pota/index.php:33 #: application/views/awards/sota/index.php:31 #: application/views/awards/wwff/index.php:33 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:25 #: application/views/contesting/index.php:103 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:239 -#: application/views/debug/index.php:589 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:244 +#: application/views/debug/index.php:594 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4327,12 +4336,12 @@ msgstr "Дата" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:590 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:247 +#: application/views/debug/index.php:595 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4358,10 +4367,10 @@ msgstr "Время" #: application/views/adif/dcl_success.php:31 #: application/views/adif/pota_success.php:31 #: application/views/awards/vucc/band.php:18 -#: application/views/bandmap/list.php:129 -#: application/views/contesting/index.php:262 +#: application/views/bandmap/list.php:130 +#: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:591 application/views/debug/index.php:626 +#: application/views/debug/index.php:596 application/views/debug/index.php:631 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4403,8 +4412,7 @@ msgstr "Импорт CBR" #: application/views/adif/import.php:73 application/views/adif/import.php:379 #: application/views/adif/import.php:400 application/views/api/index.php:22 #: application/views/dashboard/index.php:180 -#: application/views/dashboard/index.php:209 -#: application/views/dashboard/index.php:214 +#: application/views/dashboard/index.php:213 #: application/views/eqsl/import.php:46 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 #: application/views/options/maptiles.php:48 @@ -4423,7 +4431,7 @@ msgstr "Максимальный размер загружаемого файл #: application/views/adif/import.php:349 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:193 application/views/debug/index.php:210 -#: application/views/debug/index.php:581 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:586 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 @@ -4491,7 +4499,7 @@ msgstr "" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 #: application/views/interface_assets/footer.php:580 -#: application/views/interface_assets/footer.php:2564 +#: application/views/interface_assets/footer.php:2662 msgid "DANGER" msgstr "ОПАСНО" @@ -4717,7 +4725,7 @@ msgstr "" #: application/views/adif/import.php:399 #: application/views/adif/import_success.php:40 #: application/views/dcl_views/index.php:76 -#: application/views/lotw_views/index.php:137 +#: application/views/lotw_views/index.php:154 msgid "Information" msgstr "Информация" @@ -5232,7 +5240,7 @@ msgstr "Подтверждённые графства" #: application/views/awards/wapc/index.php:145 #: application/views/awards/was/index.php:180 #: application/views/awards/wpx/index.php:172 -#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:317 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -5252,7 +5260,8 @@ msgstr "Всего" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:151 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/dxatlas/index.php:80 +#: application/views/gridmap/index.php:199 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 #: application/views/logbookadvanced/index.php:335 @@ -5260,7 +5269,7 @@ msgstr "Всего" #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:308 -#: application/views/qso/index.php:450 +#: application/views/qso/index.php:451 #: application/views/search/cqzones_result.php:13 #: application/views/station_profile/create.php:110 #: application/views/station_profile/edit.php:157 @@ -5320,9 +5329,9 @@ msgstr "Дипломы - CQ WAZ" #: application/views/awards/wab/list.php:6 #: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:81 -#: application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:457 +#: application/views/bandmap/list.php:82 +#: application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:462 #: application/views/interface_assets/footer.php:43 #: application/views/search/result.php:32 #: application/views/visitor/index.php:270 @@ -5332,9 +5341,9 @@ msgstr "Подтверждено" #: application/views/awards/cq/index.php:35 #: application/views/awards/itu/index.php:35 #: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:80 -#: application/views/dashboard/index.php:335 -#: application/views/dashboard/index.php:451 +#: application/views/bandmap/list.php:81 +#: application/views/dashboard/index.php:340 +#: application/views/dashboard/index.php:456 #: application/views/search/result.php:35 #: application/views/visitor/index.php:266 msgid "Worked" @@ -5412,7 +5421,7 @@ msgstr "Отобразить QSO с типом QSL" #: application/views/awards/iota/index.php:62 #: application/views/awards/itu/index.php:57 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2543 +#: application/views/interface_assets/footer.php:2641 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -5668,6 +5677,7 @@ msgstr "" #: application/views/awards/dxcc/index.php:28 #: application/views/awards/wpx/index.php:13 +#: application/views/gridmap/index.php:16 #: application/views/logbookadvanced/index.php:221 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" @@ -5685,12 +5695,12 @@ msgstr "Включая удалённые" #: application/views/awards/dxcc/index.php:97 #: application/views/awards/iota/index.php:88 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:88 +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:89 #: application/views/logbookadvanced/edit.php:217 #: application/views/logbookadvanced/index.php:408 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 -#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:425 +#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:426 #: application/views/view_log/qso.php:350 msgid "Antarctica" msgstr "Антарктика" @@ -5698,12 +5708,12 @@ msgstr "Антарктика" #: application/views/awards/dxcc/index.php:101 #: application/views/awards/iota/index.php:92 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:87 +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:88 #: application/views/logbookadvanced/edit.php:216 #: application/views/logbookadvanced/index.php:407 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 -#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:424 +#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:425 #: application/views/view_log/qso.php:347 msgid "Africa" msgstr "Африка" @@ -5711,12 +5721,12 @@ msgstr "Африка" #: application/views/awards/dxcc/index.php:105 #: application/views/awards/iota/index.php:96 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:89 +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:90 #: application/views/logbookadvanced/edit.php:219 #: application/views/logbookadvanced/index.php:410 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 -#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:426 +#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:427 #: application/views/view_log/qso.php:353 msgid "Asia" msgstr "Азия" @@ -5724,12 +5734,12 @@ msgstr "Азия" #: application/views/awards/dxcc/index.php:109 #: application/views/awards/iota/index.php:100 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:90 +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:91 #: application/views/logbookadvanced/edit.php:220 #: application/views/logbookadvanced/index.php:411 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 -#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:427 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:428 #: application/views/view_log/qso.php:356 msgid "Europe" msgstr "Европа" @@ -5737,12 +5747,12 @@ msgstr "Европа" #: application/views/awards/dxcc/index.php:113 #: application/views/awards/iota/index.php:104 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:91 +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:92 #: application/views/logbookadvanced/edit.php:218 #: application/views/logbookadvanced/index.php:409 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 -#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:428 +#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:429 #: application/views/view_log/qso.php:359 msgid "North America" msgstr "Северная Америка" @@ -5750,12 +5760,12 @@ msgstr "Северная Америка" #: application/views/awards/dxcc/index.php:117 #: application/views/awards/iota/index.php:108 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:93 +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:94 #: application/views/logbookadvanced/edit.php:221 #: application/views/logbookadvanced/index.php:412 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 -#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:430 +#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:431 #: application/views/view_log/qso.php:365 msgid "South America" msgstr "Южная Америка" @@ -5763,12 +5773,12 @@ msgstr "Южная Америка" #: application/views/awards/dxcc/index.php:121 #: application/views/awards/iota/index.php:112 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:92 +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:93 #: application/views/logbookadvanced/edit.php:222 #: application/views/logbookadvanced/index.php:413 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 -#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:429 +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:430 #: application/views/view_log/qso.php:362 msgid "Oceania" msgstr "Океания" @@ -6086,7 +6096,7 @@ msgstr "Показать карту IOTA" #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 #: application/views/contesting/index.php:64 -#: application/views/contesting/index.php:228 +#: 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:782 @@ -6114,13 +6124,14 @@ msgstr "Удалено" #: application/views/awards/itu/index.php:3 #: application/views/awards/itu/index.php:151 +#: application/views/gridmap/index.php:201 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 #: application/views/logbookadvanced/index.php:349 #: application/views/logbookadvanced/index.php:827 #: application/views/logbookadvanced/useroptions.php:118 #: application/views/lookup/index.php:8 application/views/qso/edit_ajax.php:316 -#: application/views/qso/index.php:460 +#: application/views/qso/index.php:461 #: application/views/search/ituzones_result.php:13 #: application/views/station_profile/create.php:124 #: application/views/station_profile/edit.php:174 @@ -6217,7 +6228,7 @@ msgid "City" msgstr "Город" #: application/views/awards/jcc/index.php:188 -#: application/views/dashboard/index.php:447 +#: application/views/dashboard/index.php:452 #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 @@ -6267,7 +6278,7 @@ msgstr "" "референцию POTA)" #: application/views/awards/pota/index.php:32 -#: application/views/qso/index.php:274 application/views/qso/index.php:567 +#: application/views/qso/index.php:274 application/views/qso/index.php:568 #: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:276 #: application/views/user/edit.php:674 application/views/view_log/qso.php:403 @@ -6503,7 +6514,7 @@ msgstr "Дипломы - Worked All Continents (WAC)" #: application/views/logbookadvanced/index.php:866 #: application/views/logbookadvanced/useroptions.php:170 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 -#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:422 #: application/views/view_log/qso.php:342 msgid "Continent" msgstr "Континент" @@ -6791,7 +6802,7 @@ msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" msgstr "Поле, используемое для этого диплома: WWFF_REF (референция WWFF)" #: application/views/awards/wwff/index.php:32 -#: application/views/qso/index.php:262 application/views/qso/index.php:554 +#: application/views/qso/index.php:262 application/views/qso/index.php:555 #: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:263 #: application/views/user/edit.php:670 application/views/view_log/qso.php:396 @@ -6866,7 +6877,7 @@ msgstr "Список активности на диапазоне" msgid "None" msgstr "Нет" -#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:84 +#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:85 msgid "Spots de" msgstr "Споты от" @@ -6880,40 +6891,46 @@ msgstr "" msgid "Click to prepare logging." msgstr "Нажмите, чтобы подготовить ведение журнала." -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:70 +#: application/views/contesting/index.php:160 +#: application/views/qso/index.php:353 +msgid "WebSocket (Requires WLGate>1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "Статус DXCC" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "Не сработано" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "Сработано, не подтверждено" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "Phone" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "CW" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "Digi" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "WAC" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "Споттер" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6921,7 +6938,7 @@ msgstr "Споттер" msgid "Message" msgstr "Сообщение" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "Последнее сработанное" @@ -7341,7 +7358,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7404,7 +7421,7 @@ msgstr "Да" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7450,7 +7467,7 @@ msgid "No contests were found in your log." msgstr "В вашем логе конест-сессий не найдено." #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "Все, за исключением спутниковых" @@ -7815,7 +7832,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "Не найдены предстоящие активации. Проверьте позже." #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7880,10 +7897,10 @@ msgid "Show Details" msgstr "Подробно" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "Сегодня" @@ -8045,7 +8062,7 @@ msgstr "Порядковый номер + Квадрат + Контрольны #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "Позывной оператора" @@ -8126,54 +8143,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "Номер" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "Порядковый номер (TX)" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "Квадрат (TX)" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "Контрольный номер (TX)" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "Порядковый номер (RX)" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "Квадрат (RX)" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "Контрольный номер (RX)" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "Сбросить QSO" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "Сохранить QSO" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "Предложение позывных" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "Журнал контеста" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "Квадрат VUCC" @@ -8345,7 +8362,7 @@ msgstr "Будут экспортированы только QSO с информ #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "Тип распространения радиоволн" @@ -8441,23 +8458,33 @@ msgstr "" "У вас есть темы без определенного режима темы. Пожалуйста, попросите " "администратора отредактировать темы." -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" msgstr "" -"Срок действия, по крайней мере, одного из ваших %sLoTW сертификатов%s истек!" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" msgstr "" -"Срок действия, по крайней мере, одного из ваших %sLoTW сертификатов%s скоро " -"истечет!" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8465,25 +8492,25 @@ msgstr[0] "Отображается до %d предыдущего контак msgstr[1] "Отображается до %d предыдущих контактов" msgstr[2] "Отображается до %d предыдущих контактов" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "Статистика QSO" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "Статистика по DXCC" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "Необходимо" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8494,7 +8521,7 @@ msgstr "Необходимо" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8517,10 +8544,10 @@ msgstr "Необходимо" msgid "Sent" msgstr "Отправлено" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8553,7 +8580,7 @@ msgstr "Отправлено" msgid "Received" msgstr "Принято" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8579,7 +8606,7 @@ msgstr "Принято" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8593,25 +8620,25 @@ msgstr "Принято" msgid "Requested" msgstr "Запрошено" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "Logbook of the World" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "Квадраты VUCC" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "Солнечная активность и похождение" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "Последнее обновление в %s." -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "Данные предоставлены HAMqsl." @@ -8783,12 +8810,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "Следующая автоматическая синхронизация с DCL произойдет в: " #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "Ручная синхронизация" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "запущен..." @@ -9153,6 +9180,7 @@ msgstr "Обновление DXCC из Clublog" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "Обновить" @@ -9193,11 +9221,15 @@ msgstr "Обновление \"Заметок о корреспондентах\ msgid "HAMqsl" msgstr "HAMqsl" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "Обслуживание БД QSO" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -9206,141 +9238,141 @@ msgstr[0] "База данных содержит %d QSO без привязан msgstr[1] "База данных содержит %d QSO без привязанного профиля QTH" msgstr[2] "База данных содержит %d QSO без привязанного профиля QTH" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "Пожалуйста, отметьте QSO и привяжите их к существующему профилю QTH:" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "Целевой профиль QTH" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "Переназначить" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Каждое QSO в вашей базе данных привязано к соответствующему профилю QTH" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "Всё ОК" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "Албанский" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "Армянский" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "Боснийский" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "Болгарский" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "Китайский (упрощённый)" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "Хорватский" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "Чешский" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "Голландский" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "Английский" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "Эстонский" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "Финский" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "Французский" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "Немецкий" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "Греческий" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "Венгерский" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "Итальянский" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "Японский" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "Латышский" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "Литовский" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "Черногорский" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "Польский" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "Португальский" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "Русский" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "Сербский" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "Словацкий" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "Словенский" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "Испанский" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "Шведский" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "Турецкий" @@ -9798,10 +9830,10 @@ msgid "QSL Date" msgstr "Дата QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9909,7 +9941,7 @@ msgid "Worked not confirmed" msgstr "Сработано, не подтверждено" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "Очистить" @@ -10105,62 +10137,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Квадраты" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "Вы не вошли в систему. Пожалуйста, %sвойдите%s" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "квадрат(/-а/-ов)" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "Всего" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "QSL-карточка для " -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Внимание! Вы уверены, что хотите удалить эту QSL-карточку?" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL-карточка" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "eQSL-карточка для " -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "Изображение QSL-карточки" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "Лицевая сторона QSL-карточки:" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "Обратная сторона QSL-карточки:" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "Добавить дополнительные QSO на QSL-карточку" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "Что-то пошло не так. Пожалуйста, попробуйте еще раз!" @@ -10763,7 +10795,7 @@ msgstr "Выходная мощность" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "Регион" @@ -10883,7 +10915,7 @@ msgstr "Верифицировано" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10904,7 +10936,7 @@ msgstr "Напрямую" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10923,7 +10955,7 @@ msgstr "Бюро" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10938,49 +10970,49 @@ msgstr "Электронное" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Менеджер" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "—" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "Африканская Италия" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "Медвежий остров" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "Европейская Турция" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "МСЭ Вена" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "Косово" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "Шетландские острова" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "Сицилия" @@ -11155,7 +11187,7 @@ msgstr "QSL отправлено" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -11192,7 +11224,7 @@ msgstr "В очереди" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11642,39 +11674,43 @@ msgstr "Дата окончания срока действия" msgid "Last Upload" msgstr "Последняя загрузка" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "Истёк" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "Истекает" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" -msgstr "Действительный" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" +msgstr "" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "Последнее успеное: %s" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "Последнее неуспешное: %s" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "Не синхронизирован" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" "Вам необходимо загрузить сертификат LoTW в формате p12 для использования " "этих функций." -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "Следующая автоматическая синхронизация с LoTW произойдет в: " @@ -12270,7 +12306,7 @@ msgstr "Есть ли дополнительная информация, о ко #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -12318,7 +12354,7 @@ msgstr "Профиль QTH" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12876,20 +12912,12 @@ msgstr "Опубликовать на Bluesky" msgid "Toot on Mastodon" msgstr "Тут на Мастодоне" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "Функция %d - Название" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "Функция %d - Макрос" @@ -12914,11 +12942,11 @@ msgstr "Частота приёма" msgid "RX Band" msgstr "Диапазон приёма" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Укажите мощность в Ваттах (только цифры)." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12928,25 +12956,25 @@ msgstr "Мощность передачи (Вт)" msgid "Used for VUCC MultiGrids" msgstr "Используется для мультиквадратов VUCC" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "Траектория" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "Терминатор" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "Другое" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "Короткий путь" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "Длинный путь" @@ -12959,38 +12987,38 @@ msgstr "Название спутника" msgid "Sat Mode" msgstr "Вид модуляции (для спутника)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "Азимут антенны (°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "Азимут антенны в десятичных градусах." -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "Возвышение антенны (°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "Возвышение антенны в десятичных градусах." -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "Район (округ)" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "Информация SIG" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "Примечание: Экспортируется в сторонние сервисы." @@ -12999,8 +13027,8 @@ msgid "Sent Method" msgstr "Способ отправки" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "Способ" @@ -13021,7 +13049,7 @@ msgstr "Проверено (Совпадает)" msgid "Received Method" msgstr "Способ получения" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "Сообщение в eQSL по умолчанию для этого профиля QTH." @@ -13065,7 +13093,7 @@ msgstr "Сохранить изменения" msgid "TimeOff is less than TimeOn" msgstr "Время окончания меньше времени начала" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "Предыдущие QSO" @@ -13132,7 +13160,7 @@ msgstr "Время окончания" msgid "Search DXCluster for latest Spot" msgstr "Поиск в DX кластере последнего спота" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -13140,7 +13168,7 @@ msgstr "Поиск в DX кластере последнего спота" msgid "IOTA Reference" msgstr "Справочник IOTA" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -13148,91 +13176,95 @@ msgstr "Справочник IOTA" msgid "SOTA Reference" msgstr "Справочник SOTA" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "Частота (RX)" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "Диапазон (RX)" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "Например: GM/NS-001." -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "Например: DLFF-0069." -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "Например: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "Например: GMA" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "Например: DA/NW-357" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "Например: Q03" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "Адрес электронной почты корреспондента в QSO" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "Название спутника" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "Вид модуляции (для спутника)" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "QSL MSG" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "Сброс на настройки по умолчанию" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "Подключить" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "Стоп" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "Настройка" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "Остановить настройку" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "Скорость CW" -#: application/views/qso/index.php:769 +#: application/views/qso/index.php:778 +msgid "Stop" +msgstr "Стоп" + +#: application/views/qso/index.php:779 +msgid "Tune" +msgstr "Настройка" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "Остановить настройку" + +#: application/views/qso/index.php:785 +msgid "Enter text..." +msgstr "Введите текст..." + +#: application/views/qso/index.php:786 msgid "Send" msgstr "Отправить" -#: application/views/qso/index.php:779 +#: application/views/qso/index.php:798 msgid "Suggestions" msgstr "Предложения" -#: application/views/qso/index.php:786 +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "Изображение профиля" @@ -14620,6 +14652,7 @@ msgid "Special Interest Group Information" msgstr "Данные SIG" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Проблемы? Смотри в %swiki%s." @@ -15721,10 +15754,6 @@ msgstr "URL профиля пользователя Mastodon" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "Главный URL вашего сервера Mastodon, т.е. %s" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "Экспериментально" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "Winkeyer" @@ -16460,6 +16489,32 @@ msgstr "Отправить запрос" msgid "Rcvd" msgstr "Получено" +#, php-format +#~ msgctxt "LoTW Warning" +#~ msgid "At least one of your %sLoTW certificates%s is expired!" +#~ msgstr "" +#~ "Срок действия, по крайней мере, одного из ваших %sLoTW сертификатов%s " +#~ "истек!" + +#, php-format +#~ msgctxt "LoTW Warning" +#~ msgid "At least one of your %sLoTW certificates%s is about to expire!" +#~ msgstr "" +#~ "Срок действия, по крайней мере, одного из ваших %sLoTW сертификатов%s " +#~ "скоро истечет!" + +#~ msgid "Expired" +#~ msgstr "Истёк" + +#~ msgid "Expiring" +#~ msgstr "Истекает" + +#~ msgid "Valid" +#~ msgstr "Действительный" + +#~ msgid "Experimental" +#~ msgstr "Экспериментально" + #, php-format #~ msgctxt "Dashboard Warning" #~ msgid "" diff --git a/application/locale/sk/LC_MESSAGES/messages.po b/application/locale/sk/LC_MESSAGES/messages.po index ad4bef6fb..a0b5568a4 100644 --- a/application/locale/sk/LC_MESSAGES/messages.po +++ b/application/locale/sk/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -68,9 +68,9 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:79 application/controllers/Lotw.php:105 -#: application/controllers/Lotw.php:375 application/controllers/Lotw.php:398 -#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:839 -#: application/controllers/Lotw.php:944 application/controllers/Mode.php:15 +#: application/controllers/Lotw.php:383 application/controllers/Lotw.php:406 +#: application/controllers/Lotw.php:763 application/controllers/Lotw.php:847 +#: application/controllers/Lotw.php:952 application/controllers/Mode.php:15 #: application/controllers/Notes.php:11 application/controllers/Options.php:14 #: application/controllers/Oqrs.php:15 application/controllers/Oqrs.php:165 #: application/controllers/Qrbcalc.php:13 application/controllers/Qrz.php:200 @@ -79,8 +79,8 @@ msgstr "" #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:187 -#: application/controllers/Qso.php:287 application/controllers/Qso.php:308 -#: application/controllers/Qso.php:331 application/controllers/Qso.php:629 +#: application/controllers/Qso.php:318 application/controllers/Qso.php:339 +#: application/controllers/Qso.php:362 application/controllers/Qso.php:662 #: application/controllers/Radio.php:32 application/controllers/Radio.php:291 #: application/controllers/Radio.php:317 application/controllers/Radio.php:333 #: application/controllers/Reg1test.php:17 @@ -138,7 +138,7 @@ msgstr "" #: application/controllers/Activated_gridmap.php:31 #: application/controllers/Awards.php:1003 #: application/controllers/Awards.php:1035 -#: application/controllers/Gridmap.php:31 +#: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 #: application/views/interface_assets/footer.php:47 @@ -148,13 +148,13 @@ msgid "Gridsquares" msgstr "" #: application/controllers/Activated_gridmap.php:32 -#: application/controllers/Gridmap.php:32 +#: application/controllers/Gridmap.php:33 #: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "" #: application/controllers/Activated_gridmap.php:33 -#: application/controllers/Gridmap.php:33 +#: application/controllers/Gridmap.php:34 #: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "" @@ -164,25 +164,25 @@ msgid "Total gridsquares activated" msgstr "" #: application/controllers/Activated_gridmap.php:36 -#: application/controllers/Gridmap.php:36 +#: application/controllers/Gridmap.php:37 #: application/controllers/Visitor.php:390 msgid "Fields" msgstr "" #: application/controllers/Activated_gridmap.php:37 -#: application/controllers/Gridmap.php:37 +#: application/controllers/Gridmap.php:38 #: application/controllers/Visitor.php:391 msgid "Fields confirmed" msgstr "" #: application/controllers/Activated_gridmap.php:38 -#: application/controllers/Gridmap.php:38 +#: application/controllers/Gridmap.php:39 #: application/controllers/Visitor.php:392 msgid "Fields not confirmed" msgstr "" #: application/controllers/Activated_gridmap.php:39 -#: application/controllers/Gridmap.php:39 +#: application/controllers/Gridmap.php:40 #: application/controllers/Visitor.php:393 msgid "Total fields worked" msgstr "" @@ -332,13 +332,13 @@ msgstr "" #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:401 application/views/qso/index.php:302 -#: application/views/qso/index.php:593 application/views/user/edit.php:682 +#: application/views/qso/index.php:594 application/views/user/edit.php:682 #: application/views/view_log/qso.php:460 msgid "DOK" msgstr "" #: application/controllers/Awards.php:176 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:130 application/views/bands/index.php:50 +#: application/views/bandmap/list.php:131 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:180 @@ -351,7 +351,7 @@ msgstr "" #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 -#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:402 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 #: application/views/search/result.php:27 @@ -554,7 +554,7 @@ msgstr "" #: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:286 -#: application/views/qso/index.php:579 application/views/user/edit.php:678 +#: application/views/qso/index.php:580 application/views/user/edit.php:678 #: application/views/view_log/qso.php:425 #: application/views/view_log/qso.php:736 msgid "SIG" @@ -816,7 +816,7 @@ msgstr "" #: application/views/debug/index.php:539 application/views/debug/index.php:544 #: application/views/debug/index.php:549 application/views/debug/index.php:554 #: application/views/debug/index.php:559 application/views/debug/index.php:564 -#: application/views/debug/index.php:569 +#: application/views/debug/index.php:569 application/views/debug/index.php:574 msgid "never" msgstr "" @@ -869,7 +869,7 @@ msgstr "" msgid "SOTA CSV Export" msgstr "" -#: application/controllers/Dashboard.php:152 +#: application/controllers/Dashboard.php:154 #: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "" @@ -922,42 +922,42 @@ msgstr "" msgid "Key(s) Deleted." msgstr "" -#: application/controllers/Debug.php:117 +#: application/controllers/Debug.php:118 msgid "Debug" msgstr "" -#: application/controllers/Debug.php:156 +#: application/controllers/Debug.php:157 msgid "Migrate data now" msgstr "" -#: application/controllers/Debug.php:159 +#: application/controllers/Debug.php:160 msgid "Migration already done. Run again?" msgstr "" -#: application/controllers/Debug.php:163 +#: application/controllers/Debug.php:164 msgid "No data to migrate" msgstr "" -#: application/controllers/Debug.php:167 application/controllers/Debug.php:172 +#: application/controllers/Debug.php:168 application/controllers/Debug.php:173 msgid "No migration possible" msgstr "" -#: application/controllers/Debug.php:237 +#: application/controllers/Debug.php:238 msgid "Wavelog was updated successfully!" msgstr "" -#: application/controllers/Debug.php:255 +#: application/controllers/Debug.php:256 msgid "Selfupdate() not available. Check the Error Log." msgstr "" -#: application/controllers/Debug.php:299 +#: application/controllers/Debug.php:300 msgid "" "File Migration was successfull, but please check also manually. If " "everything seems right you can delete the folders 'assets/qslcard' and " "'images/eqsl_card_images'." msgstr "" -#: application/controllers/Debug.php:302 +#: application/controllers/Debug.php:303 msgid "File Migration failed. Please check the Error Log." msgstr "" @@ -998,7 +998,7 @@ msgid "DX Calendar" msgstr "" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:404 +#: application/views/dashboard/index.php:409 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:310 msgid "eQSL Cards" @@ -1058,7 +1058,7 @@ msgstr "" msgid "Gridsquare Map" msgstr "" -#: application/controllers/Gridmap.php:34 +#: application/controllers/Gridmap.php:35 #: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "" @@ -1257,7 +1257,7 @@ msgstr "" #: application/views/awards/wapc/index.php:44 #: application/views/awards/was/index.php:56 #: application/views/awards/wpx/index.php:28 -#: application/views/gridmap/index.php:101 +#: application/views/gridmap/index.php:141 #: application/views/logbookadvanced/index.php:794 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/oqrs/qsolist.php:12 @@ -1289,8 +1289,8 @@ msgstr "" #: application/views/awards/wapc/index.php:48 #: application/views/awards/was/index.php:60 #: application/views/awards/wpx/index.php:32 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:109 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:149 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 @@ -1326,8 +1326,8 @@ msgstr "" #: application/views/awards/wapc/index.php:52 #: application/views/awards/was/index.php:64 #: application/views/awards/wpx/index.php:36 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:117 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:157 #: application/views/logbookadvanced/useroptions.php:78 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 @@ -1369,23 +1369,23 @@ msgstr "" #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:110 -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:136 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 #: application/views/contesting/index.php:118 -#: application/views/contesting/index.php:264 +#: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:597 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 -#: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 -#: application/views/kml/index.php:31 +#: application/views/gridmap/index.php:104 +#: application/views/hamsat/index.php:33 application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:12 #: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/index.php:764 @@ -1435,8 +1435,8 @@ msgstr "" #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:179 -#: application/views/contesting/index.php:265 +#: application/views/contesting/index.php:180 +#: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 #: application/views/logbookadvanced/index.php:767 #: application/views/logbookadvanced/useroptions.php:38 @@ -1464,8 +1464,8 @@ msgstr "" #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 -#: application/views/contesting/index.php:203 -#: application/views/contesting/index.php:266 +#: application/views/contesting/index.php:204 +#: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 #: application/views/logbookadvanced/index.php:770 #: application/views/logbookadvanced/useroptions.php:42 @@ -1573,9 +1573,9 @@ msgstr "" #: application/views/awards/gridmaster/index.php:50 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:26 -#: application/views/contesting/index.php:271 +#: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 -#: application/views/gridmap/index.php:152 +#: application/views/gridmap/index.php:193 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 @@ -1619,7 +1619,7 @@ msgstr "" #: application/views/dashboard/index.php:14 #: application/views/distancerecords/index.php:15 #: application/views/distances/index.php:13 -#: application/views/gridmap/index.php:154 +#: application/views/gridmap/index.php:195 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 #: application/views/logbookadvanced/index.php:869 @@ -1668,17 +1668,17 @@ msgstr "" #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:96 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:97 #: application/views/bands/create.php:24 application/views/bands/edit.php:7 #: application/views/bands/index.php:47 application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:263 +#: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:593 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:598 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 -#: application/views/gridmap/index.php:10 application/views/kml/index.php:19 +#: application/views/gridmap/index.php:26 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:6 #: application/views/logbookadvanced/index.php:281 #: application/views/logbookadvanced/index.php:773 @@ -1726,7 +1726,7 @@ msgid "Band" msgstr "" #: application/controllers/Logbook.php:1324 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:128 +#: application/controllers/Radio.php:45 application/views/bandmap/list.php:129 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:776 @@ -1785,9 +1785,9 @@ msgstr "" #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:252 #: application/views/lookup/index.php:47 -#: application/views/lotw_views/index.php:49 +#: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 -#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:411 #: application/views/station_profile/create.php:77 #: application/views/station_profile/edit.php:109 #: application/views/stationsetup/linkedlocations.php:17 @@ -1828,63 +1828,63 @@ msgstr "" msgid "Certificate Updated." msgstr "" -#: application/controllers/Lotw.php:381 +#: application/controllers/Lotw.php:389 msgid "Certificate Deleted." msgstr "" -#: application/controllers/Lotw.php:410 +#: application/controllers/Lotw.php:418 #, php-format msgid "" "Found no certificate in file %s. If the filename contains 'key-only' this is " "typically a certificate request which has not been processed by LoTW yet." msgstr "" -#: application/controllers/Lotw.php:646 +#: application/controllers/Lotw.php:654 msgid "LoTW ADIF Information" msgstr "" -#: application/controllers/Lotw.php:812 application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:820 application/controllers/Lotw.php:823 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "" -#: application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:823 msgid "Username/password incorrect" msgstr "" -#: application/controllers/Lotw.php:818 +#: application/controllers/Lotw.php:826 msgid "LoTW login OK!" msgstr "" -#: application/controllers/Lotw.php:822 +#: application/controllers/Lotw.php:830 msgid "LoTW currently not available. Try again later." msgstr "" -#: application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 msgid "No LoTW credentials provided." msgstr "" -#: application/controllers/Lotw.php:845 +#: application/controllers/Lotw.php:853 msgid "LoTW ADIF Import" msgstr "" -#: application/controllers/Lotw.php:871 application/controllers/Lotw.php:979 +#: application/controllers/Lotw.php:879 application/controllers/Lotw.php:987 msgid "You have not defined your ARRL LoTW credentials!" msgstr "" -#: application/controllers/Lotw.php:946 +#: application/controllers/Lotw.php:954 msgid "LoTW .TQ8 Upload" msgstr "" -#: application/controllers/Lotw.php:1024 +#: application/controllers/Lotw.php:1032 msgid "Your ARRL username and/or password is incorrect." msgstr "" -#: application/controllers/Lotw.php:1043 application/controllers/Lotw.php:1048 +#: application/controllers/Lotw.php:1051 application/controllers/Lotw.php:1056 msgid "LoTW .TQ8 Sent" msgstr "" -#: application/controllers/Lotw.php:1055 +#: application/controllers/Lotw.php:1063 msgid "LoTW .TQ8 Not Sent" msgstr "" @@ -1905,7 +1905,7 @@ msgstr "" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:409 application/views/qso/index.php:71 -#: application/views/qso/index.php:642 application/views/view_log/qso.php:14 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:14 #: application/views/view_log/qso.php:749 msgid "Notes" msgstr "" @@ -2159,8 +2159,8 @@ msgstr "" msgid "QRZ ADIF Information" msgstr "" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:356 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:361 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:287 msgid "QSL Cards" @@ -2182,15 +2182,15 @@ msgstr "" msgid "Add QSO" msgstr "" -#: application/controllers/Qso.php:690 +#: application/controllers/Qso.php:723 msgid "You have to be logged in to access this URL." msgstr "" -#: application/controllers/Qso.php:696 +#: application/controllers/Qso.php:729 msgid "Call Transfer" msgstr "" -#: application/controllers/Qso.php:703 +#: application/controllers/Qso.php:736 msgid "No callsign provided." msgstr "" @@ -2220,7 +2220,7 @@ msgid "Options" msgstr "" #: application/controllers/Radio.php:50 application/views/debug/index.php:312 -#: application/views/qso/index.php:749 +#: application/views/qso/index.php:750 msgid "Settings" msgstr "" @@ -2229,8 +2229,8 @@ msgid "UNKNOWN" msgstr "" #: application/controllers/Radio.php:98 -#: application/views/contesting/index.php:161 -#: application/views/qso/index.php:354 +#: application/views/contesting/index.php:162 +#: application/views/qso/index.php:355 msgid "last updated" msgstr "" @@ -2268,13 +2268,13 @@ msgstr "" #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:63 -#: application/views/interface_assets/footer.php:2802 -#: application/views/interface_assets/footer.php:2820 -#: application/views/interface_assets/footer.php:2841 -#: application/views/interface_assets/footer.php:2859 +#: application/views/interface_assets/footer.php:2900 +#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:2939 +#: application/views/interface_assets/footer.php:2957 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:734 -#: application/views/lotw_views/index.php:111 +#: application/views/lotw_views/index.php:128 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 #: application/views/qslcard/index.php:76 @@ -2484,7 +2484,7 @@ msgstr "" #: application/controllers/Stationsetup.php:156 #: application/controllers/Stationsetup.php:177 #: application/controllers/Stationsetup.php:478 -#: application/views/qso/index.php:708 application/views/simplefle/index.php:39 +#: application/views/qso/index.php:709 application/views/simplefle/index.php:39 #: application/views/widgets/on_air.php:102 msgid "Error" msgstr "" @@ -2778,6 +2778,14 @@ msgstr "" msgid "Update of Hams of Note" msgstr "" +#: application/controllers/Update.php:718 +msgid "VUCC Grid file update complete. Result: " +msgstr "" + +#: application/controllers/Update.php:720 +msgid "VUCC Grid file update failed. Result: " +msgstr "" + #: application/controllers/User.php:50 #: application/views/interface_assets/header.php:306 msgid "User Accounts" @@ -2899,7 +2907,7 @@ msgstr "" msgid "Station Name" msgstr "" -#: application/controllers/User.php:1262 application/views/debug/index.php:594 +#: application/controllers/User.php:1262 application/views/debug/index.php:599 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:61 #: application/views/station_profile/edit.php:77 @@ -3327,7 +3335,7 @@ msgstr "" #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 #: application/views/dashboard/index.php:19 -#: application/views/gridmap/index.php:156 +#: application/views/gridmap/index.php:197 #: application/views/logbookadvanced/index.php:15 #: application/views/user/edit.php:256 application/views/user/edit.php:279 #: application/views/user/edit.php:302 application/views/user/edit.php:325 @@ -3427,7 +3435,7 @@ msgid "Accumulated number of WAJA worked" msgstr "" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:317 +#: application/views/dashboard/index.php:322 #: application/views/dayswithqso/index.php:42 #: application/views/dayswithqso/index.php:82 #: application/views/statistics/index.php:19 @@ -3444,7 +3452,7 @@ msgid "Yearly" msgstr "" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:327 #: application/views/visitor/index.php:255 msgid "Month" msgstr "" @@ -3496,8 +3504,8 @@ msgstr "" #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:86 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:79 application/views/bandmap/list.php:87 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:113 #: application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 @@ -3520,14 +3528,15 @@ msgstr "" #: application/views/dxatlas/index.php:60 #: application/views/dxatlas/index.php:82 #: application/views/dxatlas/index.php:94 -#: application/views/gridmap/index.php:13 -#: application/views/gridmap/index.php:28 -#: application/views/gridmap/index.php:41 -#: application/views/gridmap/index.php:70 -#: application/views/gridmap/index.php:83 +#: application/views/gridmap/index.php:29 +#: application/views/gridmap/index.php:44 +#: application/views/gridmap/index.php:78 +#: application/views/gridmap/index.php:93 +#: application/views/gridmap/index.php:107 +#: application/views/gridmap/index.php:121 #: application/views/interface_assets/footer.php:46 -#: application/views/interface_assets/footer.php:1692 -#: application/views/interface_assets/footer.php:1831 +#: application/views/interface_assets/footer.php:1790 +#: application/views/interface_assets/footer.php:1929 #: 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 @@ -3614,7 +3623,7 @@ msgstr "" #: application/views/accumulate/index.php:80 #: application/views/callstats/index.php:65 #: application/views/distances/index.php:53 -#: application/views/gridmap/index.php:38 +#: application/views/gridmap/index.php:41 #: application/views/logbookadvanced/edit.php:14 #: application/views/logbookadvanced/index.php:310 #: application/views/logbookadvanced/index.php:857 @@ -3634,7 +3643,7 @@ msgstr "" #: application/views/accumulate/index.php:85 #: application/views/callstats/index.php:69 #: application/views/distances/index.php:58 -#: application/views/gridmap/index.php:42 +#: application/views/gridmap/index.php:45 #: application/views/logbookadvanced/edit.php:207 #: application/views/logbookadvanced/edit.php:215 #: application/views/logbookadvanced/index.php:406 @@ -3646,9 +3655,9 @@ msgstr "" #: application/views/callstats/index.php:71 application/views/csv/index.php:95 #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 +#: application/views/gridmap/index.php:47 application/views/kml/index.php:80 #: application/views/logbookadvanced/index.php:314 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:477 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:478 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 #: application/views/view_log/qso.php:233 @@ -3660,9 +3669,9 @@ msgstr "" #: application/views/callstats/index.php:72 application/views/csv/index.php:96 #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 +#: application/views/gridmap/index.php:48 application/views/kml/index.php:81 #: application/views/logbookadvanced/index.php:315 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:478 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:479 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 #: application/views/view_log/qso.php:236 @@ -3674,9 +3683,9 @@ msgstr "" #: application/views/callstats/index.php:73 application/views/csv/index.php:97 #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 +#: application/views/gridmap/index.php:49 application/views/kml/index.php:82 #: application/views/logbookadvanced/index.php:316 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:479 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:480 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 #: application/views/view_log/qso.php:239 @@ -3688,9 +3697,9 @@ msgstr "" #: application/views/callstats/index.php:74 application/views/csv/index.php:98 #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 +#: application/views/gridmap/index.php:50 application/views/kml/index.php:83 #: application/views/logbookadvanced/index.php:317 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:480 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:481 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 #: application/views/view_log/qso.php:242 @@ -3702,9 +3711,9 @@ msgstr "" #: application/views/callstats/index.php:75 application/views/csv/index.php:99 #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 +#: application/views/gridmap/index.php:51 application/views/kml/index.php:84 #: application/views/logbookadvanced/index.php:318 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:481 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:482 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 #: application/views/view_log/qso.php:245 @@ -3716,9 +3725,9 @@ msgstr "" #: application/views/callstats/index.php:76 application/views/csv/index.php:100 #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 +#: application/views/gridmap/index.php:52 application/views/kml/index.php:85 #: application/views/logbookadvanced/index.php:319 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:482 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:483 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 #: application/views/view_log/qso.php:248 @@ -3730,9 +3739,9 @@ msgstr "" #: application/views/callstats/index.php:77 application/views/csv/index.php:101 #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 +#: application/views/gridmap/index.php:53 application/views/kml/index.php:86 #: application/views/logbookadvanced/index.php:320 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:483 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:484 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 #: application/views/view_log/qso.php:251 @@ -3744,9 +3753,9 @@ msgstr "" #: application/views/callstats/index.php:78 application/views/csv/index.php:102 #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 +#: application/views/gridmap/index.php:54 application/views/kml/index.php:87 #: application/views/logbookadvanced/index.php:321 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:484 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:485 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 #: application/views/view_log/qso.php:254 @@ -3758,9 +3767,9 @@ msgstr "" #: application/views/callstats/index.php:79 application/views/csv/index.php:103 #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 +#: application/views/gridmap/index.php:55 application/views/kml/index.php:88 #: application/views/logbookadvanced/index.php:322 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:485 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:486 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 #: application/views/view_log/qso.php:257 @@ -3772,9 +3781,9 @@ msgstr "" #: application/views/callstats/index.php:80 application/views/csv/index.php:104 #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 +#: application/views/gridmap/index.php:56 application/views/kml/index.php:89 #: application/views/logbookadvanced/index.php:323 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:486 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:487 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 #: application/views/view_log/qso.php:260 @@ -3786,9 +3795,9 @@ msgstr "" #: application/views/callstats/index.php:81 application/views/csv/index.php:105 #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 +#: application/views/gridmap/index.php:57 application/views/kml/index.php:90 #: application/views/logbookadvanced/index.php:324 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:487 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:488 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 #: application/views/view_log/qso.php:263 @@ -3800,9 +3809,9 @@ msgstr "" #: application/views/callstats/index.php:82 application/views/csv/index.php:106 #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 +#: application/views/gridmap/index.php:58 application/views/kml/index.php:91 #: application/views/logbookadvanced/index.php:325 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:488 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:489 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 #: application/views/view_log/qso.php:266 @@ -3814,9 +3823,9 @@ msgstr "" #: application/views/callstats/index.php:83 application/views/csv/index.php:107 #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 +#: application/views/gridmap/index.php:59 application/views/kml/index.php:92 #: application/views/logbookadvanced/index.php:326 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:489 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:490 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 #: application/views/view_log/qso.php:269 @@ -3828,9 +3837,9 @@ msgstr "" #: application/views/callstats/index.php:84 application/views/csv/index.php:108 #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 +#: application/views/gridmap/index.php:60 application/views/kml/index.php:93 #: application/views/logbookadvanced/index.php:327 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:490 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:491 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 #: application/views/view_log/qso.php:272 @@ -3842,9 +3851,9 @@ msgstr "" #: application/views/callstats/index.php:85 application/views/csv/index.php:109 #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 +#: application/views/gridmap/index.php:61 application/views/kml/index.php:94 #: application/views/logbookadvanced/index.php:328 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:491 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:492 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 #: application/views/view_log/qso.php:275 @@ -3856,9 +3865,9 @@ msgstr "" #: application/views/callstats/index.php:86 application/views/csv/index.php:110 #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 +#: application/views/gridmap/index.php:62 application/views/kml/index.php:95 #: application/views/logbookadvanced/index.php:329 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:492 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:493 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 #: application/views/view_log/qso.php:278 @@ -3870,9 +3879,9 @@ msgstr "" #: application/views/callstats/index.php:87 application/views/csv/index.php:111 #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 +#: application/views/gridmap/index.php:63 application/views/kml/index.php:96 #: application/views/logbookadvanced/index.php:330 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:493 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:494 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 #: application/views/view_log/qso.php:281 @@ -3884,9 +3893,9 @@ msgstr "" #: application/views/callstats/index.php:88 application/views/csv/index.php:112 #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 +#: application/views/gridmap/index.php:64 application/views/kml/index.php:97 #: application/views/logbookadvanced/index.php:331 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:494 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:495 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 #: application/views/view_log/qso.php:284 @@ -3941,7 +3950,7 @@ msgstr "" #: application/views/components/hamsat/table.php:29 #: application/views/distancerecords/index.php:14 #: application/views/distances/index.php:34 -#: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 +#: application/views/gridmap/index.php:73 application/views/hamsat/index.php:32 #: application/views/interface_assets/header.php:198 #: application/views/logbookadvanced/edit.php:17 #: application/views/logbookadvanced/index.php:292 @@ -3964,7 +3973,7 @@ msgstr "" #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 -#: application/views/gridmap/index.php:80 +#: application/views/gridmap/index.php:88 #: application/views/logbookadvanced/index.php:301 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 @@ -3977,7 +3986,7 @@ msgstr "" #: application/views/activated_gridmap/index.php:50 #: application/views/awards/wab/index.php:65 -#: application/views/gridmap/index.php:92 +#: application/views/gridmap/index.php:132 #: application/views/timeline/index.php:52 msgid "Confirmation" msgstr "" @@ -3999,24 +4008,24 @@ msgstr "" #: application/views/awards/wapc/index.php:56 #: application/views/awards/was/index.php:68 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:125 application/views/user/edit.php:810 +#: application/views/gridmap/index.php:165 application/views/user/edit.php:810 msgid "QRZ.com" msgstr "" #: application/views/activated_gridmap/index.php:86 -#: application/views/gridmap/index.php:130 +#: application/views/gridmap/index.php:17 msgid "Plot" msgstr "" #: application/views/activated_gridmap/index.php:87 -#: application/views/gridmap/index.php:131 +#: application/views/gridmap/index.php:18 msgid "Clear Markers" msgstr "" #: application/views/activated_gridmap/index.php:102 #: application/views/awards/ffma/index.php:31 #: application/views/awards/gridmaster/index.php:46 -#: application/views/gridmap/index.php:148 +#: application/views/gridmap/index.php:189 #: application/views/logbookadvanced/index.php:10 msgid "Latitude" msgstr "" @@ -4024,7 +4033,7 @@ msgstr "" #: application/views/activated_gridmap/index.php:104 #: application/views/awards/ffma/index.php:33 #: application/views/awards/gridmaster/index.php:48 -#: application/views/gridmap/index.php:150 +#: application/views/gridmap/index.php:191 #: application/views/logbookadvanced/index.php:11 msgid "Longitude" msgstr "" @@ -4085,8 +4094,8 @@ msgstr "" #: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:170 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:244 +#: application/views/contesting/index.php:171 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:249 #: application/views/dcl_views/index.php:27 #: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 @@ -4191,12 +4200,12 @@ msgstr "" #: application/views/awards/pota/index.php:33 #: application/views/awards/sota/index.php:31 #: application/views/awards/wwff/index.php:33 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:25 #: application/views/contesting/index.php:103 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:239 -#: application/views/debug/index.php:589 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:244 +#: application/views/debug/index.php:594 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4237,12 +4246,12 @@ msgstr "" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:590 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:247 +#: application/views/debug/index.php:595 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4268,10 +4277,10 @@ msgstr "" #: application/views/adif/dcl_success.php:31 #: application/views/adif/pota_success.php:31 #: application/views/awards/vucc/band.php:18 -#: application/views/bandmap/list.php:129 -#: application/views/contesting/index.php:262 +#: application/views/bandmap/list.php:130 +#: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:591 application/views/debug/index.php:626 +#: application/views/debug/index.php:596 application/views/debug/index.php:631 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4313,8 +4322,7 @@ msgstr "" #: application/views/adif/import.php:73 application/views/adif/import.php:379 #: application/views/adif/import.php:400 application/views/api/index.php:22 #: application/views/dashboard/index.php:180 -#: application/views/dashboard/index.php:209 -#: application/views/dashboard/index.php:214 +#: application/views/dashboard/index.php:213 #: application/views/eqsl/import.php:46 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 #: application/views/options/maptiles.php:48 @@ -4333,7 +4341,7 @@ msgstr "" #: application/views/adif/import.php:349 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:193 application/views/debug/index.php:210 -#: application/views/debug/index.php:581 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:586 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 @@ -4397,7 +4405,7 @@ msgstr "" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 #: application/views/interface_assets/footer.php:580 -#: application/views/interface_assets/footer.php:2564 +#: application/views/interface_assets/footer.php:2662 msgid "DANGER" msgstr "" @@ -4596,7 +4604,7 @@ msgstr "" #: application/views/adif/import.php:399 #: application/views/adif/import_success.php:40 #: application/views/dcl_views/index.php:76 -#: application/views/lotw_views/index.php:137 +#: application/views/lotw_views/index.php:154 msgid "Information" msgstr "" @@ -5062,7 +5070,7 @@ msgstr "" #: application/views/awards/wapc/index.php:145 #: application/views/awards/was/index.php:180 #: application/views/awards/wpx/index.php:172 -#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:317 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -5082,7 +5090,8 @@ msgstr "" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:151 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/dxatlas/index.php:80 +#: application/views/gridmap/index.php:199 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 #: application/views/logbookadvanced/index.php:335 @@ -5090,7 +5099,7 @@ msgstr "" #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:308 -#: application/views/qso/index.php:450 +#: application/views/qso/index.php:451 #: application/views/search/cqzones_result.php:13 #: application/views/station_profile/create.php:110 #: application/views/station_profile/edit.php:157 @@ -5143,9 +5152,9 @@ msgstr "" #: application/views/awards/wab/list.php:6 #: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:81 -#: application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:457 +#: application/views/bandmap/list.php:82 +#: application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:462 #: application/views/interface_assets/footer.php:43 #: application/views/search/result.php:32 #: application/views/visitor/index.php:270 @@ -5155,9 +5164,9 @@ msgstr "" #: application/views/awards/cq/index.php:35 #: application/views/awards/itu/index.php:35 #: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:80 -#: application/views/dashboard/index.php:335 -#: application/views/dashboard/index.php:451 +#: application/views/bandmap/list.php:81 +#: application/views/dashboard/index.php:340 +#: application/views/dashboard/index.php:456 #: application/views/search/result.php:35 #: application/views/visitor/index.php:266 msgid "Worked" @@ -5235,7 +5244,7 @@ msgstr "" #: application/views/awards/iota/index.php:62 #: application/views/awards/itu/index.php:57 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2543 +#: application/views/interface_assets/footer.php:2641 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -5469,6 +5478,7 @@ msgstr "" #: application/views/awards/dxcc/index.php:28 #: application/views/awards/wpx/index.php:13 +#: application/views/gridmap/index.php:16 #: application/views/logbookadvanced/index.php:221 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" @@ -5486,12 +5496,12 @@ msgstr "" #: application/views/awards/dxcc/index.php:97 #: application/views/awards/iota/index.php:88 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:88 +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:89 #: application/views/logbookadvanced/edit.php:217 #: application/views/logbookadvanced/index.php:408 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 -#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:425 +#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:426 #: application/views/view_log/qso.php:350 msgid "Antarctica" msgstr "" @@ -5499,12 +5509,12 @@ msgstr "" #: application/views/awards/dxcc/index.php:101 #: application/views/awards/iota/index.php:92 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:87 +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:88 #: application/views/logbookadvanced/edit.php:216 #: application/views/logbookadvanced/index.php:407 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 -#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:424 +#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:425 #: application/views/view_log/qso.php:347 msgid "Africa" msgstr "" @@ -5512,12 +5522,12 @@ msgstr "" #: application/views/awards/dxcc/index.php:105 #: application/views/awards/iota/index.php:96 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:89 +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:90 #: application/views/logbookadvanced/edit.php:219 #: application/views/logbookadvanced/index.php:410 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 -#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:426 +#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:427 #: application/views/view_log/qso.php:353 msgid "Asia" msgstr "" @@ -5525,12 +5535,12 @@ msgstr "" #: application/views/awards/dxcc/index.php:109 #: application/views/awards/iota/index.php:100 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:90 +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:91 #: application/views/logbookadvanced/edit.php:220 #: application/views/logbookadvanced/index.php:411 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 -#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:427 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:428 #: application/views/view_log/qso.php:356 msgid "Europe" msgstr "" @@ -5538,12 +5548,12 @@ msgstr "" #: application/views/awards/dxcc/index.php:113 #: application/views/awards/iota/index.php:104 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:91 +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:92 #: application/views/logbookadvanced/edit.php:218 #: application/views/logbookadvanced/index.php:409 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 -#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:428 +#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:429 #: application/views/view_log/qso.php:359 msgid "North America" msgstr "" @@ -5551,12 +5561,12 @@ msgstr "" #: application/views/awards/dxcc/index.php:117 #: application/views/awards/iota/index.php:108 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:93 +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:94 #: application/views/logbookadvanced/edit.php:221 #: application/views/logbookadvanced/index.php:412 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 -#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:430 +#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:431 #: application/views/view_log/qso.php:365 msgid "South America" msgstr "" @@ -5564,12 +5574,12 @@ msgstr "" #: application/views/awards/dxcc/index.php:121 #: application/views/awards/iota/index.php:112 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:92 +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:93 #: application/views/logbookadvanced/edit.php:222 #: application/views/logbookadvanced/index.php:413 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 -#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:429 +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:430 #: application/views/view_log/qso.php:362 msgid "Oceania" msgstr "" @@ -5823,7 +5833,7 @@ msgstr "" #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 #: application/views/contesting/index.php:64 -#: application/views/contesting/index.php:228 +#: 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:782 @@ -5851,13 +5861,14 @@ msgstr "" #: application/views/awards/itu/index.php:3 #: application/views/awards/itu/index.php:151 +#: application/views/gridmap/index.php:201 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 #: application/views/logbookadvanced/index.php:349 #: application/views/logbookadvanced/index.php:827 #: application/views/logbookadvanced/useroptions.php:118 #: application/views/lookup/index.php:8 application/views/qso/edit_ajax.php:316 -#: application/views/qso/index.php:460 +#: application/views/qso/index.php:461 #: application/views/search/ituzones_result.php:13 #: application/views/station_profile/create.php:124 #: application/views/station_profile/edit.php:174 @@ -5940,7 +5951,7 @@ msgid "City" msgstr "" #: application/views/awards/jcc/index.php:188 -#: application/views/dashboard/index.php:447 +#: application/views/dashboard/index.php:452 #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 @@ -5980,7 +5991,7 @@ msgid "Fields taken for this Award: POTA_REF (must contain Park-Reference)" msgstr "" #: application/views/awards/pota/index.php:32 -#: application/views/qso/index.php:274 application/views/qso/index.php:567 +#: application/views/qso/index.php:274 application/views/qso/index.php:568 #: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:276 #: application/views/user/edit.php:674 application/views/view_log/qso.php:403 @@ -6183,7 +6194,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:866 #: application/views/logbookadvanced/useroptions.php:170 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 -#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:422 #: application/views/view_log/qso.php:342 msgid "Continent" msgstr "" @@ -6414,7 +6425,7 @@ msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" msgstr "" #: application/views/awards/wwff/index.php:32 -#: application/views/qso/index.php:262 application/views/qso/index.php:554 +#: application/views/qso/index.php:262 application/views/qso/index.php:555 #: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:263 #: application/views/user/edit.php:670 application/views/view_log/qso.php:396 @@ -6479,7 +6490,7 @@ msgstr "" msgid "None" msgstr "" -#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:84 +#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:85 msgid "Spots de" msgstr "" @@ -6491,40 +6502,46 @@ msgstr "" msgid "Click to prepare logging." msgstr "" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:70 +#: application/views/contesting/index.php:160 +#: application/views/qso/index.php:353 +msgid "WebSocket (Requires WLGate>1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6532,7 +6549,7 @@ msgstr "" msgid "Message" msgstr "" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "" @@ -6931,7 +6948,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -6994,7 +7011,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7040,7 +7057,7 @@ msgid "No contests were found in your log." msgstr "" #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "" @@ -7381,7 +7398,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7446,10 +7463,10 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "" @@ -7602,7 +7619,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "" @@ -7678,54 +7695,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "" @@ -7887,7 +7904,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "" @@ -7972,45 +7989,58 @@ msgid "" "themes." msgstr "" -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" msgstr "" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" msgstr "" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" msgstr[0] "" msgstr[1] "" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8021,7 +8051,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8044,10 +8074,10 @@ msgstr "" msgid "Sent" msgstr "" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8080,7 +8110,7 @@ msgstr "" msgid "Received" msgstr "" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8106,7 +8136,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8120,25 +8150,25 @@ msgstr "" msgid "Requested" msgstr "" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "" -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "" @@ -8303,12 +8333,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "" #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "" @@ -8653,6 +8683,7 @@ msgstr "" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "" @@ -8693,11 +8724,15 @@ msgstr "" msgid "HAMqsl" msgstr "" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -8705,140 +8740,140 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "" @@ -9224,10 +9259,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9325,7 +9360,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "" @@ -9518,62 +9553,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "" @@ -10167,7 +10202,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "" @@ -10287,7 +10322,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10308,7 +10343,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10327,7 +10362,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10342,49 +10377,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "" @@ -10546,7 +10581,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10583,7 +10618,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11022,37 +11057,41 @@ msgstr "" msgid "Last Upload" msgstr "" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" msgstr "" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "" @@ -11590,7 +11629,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -11638,7 +11677,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12175,20 +12214,12 @@ msgstr "" msgid "Toot on Mastodon" msgstr "" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "" @@ -12213,11 +12244,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12227,25 +12258,25 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "" @@ -12258,38 +12289,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12298,8 +12329,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "" @@ -12320,7 +12351,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12364,7 +12395,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "" @@ -12431,7 +12462,7 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -12439,7 +12470,7 @@ msgstr "" msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -12447,91 +12478,95 @@ msgstr "" msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:769 -msgid "Send" +#: application/views/qso/index.php:778 +msgid "Stop" msgstr "" #: application/views/qso/index.php:779 -msgid "Suggestions" +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:785 +msgid "Enter text..." msgstr "" #: application/views/qso/index.php:786 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:798 +msgid "Suggestions" +msgstr "" + +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "" @@ -13819,6 +13854,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14825,10 +14861,6 @@ msgstr "" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "" diff --git a/application/locale/sl/LC_MESSAGES/messages.po b/application/locale/sl/LC_MESSAGES/messages.po index 6075a4ca4..304f07d97 100644 --- a/application/locale/sl/LC_MESSAGES/messages.po +++ b/application/locale/sl/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -69,9 +69,9 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:79 application/controllers/Lotw.php:105 -#: application/controllers/Lotw.php:375 application/controllers/Lotw.php:398 -#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:839 -#: application/controllers/Lotw.php:944 application/controllers/Mode.php:15 +#: application/controllers/Lotw.php:383 application/controllers/Lotw.php:406 +#: application/controllers/Lotw.php:763 application/controllers/Lotw.php:847 +#: application/controllers/Lotw.php:952 application/controllers/Mode.php:15 #: application/controllers/Notes.php:11 application/controllers/Options.php:14 #: application/controllers/Oqrs.php:15 application/controllers/Oqrs.php:165 #: application/controllers/Qrbcalc.php:13 application/controllers/Qrz.php:200 @@ -80,8 +80,8 @@ msgstr "" #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:187 -#: application/controllers/Qso.php:287 application/controllers/Qso.php:308 -#: application/controllers/Qso.php:331 application/controllers/Qso.php:629 +#: application/controllers/Qso.php:318 application/controllers/Qso.php:339 +#: application/controllers/Qso.php:362 application/controllers/Qso.php:662 #: application/controllers/Radio.php:32 application/controllers/Radio.php:291 #: application/controllers/Radio.php:317 application/controllers/Radio.php:333 #: application/controllers/Reg1test.php:17 @@ -139,7 +139,7 @@ msgstr "" #: application/controllers/Activated_gridmap.php:31 #: application/controllers/Awards.php:1003 #: application/controllers/Awards.php:1035 -#: application/controllers/Gridmap.php:31 +#: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 #: application/views/interface_assets/footer.php:47 @@ -149,13 +149,13 @@ msgid "Gridsquares" msgstr "" #: application/controllers/Activated_gridmap.php:32 -#: application/controllers/Gridmap.php:32 +#: application/controllers/Gridmap.php:33 #: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "" #: application/controllers/Activated_gridmap.php:33 -#: application/controllers/Gridmap.php:33 +#: application/controllers/Gridmap.php:34 #: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "" @@ -165,25 +165,25 @@ msgid "Total gridsquares activated" msgstr "" #: application/controllers/Activated_gridmap.php:36 -#: application/controllers/Gridmap.php:36 +#: application/controllers/Gridmap.php:37 #: application/controllers/Visitor.php:390 msgid "Fields" msgstr "" #: application/controllers/Activated_gridmap.php:37 -#: application/controllers/Gridmap.php:37 +#: application/controllers/Gridmap.php:38 #: application/controllers/Visitor.php:391 msgid "Fields confirmed" msgstr "" #: application/controllers/Activated_gridmap.php:38 -#: application/controllers/Gridmap.php:38 +#: application/controllers/Gridmap.php:39 #: application/controllers/Visitor.php:392 msgid "Fields not confirmed" msgstr "" #: application/controllers/Activated_gridmap.php:39 -#: application/controllers/Gridmap.php:39 +#: application/controllers/Gridmap.php:40 #: application/controllers/Visitor.php:393 msgid "Total fields worked" msgstr "" @@ -333,13 +333,13 @@ msgstr "" #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:401 application/views/qso/index.php:302 -#: application/views/qso/index.php:593 application/views/user/edit.php:682 +#: application/views/qso/index.php:594 application/views/user/edit.php:682 #: application/views/view_log/qso.php:460 msgid "DOK" msgstr "" #: application/controllers/Awards.php:176 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:130 application/views/bands/index.php:50 +#: application/views/bandmap/list.php:131 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:180 @@ -352,7 +352,7 @@ msgstr "" #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 -#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:402 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 #: application/views/search/result.php:27 @@ -555,7 +555,7 @@ msgstr "" #: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:286 -#: application/views/qso/index.php:579 application/views/user/edit.php:678 +#: application/views/qso/index.php:580 application/views/user/edit.php:678 #: application/views/view_log/qso.php:425 #: application/views/view_log/qso.php:736 msgid "SIG" @@ -817,7 +817,7 @@ msgstr "" #: application/views/debug/index.php:539 application/views/debug/index.php:544 #: application/views/debug/index.php:549 application/views/debug/index.php:554 #: application/views/debug/index.php:559 application/views/debug/index.php:564 -#: application/views/debug/index.php:569 +#: application/views/debug/index.php:569 application/views/debug/index.php:574 msgid "never" msgstr "" @@ -870,7 +870,7 @@ msgstr "" msgid "SOTA CSV Export" msgstr "" -#: application/controllers/Dashboard.php:152 +#: application/controllers/Dashboard.php:154 #: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "" @@ -923,42 +923,42 @@ msgstr "" msgid "Key(s) Deleted." msgstr "" -#: application/controllers/Debug.php:117 +#: application/controllers/Debug.php:118 msgid "Debug" msgstr "" -#: application/controllers/Debug.php:156 +#: application/controllers/Debug.php:157 msgid "Migrate data now" msgstr "" -#: application/controllers/Debug.php:159 +#: application/controllers/Debug.php:160 msgid "Migration already done. Run again?" msgstr "" -#: application/controllers/Debug.php:163 +#: application/controllers/Debug.php:164 msgid "No data to migrate" msgstr "" -#: application/controllers/Debug.php:167 application/controllers/Debug.php:172 +#: application/controllers/Debug.php:168 application/controllers/Debug.php:173 msgid "No migration possible" msgstr "" -#: application/controllers/Debug.php:237 +#: application/controllers/Debug.php:238 msgid "Wavelog was updated successfully!" msgstr "" -#: application/controllers/Debug.php:255 +#: application/controllers/Debug.php:256 msgid "Selfupdate() not available. Check the Error Log." msgstr "" -#: application/controllers/Debug.php:299 +#: application/controllers/Debug.php:300 msgid "" "File Migration was successfull, but please check also manually. If " "everything seems right you can delete the folders 'assets/qslcard' and " "'images/eqsl_card_images'." msgstr "" -#: application/controllers/Debug.php:302 +#: application/controllers/Debug.php:303 msgid "File Migration failed. Please check the Error Log." msgstr "" @@ -999,7 +999,7 @@ msgid "DX Calendar" msgstr "" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:404 +#: application/views/dashboard/index.php:409 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:310 msgid "eQSL Cards" @@ -1059,7 +1059,7 @@ msgstr "" msgid "Gridsquare Map" msgstr "" -#: application/controllers/Gridmap.php:34 +#: application/controllers/Gridmap.php:35 #: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "" @@ -1258,7 +1258,7 @@ msgstr "" #: application/views/awards/wapc/index.php:44 #: application/views/awards/was/index.php:56 #: application/views/awards/wpx/index.php:28 -#: application/views/gridmap/index.php:101 +#: application/views/gridmap/index.php:141 #: application/views/logbookadvanced/index.php:794 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/oqrs/qsolist.php:12 @@ -1290,8 +1290,8 @@ msgstr "" #: application/views/awards/wapc/index.php:48 #: application/views/awards/was/index.php:60 #: application/views/awards/wpx/index.php:32 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:109 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:149 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 @@ -1327,8 +1327,8 @@ msgstr "" #: application/views/awards/wapc/index.php:52 #: application/views/awards/was/index.php:64 #: application/views/awards/wpx/index.php:36 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:117 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:157 #: application/views/logbookadvanced/useroptions.php:78 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 @@ -1370,23 +1370,23 @@ msgstr "" #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:110 -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:136 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 #: application/views/contesting/index.php:118 -#: application/views/contesting/index.php:264 +#: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:597 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 -#: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 -#: application/views/kml/index.php:31 +#: application/views/gridmap/index.php:104 +#: application/views/hamsat/index.php:33 application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:12 #: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/index.php:764 @@ -1436,8 +1436,8 @@ msgstr "" #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:179 -#: application/views/contesting/index.php:265 +#: application/views/contesting/index.php:180 +#: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 #: application/views/logbookadvanced/index.php:767 #: application/views/logbookadvanced/useroptions.php:38 @@ -1465,8 +1465,8 @@ msgstr "" #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 -#: application/views/contesting/index.php:203 -#: application/views/contesting/index.php:266 +#: application/views/contesting/index.php:204 +#: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 #: application/views/logbookadvanced/index.php:770 #: application/views/logbookadvanced/useroptions.php:42 @@ -1574,9 +1574,9 @@ msgstr "" #: application/views/awards/gridmaster/index.php:50 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:26 -#: application/views/contesting/index.php:271 +#: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 -#: application/views/gridmap/index.php:152 +#: application/views/gridmap/index.php:193 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 @@ -1620,7 +1620,7 @@ msgstr "" #: application/views/dashboard/index.php:14 #: application/views/distancerecords/index.php:15 #: application/views/distances/index.php:13 -#: application/views/gridmap/index.php:154 +#: application/views/gridmap/index.php:195 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 #: application/views/logbookadvanced/index.php:869 @@ -1669,17 +1669,17 @@ msgstr "" #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:96 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:97 #: application/views/bands/create.php:24 application/views/bands/edit.php:7 #: application/views/bands/index.php:47 application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:263 +#: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:593 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:598 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 -#: application/views/gridmap/index.php:10 application/views/kml/index.php:19 +#: application/views/gridmap/index.php:26 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:6 #: application/views/logbookadvanced/index.php:281 #: application/views/logbookadvanced/index.php:773 @@ -1727,7 +1727,7 @@ msgid "Band" msgstr "" #: application/controllers/Logbook.php:1324 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:128 +#: application/controllers/Radio.php:45 application/views/bandmap/list.php:129 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:776 @@ -1786,9 +1786,9 @@ msgstr "" #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:252 #: application/views/lookup/index.php:47 -#: application/views/lotw_views/index.php:49 +#: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 -#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:411 #: application/views/station_profile/create.php:77 #: application/views/station_profile/edit.php:109 #: application/views/stationsetup/linkedlocations.php:17 @@ -1829,63 +1829,63 @@ msgstr "" msgid "Certificate Updated." msgstr "" -#: application/controllers/Lotw.php:381 +#: application/controllers/Lotw.php:389 msgid "Certificate Deleted." msgstr "" -#: application/controllers/Lotw.php:410 +#: application/controllers/Lotw.php:418 #, php-format msgid "" "Found no certificate in file %s. If the filename contains 'key-only' this is " "typically a certificate request which has not been processed by LoTW yet." msgstr "" -#: application/controllers/Lotw.php:646 +#: application/controllers/Lotw.php:654 msgid "LoTW ADIF Information" msgstr "" -#: application/controllers/Lotw.php:812 application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:820 application/controllers/Lotw.php:823 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "" -#: application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:823 msgid "Username/password incorrect" msgstr "" -#: application/controllers/Lotw.php:818 +#: application/controllers/Lotw.php:826 msgid "LoTW login OK!" msgstr "" -#: application/controllers/Lotw.php:822 +#: application/controllers/Lotw.php:830 msgid "LoTW currently not available. Try again later." msgstr "" -#: application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 msgid "No LoTW credentials provided." msgstr "" -#: application/controllers/Lotw.php:845 +#: application/controllers/Lotw.php:853 msgid "LoTW ADIF Import" msgstr "" -#: application/controllers/Lotw.php:871 application/controllers/Lotw.php:979 +#: application/controllers/Lotw.php:879 application/controllers/Lotw.php:987 msgid "You have not defined your ARRL LoTW credentials!" msgstr "" -#: application/controllers/Lotw.php:946 +#: application/controllers/Lotw.php:954 msgid "LoTW .TQ8 Upload" msgstr "" -#: application/controllers/Lotw.php:1024 +#: application/controllers/Lotw.php:1032 msgid "Your ARRL username and/or password is incorrect." msgstr "" -#: application/controllers/Lotw.php:1043 application/controllers/Lotw.php:1048 +#: application/controllers/Lotw.php:1051 application/controllers/Lotw.php:1056 msgid "LoTW .TQ8 Sent" msgstr "" -#: application/controllers/Lotw.php:1055 +#: application/controllers/Lotw.php:1063 msgid "LoTW .TQ8 Not Sent" msgstr "" @@ -1906,7 +1906,7 @@ msgstr "" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:409 application/views/qso/index.php:71 -#: application/views/qso/index.php:642 application/views/view_log/qso.php:14 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:14 #: application/views/view_log/qso.php:749 msgid "Notes" msgstr "" @@ -2160,8 +2160,8 @@ msgstr "" msgid "QRZ ADIF Information" msgstr "" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:356 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:361 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:287 msgid "QSL Cards" @@ -2183,15 +2183,15 @@ msgstr "" msgid "Add QSO" msgstr "" -#: application/controllers/Qso.php:690 +#: application/controllers/Qso.php:723 msgid "You have to be logged in to access this URL." msgstr "" -#: application/controllers/Qso.php:696 +#: application/controllers/Qso.php:729 msgid "Call Transfer" msgstr "" -#: application/controllers/Qso.php:703 +#: application/controllers/Qso.php:736 msgid "No callsign provided." msgstr "" @@ -2221,7 +2221,7 @@ msgid "Options" msgstr "" #: application/controllers/Radio.php:50 application/views/debug/index.php:312 -#: application/views/qso/index.php:749 +#: application/views/qso/index.php:750 msgid "Settings" msgstr "" @@ -2230,8 +2230,8 @@ msgid "UNKNOWN" msgstr "" #: application/controllers/Radio.php:98 -#: application/views/contesting/index.php:161 -#: application/views/qso/index.php:354 +#: application/views/contesting/index.php:162 +#: application/views/qso/index.php:355 msgid "last updated" msgstr "" @@ -2269,13 +2269,13 @@ msgstr "" #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:63 -#: application/views/interface_assets/footer.php:2802 -#: application/views/interface_assets/footer.php:2820 -#: application/views/interface_assets/footer.php:2841 -#: application/views/interface_assets/footer.php:2859 +#: application/views/interface_assets/footer.php:2900 +#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:2939 +#: application/views/interface_assets/footer.php:2957 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:734 -#: application/views/lotw_views/index.php:111 +#: application/views/lotw_views/index.php:128 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 #: application/views/qslcard/index.php:76 @@ -2485,7 +2485,7 @@ msgstr "" #: application/controllers/Stationsetup.php:156 #: application/controllers/Stationsetup.php:177 #: application/controllers/Stationsetup.php:478 -#: application/views/qso/index.php:708 application/views/simplefle/index.php:39 +#: application/views/qso/index.php:709 application/views/simplefle/index.php:39 #: application/views/widgets/on_air.php:102 msgid "Error" msgstr "" @@ -2779,6 +2779,14 @@ msgstr "" msgid "Update of Hams of Note" msgstr "" +#: application/controllers/Update.php:718 +msgid "VUCC Grid file update complete. Result: " +msgstr "" + +#: application/controllers/Update.php:720 +msgid "VUCC Grid file update failed. Result: " +msgstr "" + #: application/controllers/User.php:50 #: application/views/interface_assets/header.php:306 msgid "User Accounts" @@ -2900,7 +2908,7 @@ msgstr "" msgid "Station Name" msgstr "" -#: application/controllers/User.php:1262 application/views/debug/index.php:594 +#: application/controllers/User.php:1262 application/views/debug/index.php:599 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:61 #: application/views/station_profile/edit.php:77 @@ -3328,7 +3336,7 @@ msgstr "" #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 #: application/views/dashboard/index.php:19 -#: application/views/gridmap/index.php:156 +#: application/views/gridmap/index.php:197 #: application/views/logbookadvanced/index.php:15 #: application/views/user/edit.php:256 application/views/user/edit.php:279 #: application/views/user/edit.php:302 application/views/user/edit.php:325 @@ -3430,7 +3438,7 @@ msgid "Accumulated number of WAJA worked" msgstr "" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:317 +#: application/views/dashboard/index.php:322 #: application/views/dayswithqso/index.php:42 #: application/views/dayswithqso/index.php:82 #: application/views/statistics/index.php:19 @@ -3447,7 +3455,7 @@ msgid "Yearly" msgstr "" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:327 #: application/views/visitor/index.php:255 msgid "Month" msgstr "" @@ -3499,8 +3507,8 @@ msgstr "" #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:86 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:79 application/views/bandmap/list.php:87 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:113 #: application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 @@ -3523,14 +3531,15 @@ msgstr "" #: application/views/dxatlas/index.php:60 #: application/views/dxatlas/index.php:82 #: application/views/dxatlas/index.php:94 -#: application/views/gridmap/index.php:13 -#: application/views/gridmap/index.php:28 -#: application/views/gridmap/index.php:41 -#: application/views/gridmap/index.php:70 -#: application/views/gridmap/index.php:83 +#: application/views/gridmap/index.php:29 +#: application/views/gridmap/index.php:44 +#: application/views/gridmap/index.php:78 +#: application/views/gridmap/index.php:93 +#: application/views/gridmap/index.php:107 +#: application/views/gridmap/index.php:121 #: application/views/interface_assets/footer.php:46 -#: application/views/interface_assets/footer.php:1692 -#: application/views/interface_assets/footer.php:1831 +#: application/views/interface_assets/footer.php:1790 +#: application/views/interface_assets/footer.php:1929 #: 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 @@ -3617,7 +3626,7 @@ msgstr "" #: application/views/accumulate/index.php:80 #: application/views/callstats/index.php:65 #: application/views/distances/index.php:53 -#: application/views/gridmap/index.php:38 +#: application/views/gridmap/index.php:41 #: application/views/logbookadvanced/edit.php:14 #: application/views/logbookadvanced/index.php:310 #: application/views/logbookadvanced/index.php:857 @@ -3637,7 +3646,7 @@ msgstr "" #: application/views/accumulate/index.php:85 #: application/views/callstats/index.php:69 #: application/views/distances/index.php:58 -#: application/views/gridmap/index.php:42 +#: application/views/gridmap/index.php:45 #: application/views/logbookadvanced/edit.php:207 #: application/views/logbookadvanced/edit.php:215 #: application/views/logbookadvanced/index.php:406 @@ -3649,9 +3658,9 @@ msgstr "" #: application/views/callstats/index.php:71 application/views/csv/index.php:95 #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 +#: application/views/gridmap/index.php:47 application/views/kml/index.php:80 #: application/views/logbookadvanced/index.php:314 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:477 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:478 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 #: application/views/view_log/qso.php:233 @@ -3663,9 +3672,9 @@ msgstr "" #: application/views/callstats/index.php:72 application/views/csv/index.php:96 #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 +#: application/views/gridmap/index.php:48 application/views/kml/index.php:81 #: application/views/logbookadvanced/index.php:315 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:478 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:479 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 #: application/views/view_log/qso.php:236 @@ -3677,9 +3686,9 @@ msgstr "" #: application/views/callstats/index.php:73 application/views/csv/index.php:97 #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 +#: application/views/gridmap/index.php:49 application/views/kml/index.php:82 #: application/views/logbookadvanced/index.php:316 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:479 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:480 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 #: application/views/view_log/qso.php:239 @@ -3691,9 +3700,9 @@ msgstr "" #: application/views/callstats/index.php:74 application/views/csv/index.php:98 #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 +#: application/views/gridmap/index.php:50 application/views/kml/index.php:83 #: application/views/logbookadvanced/index.php:317 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:480 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:481 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 #: application/views/view_log/qso.php:242 @@ -3705,9 +3714,9 @@ msgstr "" #: application/views/callstats/index.php:75 application/views/csv/index.php:99 #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 +#: application/views/gridmap/index.php:51 application/views/kml/index.php:84 #: application/views/logbookadvanced/index.php:318 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:481 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:482 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 #: application/views/view_log/qso.php:245 @@ -3719,9 +3728,9 @@ msgstr "" #: application/views/callstats/index.php:76 application/views/csv/index.php:100 #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 +#: application/views/gridmap/index.php:52 application/views/kml/index.php:85 #: application/views/logbookadvanced/index.php:319 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:482 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:483 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 #: application/views/view_log/qso.php:248 @@ -3733,9 +3742,9 @@ msgstr "" #: application/views/callstats/index.php:77 application/views/csv/index.php:101 #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 +#: application/views/gridmap/index.php:53 application/views/kml/index.php:86 #: application/views/logbookadvanced/index.php:320 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:483 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:484 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 #: application/views/view_log/qso.php:251 @@ -3747,9 +3756,9 @@ msgstr "" #: application/views/callstats/index.php:78 application/views/csv/index.php:102 #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 +#: application/views/gridmap/index.php:54 application/views/kml/index.php:87 #: application/views/logbookadvanced/index.php:321 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:484 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:485 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 #: application/views/view_log/qso.php:254 @@ -3761,9 +3770,9 @@ msgstr "" #: application/views/callstats/index.php:79 application/views/csv/index.php:103 #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 +#: application/views/gridmap/index.php:55 application/views/kml/index.php:88 #: application/views/logbookadvanced/index.php:322 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:485 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:486 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 #: application/views/view_log/qso.php:257 @@ -3775,9 +3784,9 @@ msgstr "" #: application/views/callstats/index.php:80 application/views/csv/index.php:104 #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 +#: application/views/gridmap/index.php:56 application/views/kml/index.php:89 #: application/views/logbookadvanced/index.php:323 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:486 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:487 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 #: application/views/view_log/qso.php:260 @@ -3789,9 +3798,9 @@ msgstr "" #: application/views/callstats/index.php:81 application/views/csv/index.php:105 #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 +#: application/views/gridmap/index.php:57 application/views/kml/index.php:90 #: application/views/logbookadvanced/index.php:324 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:487 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:488 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 #: application/views/view_log/qso.php:263 @@ -3803,9 +3812,9 @@ msgstr "" #: application/views/callstats/index.php:82 application/views/csv/index.php:106 #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 +#: application/views/gridmap/index.php:58 application/views/kml/index.php:91 #: application/views/logbookadvanced/index.php:325 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:488 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:489 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 #: application/views/view_log/qso.php:266 @@ -3817,9 +3826,9 @@ msgstr "" #: application/views/callstats/index.php:83 application/views/csv/index.php:107 #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 +#: application/views/gridmap/index.php:59 application/views/kml/index.php:92 #: application/views/logbookadvanced/index.php:326 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:489 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:490 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 #: application/views/view_log/qso.php:269 @@ -3831,9 +3840,9 @@ msgstr "" #: application/views/callstats/index.php:84 application/views/csv/index.php:108 #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 +#: application/views/gridmap/index.php:60 application/views/kml/index.php:93 #: application/views/logbookadvanced/index.php:327 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:490 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:491 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 #: application/views/view_log/qso.php:272 @@ -3845,9 +3854,9 @@ msgstr "" #: application/views/callstats/index.php:85 application/views/csv/index.php:109 #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 +#: application/views/gridmap/index.php:61 application/views/kml/index.php:94 #: application/views/logbookadvanced/index.php:328 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:491 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:492 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 #: application/views/view_log/qso.php:275 @@ -3859,9 +3868,9 @@ msgstr "" #: application/views/callstats/index.php:86 application/views/csv/index.php:110 #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 +#: application/views/gridmap/index.php:62 application/views/kml/index.php:95 #: application/views/logbookadvanced/index.php:329 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:492 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:493 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 #: application/views/view_log/qso.php:278 @@ -3873,9 +3882,9 @@ msgstr "" #: application/views/callstats/index.php:87 application/views/csv/index.php:111 #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 +#: application/views/gridmap/index.php:63 application/views/kml/index.php:96 #: application/views/logbookadvanced/index.php:330 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:493 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:494 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 #: application/views/view_log/qso.php:281 @@ -3887,9 +3896,9 @@ msgstr "" #: application/views/callstats/index.php:88 application/views/csv/index.php:112 #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 +#: application/views/gridmap/index.php:64 application/views/kml/index.php:97 #: application/views/logbookadvanced/index.php:331 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:494 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:495 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 #: application/views/view_log/qso.php:284 @@ -3944,7 +3953,7 @@ msgstr "" #: application/views/components/hamsat/table.php:29 #: application/views/distancerecords/index.php:14 #: application/views/distances/index.php:34 -#: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 +#: application/views/gridmap/index.php:73 application/views/hamsat/index.php:32 #: application/views/interface_assets/header.php:198 #: application/views/logbookadvanced/edit.php:17 #: application/views/logbookadvanced/index.php:292 @@ -3967,7 +3976,7 @@ msgstr "" #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 -#: application/views/gridmap/index.php:80 +#: application/views/gridmap/index.php:88 #: application/views/logbookadvanced/index.php:301 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 @@ -3980,7 +3989,7 @@ msgstr "" #: application/views/activated_gridmap/index.php:50 #: application/views/awards/wab/index.php:65 -#: application/views/gridmap/index.php:92 +#: application/views/gridmap/index.php:132 #: application/views/timeline/index.php:52 msgid "Confirmation" msgstr "" @@ -4002,24 +4011,24 @@ msgstr "" #: application/views/awards/wapc/index.php:56 #: application/views/awards/was/index.php:68 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:125 application/views/user/edit.php:810 +#: application/views/gridmap/index.php:165 application/views/user/edit.php:810 msgid "QRZ.com" msgstr "" #: application/views/activated_gridmap/index.php:86 -#: application/views/gridmap/index.php:130 +#: application/views/gridmap/index.php:17 msgid "Plot" msgstr "" #: application/views/activated_gridmap/index.php:87 -#: application/views/gridmap/index.php:131 +#: application/views/gridmap/index.php:18 msgid "Clear Markers" msgstr "" #: application/views/activated_gridmap/index.php:102 #: application/views/awards/ffma/index.php:31 #: application/views/awards/gridmaster/index.php:46 -#: application/views/gridmap/index.php:148 +#: application/views/gridmap/index.php:189 #: application/views/logbookadvanced/index.php:10 msgid "Latitude" msgstr "" @@ -4027,7 +4036,7 @@ msgstr "" #: application/views/activated_gridmap/index.php:104 #: application/views/awards/ffma/index.php:33 #: application/views/awards/gridmaster/index.php:48 -#: application/views/gridmap/index.php:150 +#: application/views/gridmap/index.php:191 #: application/views/logbookadvanced/index.php:11 msgid "Longitude" msgstr "" @@ -4088,8 +4097,8 @@ msgstr "" #: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:170 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:244 +#: application/views/contesting/index.php:171 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:249 #: application/views/dcl_views/index.php:27 #: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 @@ -4194,12 +4203,12 @@ msgstr "" #: application/views/awards/pota/index.php:33 #: application/views/awards/sota/index.php:31 #: application/views/awards/wwff/index.php:33 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:25 #: application/views/contesting/index.php:103 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:239 -#: application/views/debug/index.php:589 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:244 +#: application/views/debug/index.php:594 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4240,12 +4249,12 @@ msgstr "" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:590 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:247 +#: application/views/debug/index.php:595 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4271,10 +4280,10 @@ msgstr "" #: application/views/adif/dcl_success.php:31 #: application/views/adif/pota_success.php:31 #: application/views/awards/vucc/band.php:18 -#: application/views/bandmap/list.php:129 -#: application/views/contesting/index.php:262 +#: application/views/bandmap/list.php:130 +#: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:591 application/views/debug/index.php:626 +#: application/views/debug/index.php:596 application/views/debug/index.php:631 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4316,8 +4325,7 @@ msgstr "" #: application/views/adif/import.php:73 application/views/adif/import.php:379 #: application/views/adif/import.php:400 application/views/api/index.php:22 #: application/views/dashboard/index.php:180 -#: application/views/dashboard/index.php:209 -#: application/views/dashboard/index.php:214 +#: application/views/dashboard/index.php:213 #: application/views/eqsl/import.php:46 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 #: application/views/options/maptiles.php:48 @@ -4336,7 +4344,7 @@ msgstr "" #: application/views/adif/import.php:349 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:193 application/views/debug/index.php:210 -#: application/views/debug/index.php:581 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:586 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 @@ -4400,7 +4408,7 @@ msgstr "" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 #: application/views/interface_assets/footer.php:580 -#: application/views/interface_assets/footer.php:2564 +#: application/views/interface_assets/footer.php:2662 msgid "DANGER" msgstr "" @@ -4599,7 +4607,7 @@ msgstr "" #: application/views/adif/import.php:399 #: application/views/adif/import_success.php:40 #: application/views/dcl_views/index.php:76 -#: application/views/lotw_views/index.php:137 +#: application/views/lotw_views/index.php:154 msgid "Information" msgstr "" @@ -5065,7 +5073,7 @@ msgstr "" #: application/views/awards/wapc/index.php:145 #: application/views/awards/was/index.php:180 #: application/views/awards/wpx/index.php:172 -#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:317 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -5085,7 +5093,8 @@ msgstr "" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:151 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/dxatlas/index.php:80 +#: application/views/gridmap/index.php:199 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 #: application/views/logbookadvanced/index.php:335 @@ -5093,7 +5102,7 @@ msgstr "" #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:308 -#: application/views/qso/index.php:450 +#: application/views/qso/index.php:451 #: application/views/search/cqzones_result.php:13 #: application/views/station_profile/create.php:110 #: application/views/station_profile/edit.php:157 @@ -5146,9 +5155,9 @@ msgstr "" #: application/views/awards/wab/list.php:6 #: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:81 -#: application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:457 +#: application/views/bandmap/list.php:82 +#: application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:462 #: application/views/interface_assets/footer.php:43 #: application/views/search/result.php:32 #: application/views/visitor/index.php:270 @@ -5158,9 +5167,9 @@ msgstr "" #: application/views/awards/cq/index.php:35 #: application/views/awards/itu/index.php:35 #: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:80 -#: application/views/dashboard/index.php:335 -#: application/views/dashboard/index.php:451 +#: application/views/bandmap/list.php:81 +#: application/views/dashboard/index.php:340 +#: application/views/dashboard/index.php:456 #: application/views/search/result.php:35 #: application/views/visitor/index.php:266 msgid "Worked" @@ -5238,7 +5247,7 @@ msgstr "" #: application/views/awards/iota/index.php:62 #: application/views/awards/itu/index.php:57 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2543 +#: application/views/interface_assets/footer.php:2641 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -5472,6 +5481,7 @@ msgstr "" #: application/views/awards/dxcc/index.php:28 #: application/views/awards/wpx/index.php:13 +#: application/views/gridmap/index.php:16 #: application/views/logbookadvanced/index.php:221 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" @@ -5489,12 +5499,12 @@ msgstr "" #: application/views/awards/dxcc/index.php:97 #: application/views/awards/iota/index.php:88 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:88 +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:89 #: application/views/logbookadvanced/edit.php:217 #: application/views/logbookadvanced/index.php:408 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 -#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:425 +#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:426 #: application/views/view_log/qso.php:350 msgid "Antarctica" msgstr "" @@ -5502,12 +5512,12 @@ msgstr "" #: application/views/awards/dxcc/index.php:101 #: application/views/awards/iota/index.php:92 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:87 +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:88 #: application/views/logbookadvanced/edit.php:216 #: application/views/logbookadvanced/index.php:407 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 -#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:424 +#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:425 #: application/views/view_log/qso.php:347 msgid "Africa" msgstr "" @@ -5515,12 +5525,12 @@ msgstr "" #: application/views/awards/dxcc/index.php:105 #: application/views/awards/iota/index.php:96 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:89 +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:90 #: application/views/logbookadvanced/edit.php:219 #: application/views/logbookadvanced/index.php:410 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 -#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:426 +#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:427 #: application/views/view_log/qso.php:353 msgid "Asia" msgstr "" @@ -5528,12 +5538,12 @@ msgstr "" #: application/views/awards/dxcc/index.php:109 #: application/views/awards/iota/index.php:100 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:90 +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:91 #: application/views/logbookadvanced/edit.php:220 #: application/views/logbookadvanced/index.php:411 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 -#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:427 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:428 #: application/views/view_log/qso.php:356 msgid "Europe" msgstr "" @@ -5541,12 +5551,12 @@ msgstr "" #: application/views/awards/dxcc/index.php:113 #: application/views/awards/iota/index.php:104 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:91 +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:92 #: application/views/logbookadvanced/edit.php:218 #: application/views/logbookadvanced/index.php:409 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 -#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:428 +#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:429 #: application/views/view_log/qso.php:359 msgid "North America" msgstr "" @@ -5554,12 +5564,12 @@ msgstr "" #: application/views/awards/dxcc/index.php:117 #: application/views/awards/iota/index.php:108 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:93 +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:94 #: application/views/logbookadvanced/edit.php:221 #: application/views/logbookadvanced/index.php:412 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 -#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:430 +#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:431 #: application/views/view_log/qso.php:365 msgid "South America" msgstr "" @@ -5567,12 +5577,12 @@ msgstr "" #: application/views/awards/dxcc/index.php:121 #: application/views/awards/iota/index.php:112 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:92 +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:93 #: application/views/logbookadvanced/edit.php:222 #: application/views/logbookadvanced/index.php:413 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 -#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:429 +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:430 #: application/views/view_log/qso.php:362 msgid "Oceania" msgstr "" @@ -5826,7 +5836,7 @@ msgstr "" #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 #: application/views/contesting/index.php:64 -#: application/views/contesting/index.php:228 +#: 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:782 @@ -5854,13 +5864,14 @@ msgstr "" #: application/views/awards/itu/index.php:3 #: application/views/awards/itu/index.php:151 +#: application/views/gridmap/index.php:201 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 #: application/views/logbookadvanced/index.php:349 #: application/views/logbookadvanced/index.php:827 #: application/views/logbookadvanced/useroptions.php:118 #: application/views/lookup/index.php:8 application/views/qso/edit_ajax.php:316 -#: application/views/qso/index.php:460 +#: application/views/qso/index.php:461 #: application/views/search/ituzones_result.php:13 #: application/views/station_profile/create.php:124 #: application/views/station_profile/edit.php:174 @@ -5943,7 +5954,7 @@ msgid "City" msgstr "" #: application/views/awards/jcc/index.php:188 -#: application/views/dashboard/index.php:447 +#: application/views/dashboard/index.php:452 #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 @@ -5983,7 +5994,7 @@ msgid "Fields taken for this Award: POTA_REF (must contain Park-Reference)" msgstr "" #: application/views/awards/pota/index.php:32 -#: application/views/qso/index.php:274 application/views/qso/index.php:567 +#: application/views/qso/index.php:274 application/views/qso/index.php:568 #: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:276 #: application/views/user/edit.php:674 application/views/view_log/qso.php:403 @@ -6186,7 +6197,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:866 #: application/views/logbookadvanced/useroptions.php:170 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 -#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:422 #: application/views/view_log/qso.php:342 msgid "Continent" msgstr "" @@ -6417,7 +6428,7 @@ msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" msgstr "" #: application/views/awards/wwff/index.php:32 -#: application/views/qso/index.php:262 application/views/qso/index.php:554 +#: application/views/qso/index.php:262 application/views/qso/index.php:555 #: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:263 #: application/views/user/edit.php:670 application/views/view_log/qso.php:396 @@ -6482,7 +6493,7 @@ msgstr "" msgid "None" msgstr "" -#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:84 +#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:85 msgid "Spots de" msgstr "" @@ -6494,40 +6505,46 @@ msgstr "" msgid "Click to prepare logging." msgstr "" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:70 +#: application/views/contesting/index.php:160 +#: application/views/qso/index.php:353 +msgid "WebSocket (Requires WLGate>1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6535,7 +6552,7 @@ msgstr "" msgid "Message" msgstr "" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "" @@ -6934,7 +6951,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -6997,7 +7014,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7043,7 +7060,7 @@ msgid "No contests were found in your log." msgstr "" #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "" @@ -7384,7 +7401,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7449,10 +7466,10 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "" @@ -7605,7 +7622,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "" @@ -7681,54 +7698,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "" @@ -7890,7 +7907,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "" @@ -7975,20 +7992,33 @@ msgid "" "themes." msgstr "" -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" msgstr "" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" msgstr "" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -7997,25 +8027,25 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8026,7 +8056,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8049,10 +8079,10 @@ msgstr "" msgid "Sent" msgstr "" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8085,7 +8115,7 @@ msgstr "" msgid "Received" msgstr "" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8111,7 +8141,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8125,25 +8155,25 @@ msgstr "" msgid "Requested" msgstr "" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "" -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "" @@ -8308,12 +8338,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "" #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "" @@ -8658,6 +8688,7 @@ msgstr "" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "" @@ -8698,11 +8729,15 @@ msgstr "" msgid "HAMqsl" msgstr "" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -8710,140 +8745,140 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "" @@ -9229,10 +9264,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9330,7 +9365,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "" @@ -9523,62 +9558,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "" @@ -10172,7 +10207,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "" @@ -10292,7 +10327,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10313,7 +10348,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10332,7 +10367,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10347,49 +10382,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "" @@ -10551,7 +10586,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10588,7 +10623,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11027,37 +11062,41 @@ msgstr "" msgid "Last Upload" msgstr "" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" msgstr "" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "" @@ -11595,7 +11634,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -11643,7 +11682,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12180,20 +12219,12 @@ msgstr "" msgid "Toot on Mastodon" msgstr "" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "" @@ -12218,11 +12249,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12232,25 +12263,25 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "" @@ -12263,38 +12294,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12303,8 +12334,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "" @@ -12325,7 +12356,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12369,7 +12400,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "" @@ -12436,7 +12467,7 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -12444,7 +12475,7 @@ msgstr "" msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -12452,91 +12483,95 @@ msgstr "" msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:769 -msgid "Send" +#: application/views/qso/index.php:778 +msgid "Stop" msgstr "" #: application/views/qso/index.php:779 -msgid "Suggestions" +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:785 +msgid "Enter text..." msgstr "" #: application/views/qso/index.php:786 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:798 +msgid "Suggestions" +msgstr "" + +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "" @@ -13824,6 +13859,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14830,10 +14866,6 @@ msgstr "" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "" diff --git a/application/locale/sq/LC_MESSAGES/messages.po b/application/locale/sq/LC_MESSAGES/messages.po index 9ea2286be..28f76d510 100644 --- a/application/locale/sq/LC_MESSAGES/messages.po +++ b/application/locale/sq/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" "PO-Revision-Date: 2024-08-17 10:49+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Albanian 1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6534,7 +6551,7 @@ msgstr "" msgid "Message" msgstr "" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "" @@ -6933,7 +6950,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -6996,7 +7013,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7042,7 +7059,7 @@ msgid "No contests were found in your log." msgstr "" #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "" @@ -7383,7 +7400,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7448,10 +7465,10 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "" @@ -7604,7 +7621,7 @@ msgstr "" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "" @@ -7680,54 +7697,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "" @@ -7889,7 +7906,7 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "" @@ -7974,45 +7991,58 @@ msgid "" "themes." msgstr "" -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" msgstr "" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" msgstr "" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" msgstr[0] "" msgstr[1] "" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8023,7 +8053,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8046,10 +8076,10 @@ msgstr "" msgid "Sent" msgstr "" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8082,7 +8112,7 @@ msgstr "" msgid "Received" msgstr "" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8108,7 +8138,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8122,25 +8152,25 @@ msgstr "" msgid "Requested" msgstr "" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "" -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "" @@ -8305,12 +8335,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "" #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "" @@ -8655,6 +8685,7 @@ msgstr "" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "" @@ -8695,11 +8726,15 @@ msgstr "" msgid "HAMqsl" msgstr "" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -8707,140 +8742,140 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "" @@ -9226,10 +9261,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9327,7 +9362,7 @@ msgid "Worked not confirmed" msgstr "" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "" @@ -9520,62 +9555,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "" @@ -10169,7 +10204,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "" @@ -10289,7 +10324,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10310,7 +10345,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10329,7 +10364,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10344,49 +10379,49 @@ msgstr "" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "" @@ -10548,7 +10583,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10585,7 +10620,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11024,37 +11059,41 @@ msgstr "" msgid "Last Upload" msgstr "" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" msgstr "" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "" @@ -11592,7 +11631,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -11640,7 +11679,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12177,20 +12216,12 @@ msgstr "" msgid "Toot on Mastodon" msgstr "" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "" @@ -12215,11 +12246,11 @@ msgstr "" msgid "RX Band" msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12229,25 +12260,25 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "" @@ -12260,38 +12291,38 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "" @@ -12300,8 +12331,8 @@ msgid "Sent Method" msgstr "" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "" @@ -12322,7 +12353,7 @@ msgstr "" msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "" @@ -12366,7 +12397,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "" @@ -12433,7 +12464,7 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -12441,7 +12472,7 @@ msgstr "" msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -12449,91 +12480,95 @@ msgstr "" msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "" -#: application/views/qso/index.php:769 -msgid "Send" +#: application/views/qso/index.php:778 +msgid "Stop" msgstr "" #: application/views/qso/index.php:779 -msgid "Suggestions" +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:785 +msgid "Enter text..." msgstr "" #: application/views/qso/index.php:786 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:798 +msgid "Suggestions" +msgstr "" + +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "" @@ -13821,6 +13856,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -14827,10 +14863,6 @@ msgstr "" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "" diff --git a/application/locale/sr/LC_MESSAGES/messages.mo b/application/locale/sr/LC_MESSAGES/messages.mo index a8b2e1793..168fb038f 100644 Binary files a/application/locale/sr/LC_MESSAGES/messages.mo and b/application/locale/sr/LC_MESSAGES/messages.mo differ diff --git a/application/locale/sr/LC_MESSAGES/messages.po b/application/locale/sr/LC_MESSAGES/messages.po index 1107fa75a..9fd185906 100644 --- a/application/locale/sr/LC_MESSAGES/messages.po +++ b/application/locale/sr/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" "PO-Revision-Date: 2024-12-10 11:09+0000\n" "Last-Translator: Dragan Đorđević <4o4a.dragan@gmail.com>\n" "Language-Team: Serbian 1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "DXCC status" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "Ne rađene" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "Spoter" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6755,7 +6772,7 @@ msgstr "Spoter" msgid "Message" msgstr "Poruka" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "" @@ -7163,7 +7180,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7226,7 +7243,7 @@ msgstr "Da" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7272,7 +7289,7 @@ msgid "No contests were found in your log." msgstr "U vašem dnevniku nisu pronađena takmičenja." #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "Sve osim SAT" @@ -7616,7 +7633,7 @@ msgstr "" "Nisu pronađene predstojeće aktivacije. Molimo proverite ponovo kasnije." #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7681,10 +7698,10 @@ msgid "Show Details" msgstr "Prikaži detalja" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "Danas" @@ -7842,7 +7859,7 @@ msgstr "Serijski broj + polje + razmena" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "Pozivni znak operatora" @@ -7921,54 +7938,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "Ser.br." -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "Serijski broj (brojevi)" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "Polje (S)" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "Exch (S)" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "Serijski (R)" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "Polje (R)" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "Exch (R)" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "Resetuj QSO" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "Sačuvaj QSO" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "Predlozi pozivnog znaka" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "Takmičarski dnevnik" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "VUCC polje" @@ -8140,7 +8157,7 @@ msgstr "Samo QSO sa SOTA informacijama će biti izvezeni!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "Vrsta propagacija" @@ -8228,20 +8245,33 @@ msgstr "" "Imate teme bez definisane vrste teme. Molimo da zatražite od administratora " "da uredi teme." -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" msgstr "" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" msgstr "" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" @@ -8249,25 +8279,25 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "Prelom veza" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "Potrebno" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8278,7 +8308,7 @@ msgstr "Potrebno" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8301,10 +8331,10 @@ msgstr "Potrebno" msgid "Sent" msgstr "Poslato" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8337,7 +8367,7 @@ msgstr "Poslato" msgid "Received" msgstr "Primljeno" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8363,7 +8393,7 @@ msgstr "Primljeno" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8377,25 +8407,25 @@ msgstr "Primljeno" msgid "Requested" msgstr "Zahtevano" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "Logbook of the World" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "VUCC-polja" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "" -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "" @@ -8562,12 +8592,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "" #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "Ručna sinhronizacija" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "" @@ -8927,6 +8957,7 @@ msgstr "DXCC ažuriranje sa ClubLoga" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "Ažuriranje" @@ -8967,11 +8998,15 @@ msgstr "" msgid "HAMqsl" msgstr "" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "Održavanje QSO-DB" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -8980,142 +9015,142 @@ msgstr[0] "Baza podataka sadrži%d QSO bez staničnog profila (lokacije)" msgstr[1] "Baza podataka sadrži%d QSOa bez staničnog profila (lokacije)" msgstr[2] "Baza podataka sadrži%d QSOa bez staničnog profila (lokacije)" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" "Molimo označite veze i ponovo ih dodelite postojećoj staničnoj lokaciji:" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "Odredišna lokacija" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "Ponovo doznači" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Svaki QSO u vašoj bazi podataka doznačen je staničnom profilu (lokaciji)" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "Sve je u redu" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "Albanski" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "Bosanski" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "Bugarski" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "Kineski (Pojednostavljeni)" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "Hrvatski" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "Češki" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "Holandski" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "Engleski" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "Estonski" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "Finski" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "Francuski" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "Nemački" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "Grčki" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "Italijanski" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "Letonski" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "Litvanski" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "Crnogorski" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "Poljski" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "Portugalski" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "Ruski" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "Srpski" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "Španski" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "Švedski" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "Turski" @@ -9555,10 +9590,10 @@ msgid "QSL Date" msgstr "QSL datum" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9664,7 +9699,7 @@ msgid "Worked not confirmed" msgstr "Rađene nepotvrđene" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "Obriši" @@ -9862,62 +9897,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Polja" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "Niste prijavljeni. Molimo %sprijavite se%s" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "polje" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "Ukupan broj" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "QSL karta za " -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Upozorenje! Da li ste sigurni da želite izbrisati ovu QSL kartu?" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL karta" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "eQSL karta za " -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "Datoteka slike QSL karte" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "Prednja strana QSL karte:" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "Zadnja strana QSL karte:" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "Dodajte dodatne QSOe na QSL kartu" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "Nešto je pošlo naopako. Molimo pokušajte ponovo!" @@ -10520,7 +10555,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "" @@ -10640,7 +10675,7 @@ msgstr "Verifikovano" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10661,7 +10696,7 @@ msgstr "Direktno" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10680,7 +10715,7 @@ msgstr "Biro" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10695,49 +10730,49 @@ msgstr "Elektronski" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Menadžer" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "NIŠTA" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "" @@ -10899,7 +10934,7 @@ msgstr "QSL poslata" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10936,7 +10971,7 @@ msgstr "U nizu" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11386,39 +11421,43 @@ msgstr "Datum isteka" msgid "Last Upload" msgstr "Poslednje učitavanje" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "Isteklo" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "Ističe" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" -msgstr "Validan" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" +msgstr "" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "Poslednji put uspešno: %s" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "Poslednji put neuspešno: %s" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "Nije sinhronizovano" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" "Trebalo bi da učitate neke LoTW p12 sertifikate kako biste koristili ove " "mogućnosti." -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "Sledeća automatska sinhronizacija sa LoTW će se desiti: " @@ -11995,7 +12034,7 @@ msgstr "Da li postoje neke dodatne informacije koje bismo trebali znati?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -12043,7 +12082,7 @@ msgstr "Stanica" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12590,20 +12629,12 @@ msgstr "" msgid "Toot on Mastodon" msgstr "" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "Fukncija %d - Ime" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "Funkcija %d - Makro" @@ -12628,11 +12659,11 @@ msgstr "RX frekvencija" msgid "RX Band" msgstr "RX opseg" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Dajte vrednost snage u W. Unesite samo brojčanu vrednost." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12642,25 +12673,25 @@ msgstr "Snaga predajnika (W)" msgid "Used for VUCC MultiGrids" msgstr "Koristi se za VUCC MultiGrids" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "" @@ -12673,38 +12704,38 @@ msgstr "Ime satelita" msgid "Sat Mode" msgstr "Vrsta rada preko satelita" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "Azimut antene (°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "Azimut antene u decimalnim stepenima." -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "Elevacija antene (°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "Elevacija antene u decimalnim stepenima." -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "Okrug stanice" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "Napomena: biće izvezeno na treće servise." @@ -12713,8 +12744,8 @@ msgid "Sent Method" msgstr "Način slanja" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "Način" @@ -12735,7 +12766,7 @@ msgstr "Verifikovano (preklapa se)" msgid "Received Method" msgstr "Način primanja" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "Dodajte podrazumevanu poruku za eQSL, za ovu stanicu." @@ -12779,7 +12810,7 @@ msgstr "Sačuvajte izmene" msgid "TimeOff is less than TimeOn" msgstr "Vreme završetka je manje nego vreme početka" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "Prethodni kontakti" @@ -12846,7 +12877,7 @@ msgstr "Vreme završetka" msgid "Search DXCluster for latest Spot" msgstr "Pretražite najnovije spotove na DX Klasteru" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -12854,7 +12885,7 @@ msgstr "Pretražite najnovije spotove na DX Klasteru" msgid "IOTA Reference" msgstr "IOTA Referenca" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -12862,91 +12893,95 @@ msgstr "IOTA Referenca" msgid "SOTA Reference" msgstr "SOTA referenca" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "Frekvencija (RX)" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "Opseg (RX)" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "Na primer: YU/ZS-001." -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "Na primer: YUFF-0024." -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "Na primer: PA-0150. Dozvoljeno je uneti višestruke unose." -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "Na primer: GMA" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "Na primer: DA/NW-357" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "Na primer: Q03" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "Ime satelita" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "Vrsta rada satelita" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "QSL MSG" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "Reset na podrazumevano" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "Povežite" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "Stop" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "Podešavanje" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "Zaustavi podešavanje" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "Brzina CW" -#: application/views/qso/index.php:769 +#: application/views/qso/index.php:778 +msgid "Stop" +msgstr "Stop" + +#: application/views/qso/index.php:779 +msgid "Tune" +msgstr "Podešavanje" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "Zaustavi podešavanje" + +#: application/views/qso/index.php:785 +msgid "Enter text..." +msgstr "" + +#: application/views/qso/index.php:786 msgid "Send" msgstr "Pošalji" -#: application/views/qso/index.php:779 +#: application/views/qso/index.php:798 msgid "Suggestions" msgstr "Predlozi" -#: application/views/qso/index.php:786 +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "Profilna slika" @@ -14303,6 +14338,7 @@ msgid "Special Interest Group Information" msgstr "" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -15384,10 +15420,6 @@ msgstr "URL Mastodonservera" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "Glavni URL vašeg Mastodon servera. npr. %s" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "Eksperimentalno" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "Winkeyer" @@ -16091,6 +16123,18 @@ msgstr "Pošaljite zahtev" msgid "Rcvd" msgstr "Rcvd" +#~ msgid "Expired" +#~ msgstr "Isteklo" + +#~ msgid "Expiring" +#~ msgstr "Ističe" + +#~ msgid "Valid" +#~ msgstr "Validan" + +#~ msgid "Experimental" +#~ msgstr "Eksperimentalno" + #, php-format #~ msgctxt "Dashboard Warning" #~ msgid "" diff --git a/application/locale/sv_SE/LC_MESSAGES/messages.mo b/application/locale/sv_SE/LC_MESSAGES/messages.mo index 1f6762611..50304bfe9 100644 Binary files a/application/locale/sv_SE/LC_MESSAGES/messages.mo and b/application/locale/sv_SE/LC_MESSAGES/messages.mo differ diff --git a/application/locale/sv_SE/LC_MESSAGES/messages.po b/application/locale/sv_SE/LC_MESSAGES/messages.po index 05af158a2..c1774db2a 100644 --- a/application/locale/sv_SE/LC_MESSAGES/messages.po +++ b/application/locale/sv_SE/LC_MESSAGES/messages.po @@ -8,17 +8,17 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" -"PO-Revision-Date: 2025-10-15 05:17+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" +"PO-Revision-Date: 2025-10-25 12:29+0000\n" "Last-Translator: \"Jorgen Dahl, NU1T\" \n" -"Language-Team: Swedish \n" +"Language-Team: Swedish \n" "Language: sv_SE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.13.2\n" +"X-Generator: Weblate 5.14\n" #: application/controllers/Accumulated.php:12 #: application/controllers/Activators.php:13 @@ -72,9 +72,9 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:79 application/controllers/Lotw.php:105 -#: application/controllers/Lotw.php:375 application/controllers/Lotw.php:398 -#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:839 -#: application/controllers/Lotw.php:944 application/controllers/Mode.php:15 +#: application/controllers/Lotw.php:383 application/controllers/Lotw.php:406 +#: application/controllers/Lotw.php:763 application/controllers/Lotw.php:847 +#: application/controllers/Lotw.php:952 application/controllers/Mode.php:15 #: application/controllers/Notes.php:11 application/controllers/Options.php:14 #: application/controllers/Oqrs.php:15 application/controllers/Oqrs.php:165 #: application/controllers/Qrbcalc.php:13 application/controllers/Qrz.php:200 @@ -83,8 +83,8 @@ msgstr "" #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:187 -#: application/controllers/Qso.php:287 application/controllers/Qso.php:308 -#: application/controllers/Qso.php:331 application/controllers/Qso.php:629 +#: application/controllers/Qso.php:318 application/controllers/Qso.php:339 +#: application/controllers/Qso.php:362 application/controllers/Qso.php:662 #: application/controllers/Radio.php:32 application/controllers/Radio.php:291 #: application/controllers/Radio.php:317 application/controllers/Radio.php:333 #: application/controllers/Reg1test.php:17 @@ -142,7 +142,7 @@ msgstr "Karta Aktiverade Rutnätsrutor" #: application/controllers/Activated_gridmap.php:31 #: application/controllers/Awards.php:1003 #: application/controllers/Awards.php:1035 -#: application/controllers/Gridmap.php:31 +#: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 #: application/views/interface_assets/footer.php:47 @@ -152,13 +152,13 @@ msgid "Gridsquares" msgstr "Rutnätsrutor" #: application/controllers/Activated_gridmap.php:32 -#: application/controllers/Gridmap.php:32 +#: application/controllers/Gridmap.php:33 #: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "Rutnätsrutor bekräftade" #: application/controllers/Activated_gridmap.php:33 -#: application/controllers/Gridmap.php:33 +#: application/controllers/Gridmap.php:34 #: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "Rutnätsrutor inte bekräftade" @@ -168,25 +168,25 @@ msgid "Total gridsquares activated" msgstr "Totalt aktiverade Rutnätsrutor" #: application/controllers/Activated_gridmap.php:36 -#: application/controllers/Gridmap.php:36 +#: application/controllers/Gridmap.php:37 #: application/controllers/Visitor.php:390 msgid "Fields" msgstr "Fält" #: application/controllers/Activated_gridmap.php:37 -#: application/controllers/Gridmap.php:37 +#: application/controllers/Gridmap.php:38 #: application/controllers/Visitor.php:391 msgid "Fields confirmed" msgstr "Fält bekräftade" #: application/controllers/Activated_gridmap.php:38 -#: application/controllers/Gridmap.php:38 +#: application/controllers/Gridmap.php:39 #: application/controllers/Visitor.php:392 msgid "Fields not confirmed" msgstr "Fält inte bekräftade" #: application/controllers/Activated_gridmap.php:39 -#: application/controllers/Gridmap.php:39 +#: application/controllers/Gridmap.php:40 #: application/controllers/Visitor.php:393 msgid "Total fields worked" msgstr "Totalt antal fält kontaktade" @@ -336,13 +336,13 @@ msgstr "Diplom - %s" #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:401 application/views/qso/index.php:302 -#: application/views/qso/index.php:593 application/views/user/edit.php:682 +#: application/views/qso/index.php:594 application/views/user/edit.php:682 #: application/views/view_log/qso.php:460 msgid "DOK" msgstr "DOK" #: application/controllers/Awards.php:176 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:130 application/views/bands/index.php:50 +#: application/views/bandmap/list.php:131 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:180 @@ -355,7 +355,7 @@ msgstr "DOK" #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 -#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:402 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 #: application/views/search/result.php:27 @@ -558,7 +558,7 @@ msgstr "Fred Fish Memorial Award (FFMA)" #: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:286 -#: application/views/qso/index.php:579 application/views/user/edit.php:678 +#: application/views/qso/index.php:580 application/views/user/edit.php:678 #: application/views/view_log/qso.php:425 #: application/views/view_log/qso.php:736 msgid "SIG" @@ -822,7 +822,7 @@ msgstr "Redigera Cronjob" #: application/views/debug/index.php:539 application/views/debug/index.php:544 #: application/views/debug/index.php:549 application/views/debug/index.php:554 #: application/views/debug/index.php:559 application/views/debug/index.php:564 -#: application/views/debug/index.php:569 +#: application/views/debug/index.php:569 application/views/debug/index.php:574 msgid "never" msgstr "aldrig" @@ -879,7 +879,7 @@ msgstr "Inte igång" msgid "SOTA CSV Export" msgstr "SOTA CSV-export" -#: application/controllers/Dashboard.php:152 +#: application/controllers/Dashboard.php:154 #: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "Instrumentpanel" @@ -932,35 +932,35 @@ msgstr "Inga stationsprofiler hittades att ladda upp till DCL" msgid "Key(s) Deleted." msgstr "Nyckel(nycklar) raderad(e)." -#: application/controllers/Debug.php:117 +#: application/controllers/Debug.php:118 msgid "Debug" msgstr "Debug" -#: application/controllers/Debug.php:156 +#: application/controllers/Debug.php:157 msgid "Migrate data now" msgstr "Migrera data nu" -#: application/controllers/Debug.php:159 +#: application/controllers/Debug.php:160 msgid "Migration already done. Run again?" msgstr "Migreringen är redan klar. Köra igen?" -#: application/controllers/Debug.php:163 +#: application/controllers/Debug.php:164 msgid "No data to migrate" msgstr "Inga data att migrera" -#: application/controllers/Debug.php:167 application/controllers/Debug.php:172 +#: application/controllers/Debug.php:168 application/controllers/Debug.php:173 msgid "No migration possible" msgstr "Ingen migration möjlig" -#: application/controllers/Debug.php:237 +#: application/controllers/Debug.php:238 msgid "Wavelog was updated successfully!" msgstr "Wavelog uppdaterades framgångsrikt!" -#: application/controllers/Debug.php:255 +#: application/controllers/Debug.php:256 msgid "Selfupdate() not available. Check the Error Log." msgstr "Selfupdate() är inte tillgänglig. Kontrollera felloggen." -#: application/controllers/Debug.php:299 +#: application/controllers/Debug.php:300 msgid "" "File Migration was successfull, but please check also manually. If " "everything seems right you can delete the folders 'assets/qslcard' and " @@ -970,7 +970,7 @@ msgstr "" "verkar rätt kan du ta bort mapparna 'assets/qslcard' och 'images/" "eqsl_card_images'." -#: application/controllers/Debug.php:302 +#: application/controllers/Debug.php:303 msgid "File Migration failed. Please check the Error Log." msgstr "Filöverföring misslyckades. Kontrollera felloggen." @@ -1011,7 +1011,7 @@ msgid "DX Calendar" msgstr "DX Kalender" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:404 +#: application/views/dashboard/index.php:409 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:310 msgid "eQSL Cards" @@ -1071,7 +1071,7 @@ msgstr "Bekräftelser" msgid "Gridsquare Map" msgstr "Gridsquare karta" -#: application/controllers/Gridmap.php:34 +#: application/controllers/Gridmap.php:35 #: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "Totala gridsquares kontaktade" @@ -1276,7 +1276,7 @@ msgstr "Loggbok" #: application/views/awards/wapc/index.php:44 #: application/views/awards/was/index.php:56 #: application/views/awards/wpx/index.php:28 -#: application/views/gridmap/index.php:101 +#: application/views/gridmap/index.php:141 #: application/views/logbookadvanced/index.php:794 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/oqrs/qsolist.php:12 @@ -1308,8 +1308,8 @@ msgstr "QSL" #: application/views/awards/wapc/index.php:48 #: application/views/awards/was/index.php:60 #: application/views/awards/wpx/index.php:32 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:109 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:149 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 @@ -1345,8 +1345,8 @@ msgstr "LoTW" #: application/views/awards/wapc/index.php:52 #: application/views/awards/was/index.php:64 #: application/views/awards/wpx/index.php:36 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:117 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:157 #: application/views/logbookadvanced/useroptions.php:78 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 @@ -1388,23 +1388,23 @@ msgstr "eQSL" #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:110 -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:136 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 #: application/views/contesting/index.php:118 -#: application/views/contesting/index.php:264 +#: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:597 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 -#: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 -#: application/views/kml/index.php:31 +#: application/views/gridmap/index.php:104 +#: application/views/hamsat/index.php:33 application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:12 #: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/index.php:764 @@ -1454,8 +1454,8 @@ msgstr "Trafiksätt" #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:179 -#: application/views/contesting/index.php:265 +#: application/views/contesting/index.php:180 +#: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 #: application/views/logbookadvanced/index.php:767 #: application/views/logbookadvanced/useroptions.php:38 @@ -1483,8 +1483,8 @@ msgstr "RST (S)" #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 -#: application/views/contesting/index.php:203 -#: application/views/contesting/index.php:266 +#: application/views/contesting/index.php:204 +#: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 #: application/views/logbookadvanced/index.php:770 #: application/views/logbookadvanced/useroptions.php:42 @@ -1592,9 +1592,9 @@ msgstr "Delstat" #: application/views/awards/gridmaster/index.php:50 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:26 -#: application/views/contesting/index.php:271 +#: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 -#: application/views/gridmap/index.php:152 +#: application/views/gridmap/index.php:193 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 @@ -1638,7 +1638,7 @@ msgstr "Rutnätsruta" #: application/views/dashboard/index.php:14 #: application/views/distancerecords/index.php:15 #: application/views/distances/index.php:13 -#: application/views/gridmap/index.php:154 +#: application/views/gridmap/index.php:195 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 #: application/views/logbookadvanced/index.php:869 @@ -1687,17 +1687,17 @@ msgstr "Avstånd" #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:96 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:97 #: application/views/bands/create.php:24 application/views/bands/edit.php:7 #: application/views/bands/index.php:47 application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:263 +#: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:593 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:598 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 -#: application/views/gridmap/index.php:10 application/views/kml/index.php:19 +#: application/views/gridmap/index.php:26 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:6 #: application/views/logbookadvanced/index.php:281 #: application/views/logbookadvanced/index.php:773 @@ -1745,7 +1745,7 @@ msgid "Band" msgstr "Band" #: application/controllers/Logbook.php:1324 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:128 +#: application/controllers/Radio.php:45 application/views/bandmap/list.php:129 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:776 @@ -1804,9 +1804,9 @@ msgstr "Operatör" #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:252 #: application/views/lookup/index.php:47 -#: application/views/lotw_views/index.php:49 +#: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 -#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:411 #: application/views/station_profile/create.php:77 #: application/views/station_profile/edit.php:109 #: application/views/stationsetup/linkedlocations.php:17 @@ -1847,11 +1847,11 @@ msgstr "Certifikat importerat." msgid "Certificate Updated." msgstr "Certifikat uppdaterat." -#: application/controllers/Lotw.php:381 +#: application/controllers/Lotw.php:389 msgid "Certificate Deleted." msgstr "Certifikat raderat." -#: application/controllers/Lotw.php:410 +#: application/controllers/Lotw.php:418 #, php-format msgid "" "Found no certificate in file %s. If the filename contains 'key-only' this is " @@ -1860,52 +1860,52 @@ msgstr "" "Hittade inget certifikat i filen %s. Om filnamnet innehåller 'key-only' är " "detta vanligtvis en certifikatförfrågan som ännu inte har behandlats av LoTW." -#: application/controllers/Lotw.php:646 +#: application/controllers/Lotw.php:654 msgid "LoTW ADIF Information" msgstr "LoTW ADIF-information" -#: application/controllers/Lotw.php:812 application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:820 application/controllers/Lotw.php:823 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "LoTW-inloggning misslyckades för användare %s: %s." -#: application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:823 msgid "Username/password incorrect" msgstr "Användarnamn/lösenord felaktigt" -#: application/controllers/Lotw.php:818 +#: application/controllers/Lotw.php:826 msgid "LoTW login OK!" msgstr "LoTW-inloggning OK!" -#: application/controllers/Lotw.php:822 +#: application/controllers/Lotw.php:830 msgid "LoTW currently not available. Try again later." msgstr "LoTW är för närvarande inte tillgänglig. Försök igen senare." -#: application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 msgid "No LoTW credentials provided." msgstr "Inga LoTW detaljer angivna." -#: application/controllers/Lotw.php:845 +#: application/controllers/Lotw.php:853 msgid "LoTW ADIF Import" msgstr "LoTW ADIF-import" -#: application/controllers/Lotw.php:871 application/controllers/Lotw.php:979 +#: application/controllers/Lotw.php:879 application/controllers/Lotw.php:987 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Du har inte angivit dina ARRL LoTW-uppgifter!" -#: application/controllers/Lotw.php:946 +#: application/controllers/Lotw.php:954 msgid "LoTW .TQ8 Upload" msgstr "LoTW .TQ8 uppladdning" -#: application/controllers/Lotw.php:1024 +#: application/controllers/Lotw.php:1032 msgid "Your ARRL username and/or password is incorrect." msgstr "Ditt ARRL-användarnamn och/eller lösenord är felaktigt." -#: application/controllers/Lotw.php:1043 application/controllers/Lotw.php:1048 +#: application/controllers/Lotw.php:1051 application/controllers/Lotw.php:1056 msgid "LoTW .TQ8 Sent" msgstr "LoTW .TQ8 skickad" -#: application/controllers/Lotw.php:1055 +#: application/controllers/Lotw.php:1063 msgid "LoTW .TQ8 Not Sent" msgstr "LoTW .TQ8 Ej skickad" @@ -1926,7 +1926,7 @@ msgstr "Redigera Trafiksätt" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:409 application/views/qso/index.php:71 -#: application/views/qso/index.php:642 application/views/view_log/qso.php:14 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:14 #: application/views/view_log/qso.php:749 msgid "Notes" msgstr "Anteckningar" @@ -2187,8 +2187,8 @@ msgstr "QRZ QSL-import" msgid "QRZ ADIF Information" msgstr "QRZ ADIF-information" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:356 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:361 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:287 msgid "QSL Cards" @@ -2210,15 +2210,15 @@ msgstr "Skriv ut begärda QSL" msgid "Add QSO" msgstr "Lägg till QSO" -#: application/controllers/Qso.php:690 +#: application/controllers/Qso.php:723 msgid "You have to be logged in to access this URL." msgstr "Du måste vara inloggad för att komma åt den här URL:en." -#: application/controllers/Qso.php:696 +#: application/controllers/Qso.php:729 msgid "Call Transfer" msgstr "Överför Anropssignal" -#: application/controllers/Qso.php:703 +#: application/controllers/Qso.php:736 msgid "No callsign provided." msgstr "Ingen anropssignal angiven." @@ -2248,7 +2248,7 @@ msgid "Options" msgstr "Alternativ" #: application/controllers/Radio.php:50 application/views/debug/index.php:312 -#: application/views/qso/index.php:749 +#: application/views/qso/index.php:750 msgid "Settings" msgstr "Inställningar" @@ -2257,8 +2257,8 @@ msgid "UNKNOWN" msgstr "OKÄND" #: application/controllers/Radio.php:98 -#: application/views/contesting/index.php:161 -#: application/views/qso/index.php:354 +#: application/views/contesting/index.php:162 +#: application/views/qso/index.php:355 msgid "last updated" msgstr "senast uppdaterad" @@ -2296,13 +2296,13 @@ msgstr "Redigera" #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:63 -#: application/views/interface_assets/footer.php:2802 -#: application/views/interface_assets/footer.php:2820 -#: application/views/interface_assets/footer.php:2841 -#: application/views/interface_assets/footer.php:2859 +#: application/views/interface_assets/footer.php:2900 +#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:2939 +#: application/views/interface_assets/footer.php:2957 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:734 -#: application/views/lotw_views/index.php:111 +#: application/views/lotw_views/index.php:128 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 #: application/views/qslcard/index.php:76 @@ -2514,7 +2514,7 @@ msgstr "Inte tillåtet" #: application/controllers/Stationsetup.php:156 #: application/controllers/Stationsetup.php:177 #: application/controllers/Stationsetup.php:478 -#: application/views/qso/index.php:708 application/views/simplefle/index.php:39 +#: application/views/qso/index.php:709 application/views/simplefle/index.php:39 #: application/views/widgets/on_air.php:102 msgid "Error" msgstr "Fel" @@ -2813,6 +2813,14 @@ msgstr "LoTW SAT-uppdatering" msgid "Update of Hams of Note" msgstr "Uppdatering av Hams of Note" +#: application/controllers/Update.php:718 +msgid "VUCC Grid file update complete. Result: " +msgstr "VUCC-rutnätsfiluppdatering slutförd. Resultat: " + +#: application/controllers/Update.php:720 +msgid "VUCC Grid file update failed. Result: " +msgstr "VUCC-rutnätsfiluppdatering misslyckades. Resultat: " + #: application/controllers/User.php:50 #: application/views/interface_assets/header.php:306 msgid "User Accounts" @@ -2943,7 +2951,7 @@ msgstr "Användare %s loggade ut." msgid "Station Name" msgstr "Stationsnamn" -#: application/controllers/User.php:1262 application/views/debug/index.php:594 +#: application/controllers/User.php:1262 application/views/debug/index.php:599 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:61 #: application/views/station_profile/edit.php:77 @@ -3398,7 +3406,7 @@ msgstr "QSO uppdaterad" #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 #: application/views/dashboard/index.php:19 -#: application/views/gridmap/index.php:156 +#: application/views/gridmap/index.php:197 #: application/views/logbookadvanced/index.php:15 #: application/views/user/edit.php:256 application/views/user/edit.php:279 #: application/views/user/edit.php:302 application/views/user/edit.php:325 @@ -3498,7 +3506,7 @@ msgid "Accumulated number of WAJA worked" msgstr "Ackumulerat antal WAJA kontaktade" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:317 +#: application/views/dashboard/index.php:322 #: application/views/dayswithqso/index.php:42 #: application/views/dayswithqso/index.php:82 #: application/views/statistics/index.php:19 @@ -3515,7 +3523,7 @@ msgid "Yearly" msgstr "Årligen" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:327 #: application/views/visitor/index.php:255 msgid "Month" msgstr "Denna månad" @@ -3567,8 +3575,8 @@ msgstr "Skillnad" #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:86 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:79 application/views/bandmap/list.php:87 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:113 #: application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 @@ -3591,14 +3599,15 @@ msgstr "Skillnad" #: application/views/dxatlas/index.php:60 #: application/views/dxatlas/index.php:82 #: application/views/dxatlas/index.php:94 -#: application/views/gridmap/index.php:13 -#: application/views/gridmap/index.php:28 -#: application/views/gridmap/index.php:41 -#: application/views/gridmap/index.php:70 -#: application/views/gridmap/index.php:83 +#: application/views/gridmap/index.php:29 +#: application/views/gridmap/index.php:44 +#: application/views/gridmap/index.php:78 +#: application/views/gridmap/index.php:93 +#: application/views/gridmap/index.php:107 +#: application/views/gridmap/index.php:121 #: application/views/interface_assets/footer.php:46 -#: application/views/interface_assets/footer.php:1692 -#: application/views/interface_assets/footer.php:1831 +#: application/views/interface_assets/footer.php:1790 +#: application/views/interface_assets/footer.php:1929 #: 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 @@ -3685,7 +3694,7 @@ msgstr "Period" #: application/views/accumulate/index.php:80 #: application/views/callstats/index.php:65 #: application/views/distances/index.php:53 -#: application/views/gridmap/index.php:38 +#: application/views/gridmap/index.php:41 #: application/views/logbookadvanced/edit.php:14 #: application/views/logbookadvanced/index.php:310 #: application/views/logbookadvanced/index.php:857 @@ -3705,7 +3714,7 @@ msgstr "Alla utom SAT" #: application/views/accumulate/index.php:85 #: application/views/callstats/index.php:69 #: application/views/distances/index.php:58 -#: application/views/gridmap/index.php:42 +#: application/views/gridmap/index.php:45 #: application/views/logbookadvanced/edit.php:207 #: application/views/logbookadvanced/edit.php:215 #: application/views/logbookadvanced/index.php:406 @@ -3717,9 +3726,9 @@ msgstr "Inget" #: application/views/callstats/index.php:71 application/views/csv/index.php:95 #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 +#: application/views/gridmap/index.php:47 application/views/kml/index.php:80 #: application/views/logbookadvanced/index.php:314 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:477 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:478 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 #: application/views/view_log/qso.php:233 @@ -3731,9 +3740,9 @@ msgstr "Flygplans Scatter" #: application/views/callstats/index.php:72 application/views/csv/index.php:96 #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 +#: application/views/gridmap/index.php:48 application/views/kml/index.php:81 #: application/views/logbookadvanced/index.php:315 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:478 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:479 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 #: application/views/view_log/qso.php:236 @@ -3745,9 +3754,9 @@ msgstr "Aurora" #: application/views/callstats/index.php:73 application/views/csv/index.php:97 #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 +#: application/views/gridmap/index.php:49 application/views/kml/index.php:82 #: application/views/logbookadvanced/index.php:316 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:479 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:480 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 #: application/views/view_log/qso.php:239 @@ -3759,9 +3768,9 @@ msgstr "Aurora-E" #: application/views/callstats/index.php:74 application/views/csv/index.php:98 #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 +#: application/views/gridmap/index.php:50 application/views/kml/index.php:83 #: application/views/logbookadvanced/index.php:317 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:480 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:481 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 #: application/views/view_log/qso.php:242 @@ -3773,9 +3782,9 @@ msgstr "Back scatter" #: application/views/callstats/index.php:75 application/views/csv/index.php:99 #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 +#: application/views/gridmap/index.php:51 application/views/kml/index.php:84 #: application/views/logbookadvanced/index.php:318 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:481 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:482 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 #: application/views/view_log/qso.php:245 @@ -3787,9 +3796,9 @@ msgstr "EchoLink" #: application/views/callstats/index.php:76 application/views/csv/index.php:100 #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 +#: application/views/gridmap/index.php:52 application/views/kml/index.php:85 #: application/views/logbookadvanced/index.php:319 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:482 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:483 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 #: application/views/view_log/qso.php:248 @@ -3801,9 +3810,9 @@ msgstr "Earth-Moon-Earth" #: application/views/callstats/index.php:77 application/views/csv/index.php:101 #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 +#: application/views/gridmap/index.php:53 application/views/kml/index.php:86 #: application/views/logbookadvanced/index.php:320 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:483 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:484 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 #: application/views/view_log/qso.php:251 @@ -3815,9 +3824,9 @@ msgstr "Sporadisk E" #: application/views/callstats/index.php:78 application/views/csv/index.php:102 #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 +#: application/views/gridmap/index.php:54 application/views/kml/index.php:87 #: application/views/logbookadvanced/index.php:321 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:484 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:485 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 #: application/views/view_log/qso.php:254 @@ -3829,9 +3838,9 @@ msgstr "Fältjusterade oregelbundenheter" #: application/views/callstats/index.php:79 application/views/csv/index.php:103 #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 +#: application/views/gridmap/index.php:55 application/views/kml/index.php:88 #: application/views/logbookadvanced/index.php:322 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:485 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:486 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 #: application/views/view_log/qso.php:257 @@ -3843,9 +3852,9 @@ msgstr "F2-reflektion" #: application/views/callstats/index.php:80 application/views/csv/index.php:104 #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 +#: application/views/gridmap/index.php:56 application/views/kml/index.php:89 #: application/views/logbookadvanced/index.php:323 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:486 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:487 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 #: application/views/view_log/qso.php:260 @@ -3857,9 +3866,9 @@ msgstr "Internet-assisterad" #: application/views/callstats/index.php:81 application/views/csv/index.php:105 #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 +#: application/views/gridmap/index.php:57 application/views/kml/index.php:90 #: application/views/logbookadvanced/index.php:324 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:487 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:488 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 #: application/views/view_log/qso.php:263 @@ -3871,9 +3880,9 @@ msgstr "Ionoscatter" #: application/views/callstats/index.php:82 application/views/csv/index.php:106 #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 +#: application/views/gridmap/index.php:58 application/views/kml/index.php:91 #: application/views/logbookadvanced/index.php:325 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:488 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:489 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 #: application/views/view_log/qso.php:266 @@ -3885,9 +3894,9 @@ msgstr "IRLP" #: application/views/callstats/index.php:83 application/views/csv/index.php:107 #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 +#: application/views/gridmap/index.php:59 application/views/kml/index.php:92 #: application/views/logbookadvanced/index.php:326 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:489 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:490 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 #: application/views/view_log/qso.php:269 @@ -3899,9 +3908,9 @@ msgstr "Meteor scatter" #: application/views/callstats/index.php:84 application/views/csv/index.php:108 #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 +#: application/views/gridmap/index.php:60 application/views/kml/index.php:93 #: application/views/logbookadvanced/index.php:327 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:490 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:491 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 #: application/views/view_log/qso.php:272 @@ -3913,9 +3922,9 @@ msgstr "Markbunden eller atmosfärisk repeater eller transponder" #: application/views/callstats/index.php:85 application/views/csv/index.php:109 #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 +#: application/views/gridmap/index.php:61 application/views/kml/index.php:94 #: application/views/logbookadvanced/index.php:328 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:491 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:492 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 #: application/views/view_log/qso.php:275 @@ -3927,9 +3936,9 @@ msgstr "Regnscatter" #: application/views/callstats/index.php:86 application/views/csv/index.php:110 #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 +#: application/views/gridmap/index.php:62 application/views/kml/index.php:95 #: application/views/logbookadvanced/index.php:329 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:492 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:493 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 #: application/views/view_log/qso.php:278 @@ -3941,9 +3950,9 @@ msgstr "Satellit" #: application/views/callstats/index.php:87 application/views/csv/index.php:111 #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 +#: application/views/gridmap/index.php:63 application/views/kml/index.php:96 #: application/views/logbookadvanced/index.php:330 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:493 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:494 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 #: application/views/view_log/qso.php:281 @@ -3955,9 +3964,9 @@ msgstr "Trans-ekvatoriell" #: application/views/callstats/index.php:88 application/views/csv/index.php:112 #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 +#: application/views/gridmap/index.php:64 application/views/kml/index.php:97 #: application/views/logbookadvanced/index.php:331 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:494 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:495 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 #: application/views/view_log/qso.php:284 @@ -4012,7 +4021,7 @@ msgstr "Visa" #: application/views/components/hamsat/table.php:29 #: application/views/distancerecords/index.php:14 #: application/views/distances/index.php:34 -#: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 +#: application/views/gridmap/index.php:73 application/views/hamsat/index.php:32 #: application/views/interface_assets/header.php:198 #: application/views/logbookadvanced/edit.php:17 #: application/views/logbookadvanced/index.php:292 @@ -4035,7 +4044,7 @@ msgstr "Satellit" #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 -#: application/views/gridmap/index.php:80 +#: application/views/gridmap/index.php:88 #: application/views/logbookadvanced/index.php:301 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 @@ -4048,7 +4057,7 @@ msgstr "Bana" #: application/views/activated_gridmap/index.php:50 #: application/views/awards/wab/index.php:65 -#: application/views/gridmap/index.php:92 +#: application/views/gridmap/index.php:132 #: application/views/timeline/index.php:52 msgid "Confirmation" msgstr "Bekräftelse" @@ -4070,24 +4079,24 @@ msgstr "Bekräftelse" #: application/views/awards/wapc/index.php:56 #: application/views/awards/was/index.php:68 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:125 application/views/user/edit.php:810 +#: application/views/gridmap/index.php:165 application/views/user/edit.php:810 msgid "QRZ.com" msgstr "QRZ.com" #: application/views/activated_gridmap/index.php:86 -#: application/views/gridmap/index.php:130 +#: application/views/gridmap/index.php:17 msgid "Plot" msgstr "Plot" #: application/views/activated_gridmap/index.php:87 -#: application/views/gridmap/index.php:131 +#: application/views/gridmap/index.php:18 msgid "Clear Markers" msgstr "Rensa markörer" #: application/views/activated_gridmap/index.php:102 #: application/views/awards/ffma/index.php:31 #: application/views/awards/gridmaster/index.php:46 -#: application/views/gridmap/index.php:148 +#: application/views/gridmap/index.php:189 #: application/views/logbookadvanced/index.php:10 msgid "Latitude" msgstr "Latitud" @@ -4095,7 +4104,7 @@ msgstr "Latitud" #: application/views/activated_gridmap/index.php:104 #: application/views/awards/ffma/index.php:33 #: application/views/awards/gridmaster/index.php:48 -#: application/views/gridmap/index.php:150 +#: application/views/gridmap/index.php:191 #: application/views/logbookadvanced/index.php:11 msgid "Longitude" msgstr "Longitud" @@ -4156,8 +4165,8 @@ msgstr "Inget hittades!" #: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:170 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:244 +#: application/views/contesting/index.php:171 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:249 #: application/views/dcl_views/index.php:27 #: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 @@ -4262,12 +4271,12 @@ msgstr "Det finns olika data för DOK i din logg jämfört med DCL" #: application/views/awards/pota/index.php:33 #: application/views/awards/sota/index.php:31 #: application/views/awards/wwff/index.php:33 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:25 #: application/views/contesting/index.php:103 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:239 -#: application/views/debug/index.php:589 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:244 +#: application/views/debug/index.php:594 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4308,12 +4317,12 @@ msgstr "Datum" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:590 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:247 +#: application/views/debug/index.php:595 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4339,10 +4348,10 @@ msgstr "Tid" #: application/views/adif/dcl_success.php:31 #: application/views/adif/pota_success.php:31 #: application/views/awards/vucc/band.php:18 -#: application/views/bandmap/list.php:129 -#: application/views/contesting/index.php:262 +#: application/views/bandmap/list.php:130 +#: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:591 application/views/debug/index.php:626 +#: application/views/debug/index.php:596 application/views/debug/index.php:631 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4384,8 +4393,7 @@ msgstr "CBR-import" #: application/views/adif/import.php:73 application/views/adif/import.php:379 #: application/views/adif/import.php:400 application/views/api/index.php:22 #: application/views/dashboard/index.php:180 -#: application/views/dashboard/index.php:209 -#: application/views/dashboard/index.php:214 +#: application/views/dashboard/index.php:213 #: application/views/eqsl/import.php:46 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 #: application/views/options/maptiles.php:48 @@ -4404,7 +4412,7 @@ msgstr "Maximal filuppladdningsstorlek är " #: application/views/adif/import.php:349 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:193 application/views/debug/index.php:210 -#: application/views/debug/index.php:581 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:586 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 @@ -4471,7 +4479,7 @@ msgstr "" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 #: application/views/interface_assets/footer.php:580 -#: application/views/interface_assets/footer.php:2564 +#: application/views/interface_assets/footer.php:2662 msgid "DANGER" msgstr "FARA" @@ -4697,7 +4705,7 @@ msgstr "" #: application/views/adif/import.php:399 #: application/views/adif/import_success.php:40 #: application/views/dcl_views/index.php:76 -#: application/views/lotw_views/index.php:137 +#: application/views/lotw_views/index.php:154 msgid "Information" msgstr "Information" @@ -5207,7 +5215,7 @@ msgstr "Län bekräftade" #: application/views/awards/wapc/index.php:145 #: application/views/awards/was/index.php:180 #: application/views/awards/wpx/index.php:172 -#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:317 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -5227,7 +5235,8 @@ msgstr "Totalt" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:151 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/dxatlas/index.php:80 +#: application/views/gridmap/index.php:199 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 #: application/views/logbookadvanced/index.php:335 @@ -5235,7 +5244,7 @@ msgstr "Totalt" #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:308 -#: application/views/qso/index.php:450 +#: application/views/qso/index.php:451 #: application/views/search/cqzones_result.php:13 #: application/views/station_profile/create.php:110 #: application/views/station_profile/edit.php:157 @@ -5295,9 +5304,9 @@ msgstr "Diplom - CQ WAZ" #: application/views/awards/wab/list.php:6 #: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:81 -#: application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:457 +#: application/views/bandmap/list.php:82 +#: application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:462 #: application/views/interface_assets/footer.php:43 #: application/views/search/result.php:32 #: application/views/visitor/index.php:270 @@ -5307,9 +5316,9 @@ msgstr "Bekräftade" #: application/views/awards/cq/index.php:35 #: application/views/awards/itu/index.php:35 #: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:80 -#: application/views/dashboard/index.php:335 -#: application/views/dashboard/index.php:451 +#: application/views/bandmap/list.php:81 +#: application/views/dashboard/index.php:340 +#: application/views/dashboard/index.php:456 #: application/views/search/result.php:35 #: application/views/visitor/index.php:266 msgid "Worked" @@ -5387,7 +5396,7 @@ msgstr "Visa QSO med QSL-typ" #: application/views/awards/iota/index.php:62 #: application/views/awards/itu/index.php:57 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2543 +#: application/views/interface_assets/footer.php:2641 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -5643,6 +5652,7 @@ msgstr "" #: application/views/awards/dxcc/index.php:28 #: application/views/awards/wpx/index.php:13 +#: application/views/gridmap/index.php:16 #: application/views/logbookadvanced/index.php:221 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" @@ -5660,12 +5670,12 @@ msgstr "Inkludera strukna" #: application/views/awards/dxcc/index.php:97 #: application/views/awards/iota/index.php:88 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:88 +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:89 #: application/views/logbookadvanced/edit.php:217 #: application/views/logbookadvanced/index.php:408 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 -#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:425 +#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:426 #: application/views/view_log/qso.php:350 msgid "Antarctica" msgstr "Antarktis" @@ -5673,12 +5683,12 @@ msgstr "Antarktis" #: application/views/awards/dxcc/index.php:101 #: application/views/awards/iota/index.php:92 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:87 +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:88 #: application/views/logbookadvanced/edit.php:216 #: application/views/logbookadvanced/index.php:407 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 -#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:424 +#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:425 #: application/views/view_log/qso.php:347 msgid "Africa" msgstr "Afrika" @@ -5686,12 +5696,12 @@ msgstr "Afrika" #: application/views/awards/dxcc/index.php:105 #: application/views/awards/iota/index.php:96 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:89 +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:90 #: application/views/logbookadvanced/edit.php:219 #: application/views/logbookadvanced/index.php:410 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 -#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:426 +#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:427 #: application/views/view_log/qso.php:353 msgid "Asia" msgstr "Asien" @@ -5699,12 +5709,12 @@ msgstr "Asien" #: application/views/awards/dxcc/index.php:109 #: application/views/awards/iota/index.php:100 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:90 +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:91 #: application/views/logbookadvanced/edit.php:220 #: application/views/logbookadvanced/index.php:411 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 -#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:427 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:428 #: application/views/view_log/qso.php:356 msgid "Europe" msgstr "Europa" @@ -5712,12 +5722,12 @@ msgstr "Europa" #: application/views/awards/dxcc/index.php:113 #: application/views/awards/iota/index.php:104 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:91 +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:92 #: application/views/logbookadvanced/edit.php:218 #: application/views/logbookadvanced/index.php:409 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 -#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:428 +#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:429 #: application/views/view_log/qso.php:359 msgid "North America" msgstr "Nordamerika" @@ -5725,12 +5735,12 @@ msgstr "Nordamerika" #: application/views/awards/dxcc/index.php:117 #: application/views/awards/iota/index.php:108 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:93 +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:94 #: application/views/logbookadvanced/edit.php:221 #: application/views/logbookadvanced/index.php:412 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 -#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:430 +#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:431 #: application/views/view_log/qso.php:365 msgid "South America" msgstr "Sydamerika" @@ -5738,12 +5748,12 @@ msgstr "Sydamerika" #: application/views/awards/dxcc/index.php:121 #: application/views/awards/iota/index.php:112 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:92 +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:93 #: application/views/logbookadvanced/edit.php:222 #: application/views/logbookadvanced/index.php:413 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 -#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:429 +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:430 #: application/views/view_log/qso.php:362 msgid "Oceania" msgstr "Oceanien" @@ -6053,7 +6063,7 @@ msgstr "Visa IOTA-karta" #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 #: application/views/contesting/index.php:64 -#: application/views/contesting/index.php:228 +#: 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:782 @@ -6081,13 +6091,14 @@ msgstr "Raderad" #: application/views/awards/itu/index.php:3 #: application/views/awards/itu/index.php:151 +#: application/views/gridmap/index.php:201 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 #: application/views/logbookadvanced/index.php:349 #: application/views/logbookadvanced/index.php:827 #: application/views/logbookadvanced/useroptions.php:118 #: application/views/lookup/index.php:8 application/views/qso/edit_ajax.php:316 -#: application/views/qso/index.php:460 +#: application/views/qso/index.php:461 #: application/views/search/ituzones_result.php:13 #: application/views/station_profile/create.php:124 #: application/views/station_profile/edit.php:174 @@ -6182,7 +6193,7 @@ msgid "City" msgstr "Stad" #: application/views/awards/jcc/index.php:188 -#: application/views/dashboard/index.php:447 +#: application/views/dashboard/index.php:452 #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 @@ -6231,7 +6242,7 @@ msgstr "" "Fält som använts för detta diplom: POTA_REF (måste innehålla Park-Referens)" #: application/views/awards/pota/index.php:32 -#: application/views/qso/index.php:274 application/views/qso/index.php:567 +#: application/views/qso/index.php:274 application/views/qso/index.php:568 #: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:276 #: application/views/user/edit.php:674 application/views/view_log/qso.php:403 @@ -6468,7 +6479,7 @@ msgstr "Diplom - Worked All Continents (WAC)" #: application/views/logbookadvanced/index.php:866 #: application/views/logbookadvanced/useroptions.php:170 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 -#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:422 #: application/views/view_log/qso.php:342 msgid "Continent" msgstr "Kontinent" @@ -6755,7 +6766,7 @@ msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" msgstr "Fält som använts för detta diplom: WWFF (ADIF: WWFF_REF)" #: application/views/awards/wwff/index.php:32 -#: application/views/qso/index.php:262 application/views/qso/index.php:554 +#: application/views/qso/index.php:262 application/views/qso/index.php:555 #: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:263 #: application/views/user/edit.php:670 application/views/view_log/qso.php:396 @@ -6830,7 +6841,7 @@ msgstr "Bandlista" msgid "None" msgstr "Ingen" -#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:84 +#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:85 msgid "Spots de" msgstr "Spots de" @@ -6842,40 +6853,46 @@ msgstr "Popup blockerades! Tillåt pop-ups för den här webbplatsen permanent." msgid "Click to prepare logging." msgstr "Klicka för att förbereda loggning." -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:70 +#: application/views/contesting/index.php:160 +#: application/views/qso/index.php:353 +msgid "WebSocket (Requires WLGate>1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "DXCC-status" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "Ej kontaktade" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "Kontaktade, ej Bekräftade" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "Foni" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "CW" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "Digi" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "WAC" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "Spotter" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6883,7 +6900,7 @@ msgstr "Spotter" msgid "Message" msgstr "Meddelande" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "Senast kontaktad" @@ -7298,7 +7315,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7361,7 +7378,7 @@ msgstr "Ja" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7407,7 +7424,7 @@ msgid "No contests were found in your log." msgstr "Inga tävlingar hittades i din logg." #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "Alla utom SAT" @@ -7762,7 +7779,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "Inga kommande aktiveringar hittades. Vänligen återkom senare." #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7827,10 +7844,10 @@ msgid "Show Details" msgstr "Visa detaljer" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "Idag" @@ -7987,7 +8004,7 @@ msgstr "Serienummer + Rutnätsruta + Utbyte" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "Operatörens anropssignal" @@ -8065,54 +8082,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "Serienummer" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "Serienummer (S)" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "Rutnätsruta (S)" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "Utbyte (S)" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "Serienummer (R)" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "Rutnätsruta (R)" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "Utbyte (R)" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "Återställ QSO" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "Spara QSO" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "Signal-förslag" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "Contest loggbok" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "VUCC Rutnätsruta" @@ -8283,7 +8300,7 @@ msgstr "Endast QSOs med SOTA-information kommer att exporteras!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "Utbredningstyp" @@ -8377,45 +8394,61 @@ msgstr "" "Du har teman utan definierat temaläge. Be administratören att redigera " "temana." -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" -msgstr "Minst ett av dina %sLoTW-certifikat%s har gått ut!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" +msgstr "" +"LoTW-varning: Det finns ett problem med minst ett av dina %sLoTW-" +"certifikat%s!" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" -msgstr "Minst ett av dina %sLoTW-certifikat%s håller på att gå ut!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" +msgstr "Minst ett av dina certifikat har gått ut" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "Minst ett av dina certifikat går ut" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "QSO slutdatum för minst ett av dina certifikat har överskridits" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" +"QSO Slutdatum för minst ett av dina certifikat håller på att överskridas" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" msgstr[0] "Max. %d tidigare kontakt visas" msgstr[1] "Max. %d tidigare kontakter visas" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "QSOs-fördelning" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "DXCC-fördelning" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "Behövs" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8426,7 +8459,7 @@ msgstr "Behövs" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8449,10 +8482,10 @@ msgstr "Behövs" msgid "Sent" msgstr "Skickad" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8485,7 +8518,7 @@ msgstr "Skickad" msgid "Received" msgstr "Mottagen" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8511,7 +8544,7 @@ msgstr "Mottagen" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8525,25 +8558,25 @@ msgstr "Mottagen" msgid "Requested" msgstr "Begärt" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "Logbook of the World" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "VUCC-rutnät" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "Soldata och vågutbredning" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "Senaste uppdateringen kl. %s." -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "Data tillhandahålls av HAMqsl." @@ -8714,12 +8747,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "Nästa automatiska synkronisering med DCL kommer att ske kl: " #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "Manuell synk" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "jobbar..." @@ -9080,6 +9113,7 @@ msgstr "DXCC-uppdatering från Club Log" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "Uppdatera" @@ -9120,11 +9154,15 @@ msgstr "Hams Of Note uppdatering" msgid "HAMqsl" msgstr "HAMqsl" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "VUCC-rutnät" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "Underhåll av QSO-DB" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -9132,140 +9170,140 @@ msgid_plural "" msgstr[0] "Databasen innehåller %d QSO utan en stationsprofil (plats)" msgstr[1] "Databasen innehåller %d QSOs utan en stationsprofil (plats)" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "Markera QSOs och tilldela dem till en befintlig stationsplats:" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "Målplats" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "Tilldela på nytt" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "Varje QSO i din databas är tilldelad en stationsprofil (plats)" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "Allt okej" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "Albanska" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "Armeniska" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "Bosniska" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "Bulgariska" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "Kinesiska (förenklad)" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "Kroatisk" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "Tjeckiska" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "Nederländska" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "Engelska" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "Estniska" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "Finska" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "Franska" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "Tysk" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "Grekiska" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "Ungerska" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "Italienska" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "Japanska" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "Lettiska" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "Litauiska" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "Montenegrin" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "Polera" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "Portugisiska" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "Ryska" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "Serbiska" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "Slovakiska" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "Slovenska" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "Spanska" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "Svenska" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "Turkiska" @@ -9723,10 +9761,10 @@ msgid "QSL Date" msgstr "QSL-datum" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9833,7 +9871,7 @@ msgid "Worked not confirmed" msgstr "Kontaktade, ej Bekräftade" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "Rensa" @@ -10029,62 +10067,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Rutnätsrutor" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "Du är inte inloggad. Vänligen %slogga in%s" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "rutnätsruta" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "Totalt antal" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "QSL-kort för " -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Varning! Är du säker på att du vill ta bort detta QSL-kort?" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL-kort" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "eQSL-kort för " -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "QSL-bildfil" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "Framsida QSL-kort:" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "Baksida QSL-kort:" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "Lägg till ytterligare QSOs på ett QSL-kort" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "Något gick fel. Försök igen!" @@ -10686,7 +10724,7 @@ msgstr "Stationens uteffekt" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "Region" @@ -10806,7 +10844,7 @@ msgstr "Verifierad" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10827,7 +10865,7 @@ msgstr "Direkt" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10846,7 +10884,7 @@ msgstr "Byrå" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10861,49 +10899,49 @@ msgstr "Elektroniskt" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Manager" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "INGEN" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "Afrikanska Italien" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "Bear Island" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "Europeiska Turkiet" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "ITU Wien" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "Kosovo" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "Shetlandsöarna" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "Sicilien" @@ -11076,7 +11114,7 @@ msgstr "QSL skickat" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -11113,7 +11151,7 @@ msgstr "Köad" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11559,38 +11597,42 @@ msgstr "Utgår datum" msgid "Last Upload" msgstr "Last upload" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "Utgått" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "Utgår" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" -msgstr "Giltig" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" +msgstr "Certifikatet har gått ut" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "Certifikat som snart går ut" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "Certifikat giltigt" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "QSO slutdatum närmar sig" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "Senaste framgång: %s" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "Senaste misslyckande: %s" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "Ej synkad" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" "Du behöver ladda upp LoTW p12 certifikat för att kunna använda denna area." -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "Nästa automatiska synkronisering med LoTW kommer att ske kl: " @@ -12178,7 +12220,7 @@ msgstr "Finns det någon extra information vi behöver känna till?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -12226,7 +12268,7 @@ msgstr "Station" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12788,20 +12830,12 @@ msgstr "Posta inlägg på Bluesky" msgid "Toot on Mastodon" msgstr "Posta Toot på Mastodon" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "Funktion %d - Namn" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "Funktion %d - Makro" @@ -12826,11 +12860,11 @@ msgstr "RX Frekvens" msgid "RX Band" msgstr "RX-band" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Ange effekt i watt, enbart med siffror." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12840,25 +12874,25 @@ msgstr "Effekt (W)" msgid "Used for VUCC MultiGrids" msgstr "Används för VUCC MultiGrids" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "Antennväg" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "Grålinje" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "Annat" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "Kort väg" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "Lång väg" @@ -12871,38 +12905,38 @@ msgstr "Sat Namn" msgid "Sat Mode" msgstr "Sat Trafiksätt" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "Antennens azimut (°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "Antennens azimuth i decimalgrader." -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "Antennens elevation (°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "Antennens elevation i decimalgrader." -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "Station County" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "SIG Info" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "Obs: Exporteras till tredjepartstjänster." @@ -12911,8 +12945,8 @@ msgid "Sent Method" msgstr "Skickat metod" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "Metod" @@ -12933,7 +12967,7 @@ msgstr "Verifierad (Match)" msgid "Received Method" msgstr "Mottaget metod" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "Hämta standardmeddelandet för eQSL, för denna station." @@ -12977,7 +13011,7 @@ msgstr "Spara ändringar" msgid "TimeOff is less than TimeOn" msgstr "Tid Av är mindre än Tid På" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "Föregående QSOs" @@ -13044,7 +13078,7 @@ msgstr "Tid av" msgid "Search DXCluster for latest Spot" msgstr "Sök DXCluster efter senaste Spot" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -13052,7 +13086,7 @@ msgstr "Sök DXCluster efter senaste Spot" msgid "IOTA Reference" msgstr "IOTA-referens" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -13060,91 +13094,95 @@ msgstr "IOTA-referens" msgid "SOTA Reference" msgstr "SOTA-referens" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "Frekvens (RX)" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "Band (RX)" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "Exempel: GM/NS-001." -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "Exempel: SMFF-0069." -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "Exempel: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "Exempel: GMA" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "Exempel: DA/NW-357" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "Exempel: Q03" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "E-postadress till QSO-partner" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "Satellitnamn" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "Satellite-mode" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "QSL MSG" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "Återställ till standardinställningar" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "Anslut" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "Stopp" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "Stämma av" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "Stoppa stämma av" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "CW-hastighet" -#: application/views/qso/index.php:769 +#: application/views/qso/index.php:778 +msgid "Stop" +msgstr "Stopp" + +#: application/views/qso/index.php:779 +msgid "Tune" +msgstr "Stämma av" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "Stoppa stämma av" + +#: application/views/qso/index.php:785 +msgid "Enter text..." +msgstr "Ange text..." + +#: application/views/qso/index.php:786 msgid "Send" msgstr "Sänd" -#: application/views/qso/index.php:779 +#: application/views/qso/index.php:798 msgid "Suggestions" msgstr "Förslag" -#: application/views/qso/index.php:786 +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "Profilbild" @@ -14527,6 +14565,7 @@ msgid "Special Interest Group Information" msgstr "Information om specialintressegrupp" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Problem? Kolla %swiki%s." @@ -15624,10 +15663,6 @@ msgstr "URL till Mastodonserver" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "Huvud-URL för din Mastodon-server, t.ex. %s" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "Experimentell" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "Winkeyer" @@ -16358,6 +16393,31 @@ msgstr "Skicka förfrågan" msgid "Rcvd" msgstr "Mottagen" +#, php-format +#~ msgctxt "LoTW Warning" +#~ msgid "At least one of your %sLoTW certificates%s is expired!" +#~ msgstr "Minst ett av dina %sLoTW-certifikat%s har gått ut!" + +#, php-format +#~ msgctxt "LoTW Warning" +#~ msgid "At least one of your %sLoTW certificates%s is about to expire!" +#~ msgstr "Minst ett av dina %sLoTW-certifikat%s håller på att gå ut!" + +#~ msgid "VUCCGrids" +#~ msgstr "VUCCGrids" + +#~ msgid "Expired" +#~ msgstr "Utgått" + +#~ msgid "Expiring" +#~ msgstr "Utgår" + +#~ msgid "Valid" +#~ msgstr "Giltig" + +#~ msgid "Experimental" +#~ msgstr "Experimentell" + #, php-format #~ msgctxt "Dashboard Warning" #~ msgid "" diff --git a/application/locale/tr_TR/LC_MESSAGES/messages.mo b/application/locale/tr_TR/LC_MESSAGES/messages.mo index 1bff2f639..ff4f034e1 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 a51dba8d4..4c8d155c7 100644 --- a/application/locale/tr_TR/LC_MESSAGES/messages.po +++ b/application/locale/tr_TR/LC_MESSAGES/messages.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" -"PO-Revision-Date: 2025-10-12 23:00+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" +"PO-Revision-Date: 2025-10-17 13:04+0000\n" "Last-Translator: \"Erkin Mercan (TA4AQG-SP9AQG)\" \n" "Language-Team: Turkish \n" @@ -76,9 +76,9 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:79 application/controllers/Lotw.php:105 -#: application/controllers/Lotw.php:375 application/controllers/Lotw.php:398 -#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:839 -#: application/controllers/Lotw.php:944 application/controllers/Mode.php:15 +#: application/controllers/Lotw.php:383 application/controllers/Lotw.php:406 +#: application/controllers/Lotw.php:763 application/controllers/Lotw.php:847 +#: application/controllers/Lotw.php:952 application/controllers/Mode.php:15 #: application/controllers/Notes.php:11 application/controllers/Options.php:14 #: application/controllers/Oqrs.php:15 application/controllers/Oqrs.php:165 #: application/controllers/Qrbcalc.php:13 application/controllers/Qrz.php:200 @@ -87,8 +87,8 @@ msgstr "" #: application/controllers/Qsl.php:57 application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:147 application/controllers/Qso.php:8 #: application/controllers/Qso.php:22 application/controllers/Qso.php:187 -#: application/controllers/Qso.php:287 application/controllers/Qso.php:308 -#: application/controllers/Qso.php:331 application/controllers/Qso.php:629 +#: application/controllers/Qso.php:318 application/controllers/Qso.php:339 +#: application/controllers/Qso.php:362 application/controllers/Qso.php:662 #: application/controllers/Radio.php:32 application/controllers/Radio.php:291 #: application/controllers/Radio.php:317 application/controllers/Radio.php:333 #: application/controllers/Reg1test.php:17 @@ -146,7 +146,7 @@ msgstr "Aktif Grid Konum Haritası" #: application/controllers/Activated_gridmap.php:31 #: application/controllers/Awards.php:1003 #: application/controllers/Awards.php:1035 -#: application/controllers/Gridmap.php:31 +#: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 #: application/views/interface_assets/footer.php:47 @@ -156,13 +156,13 @@ msgid "Gridsquares" msgstr "Grid Karesi" #: application/controllers/Activated_gridmap.php:32 -#: application/controllers/Gridmap.php:32 +#: application/controllers/Gridmap.php:33 #: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "Grid karesi onaylandı" #: application/controllers/Activated_gridmap.php:33 -#: application/controllers/Gridmap.php:33 +#: application/controllers/Gridmap.php:34 #: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "Grid karesi onaylanmadı" @@ -172,25 +172,25 @@ msgid "Total gridsquares activated" msgstr "Toplam Aktif Grid Karesi" #: application/controllers/Activated_gridmap.php:36 -#: application/controllers/Gridmap.php:36 +#: application/controllers/Gridmap.php:37 #: application/controllers/Visitor.php:390 msgid "Fields" msgstr "Alanlar" #: application/controllers/Activated_gridmap.php:37 -#: application/controllers/Gridmap.php:37 +#: application/controllers/Gridmap.php:38 #: application/controllers/Visitor.php:391 msgid "Fields confirmed" msgstr "Alanlar onaylandı" #: application/controllers/Activated_gridmap.php:38 -#: application/controllers/Gridmap.php:38 +#: application/controllers/Gridmap.php:39 #: application/controllers/Visitor.php:392 msgid "Fields not confirmed" msgstr "Alanlar onaylanmadı" #: application/controllers/Activated_gridmap.php:39 -#: application/controllers/Gridmap.php:39 +#: application/controllers/Gridmap.php:40 #: application/controllers/Visitor.php:393 msgid "Total fields worked" msgstr "Toplam çalışılan alanlar" @@ -340,13 +340,13 @@ msgstr "Ödüller - %s" #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:401 application/views/qso/index.php:302 -#: application/views/qso/index.php:593 application/views/user/edit.php:682 +#: application/views/qso/index.php:594 application/views/user/edit.php:682 #: application/views/view_log/qso.php:460 msgid "DOK" msgstr "DOK (Almanya Bölge İşletme Kodu)" #: application/controllers/Awards.php:176 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:130 application/views/bands/index.php:50 +#: application/views/bandmap/list.php:131 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:180 @@ -359,7 +359,7 @@ msgstr "DOK (Almanya Bölge İşletme Kodu)" #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 -#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:234 application/views/qso/index.php:402 #: application/views/search/cqzones_result.php:15 #: application/views/search/ituzones_result.php:15 #: application/views/search/result.php:27 @@ -562,7 +562,7 @@ msgstr "Fred Fish Memorial Award (FFMA)" #: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:392 application/views/qso/index.php:286 -#: application/views/qso/index.php:579 application/views/user/edit.php:678 +#: application/views/qso/index.php:580 application/views/user/edit.php:678 #: application/views/view_log/qso.php:425 #: application/views/view_log/qso.php:736 msgid "SIG" @@ -599,7 +599,7 @@ msgstr "73 on 73" #: application/controllers/Awards.php:2281 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" -msgstr "" +msgstr "WPX" #: application/controllers/Backup.php:15 application/views/backup/main.php:14 #: application/views/interface_assets/header.php:318 @@ -828,7 +828,7 @@ msgstr "Cronjob'u Düzenle" #: application/views/debug/index.php:539 application/views/debug/index.php:544 #: application/views/debug/index.php:549 application/views/debug/index.php:554 #: application/views/debug/index.php:559 application/views/debug/index.php:564 -#: application/views/debug/index.php:569 +#: application/views/debug/index.php:569 application/views/debug/index.php:574 msgid "never" msgstr "asla" @@ -885,7 +885,7 @@ msgstr "Çalışmıyor" msgid "SOTA CSV Export" msgstr "SOTA CSV Dışa Aktarma" -#: application/controllers/Dashboard.php:152 +#: application/controllers/Dashboard.php:154 #: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "Kontrol Paneli" @@ -938,35 +938,35 @@ msgstr "Bu işlevi kullanmak için DCL anahtarı talep etmeniz gerekiyor" msgid "Key(s) Deleted." msgstr "Anahtar(lar) Silindi." -#: application/controllers/Debug.php:117 +#: application/controllers/Debug.php:118 msgid "Debug" msgstr "Hata ayıklama" -#: application/controllers/Debug.php:156 +#: application/controllers/Debug.php:157 msgid "Migrate data now" msgstr "Verileri şimdi taşıyın" -#: application/controllers/Debug.php:159 +#: application/controllers/Debug.php:160 msgid "Migration already done. Run again?" msgstr "Görev zaten tamamlandı. Tekrar çalıştırılsın mı?" -#: application/controllers/Debug.php:163 +#: application/controllers/Debug.php:164 msgid "No data to migrate" msgstr "Taşınacak veri yok" -#: application/controllers/Debug.php:167 application/controllers/Debug.php:172 +#: application/controllers/Debug.php:168 application/controllers/Debug.php:173 msgid "No migration possible" msgstr "Taşınma mümkün değil" -#: application/controllers/Debug.php:237 +#: application/controllers/Debug.php:238 msgid "Wavelog was updated successfully!" msgstr "Wavelog başarıyla güncellendi!" -#: application/controllers/Debug.php:255 +#: application/controllers/Debug.php:256 msgid "Selfupdate() not available. Check the Error Log." msgstr "Selfupdate() kullanılamıyor. Hata Günlüğünü kontrol et." -#: application/controllers/Debug.php:299 +#: application/controllers/Debug.php:300 msgid "" "File Migration was successfull, but please check also manually. If " "everything seems right you can delete the folders 'assets/qslcard' and " @@ -976,7 +976,7 @@ msgstr "" "edin. Her şey doğru görünüyorsa 'assets/qslcard' ve 'images/" "eqsl_card_images' klasörlerini silebilirsiniz." -#: application/controllers/Debug.php:302 +#: application/controllers/Debug.php:303 msgid "File Migration failed. Please check the Error Log." msgstr "" "Dosya Taşıma işlemi başarısız oldu. Lütfen Hata Günlüğünü kontrol edin." @@ -1018,7 +1018,7 @@ msgid "DX Calendar" msgstr "DX Etkinlik Takvimi" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:404 +#: application/views/dashboard/index.php:409 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:310 msgid "eQSL Cards" @@ -1078,7 +1078,7 @@ msgstr "Onaylar" msgid "Gridsquare Map" msgstr "Grid Konum Haritası" -#: application/controllers/Gridmap.php:34 +#: application/controllers/Gridmap.php:35 #: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "Çalışılan toplam Grid Karesi sayısı" @@ -1282,7 +1282,7 @@ msgstr "Kayıt defteri" #: application/views/awards/wapc/index.php:44 #: application/views/awards/was/index.php:56 #: application/views/awards/wpx/index.php:28 -#: application/views/gridmap/index.php:101 +#: application/views/gridmap/index.php:141 #: application/views/logbookadvanced/index.php:794 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/oqrs/qsolist.php:12 @@ -1314,8 +1314,8 @@ msgstr "QSL" #: application/views/awards/wapc/index.php:48 #: application/views/awards/was/index.php:60 #: application/views/awards/wpx/index.php:32 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:109 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:149 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 @@ -1351,8 +1351,8 @@ msgstr "LoTW" #: application/views/awards/wapc/index.php:52 #: application/views/awards/was/index.php:64 #: application/views/awards/wpx/index.php:36 -#: application/views/dashboard/index.php:339 -#: application/views/gridmap/index.php:117 +#: application/views/dashboard/index.php:344 +#: application/views/gridmap/index.php:157 #: application/views/logbookadvanced/useroptions.php:78 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 @@ -1394,23 +1394,23 @@ msgstr "eQSL" #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:110 -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:136 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 #: application/views/contesting/index.php:118 -#: application/views/contesting/index.php:264 +#: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:597 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 -#: application/views/gridmap/index.php:67 application/views/hamsat/index.php:33 -#: application/views/kml/index.php:31 +#: application/views/gridmap/index.php:104 +#: application/views/hamsat/index.php:33 application/views/kml/index.php:31 #: application/views/logbookadvanced/edit.php:12 #: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/index.php:764 @@ -1460,8 +1460,8 @@ msgstr "Mod" #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:179 -#: application/views/contesting/index.php:265 +#: application/views/contesting/index.php:180 +#: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 #: application/views/logbookadvanced/index.php:767 #: application/views/logbookadvanced/useroptions.php:38 @@ -1489,8 +1489,8 @@ msgstr "RST (G)" #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 -#: application/views/contesting/index.php:203 -#: application/views/contesting/index.php:266 +#: application/views/contesting/index.php:204 +#: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 #: application/views/logbookadvanced/index.php:770 #: application/views/logbookadvanced/useroptions.php:42 @@ -1598,9 +1598,9 @@ msgstr "Eyalet" #: application/views/awards/gridmaster/index.php:50 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:26 -#: application/views/contesting/index.php:271 +#: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 -#: application/views/gridmap/index.php:152 +#: application/views/gridmap/index.php:193 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 @@ -1644,7 +1644,7 @@ msgstr "Gridsquare" #: application/views/dashboard/index.php:14 #: application/views/distancerecords/index.php:15 #: application/views/distances/index.php:13 -#: application/views/gridmap/index.php:154 +#: application/views/gridmap/index.php:195 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 #: application/views/logbookadvanced/index.php:869 @@ -1693,17 +1693,17 @@ msgstr "Mesafe" #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:96 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:97 #: application/views/bands/create.php:24 application/views/bands/edit.php:7 #: application/views/bands/index.php:47 application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:263 +#: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:593 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:598 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 -#: application/views/gridmap/index.php:10 application/views/kml/index.php:19 +#: application/views/gridmap/index.php:26 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:6 #: application/views/logbookadvanced/index.php:281 #: application/views/logbookadvanced/index.php:773 @@ -1751,7 +1751,7 @@ msgid "Band" msgstr "Bant" #: application/controllers/Logbook.php:1324 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:128 +#: application/controllers/Radio.php:45 application/views/bandmap/list.php:129 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 #: application/views/logbookadvanced/index.php:776 @@ -1810,9 +1810,9 @@ msgstr "Operatör" #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:252 #: application/views/lookup/index.php:47 -#: application/views/lotw_views/index.php:49 +#: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 -#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:410 +#: application/views/qso/edit_ajax.php:252 application/views/qso/index.php:411 #: application/views/station_profile/create.php:77 #: application/views/station_profile/edit.php:109 #: application/views/stationsetup/linkedlocations.php:17 @@ -1853,11 +1853,11 @@ msgstr "Sertifika içe aktarıldı." msgid "Certificate Updated." msgstr "Sertifika Güncellendi." -#: application/controllers/Lotw.php:381 +#: application/controllers/Lotw.php:389 msgid "Certificate Deleted." msgstr "Sertifika Silindi." -#: application/controllers/Lotw.php:410 +#: application/controllers/Lotw.php:418 #, php-format msgid "" "Found no certificate in file %s. If the filename contains 'key-only' this is " @@ -1867,52 +1867,52 @@ msgstr "" "genellikle LoTW tarafından henüz işlenmemiş bir sertifika talebi anlamına " "gelir." -#: application/controllers/Lotw.php:646 +#: application/controllers/Lotw.php:654 msgid "LoTW ADIF Information" msgstr "LoTW ADIF Bilgileri" -#: application/controllers/Lotw.php:812 application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:820 application/controllers/Lotw.php:823 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "LoTW girişi başarısız oldu, kullanıcı %s: %s." -#: application/controllers/Lotw.php:815 +#: application/controllers/Lotw.php:823 msgid "Username/password incorrect" msgstr "Kullanıcı adı veya şifre yanlış" -#: application/controllers/Lotw.php:818 +#: application/controllers/Lotw.php:826 msgid "LoTW login OK!" msgstr "LoTW girişi başarılı!" -#: application/controllers/Lotw.php:822 +#: application/controllers/Lotw.php:830 msgid "LoTW currently not available. Try again later." msgstr "LoTW şu anda kullanılamıyor. Daha sonra tekrar deneyin." -#: application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 msgid "No LoTW credentials provided." msgstr "LoTW kullanıcı adı ve şifre girilmedi." -#: application/controllers/Lotw.php:845 +#: application/controllers/Lotw.php:853 msgid "LoTW ADIF Import" msgstr "LoTW ADIF İçe Aktarma" -#: application/controllers/Lotw.php:871 application/controllers/Lotw.php:979 +#: application/controllers/Lotw.php:879 application/controllers/Lotw.php:987 msgid "You have not defined your ARRL LoTW credentials!" msgstr "ARRL LoTW kimlik bilgilerinizi tanımlamadınız!" -#: application/controllers/Lotw.php:946 +#: application/controllers/Lotw.php:954 msgid "LoTW .TQ8 Upload" msgstr "LoTW .TQ8 Yükleme" -#: application/controllers/Lotw.php:1024 +#: application/controllers/Lotw.php:1032 msgid "Your ARRL username and/or password is incorrect." msgstr "ARRL hesabınız için girilen kullanıcı adı veya şifre hatalı." -#: application/controllers/Lotw.php:1043 application/controllers/Lotw.php:1048 +#: application/controllers/Lotw.php:1051 application/controllers/Lotw.php:1056 msgid "LoTW .TQ8 Sent" msgstr "LoTW .TQ8 Gönderildi" -#: application/controllers/Lotw.php:1055 +#: application/controllers/Lotw.php:1063 msgid "LoTW .TQ8 Not Sent" msgstr "LoTW .TQ8 Gönderilmedi" @@ -1933,7 +1933,7 @@ msgstr "Modu Düzenle" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:409 application/views/qso/index.php:71 -#: application/views/qso/index.php:642 application/views/view_log/qso.php:14 +#: application/views/qso/index.php:643 application/views/view_log/qso.php:14 #: application/views/view_log/qso.php:749 msgid "Notes" msgstr "Notlar" @@ -2193,8 +2193,8 @@ msgstr "QRZ QSL İçe Aktarma" msgid "QRZ ADIF Information" msgstr "QRZ ADIF Bilgisi" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:356 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:361 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:287 msgid "QSL Cards" @@ -2216,15 +2216,15 @@ msgstr "Talep edilen QSL kartları yazdır" msgid "Add QSO" msgstr "QSO ekle" -#: application/controllers/Qso.php:690 +#: application/controllers/Qso.php:723 msgid "You have to be logged in to access this URL." msgstr "Bu URL'ye erişmek için giriş yapmış olmanız gerekiyor." -#: application/controllers/Qso.php:696 +#: application/controllers/Qso.php:729 msgid "Call Transfer" msgstr "Çağrı Transferi" -#: application/controllers/Qso.php:703 +#: application/controllers/Qso.php:736 msgid "No callsign provided." msgstr "Çağrı işareti girilmedi." @@ -2254,7 +2254,7 @@ msgid "Options" msgstr "Seçenekler" #: application/controllers/Radio.php:50 application/views/debug/index.php:312 -#: application/views/qso/index.php:749 +#: application/views/qso/index.php:750 msgid "Settings" msgstr "Ayarlar" @@ -2263,8 +2263,8 @@ msgid "UNKNOWN" msgstr "BİLİNMEYEN" #: application/controllers/Radio.php:98 -#: application/views/contesting/index.php:161 -#: application/views/qso/index.php:354 +#: application/views/contesting/index.php:162 +#: application/views/qso/index.php:355 msgid "last updated" msgstr "son kullanılan" @@ -2302,13 +2302,13 @@ msgstr "Düzenle" #: application/views/club/permissions.php:326 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:63 -#: application/views/interface_assets/footer.php:2802 -#: application/views/interface_assets/footer.php:2820 -#: application/views/interface_assets/footer.php:2841 -#: application/views/interface_assets/footer.php:2859 +#: application/views/interface_assets/footer.php:2900 +#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:2939 +#: application/views/interface_assets/footer.php:2957 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:734 -#: application/views/lotw_views/index.php:111 +#: application/views/lotw_views/index.php:128 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 #: application/views/qslcard/index.php:76 @@ -2520,7 +2520,7 @@ msgstr "İzin verilmiyor" #: application/controllers/Stationsetup.php:156 #: application/controllers/Stationsetup.php:177 #: application/controllers/Stationsetup.php:478 -#: application/views/qso/index.php:708 application/views/simplefle/index.php:39 +#: application/views/qso/index.php:709 application/views/simplefle/index.php:39 #: application/views/widgets/on_air.php:102 msgid "Error" msgstr "Hata" @@ -2820,6 +2820,14 @@ msgstr "LoTW SAT Güncellemesi" msgid "Update of Hams of Note" msgstr "Tanınmış Amatör Telsizciler Güncellemesi" +#: application/controllers/Update.php:718 +msgid "VUCC Grid file update complete. Result: " +msgstr "" + +#: application/controllers/Update.php:720 +msgid "VUCC Grid file update failed. Result: " +msgstr "" + #: application/controllers/User.php:50 #: application/views/interface_assets/header.php:306 msgid "User Accounts" @@ -2949,7 +2957,7 @@ msgstr "%s kullanıcısı çıkış yaptı." msgid "Station Name" msgstr "İstasyon Adı" -#: application/controllers/User.php:1262 application/views/debug/index.php:594 +#: application/controllers/User.php:1262 application/views/debug/index.php:599 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:61 #: application/views/station_profile/edit.php:77 @@ -3407,7 +3415,7 @@ msgstr "QSO güncellendi" #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 #: application/views/dashboard/index.php:19 -#: application/views/gridmap/index.php:156 +#: application/views/gridmap/index.php:197 #: application/views/logbookadvanced/index.php:15 #: application/views/user/edit.php:256 application/views/user/edit.php:279 #: application/views/user/edit.php:302 application/views/user/edit.php:325 @@ -3507,7 +3515,7 @@ msgid "Accumulated number of WAJA worked" msgstr "Toplam çalışılan WAJA sayısı" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:317 +#: application/views/dashboard/index.php:322 #: application/views/dayswithqso/index.php:42 #: application/views/dayswithqso/index.php:82 #: application/views/statistics/index.php:19 @@ -3524,7 +3532,7 @@ msgid "Yearly" msgstr "Yıllık" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:322 +#: application/views/dashboard/index.php:327 #: application/views/visitor/index.php:255 msgid "Month" msgstr "Bu Ayki QSO'lar" @@ -3576,8 +3584,8 @@ msgstr "Fark" #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:78 application/views/bandmap/list.php:86 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:79 application/views/bandmap/list.php:87 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:113 #: application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 @@ -3600,14 +3608,15 @@ msgstr "Fark" #: application/views/dxatlas/index.php:60 #: application/views/dxatlas/index.php:82 #: application/views/dxatlas/index.php:94 -#: application/views/gridmap/index.php:13 -#: application/views/gridmap/index.php:28 -#: application/views/gridmap/index.php:41 -#: application/views/gridmap/index.php:70 -#: application/views/gridmap/index.php:83 +#: application/views/gridmap/index.php:29 +#: application/views/gridmap/index.php:44 +#: application/views/gridmap/index.php:78 +#: application/views/gridmap/index.php:93 +#: application/views/gridmap/index.php:107 +#: application/views/gridmap/index.php:121 #: application/views/interface_assets/footer.php:46 -#: application/views/interface_assets/footer.php:1692 -#: application/views/interface_assets/footer.php:1831 +#: application/views/interface_assets/footer.php:1790 +#: application/views/interface_assets/footer.php:1929 #: 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 @@ -3694,7 +3703,7 @@ msgstr "Dönem" #: application/views/accumulate/index.php:80 #: application/views/callstats/index.php:65 #: application/views/distances/index.php:53 -#: application/views/gridmap/index.php:38 +#: application/views/gridmap/index.php:41 #: application/views/logbookadvanced/edit.php:14 #: application/views/logbookadvanced/index.php:310 #: application/views/logbookadvanced/index.php:857 @@ -3714,7 +3723,7 @@ msgstr "Uydu hariç tümü" #: application/views/accumulate/index.php:85 #: application/views/callstats/index.php:69 #: application/views/distances/index.php:58 -#: application/views/gridmap/index.php:42 +#: application/views/gridmap/index.php:45 #: application/views/logbookadvanced/edit.php:207 #: application/views/logbookadvanced/edit.php:215 #: application/views/logbookadvanced/index.php:406 @@ -3726,9 +3735,9 @@ msgstr "Yok/Boş" #: application/views/callstats/index.php:71 application/views/csv/index.php:95 #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 +#: application/views/gridmap/index.php:47 application/views/kml/index.php:80 #: application/views/logbookadvanced/index.php:314 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:477 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:478 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 #: application/views/view_log/qso.php:233 @@ -3740,9 +3749,9 @@ msgstr "Uçak Yansıması İletişimi" #: application/views/callstats/index.php:72 application/views/csv/index.php:96 #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 +#: application/views/gridmap/index.php:48 application/views/kml/index.php:81 #: application/views/logbookadvanced/index.php:315 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:478 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:479 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 #: application/views/view_log/qso.php:236 @@ -3754,9 +3763,9 @@ msgstr "Kutup Işıkları (Aurora) Yansımalı İletişim" #: application/views/callstats/index.php:73 application/views/csv/index.php:97 #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 +#: application/views/gridmap/index.php:49 application/views/kml/index.php:82 #: application/views/logbookadvanced/index.php:316 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:479 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:480 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 #: application/views/view_log/qso.php:239 @@ -3768,9 +3777,9 @@ msgstr "Aurora-E İletişimi" #: application/views/callstats/index.php:74 application/views/csv/index.php:98 #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 +#: application/views/gridmap/index.php:50 application/views/kml/index.php:83 #: application/views/logbookadvanced/index.php:317 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:480 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:481 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 #: application/views/view_log/qso.php:242 @@ -3782,9 +3791,9 @@ msgstr "Yansımalı (Back scatter) İletişim" #: application/views/callstats/index.php:75 application/views/csv/index.php:99 #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 +#: application/views/gridmap/index.php:51 application/views/kml/index.php:84 #: application/views/logbookadvanced/index.php:318 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:481 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:482 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 #: application/views/view_log/qso.php:245 @@ -3796,9 +3805,9 @@ msgstr "EchoLink" #: application/views/callstats/index.php:76 application/views/csv/index.php:100 #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 +#: application/views/gridmap/index.php:52 application/views/kml/index.php:85 #: application/views/logbookadvanced/index.php:319 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:482 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:483 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 #: application/views/view_log/qso.php:248 @@ -3810,9 +3819,9 @@ msgstr "Dünya-Ay-Dünya" #: application/views/callstats/index.php:77 application/views/csv/index.php:101 #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 +#: application/views/gridmap/index.php:53 application/views/kml/index.php:86 #: application/views/logbookadvanced/index.php:320 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:483 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:484 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 #: application/views/view_log/qso.php:251 @@ -3824,9 +3833,9 @@ msgstr "Geçici E-Tabakası (Sporadic E) Yansıması" #: application/views/callstats/index.php:78 application/views/csv/index.php:102 #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 +#: application/views/gridmap/index.php:54 application/views/kml/index.php:87 #: application/views/logbookadvanced/index.php:321 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:484 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:485 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 #: application/views/view_log/qso.php:254 @@ -3838,9 +3847,9 @@ msgstr "Manyetik Alan Hizalanmış Düzensizlikler (FAI) İletişimi" #: application/views/callstats/index.php:79 application/views/csv/index.php:103 #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 +#: application/views/gridmap/index.php:55 application/views/kml/index.php:88 #: application/views/logbookadvanced/index.php:322 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:485 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:486 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 #: application/views/view_log/qso.php:257 @@ -3852,9 +3861,9 @@ msgstr "F2 Yansıtmalı İletişim" #: application/views/callstats/index.php:80 application/views/csv/index.php:104 #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 +#: application/views/gridmap/index.php:56 application/views/kml/index.php:89 #: application/views/logbookadvanced/index.php:323 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:486 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:487 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 #: application/views/view_log/qso.php:260 @@ -3866,9 +3875,9 @@ msgstr "İnternet-destekli" #: application/views/callstats/index.php:81 application/views/csv/index.php:105 #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 +#: application/views/gridmap/index.php:57 application/views/kml/index.php:90 #: application/views/logbookadvanced/index.php:324 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:487 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:488 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 #: application/views/view_log/qso.php:263 @@ -3880,9 +3889,9 @@ msgstr "İyonosferik Saçılma (Ionoscatter) İletişimi" #: application/views/callstats/index.php:82 application/views/csv/index.php:106 #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 +#: application/views/gridmap/index.php:58 application/views/kml/index.php:91 #: application/views/logbookadvanced/index.php:325 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:488 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:489 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 #: application/views/view_log/qso.php:266 @@ -3894,9 +3903,9 @@ msgstr "İnternet Tabanlı Radyo Bağlantısı (IRLP)" #: application/views/callstats/index.php:83 application/views/csv/index.php:107 #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 +#: application/views/gridmap/index.php:59 application/views/kml/index.php:92 #: application/views/logbookadvanced/index.php:326 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:489 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:490 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 #: application/views/view_log/qso.php:269 @@ -3908,9 +3917,9 @@ msgstr "Meteor Yansıması İletişimi" #: application/views/callstats/index.php:84 application/views/csv/index.php:108 #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 +#: application/views/gridmap/index.php:60 application/views/kml/index.php:93 #: application/views/logbookadvanced/index.php:327 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:490 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:491 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 #: application/views/view_log/qso.php:272 @@ -3922,9 +3931,9 @@ msgstr "Röle/Aktarıcı Üzerinden İletişim" #: application/views/callstats/index.php:85 application/views/csv/index.php:109 #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 +#: application/views/gridmap/index.php:61 application/views/kml/index.php:94 #: application/views/logbookadvanced/index.php:328 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:491 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:492 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 #: application/views/view_log/qso.php:275 @@ -3936,9 +3945,9 @@ msgstr "Yağmur Yansıması İletişimi" #: application/views/callstats/index.php:86 application/views/csv/index.php:110 #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 +#: application/views/gridmap/index.php:62 application/views/kml/index.php:95 #: application/views/logbookadvanced/index.php:329 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:492 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:493 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 #: application/views/view_log/qso.php:278 @@ -3950,9 +3959,9 @@ msgstr "Uydu" #: application/views/callstats/index.php:87 application/views/csv/index.php:111 #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 +#: application/views/gridmap/index.php:63 application/views/kml/index.php:96 #: application/views/logbookadvanced/index.php:330 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:493 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:494 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 #: application/views/view_log/qso.php:281 @@ -3964,9 +3973,9 @@ msgstr "Ekvator Ötesi Yansımalı İletişim" #: application/views/callstats/index.php:88 application/views/csv/index.php:112 #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 +#: application/views/gridmap/index.php:64 application/views/kml/index.php:97 #: application/views/logbookadvanced/index.php:331 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:494 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:495 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 #: application/views/view_log/qso.php:284 @@ -4021,7 +4030,7 @@ msgstr "Göster" #: application/views/components/hamsat/table.php:29 #: application/views/distancerecords/index.php:14 #: application/views/distances/index.php:34 -#: application/views/gridmap/index.php:25 application/views/hamsat/index.php:32 +#: application/views/gridmap/index.php:73 application/views/hamsat/index.php:32 #: application/views/interface_assets/header.php:198 #: application/views/logbookadvanced/edit.php:17 #: application/views/logbookadvanced/index.php:292 @@ -4044,7 +4053,7 @@ msgstr "Uydu" #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 -#: application/views/gridmap/index.php:80 +#: application/views/gridmap/index.php:88 #: application/views/logbookadvanced/index.php:301 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 @@ -4057,7 +4066,7 @@ msgstr "Yörünge" #: application/views/activated_gridmap/index.php:50 #: application/views/awards/wab/index.php:65 -#: application/views/gridmap/index.php:92 +#: application/views/gridmap/index.php:132 #: application/views/timeline/index.php:52 msgid "Confirmation" msgstr "Onay" @@ -4079,24 +4088,24 @@ msgstr "Onay" #: application/views/awards/wapc/index.php:56 #: application/views/awards/was/index.php:68 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:125 application/views/user/edit.php:810 +#: application/views/gridmap/index.php:165 application/views/user/edit.php:810 msgid "QRZ.com" msgstr "QRZ.com" #: application/views/activated_gridmap/index.php:86 -#: application/views/gridmap/index.php:130 +#: application/views/gridmap/index.php:17 msgid "Plot" msgstr "Grafik" #: application/views/activated_gridmap/index.php:87 -#: application/views/gridmap/index.php:131 +#: application/views/gridmap/index.php:18 msgid "Clear Markers" msgstr "İşaretleri Temizle" #: application/views/activated_gridmap/index.php:102 #: application/views/awards/ffma/index.php:31 #: application/views/awards/gridmaster/index.php:46 -#: application/views/gridmap/index.php:148 +#: application/views/gridmap/index.php:189 #: application/views/logbookadvanced/index.php:10 msgid "Latitude" msgstr "Enlem" @@ -4104,7 +4113,7 @@ msgstr "Enlem" #: application/views/activated_gridmap/index.php:104 #: application/views/awards/ffma/index.php:33 #: application/views/awards/gridmaster/index.php:48 -#: application/views/gridmap/index.php:150 +#: application/views/gridmap/index.php:191 #: application/views/logbookadvanced/index.php:11 msgid "Longitude" msgstr "Boylam" @@ -4165,8 +4174,8 @@ msgstr "Hiçbir kayıt bulunamadı!" #: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:170 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:244 +#: application/views/contesting/index.php:171 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:249 #: application/views/dcl_views/index.php:27 #: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 @@ -4271,12 +4280,12 @@ msgstr "Logunuzdaki DOK ile DCL’deki DOK farklı" #: application/views/awards/pota/index.php:33 #: application/views/awards/sota/index.php:31 #: application/views/awards/wwff/index.php:33 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:25 #: application/views/contesting/index.php:103 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:239 -#: application/views/debug/index.php:589 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:244 +#: application/views/debug/index.php:594 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4317,12 +4326,12 @@ msgstr "Tarih" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 -#: application/views/contesting/index.php:261 -#: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:590 +#: application/views/contesting/index.php:262 +#: application/views/dashboard/index.php:247 +#: application/views/debug/index.php:595 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4348,10 +4357,10 @@ msgstr "Saat" #: application/views/adif/dcl_success.php:31 #: application/views/adif/pota_success.php:31 #: application/views/awards/vucc/band.php:18 -#: application/views/bandmap/list.php:129 -#: application/views/contesting/index.php:262 +#: application/views/bandmap/list.php:130 +#: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:591 application/views/debug/index.php:626 +#: application/views/debug/index.php:596 application/views/debug/index.php:631 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4393,8 +4402,7 @@ msgstr "CBR İçe Aktar" #: application/views/adif/import.php:73 application/views/adif/import.php:379 #: application/views/adif/import.php:400 application/views/api/index.php:22 #: application/views/dashboard/index.php:180 -#: application/views/dashboard/index.php:209 -#: application/views/dashboard/index.php:214 +#: application/views/dashboard/index.php:213 #: application/views/eqsl/import.php:46 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 #: application/views/options/maptiles.php:48 @@ -4413,7 +4421,7 @@ msgstr "Maksimum dosya yükleme boyutu: " #: application/views/adif/import.php:349 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:193 application/views/debug/index.php:210 -#: application/views/debug/index.php:581 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:586 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 @@ -4481,7 +4489,7 @@ msgstr "" #: application/views/adif/import.php:141 #: application/views/interface_assets/footer.php:34 #: application/views/interface_assets/footer.php:580 -#: application/views/interface_assets/footer.php:2564 +#: application/views/interface_assets/footer.php:2662 msgid "DANGER" msgstr "TEHLİKE" @@ -4710,7 +4718,7 @@ msgstr "" #: application/views/adif/import.php:399 #: application/views/adif/import_success.php:40 #: application/views/dcl_views/index.php:76 -#: application/views/lotw_views/index.php:137 +#: application/views/lotw_views/index.php:154 msgid "Information" msgstr "Bilgi" @@ -5226,7 +5234,7 @@ msgstr "Onaylanan Eyaletler" #: application/views/awards/wapc/index.php:145 #: application/views/awards/was/index.php:180 #: application/views/awards/wpx/index.php:172 -#: application/views/dashboard/index.php:312 +#: application/views/dashboard/index.php:317 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -5246,7 +5254,8 @@ msgstr "Toplam QSO" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:151 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/dxatlas/index.php:80 +#: application/views/gridmap/index.php:199 application/views/kml/index.php:65 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 #: application/views/logbookadvanced/index.php:335 @@ -5254,7 +5263,7 @@ msgstr "Toplam QSO" #: application/views/logbookadvanced/qslcarousel.php:37 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:308 -#: application/views/qso/index.php:450 +#: application/views/qso/index.php:451 #: application/views/search/cqzones_result.php:13 #: application/views/station_profile/create.php:110 #: application/views/station_profile/edit.php:157 @@ -5315,9 +5324,9 @@ msgstr "Ödüller - CQ WAZ" #: application/views/awards/wab/list.php:6 #: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:81 -#: application/views/dashboard/index.php:339 -#: application/views/dashboard/index.php:457 +#: application/views/bandmap/list.php:82 +#: application/views/dashboard/index.php:344 +#: application/views/dashboard/index.php:462 #: application/views/interface_assets/footer.php:43 #: application/views/search/result.php:32 #: application/views/visitor/index.php:270 @@ -5327,9 +5336,9 @@ msgstr "Onaylanan" #: application/views/awards/cq/index.php:35 #: application/views/awards/itu/index.php:35 #: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:80 -#: application/views/dashboard/index.php:335 -#: application/views/dashboard/index.php:451 +#: application/views/bandmap/list.php:81 +#: application/views/dashboard/index.php:340 +#: application/views/dashboard/index.php:456 #: application/views/search/result.php:35 #: application/views/visitor/index.php:266 msgid "Worked" @@ -5407,7 +5416,7 @@ msgstr "QSO'yu QSL Türü ile göster" #: application/views/awards/iota/index.php:62 #: application/views/awards/itu/index.php:57 #: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2543 +#: application/views/interface_assets/footer.php:2641 #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -5662,6 +5671,7 @@ msgstr "" #: application/views/awards/dxcc/index.php:28 #: application/views/awards/wpx/index.php:13 +#: application/views/gridmap/index.php:16 #: application/views/logbookadvanced/index.php:221 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" @@ -5679,12 +5689,12 @@ msgstr "Silinenleri dahil et" #: application/views/awards/dxcc/index.php:97 #: application/views/awards/iota/index.php:88 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:88 +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:89 #: application/views/logbookadvanced/edit.php:217 #: application/views/logbookadvanced/index.php:408 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 -#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:425 +#: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:426 #: application/views/view_log/qso.php:350 msgid "Antarctica" msgstr "Antarktika" @@ -5692,12 +5702,12 @@ msgstr "Antarktika" #: application/views/awards/dxcc/index.php:101 #: application/views/awards/iota/index.php:92 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:87 +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:88 #: application/views/logbookadvanced/edit.php:216 #: application/views/logbookadvanced/index.php:407 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 -#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:424 +#: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:425 #: application/views/view_log/qso.php:347 msgid "Africa" msgstr "Afrika" @@ -5705,12 +5715,12 @@ msgstr "Afrika" #: application/views/awards/dxcc/index.php:105 #: application/views/awards/iota/index.php:96 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:89 +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:90 #: application/views/logbookadvanced/edit.php:219 #: application/views/logbookadvanced/index.php:410 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 -#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:426 +#: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:427 #: application/views/view_log/qso.php:353 msgid "Asia" msgstr "Asya" @@ -5718,12 +5728,12 @@ msgstr "Asya" #: application/views/awards/dxcc/index.php:109 #: application/views/awards/iota/index.php:100 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:90 +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:91 #: application/views/logbookadvanced/edit.php:220 #: application/views/logbookadvanced/index.php:411 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 -#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:427 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:428 #: application/views/view_log/qso.php:356 msgid "Europe" msgstr "Avrupa" @@ -5731,12 +5741,12 @@ msgstr "Avrupa" #: application/views/awards/dxcc/index.php:113 #: application/views/awards/iota/index.php:104 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:91 +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:92 #: application/views/logbookadvanced/edit.php:218 #: application/views/logbookadvanced/index.php:409 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 -#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:428 +#: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:429 #: application/views/view_log/qso.php:359 msgid "North America" msgstr "Kuzey Amerika" @@ -5744,12 +5754,12 @@ msgstr "Kuzey Amerika" #: application/views/awards/dxcc/index.php:117 #: application/views/awards/iota/index.php:108 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:93 +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:94 #: application/views/logbookadvanced/edit.php:221 #: application/views/logbookadvanced/index.php:412 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 -#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:430 +#: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:431 #: application/views/view_log/qso.php:365 msgid "South America" msgstr "Güney Amerika" @@ -5757,12 +5767,12 @@ msgstr "Güney Amerika" #: application/views/awards/dxcc/index.php:121 #: application/views/awards/iota/index.php:112 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:92 +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:93 #: application/views/logbookadvanced/edit.php:222 #: application/views/logbookadvanced/index.php:413 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 -#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:429 +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:430 #: application/views/view_log/qso.php:362 msgid "Oceania" msgstr "Okyanusya" @@ -6074,7 +6084,7 @@ msgstr "IOTA Haritasını Göster" #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 #: application/views/contesting/index.php:64 -#: application/views/contesting/index.php:228 +#: 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:782 @@ -6102,13 +6112,14 @@ msgstr "Silindi" #: application/views/awards/itu/index.php:3 #: application/views/awards/itu/index.php:151 +#: application/views/gridmap/index.php:201 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 #: application/views/logbookadvanced/index.php:349 #: application/views/logbookadvanced/index.php:827 #: application/views/logbookadvanced/useroptions.php:118 #: application/views/lookup/index.php:8 application/views/qso/edit_ajax.php:316 -#: application/views/qso/index.php:460 +#: application/views/qso/index.php:461 #: application/views/search/ituzones_result.php:13 #: application/views/station_profile/create.php:124 #: application/views/station_profile/edit.php:174 @@ -6203,7 +6214,7 @@ msgid "City" msgstr "Şehir" #: application/views/awards/jcc/index.php:188 -#: application/views/dashboard/index.php:447 +#: application/views/dashboard/index.php:452 #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 @@ -6252,7 +6263,7 @@ msgstr "" "Bu Ödül için Dikkate Alınan Alanlar: POTA_REF (Park Referansı içermelidir)" #: application/views/awards/pota/index.php:32 -#: application/views/qso/index.php:274 application/views/qso/index.php:567 +#: application/views/qso/index.php:274 application/views/qso/index.php:568 #: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:276 #: application/views/user/edit.php:674 application/views/view_log/qso.php:403 @@ -6489,7 +6500,7 @@ msgstr "Ödüller - Worked All Continents (WAC)" #: application/views/logbookadvanced/index.php:866 #: application/views/logbookadvanced/useroptions.php:170 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 -#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:421 +#: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:422 #: application/views/view_log/qso.php:342 msgid "Continent" msgstr "Kıta" @@ -6739,7 +6750,7 @@ msgstr "WAS Haritasını Göster" #: application/views/awards/wpx/index.php:76 msgid "Band / Satellite / Orbit" -msgstr "" +msgstr "Bant / Uydu / Yörünge" #: application/views/awards/wpx/wpx_details.php:21 #: application/views/oqrs/showrequests.php:86 @@ -6776,7 +6787,7 @@ msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" msgstr "Bu Ödül için Dikkate Alınan Alanlar: WWFF (ADIF: WWFF_REF)" #: application/views/awards/wwff/index.php:32 -#: application/views/qso/index.php:262 application/views/qso/index.php:554 +#: application/views/qso/index.php:262 application/views/qso/index.php:555 #: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:263 #: application/views/user/edit.php:670 application/views/view_log/qso.php:396 @@ -6851,7 +6862,7 @@ msgstr "Bant Listesi" msgid "None" msgstr "Hiçbiri" -#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:84 +#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:85 msgid "Spots de" msgstr "Spots de" @@ -6865,40 +6876,46 @@ msgstr "" msgid "Click to prepare logging." msgstr "Tıklayın ve kaydı hazırlayın." -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:70 +#: application/views/contesting/index.php:160 +#: application/views/qso/index.php:353 +msgid "WebSocket (Requires WLGate>1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "DXCC Durumu" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "QSO Yapılmamış" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "Çalışıldı fakat onaylanmadı" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "Telefon" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "CW" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "Dijital" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "WAC (Tüm Kıtalarla Haberleşme)" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "Spotter" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6906,7 +6923,7 @@ msgstr "Spotter" msgid "Message" msgstr "Mesaj" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "Son Çalışılan" @@ -7322,7 +7339,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7385,7 +7402,7 @@ msgstr "Evet" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7433,7 +7450,7 @@ msgid "No contests were found in your log." msgstr "Logunuzda yarışma bulunamadı." #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "Hepsi (Uydu hariç)" @@ -7790,7 +7807,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "Yaklaşan aktivite yok. Lütfen daha sonra tekrar kontrol edin." #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7855,10 +7872,10 @@ msgid "Show Details" msgstr "Detayları Göster" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "Bugün" @@ -8019,7 +8036,7 @@ msgstr "Seri + Grid + Exchange" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "Operatör Çağrı İşareti" @@ -8099,54 +8116,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "Seri N." -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "Seri No (G)" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "Grid (G)" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "Exch (G)" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "Seri No (A)" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "Grid (A)" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "Exch (A)" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "QSO'yu baştan başlat" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "QSO'yu kaydet" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "Çağrı Kodu Önerileri" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "Yarışma kayıt defteri" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "VUCC Grid" @@ -8317,7 +8334,7 @@ msgstr "Yalnızca SOTA bilgisi içeren QSO'lar dışa aktarılacaktır!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "Yayın Mode" @@ -8371,12 +8388,15 @@ msgid "" "Your active station location is not linked to your active station logbook. " "Click %shere%s to do it." msgstr "" +"İstasyon konumunuz herhangi bir kayıt defterinize bağlı değildir. Düzeltmek " +"için %sburaya%s'yi tıklayın." #: application/views/dashboard/index.php:163 #, php-format msgctxt "Dashboard Warning" msgid "You have no station linked to your logbook. Click %shere%s to do it." msgstr "" +"Logbook'unuza bağlı hiç istasyonunuz yok. Düzeltmek çin %sburaya%s tıklayın." #: application/views/dashboard/index.php:173 #, php-format @@ -8409,45 +8429,58 @@ msgstr "" "Özelleştirilmiş temalarınız var. Lütfen yöneticiden temaları düzenlemesini " "isteyin." -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" -msgstr "%sLoTW sertifikanızın%s süresi dolmuş!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" +msgstr "" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" -msgstr "%sLoTW sertifikanızın%s süresi dolmak üzere!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" +msgstr "" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" msgstr[0] "En fazla %d QSO gösterilir" msgstr[1] "En fazla %d QSO gösterilir" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "QSO'ların Analizi" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "Ülkeler'in (DXCC) Analizi" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "İstenenler" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8458,7 +8491,7 @@ msgstr "İstenenler" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8481,10 +8514,10 @@ msgstr "İstenenler" msgid "Sent" msgstr "Gönderilen" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8517,7 +8550,7 @@ msgstr "Gönderilen" msgid "Received" msgstr "Alınan" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8543,7 +8576,7 @@ msgstr "Alınan" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8557,25 +8590,25 @@ msgstr "Alınan" msgid "Requested" msgstr "İstenen" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "LOTW (Logbook of the World)" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "VUCC-Gridleri" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "Güneş Verileri ve Yayılımı" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "Son güncelleme %s." -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "Veriler HAMqsl tarafından sağlanmıştır." @@ -8746,12 +8779,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "DCL ile bir sonraki otomatik eşitleme şu zamanda gerçekleşecek: " #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "Manuel Senkronizasyon" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "çalışıyor..." @@ -9113,6 +9146,7 @@ msgstr "DXCC güncellemesi (Club Log’dan)" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "Güncelle" @@ -9153,11 +9187,15 @@ msgstr "Tanınmış Amatör Telsizciler'i Güncelle" msgid "HAMqsl" msgstr "HAMqsl" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "QSO-DB Bakımı" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -9165,144 +9203,144 @@ msgid_plural "" msgstr[0] "Veritabanında %d adet istasyon profili (lokasyon) olmayan QSO var" msgstr[1] "Veritabanında %d adet istasyon profili (lokasyon) olmayan QSO var" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" "Lütfen QSO'lara işaret verin ve onları mevcut bir istasyon lokasyonuna " "yeniden atayın:" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "Hedef Lokasyon" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "Yeniden Ata" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Veritabanınızdaki tüm QSO’lar istasyon profillerine (lokasyona) atanmış " "durumda" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "Her şey yolunda, tıkır tıkır" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "Arnavutça" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "Ermenice" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "Boşnakça" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "Bulgarca" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "Çince (Basitleştirilmiş)" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "Hırvatça" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "Çekçe" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "Flemenkçe" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "İngilizce" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "Estonca" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "Fince" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "Fransızca" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "Almanca" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "Yunanca" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "Macarca" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "İtalyanca" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "Japonca" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "Letonca" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "Litvanca" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "Karadağca" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "Lehçe" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "Portekizce" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "Rusça" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "Sırpça" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "Slovakça" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "Slovence" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "İspanyolca" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "İsveççe" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "Türkçe" @@ -9760,10 +9798,10 @@ msgid "QSL Date" msgstr "QSL Tarihi" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9868,7 +9906,7 @@ msgid "Worked not confirmed" msgstr "Çalışıldı fakat onaylanmadı" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "Temizle" @@ -10067,62 +10105,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Grid Karesi" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "Giris yapmadiniz. Lütfen %sgiris yapin%s" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "grid" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "Toplam Sayı" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "QSL Kartın Alıcısı: " -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Uyarı! Bu QSL kartını silmek istediğinizden emin misiniz?" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL Kartı" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "eQSL Kartın Alıcısı: " -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "QSL kart görüntüsü" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "QSL Kartın Ön Yüzü:" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "QSL Kartın Arka Yüzü:" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "QSL Kartına ek QSO ekle" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "Bir şeyler ters gitti. Lütfen tekrar deneyin!" @@ -10209,7 +10247,7 @@ msgstr "Worked All Europe (WAE)" #: application/views/interface_assets/header.php:192 msgid "Worked All Prefixes (WPX)" -msgstr "" +msgstr "Worked All Prefixes (WPX)" #: application/views/interface_assets/header.php:214 msgid "Canada" @@ -10723,7 +10761,7 @@ msgstr "İstasyon Gücü" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "Bölge" @@ -10843,7 +10881,7 @@ msgstr "Doğrulandı" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10864,7 +10902,7 @@ msgstr "Direkt" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10883,7 +10921,7 @@ msgstr "Büro" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10898,49 +10936,49 @@ msgstr "Elektronik" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "Yönetici" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "HİÇBİRİ" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "Afrikan-İtalya (Özel DXCC Varlığı)" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "Bear Island (Ayı Adası)" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "Türkiye'nin Avrupa Yakası" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "ITU Viyana" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "Kosova" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "Shetland Adaları" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "Sicilya" @@ -11114,7 +11152,7 @@ msgstr "QSL gönderildi" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -11151,7 +11189,7 @@ msgstr "Sıralanan" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11599,38 +11637,42 @@ msgstr "Geçeriliğini Yitirme Tarihi" msgid "Last Upload" msgstr "Son yükleme" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "Süresi doldu" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "Sona Erme Tarihi" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" -msgstr "Geçerli" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" +msgstr "" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "Son başarılı: %s" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "Son başarısız: %s" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "Senkronize Edilmedi" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" "Bu alanı kullanmak için bazı LoTW p12 sertifikaları yüklemeniz gerekiyor." -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "" "LoTW ile bir sonraki otomatik senkronizasyon şu zamanda gerçekleşecek: " @@ -12217,7 +12259,7 @@ msgstr "Bilmemiz gereken ek bir bilgi var mı?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -12265,7 +12307,7 @@ msgstr "İstasyon" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12822,20 +12864,12 @@ msgstr "Bluesky'de paylaş" msgid "Toot on Mastodon" msgstr "Mastodon'da Toot Et" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "Fonksiyon %d - Adı" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "Fonksiyon %d - Makro" @@ -12860,11 +12894,11 @@ msgstr "RX Frekansı" msgid "RX Band" msgstr "RX Bandı" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "Gücü Watt olarak veriniz. Sadece rakamları giriniz." -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12874,25 +12908,25 @@ msgstr "Yayın Gücü (W)" msgid "Used for VUCC MultiGrids" msgstr "VUCC Çoklu Grid'ler için kullanılır" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "Anten Yönü" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "Gri Çizgi (Greyline)" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "Diğer" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "Kısa Yol (Short Path)" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "Uzun Yol (Long Path)" @@ -12905,38 +12939,38 @@ msgstr "Uydu Adı" msgid "Sat Mode" msgstr "Uydu Modu" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "Anten Yönü (Azimut)(°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "Ondalık derece cinsinden anten azimutu." -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "Anten Yüksekliği (°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "Ondalık derece cinsinden anten yüksekliği." -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "İstasyon İdari Bölgesi" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "SIG (Special Interest Group) Bilgisi" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "Not: Üçüncü taraf hizmetlere aktarılır." @@ -12945,8 +12979,8 @@ msgid "Sent Method" msgstr "Gönderim Yöntemi" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "Metod" @@ -12967,7 +13001,7 @@ msgstr "Doğrulandı (Eşleşme)" msgid "Received Method" msgstr "Alınma Yöntemi" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "Bu istasyon için eQSL varsayılan mesajını al." @@ -13011,13 +13045,13 @@ msgstr "Değişiklikleri kaydet" msgid "TimeOff is less than TimeOn" msgstr "Bitiş Zamanı, Başlangıç Zamanından önce" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "Önceki Görüşmeler" #: application/views/qso/index.php:31 msgid "times worked before" -msgstr "kez daha önce çalışıldı" +msgstr "defa bu istasyon ile çalıştınız" #: application/views/qso/index.php:32 msgid "Not worked before" @@ -13078,7 +13112,7 @@ msgstr "Bitiş Zamanı" msgid "Search DXCluster for latest Spot" msgstr "DXCluster'da son Spot'u ara" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -13086,7 +13120,7 @@ msgstr "DXCluster'da son Spot'u ara" msgid "IOTA Reference" msgstr "IOTA Referansı" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -13094,91 +13128,95 @@ msgstr "IOTA Referansı" msgid "SOTA Reference" msgstr "SOTA Referansı" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "Frekans (RX)" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "Bant (RX)" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "Örnek: GM/NS-001." -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "Örnek: DLFF-0069." -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "Örnek: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "Örnek: GMA" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "Örnek: DA/NW-357" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "Örnek: Q03" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "Karşı Operatörün e-posta adresi" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "Uydu Adı" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "Uydu Modu" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "QSL Mesajı" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "Varsayılana Sıfırla" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "Bağlan" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "Durdur" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "Tune" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "Tune Yapmayı Durdur" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "CW Hızı" -#: application/views/qso/index.php:769 +#: application/views/qso/index.php:778 +msgid "Stop" +msgstr "Durdur" + +#: application/views/qso/index.php:779 +msgid "Tune" +msgstr "Tune" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "Tune Yapmayı Durdur" + +#: application/views/qso/index.php:785 +msgid "Enter text..." +msgstr "" + +#: application/views/qso/index.php:786 msgid "Send" msgstr "Gönder" -#: application/views/qso/index.php:779 +#: application/views/qso/index.php:798 msgid "Suggestions" msgstr "Öneriler" -#: application/views/qso/index.php:786 +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "Profil Resmi" @@ -14570,6 +14608,7 @@ msgid "Special Interest Group Information" msgstr "Özel İlgi Grubu Bilgisi" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Sorun mu var? %sviki%s sayfasını kontrol edin." @@ -15674,10 +15713,6 @@ msgstr "Mastodon sunucusunun URL'si" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "Mastodon sunucunuzun ana URL'si, örneğin %s" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "Deneysel" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "Winkeyer" @@ -16408,6 +16443,28 @@ msgstr "Talep Gönder" msgid "Rcvd" msgstr "Alındı" +#, php-format +#~ msgctxt "LoTW Warning" +#~ msgid "At least one of your %sLoTW certificates%s is expired!" +#~ msgstr "%sLoTW sertifikanızın%s süresi dolmuş!" + +#, php-format +#~ msgctxt "LoTW Warning" +#~ msgid "At least one of your %sLoTW certificates%s is about to expire!" +#~ msgstr "%sLoTW sertifikanızın%s süresi dolmak üzere!" + +#~ msgid "Expired" +#~ msgstr "Süresi doldu" + +#~ msgid "Expiring" +#~ msgstr "Sona Erme Tarihi" + +#~ msgid "Valid" +#~ msgstr "Geçerli" + +#~ msgid "Experimental" +#~ msgstr "Deneysel" + #, php-format #~ msgctxt "Dashboard Warning" #~ msgid "" diff --git a/application/locale/zh_CN/LC_MESSAGES/messages.mo b/application/locale/zh_CN/LC_MESSAGES/messages.mo index 7d85fe611..ac969259e 100644 Binary files a/application/locale/zh_CN/LC_MESSAGES/messages.mo and b/application/locale/zh_CN/LC_MESSAGES/messages.mo differ diff --git a/application/locale/zh_CN/LC_MESSAGES/messages.po b/application/locale/zh_CN/LC_MESSAGES/messages.po index 3ef132903..cc8d32782 100644 --- a/application/locale/zh_CN/LC_MESSAGES/messages.po +++ b/application/locale/zh_CN/LC_MESSAGES/messages.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-10-14 17:46+0000\n" +"POT-Creation-Date: 2025-10-26 04:29+0000\n" "PO-Revision-Date: 2025-09-30 06:37+0000\n" "Last-Translator: YuanRetro \n" "Language-Team: Chinese (Simplified Han script) 1.1.10)" +msgstr "" + +#: application/views/bandmap/list.php:77 msgid "DXCC-Status" msgstr "DXCC 状态" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 #: application/views/interface_assets/footer.php:45 msgid "Not worked" msgstr "未通联" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Worked, not Confirmed" msgstr "通联过,但未获得确认" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Phone" msgstr "Phone" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "CW" msgstr "CW" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 msgid "Digi" msgstr "Digi" -#: application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:132 msgid "WAC" msgstr "WAC" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "Spotter" msgstr "Spotter" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -6698,7 +6715,7 @@ msgstr "Spotter" msgid "Message" msgstr "消息" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 msgid "Last Worked" msgstr "最近通联" @@ -7104,7 +7121,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:607 #: application/views/qso/edit_ajax.php:619 #: application/views/qso/edit_ajax.php:633 -#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:656 +#: application/views/qso/edit_ajax.php:645 application/views/qso/index.php:657 #: application/views/satellite/create.php:75 #: application/views/satellite/edit.php:31 #: application/views/satellite/edit.php:34 @@ -7167,7 +7184,7 @@ msgstr "是" #: application/views/qso/edit_ajax.php:606 #: application/views/qso/edit_ajax.php:618 #: application/views/qso/edit_ajax.php:632 -#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:655 +#: application/views/qso/edit_ajax.php:644 application/views/qso/index.php:656 #: application/views/satellite/create.php:76 #: application/views/satellite/edit.php:32 #: application/views/satellite/edit.php:35 @@ -7213,7 +7230,7 @@ msgid "No contests were found in your log." msgstr "在日志中未发现任何竞赛。" #: application/views/callstats/index.php:70 -#: application/views/gridmap/index.php:43 +#: application/views/gridmap/index.php:46 msgid "All except SAT" msgstr "除卫星以外" @@ -7556,7 +7573,7 @@ msgid "No upcoming activations found. Please check back later." msgstr "未找到即将进行的激活。 请稍后再回来查看。" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:233 +#: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 #: application/views/logbookadvanced/index.php:420 @@ -7621,10 +7638,10 @@ msgid "Show Details" msgstr "显示详情" #: application/views/contestcalendar/index.php:45 -#: application/views/dashboard/index.php:357 -#: application/views/dashboard/index.php:384 -#: application/views/dashboard/index.php:405 -#: application/views/dashboard/index.php:426 +#: application/views/dashboard/index.php:362 +#: application/views/dashboard/index.php:389 +#: application/views/dashboard/index.php:410 +#: application/views/dashboard/index.php:431 msgid "Today" msgstr "今天" @@ -7777,7 +7794,7 @@ msgstr "序号 + 网格 + 交换信息" #: application/views/contesting/index.php:45 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:391 +#: application/views/qso/edit_ajax.php:677 application/views/qso/index.php:392 msgid "Operator Callsign" msgstr "操作员呼号" @@ -7854,54 +7871,54 @@ msgctxt "Keep the translation short!" msgid "Serial" msgstr "序号" -#: application/views/contesting/index.php:186 -#: application/views/contesting/index.php:269 +#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:702 msgid "Serial (S)" msgstr "序列编号 (S)" -#: application/views/contesting/index.php:191 +#: application/views/contesting/index.php:192 msgid "Gridsquare (S)" msgstr "网格座标 (S)" -#: application/views/contesting/index.php:196 -#: application/views/contesting/index.php:267 +#: application/views/contesting/index.php:197 +#: application/views/contesting/index.php:268 msgid "Exch (S)" msgstr "信号交换(发)" -#: application/views/contesting/index.php:210 -#: application/views/contesting/index.php:270 +#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:697 msgid "Serial (R)" msgstr "序列编号 (R)" -#: application/views/contesting/index.php:215 +#: application/views/contesting/index.php:216 msgid "Gridsquare (R)" msgstr "网格座标 (R)" -#: application/views/contesting/index.php:220 -#: application/views/contesting/index.php:268 +#: application/views/contesting/index.php:221 +#: application/views/contesting/index.php:269 msgid "Exch (R)" msgstr "信号交换(收)" -#: application/views/contesting/index.php:238 +#: application/views/contesting/index.php:239 msgid "Reset QSO" msgstr "重置 QSO" -#: application/views/contesting/index.php:239 -#: application/views/qso/index.php:707 +#: application/views/contesting/index.php:240 +#: application/views/qso/index.php:708 msgid "Save QSO" msgstr "保存 QSO" -#: application/views/contesting/index.php:248 +#: application/views/contesting/index.php:249 msgid "Callsign Suggestions" msgstr "呼号建议" -#: application/views/contesting/index.php:255 +#: application/views/contesting/index.php:256 msgid "Contest Logbook" msgstr "比赛日志簿" -#: application/views/contesting/index.php:272 +#: application/views/contesting/index.php:273 #: application/views/qso/edit_ajax.php:165 msgid "VUCC Gridsquare" msgstr "VUCC 网格" @@ -8064,7 +8081,7 @@ msgstr "只有具有 SOTA 信息的 QSO 才会被导出!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:474 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:475 msgid "Propagation Mode" msgstr "传播模式" @@ -8148,44 +8165,57 @@ msgid "" "themes." msgstr "您的主题没有定义主题模式。请向管理员请求编辑主题。" -#: application/views/dashboard/index.php:209 +#: application/views/dashboard/index.php:213 #, php-format msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is expired!" -msgstr "你的 %s LoTW 证书 %s 至少过期了一个!" +msgid "" +"LoTW Warning: There is an issue with at least one of your %sLoTW " +"certificates%s!" +msgstr "" -#: application/views/dashboard/index.php:214 -#, php-format -msgctxt "LoTW Warning" -msgid "At least one of your %sLoTW certificates%s is about to expire!" -msgstr "你的 %s LoTW 证书 %s 至少有一个快过期了!" +#: application/views/dashboard/index.php:216 +msgid "At least one of your certificates is expired" +msgstr "" -#: application/views/dashboard/index.php:292 -#: application/views/qso/index.php:810 +#: application/views/dashboard/index.php:217 +msgid "At least one of your certificates is expiring" +msgstr "" + +#: application/views/dashboard/index.php:218 +msgid "The QSO end date of at least one of your certificates was exceeded" +msgstr "" + +#: application/views/dashboard/index.php:219 +msgid "" +"The QSO end date of at least one of your certificates is about to be exceeded" +msgstr "" + +#: application/views/dashboard/index.php:297 +#: application/views/qso/index.php:829 #, php-format msgid "Max. %d previous contact is shown" msgid_plural "Max. %d previous contacts are shown" msgstr[0] "已显示最多 %d 个先前通联" -#: application/views/dashboard/index.php:308 +#: application/views/dashboard/index.php:313 #: application/views/visitor/index.php:241 msgid "QSOs Breakdown" msgstr "QSO 分析" -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:336 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" msgstr "DXCC 分析" -#: application/views/dashboard/index.php:348 +#: application/views/dashboard/index.php:353 #: application/views/visitor/index.php:279 msgid "Needed" msgstr "待通联" -#: application/views/dashboard/index.php:361 -#: application/views/dashboard/index.php:388 -#: application/views/dashboard/index.php:409 -#: application/views/dashboard/index.php:430 +#: application/views/dashboard/index.php:366 +#: application/views/dashboard/index.php:393 +#: application/views/dashboard/index.php:414 +#: application/views/dashboard/index.php:435 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 #: application/views/qslprint/qsolist.php:62 @@ -8196,7 +8226,7 @@ msgstr "待通联" #: application/views/qso/edit_ajax.php:546 #: application/views/qso/edit_ajax.php:575 #: application/views/qso/edit_ajax.php:603 -#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:652 +#: application/views/qso/edit_ajax.php:629 application/views/qso/index.php:653 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:301 @@ -8219,10 +8249,10 @@ msgstr "待通联" msgid "Sent" msgstr "已发送" -#: application/views/dashboard/index.php:367 -#: application/views/dashboard/index.php:394 -#: application/views/dashboard/index.php:415 -#: application/views/dashboard/index.php:436 +#: application/views/dashboard/index.php:372 +#: application/views/dashboard/index.php:399 +#: application/views/dashboard/index.php:420 +#: application/views/dashboard/index.php:441 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:104 @@ -8255,7 +8285,7 @@ msgstr "已发送" msgid "Received" msgstr "已收到" -#: application/views/dashboard/index.php:373 +#: application/views/dashboard/index.php:378 #: application/views/logbookadvanced/edit.php:168 #: application/views/logbookadvanced/edit.php:175 #: application/views/logbookadvanced/edit.php:201 @@ -8281,7 +8311,7 @@ msgstr "已收到" #: application/views/qso/edit_ajax.php:608 #: application/views/qso/edit_ajax.php:620 #: application/views/qso/edit_ajax.php:634 -#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:657 +#: application/views/qso/edit_ajax.php:646 application/views/qso/index.php:658 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/view_log/partial/log_ajax.php:288 @@ -8295,25 +8325,25 @@ msgstr "已收到" msgid "Requested" msgstr "已(被)请求" -#: application/views/dashboard/index.php:383 +#: application/views/dashboard/index.php:388 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "Logbook of the World(LoTW)" -#: application/views/dashboard/index.php:446 +#: application/views/dashboard/index.php:451 msgid "VUCC-Grids" msgstr "VUCC 网格" -#: application/views/dashboard/index.php:471 +#: application/views/dashboard/index.php:476 msgid "Solar Data & Propagation" msgstr "太阳与传播数据" -#: application/views/dashboard/index.php:473 +#: application/views/dashboard/index.php:478 #, php-format msgid "Last update at %s." msgstr "上次更新时间:%s。" -#: application/views/dashboard/index.php:482 +#: application/views/dashboard/index.php:487 msgid "Data provided by HAMqsl." msgstr "数据由 HAMqsl 提供。" @@ -8481,12 +8511,12 @@ msgid "The next automatic sync with DCL will happen at: " msgstr "下一次与 DCL 的自动同步将在: " #: application/views/dcl_views/index.php:82 -#: application/views/lotw_views/index.php:143 +#: application/views/lotw_views/index.php:160 msgid "Manual Sync" msgstr "手动同步" #: application/views/dcl_views/index.php:84 -#: application/views/lotw_views/index.php:145 +#: application/views/lotw_views/index.php:162 msgid "running..." msgstr "运行中……" @@ -8835,6 +8865,7 @@ msgstr "DXCC 更新(ClubLog)" #: application/views/debug/index.php:545 application/views/debug/index.php:550 #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/debug/index.php:565 application/views/debug/index.php:570 +#: application/views/debug/index.php:575 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "更新" @@ -8875,151 +8906,155 @@ msgstr "更新 Hams of Note" msgid "HAMqsl" msgstr "HAMqsl" -#: application/views/debug/index.php:577 +#: application/views/debug/index.php:573 +msgid "VUCC Grids" +msgstr "" + +#: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" msgstr "QSO-DB 维护" -#: application/views/debug/index.php:581 +#: application/views/debug/index.php:586 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" "The Database contains %d QSOs without a station-profile (location)" msgstr[0] "数据库中共有%d个没有台站信息(位置)的 QSO" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:624 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "请标记 QSO 并将其重新分配到现有的电台位置:" -#: application/views/debug/index.php:627 +#: application/views/debug/index.php:632 msgctxt "Stationlocation" msgid "Target Location" msgstr "目标位置" -#: application/views/debug/index.php:628 application/views/debug/index.php:639 +#: application/views/debug/index.php:633 application/views/debug/index.php:644 msgid "Reassign" msgstr "重新分配" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "数据库中的所有 QSO 都有台站相关联" -#: application/views/debug/index.php:648 +#: application/views/debug/index.php:653 msgid "Everything ok" msgstr "一切正常" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:678 msgid "Albanian" msgstr "阿尔巴尼亚语" -#: application/views/debug/index.php:674 +#: application/views/debug/index.php:679 msgid "Armenian" msgstr "亚美尼亚语" -#: application/views/debug/index.php:675 +#: application/views/debug/index.php:680 msgid "Bosnian" msgstr "波斯尼亚语" -#: application/views/debug/index.php:676 +#: application/views/debug/index.php:681 msgid "Bulgarian" msgstr "保加利亚语" -#: application/views/debug/index.php:677 +#: application/views/debug/index.php:682 msgid "Chinese (Simplified)" msgstr "简体中文" -#: application/views/debug/index.php:678 +#: application/views/debug/index.php:683 msgid "Croatian" msgstr "克罗地亚语" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:684 msgid "Czech" msgstr "捷克语" -#: application/views/debug/index.php:680 +#: application/views/debug/index.php:685 msgid "Dutch" msgstr "荷兰语" -#: application/views/debug/index.php:681 +#: application/views/debug/index.php:686 msgid "English" msgstr "英语" -#: application/views/debug/index.php:682 +#: application/views/debug/index.php:687 msgid "Estonian" msgstr "爱沙尼亚语" -#: application/views/debug/index.php:683 +#: application/views/debug/index.php:688 msgid "Finnish" msgstr "芬兰语" -#: application/views/debug/index.php:684 +#: application/views/debug/index.php:689 msgid "French" msgstr "法语" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:690 msgid "German" msgstr "德语" -#: application/views/debug/index.php:686 +#: application/views/debug/index.php:691 msgid "Greek" msgstr "希腊语" -#: application/views/debug/index.php:687 +#: application/views/debug/index.php:692 msgid "Hungarian" msgstr "匈牙利语" -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:693 msgid "Italian" msgstr "意大利语" -#: application/views/debug/index.php:689 +#: application/views/debug/index.php:694 msgid "Japanese" msgstr "日语" -#: application/views/debug/index.php:690 +#: application/views/debug/index.php:695 msgid "Latvian" msgstr "拉脱维亚语" -#: application/views/debug/index.php:691 +#: application/views/debug/index.php:696 msgid "Lithuanian" msgstr "立陶宛语" -#: application/views/debug/index.php:692 +#: application/views/debug/index.php:697 msgid "Montenegrin" msgstr "黑山语" -#: application/views/debug/index.php:693 +#: application/views/debug/index.php:698 msgid "Polish" msgstr "波兰语" -#: application/views/debug/index.php:694 +#: application/views/debug/index.php:699 msgid "Portuguese" msgstr "葡萄牙语" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:700 msgid "Russian" msgstr "俄语" -#: application/views/debug/index.php:696 +#: application/views/debug/index.php:701 msgid "Serbian" msgstr "塞尔维亚语" -#: application/views/debug/index.php:697 +#: application/views/debug/index.php:702 msgid "Slovak" msgstr "斯洛伐克语" -#: application/views/debug/index.php:698 +#: application/views/debug/index.php:703 msgid "Slovenian" msgstr "斯洛文尼亚语" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:704 msgid "Spanish" msgstr "西班牙语" -#: application/views/debug/index.php:700 +#: application/views/debug/index.php:705 msgid "Swedish" msgstr "瑞典语" -#: application/views/debug/index.php:701 +#: application/views/debug/index.php:706 msgid "Turkish" msgstr "土耳其语" @@ -9457,10 +9492,10 @@ msgid "QSL Date" msgstr "QSL 日期" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2803 -#: application/views/interface_assets/footer.php:2821 -#: application/views/interface_assets/footer.php:2842 -#: application/views/interface_assets/footer.php:2860 +#: application/views/interface_assets/footer.php:2901 +#: application/views/interface_assets/footer.php:2919 +#: application/views/interface_assets/footer.php:2940 +#: application/views/interface_assets/footer.php:2958 #: application/views/qslcard/index.php:77 #: application/views/view_log/qso.php:773 msgid "View" @@ -9560,7 +9595,7 @@ msgid "Worked not confirmed" msgstr "已通联未确认" #: application/views/interface_assets/footer.php:50 -#: application/views/qso/index.php:701 +#: application/views/qso/index.php:702 msgid "Clear" msgstr "清除" @@ -9755,62 +9790,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "网格" -#: application/views/interface_assets/footer.php:1405 +#: application/views/interface_assets/footer.php:1547 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "请前往 %s这里%s 登录" -#: application/views/interface_assets/footer.php:1619 -#: application/views/interface_assets/footer.php:1623 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1763 -#: application/views/interface_assets/footer.php:1767 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1717 +#: application/views/interface_assets/footer.php:1721 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1861 +#: application/views/interface_assets/footer.php:1865 +#: application/views/interface_assets/footer.php:1868 msgid "grid square" msgstr "网格" -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1770 +#: application/views/interface_assets/footer.php:1724 +#: application/views/interface_assets/footer.php:1868 msgid "Total count" msgstr "总数" -#: application/views/interface_assets/footer.php:2545 +#: application/views/interface_assets/footer.php:2643 msgid "QSL Card for " msgstr "QSL 卡片至 " -#: application/views/interface_assets/footer.php:2565 +#: application/views/interface_assets/footer.php:2663 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "警告!确定要删除这个 QSL 卡片吗?" -#: application/views/interface_assets/footer.php:2605 +#: application/views/interface_assets/footer.php:2703 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "电子 QSL 卡片" -#: application/views/interface_assets/footer.php:2607 +#: application/views/interface_assets/footer.php:2705 msgid "eQSL Card for " msgstr "eQSL 卡片至 " -#: application/views/interface_assets/footer.php:2814 -#: application/views/interface_assets/footer.php:2853 +#: application/views/interface_assets/footer.php:2912 +#: application/views/interface_assets/footer.php:2951 #: application/views/view_log/qso.php:763 msgid "QSL image file" msgstr "QSL 图片文件" -#: application/views/interface_assets/footer.php:2833 +#: application/views/interface_assets/footer.php:2931 msgid "Front QSL Card:" msgstr "QSL 卡片正面:" -#: application/views/interface_assets/footer.php:2871 +#: application/views/interface_assets/footer.php:2969 msgid "Back QSL Card:" msgstr "QSL 卡片背面:" -#: application/views/interface_assets/footer.php:2882 -#: application/views/interface_assets/footer.php:2907 +#: application/views/interface_assets/footer.php:2980 +#: application/views/interface_assets/footer.php:3005 msgid "Add additional QSOs to a QSL Card" msgstr "向一张卡片添加额外的 QSO" -#: application/views/interface_assets/footer.php:2918 +#: application/views/interface_assets/footer.php:3016 msgid "Something went wrong. Please try again!" msgstr "出现了错误,请重试!" @@ -10404,7 +10439,7 @@ msgstr "台站功率" #: application/views/logbookadvanced/edit.php:31 #: application/views/logbookadvanced/index.php:848 #: application/views/logbookadvanced/useroptions.php:146 -#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 +#: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:435 #: application/views/view_log/qso.php:475 msgid "Region" msgstr "区" @@ -10524,7 +10559,7 @@ msgstr "已验证" #: application/views/qslprint/qsolist.php:126 #: application/views/qslprint/qsolist.php:215 #: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:669 +#: application/views/qso/edit_ajax.php:490 application/views/qso/index.php:670 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 @@ -10545,7 +10580,7 @@ msgstr "直邮" #: application/views/qslprint/qsolist.php:123 #: application/views/qslprint/qsolist.php:214 #: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:670 +#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:671 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 @@ -10564,7 +10599,7 @@ msgstr "卡片局" #: application/views/qslprint/qsolist.php:132 #: application/views/qslprint/qsolist.php:216 #: application/views/qso/edit_ajax.php:459 -#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:671 +#: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:672 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 @@ -10579,49 +10614,49 @@ msgstr "电子" #: application/views/oqrs/qsolist.php:118 #: application/views/qslprint/qsolist.php:129 #: application/views/qso/edit_ajax.php:460 -#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:672 +#: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:673 #: application/views/search/search_result_ajax.php:250 #: application/views/view_log/partial/log_ajax.php:348 msgid "Manager" msgstr "管理员" #: application/views/logbookadvanced/edit.php:227 -#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 +#: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:438 msgid "NONE" msgstr "无" #: application/views/logbookadvanced/edit.php:228 -#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 +#: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:439 msgid "African Italy" msgstr "非洲意大利" #: application/views/logbookadvanced/edit.php:229 -#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 +#: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:440 msgid "Bear Island" msgstr "熊岛" #: application/views/logbookadvanced/edit.php:230 -#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 +#: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:441 msgid "European Turkey" msgstr "欧洲土耳其" #: application/views/logbookadvanced/edit.php:231 -#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 +#: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:442 msgid "ITU Vienna" msgstr "国际电信联盟维也纳办事处" #: application/views/logbookadvanced/edit.php:232 -#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 +#: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:443 msgid "Kosovo" msgstr "科索沃" #: application/views/logbookadvanced/edit.php:233 -#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 +#: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:444 msgid "Shetland Islands" msgstr "设得兰群岛" #: application/views/logbookadvanced/edit.php:234 -#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 +#: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:445 msgid "Sicily" msgstr "西西里岛" @@ -10789,7 +10824,7 @@ msgstr "QSL 已发送" #: application/views/qso/edit_ajax.php:552 #: application/views/qso/edit_ajax.php:581 #: application/views/qso/edit_ajax.php:609 -#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:658 +#: application/views/qso/edit_ajax.php:635 application/views/qso/index.php:659 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 #: application/views/view_log/partial/log_ajax.php:285 @@ -10826,7 +10861,7 @@ msgstr "已排队" #: application/views/qso/edit_ajax.php:610 #: application/views/qso/edit_ajax.php:621 #: application/views/qso/edit_ajax.php:636 -#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:659 +#: application/views/qso/edit_ajax.php:647 application/views/qso/index.php:660 #: application/views/search/search_result_ajax.php:192 #: application/views/search/search_result_ajax.php:234 #: application/views/search/search_result_ajax.php:308 @@ -11267,37 +11302,41 @@ msgstr "过期日期" msgid "Last Upload" msgstr "最后一次上传是" -#: application/views/lotw_views/index.php:84 -msgid "Expired" -msgstr "过期" - -#: application/views/lotw_views/index.php:86 -msgid "Expiring" -msgstr "即将到期" - -#: application/views/lotw_views/index.php:88 -msgid "Valid" -msgstr "有效" +#: application/views/lotw_views/index.php:96 +msgid "Certificate expired" +msgstr "" #: application/views/lotw_views/index.php:98 +msgid "Certificate expiring" +msgstr "" + +#: application/views/lotw_views/index.php:100 +msgid "Certificate valid" +msgstr "" + +#: application/views/lotw_views/index.php:105 +msgid "QSO end date nearing" +msgstr "" + +#: application/views/lotw_views/index.php:115 #, php-format msgid "Last success: %s" msgstr "上次成功:%s" -#: application/views/lotw_views/index.php:101 +#: application/views/lotw_views/index.php:118 #, php-format msgid "Last fail: %s" msgstr "上次失败:%s" -#: application/views/lotw_views/index.php:107 +#: application/views/lotw_views/index.php:124 msgid "Not Synced" msgstr "未同步" -#: application/views/lotw_views/index.php:122 +#: application/views/lotw_views/index.php:139 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "你需要上传 LoTW p12 证书以使用该功能。" -#: application/views/lotw_views/index.php:141 +#: application/views/lotw_views/index.php:158 msgid "The next automatic sync with LoTW will happen at: " msgstr "LoTW 下次自动同步时间: " @@ -11840,7 +11879,7 @@ msgstr "有额外的信息需要记录吗?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:63 #: application/views/oqrs/showrequests.php:92 -#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:600 +#: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:601 #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" @@ -11888,7 +11927,7 @@ msgstr "电台站" #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:87 -#: application/views/qso/index.php:678 +#: application/views/qso/index.php:679 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 #: src/QSLManager/QSO.php:435 @@ -12429,20 +12468,12 @@ msgstr "分享到 Bluesky" msgid "Toot on Mastodon" msgstr "Toot on Mastodon" -#: application/views/qso/components/winkeysettings.php:3 -#: application/views/qso/components/winkeysettings.php:19 -#: application/views/qso/components/winkeysettings.php:35 -#: application/views/qso/components/winkeysettings.php:51 -#: application/views/qso/components/winkeysettings.php:67 +#: application/views/qso/components/winkeysettings.php:5 #, php-format msgid "Function %d - Name" msgstr "Function %d - Name" -#: application/views/qso/components/winkeysettings.php:10 -#: application/views/qso/components/winkeysettings.php:26 -#: application/views/qso/components/winkeysettings.php:42 -#: application/views/qso/components/winkeysettings.php:58 -#: application/views/qso/components/winkeysettings.php:74 +#: application/views/qso/components/winkeysettings.php:21 #, php-format msgid "Function %d - Macro" msgstr "Function %d - Macro" @@ -12467,11 +12498,11 @@ msgstr "接收频率" msgid "RX Band" msgstr "接收频段" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:387 msgid "Give power value in Watts. Include only numbers in the input." msgstr "以 W 为单位的功率(只需要填写数值)。" -#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:385 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:701 msgid "Transmit Power (W)" @@ -12481,25 +12512,25 @@ msgstr "发射功率 (W)" msgid "Used for VUCC MultiGrids" msgstr "被 VUCC 网格计算使用" -#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 +#: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:499 msgid "Antenna Path" msgstr "天线波束路径" -#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 +#: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:502 #: application/views/view_log/qso.php:162 msgid "Greyline" msgstr "晨昏线" -#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 +#: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:503 msgid "Other" msgstr "其它" -#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 +#: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:504 #: application/views/view_log/qso.php:153 msgid "Short Path" msgstr "短路径" -#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 +#: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:505 #: application/views/view_log/qso.php:156 msgid "Long Path" msgstr "长路径" @@ -12512,38 +12543,38 @@ msgstr "卫星名称" msgid "Sat Mode" msgstr "卫星模式" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:628 msgid "Antenna Azimuth (°)" msgstr "天线方位角(°)" -#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 +#: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:630 msgid "Antenna azimuth in decimal degrees." msgstr "天线方位角(以十进制度为单位)。" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:634 msgid "Antenna Elevation (°)" msgstr "天线仰角(°)" -#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:636 msgid "Antenna elevation in decimal degrees." msgstr "天线仰角(以十进制度为单位)。" -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 +#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:519 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" msgstr "台站县区" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 -#: application/views/qso/index.php:585 application/views/user/edit.php:678 +#: application/views/qso/index.php:586 application/views/user/edit.php:678 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:741 msgid "SIG Info" msgstr "SIG 信息" #: application/views/qso/edit_ajax.php:411 -#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:644 -#: application/views/qso/index.php:688 +#: application/views/qso/edit_ajax.php:530 application/views/qso/index.php:645 +#: application/views/qso/index.php:689 msgid "Note: Gets exported to third-party services." msgstr "注意:将导出到第三方服务提供方。" @@ -12552,8 +12583,8 @@ msgid "Sent Method" msgstr "发送方式" #: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:665 -#: application/views/qso/index.php:668 +#: application/views/qso/edit_ajax.php:489 application/views/qso/index.php:666 +#: application/views/qso/index.php:669 msgid "Method" msgstr "方式" @@ -12574,7 +12605,7 @@ msgstr "已确认" msgid "Received Method" msgstr "接收方式" -#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:685 +#: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:686 msgid "Get the default message for eQSL, for this station." msgstr "获取该站的 eQSL 默认消息。" @@ -12618,7 +12649,7 @@ msgstr "保存" msgid "TimeOff is less than TimeOn" msgstr "结束时间小于开始时间" -#: application/views/qso/index.php:30 application/views/qso/index.php:796 +#: application/views/qso/index.php:30 application/views/qso/index.php:815 msgid "Previous Contacts" msgstr "先前通联" @@ -12685,7 +12716,7 @@ msgstr "关闭时间" msgid "Search DXCluster for latest Spot" msgstr "在 DXCluster 搜索最新 Spot" -#: application/views/qso/index.php:234 application/views/qso/index.php:524 +#: application/views/qso/index.php:234 application/views/qso/index.php:525 #: application/views/station_profile/create.php:153 #: application/views/station_profile/edit.php:222 #: application/views/user/edit.php:662 application/views/view_log/qso.php:382 @@ -12693,7 +12724,7 @@ msgstr "在 DXCluster 搜索最新 Spot" msgid "IOTA Reference" msgstr "IOTA 编号" -#: application/views/qso/index.php:250 application/views/qso/index.php:541 +#: application/views/qso/index.php:250 application/views/qso/index.php:542 #: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:250 #: application/views/user/edit.php:666 application/views/view_log/qso.php:389 @@ -12701,91 +12732,95 @@ msgstr "IOTA 编号" msgid "SOTA Reference" msgstr "SOTA 编号" -#: application/views/qso/index.php:360 application/views/view_log/qso.php:101 +#: application/views/qso/index.php:361 application/views/view_log/qso.php:101 msgid "Frequency (RX)" msgstr "频率(接收)" -#: application/views/qso/index.php:365 +#: application/views/qso/index.php:366 msgid "Band (RX)" msgstr "频段(接收)" -#: application/views/qso/index.php:543 +#: application/views/qso/index.php:544 msgid "For example: GM/NS-001." msgstr "例如: GM/NS-001." -#: application/views/qso/index.php:556 +#: application/views/qso/index.php:557 msgid "For example: DLFF-0069." msgstr "例如: DLFF-0069." -#: application/views/qso/index.php:569 +#: application/views/qso/index.php:570 msgid "For example: PA-0150. Multiple values allowed." msgstr "例如: PA-0150. 可使用多个值。" -#: application/views/qso/index.php:581 +#: application/views/qso/index.php:582 msgid "For example: GMA" msgstr "例如: GMA" -#: application/views/qso/index.php:587 +#: application/views/qso/index.php:588 msgid "For example: DA/NW-357" msgstr "例如: DA/NW-357" -#: application/views/qso/index.php:595 +#: application/views/qso/index.php:596 msgid "For example: Q03" msgstr "例如: Q03" -#: application/views/qso/index.php:602 +#: application/views/qso/index.php:603 msgid "E-mail address of QSO-partner" msgstr "对方 QSO 的电子邮件地址" -#: application/views/qso/index.php:611 application/views/view_log/qso.php:296 +#: application/views/qso/index.php:612 application/views/view_log/qso.php:296 msgid "Satellite Name" msgstr "卫星名称" -#: application/views/qso/index.php:619 application/views/view_log/qso.php:310 +#: application/views/qso/index.php:620 application/views/view_log/qso.php:310 msgid "Satellite Mode" msgstr "卫星模式" -#: application/views/qso/index.php:685 +#: application/views/qso/index.php:686 msgid "QSL MSG" msgstr "QSL 确认信息" -#: application/views/qso/index.php:704 +#: application/views/qso/index.php:705 msgid "Reset to Default" msgstr "重置为默认" -#: application/views/qso/index.php:745 +#: application/views/qso/index.php:746 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:747 +#: application/views/qso/index.php:748 msgid "Connect" msgstr "连接" -#: application/views/qso/index.php:756 -msgid "Stop" -msgstr "停止" - -#: application/views/qso/index.php:757 -msgid "Tune" -msgstr "调谐" - -#: application/views/qso/index.php:758 -msgid "Stop Tune" -msgstr "停止调谐" - -#: application/views/qso/index.php:764 +#: application/views/qso/index.php:776 msgid "CW Speed" msgstr "CW 速度" -#: application/views/qso/index.php:769 +#: application/views/qso/index.php:778 +msgid "Stop" +msgstr "停止" + +#: application/views/qso/index.php:779 +msgid "Tune" +msgstr "调谐" + +#: application/views/qso/index.php:780 +msgid "Stop Tune" +msgstr "停止调谐" + +#: application/views/qso/index.php:785 +msgid "Enter text..." +msgstr "" + +#: application/views/qso/index.php:786 msgid "Send" msgstr "发射" -#: application/views/qso/index.php:779 +#: application/views/qso/index.php:798 msgid "Suggestions" msgstr "建议" -#: application/views/qso/index.php:786 +#: application/views/qso/index.php:805 msgid "Profile Picture" msgstr "操作员照片" @@ -14119,6 +14154,7 @@ msgid "Special Interest Group Information" msgstr "电台兴趣组信息" #: application/views/station_profile/edit.php:309 +#: application/views/user/edit.php:876 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "遇到麻烦了?请参考%s维基%s。" @@ -15153,10 +15189,6 @@ msgstr "Mastodon 地址" msgid "Main URL of your Mastodon server, e.g. %s" msgstr "您的 Mastodon 服务器地址,例如 %s" -#: application/views/user/edit.php:1046 -msgid "Experimental" -msgstr "实验性功能" - #: application/views/user/edit.php:1046 msgid "Winkeyer" msgstr "Winkeyer" @@ -15852,6 +15884,28 @@ msgstr "提交请求" msgid "Rcvd" msgstr "收" +#, php-format +#~ msgctxt "LoTW Warning" +#~ msgid "At least one of your %sLoTW certificates%s is expired!" +#~ msgstr "你的 %s LoTW 证书 %s 至少过期了一个!" + +#, php-format +#~ msgctxt "LoTW Warning" +#~ msgid "At least one of your %sLoTW certificates%s is about to expire!" +#~ msgstr "你的 %s LoTW 证书 %s 至少有一个快过期了!" + +#~ msgid "Expired" +#~ msgstr "过期" + +#~ msgid "Expiring" +#~ msgstr "即将到期" + +#~ msgid "Valid" +#~ msgstr "有效" + +#~ msgid "Experimental" +#~ msgstr "实验性功能" + #, php-format #~ msgctxt "Dashboard Warning" #~ msgid "" diff --git a/application/migrations/261_add_grid_country.php b/application/migrations/261_add_grid_country.php new file mode 100644 index 000000000..2326d3629 --- /dev/null +++ b/application/migrations/261_add_grid_country.php @@ -0,0 +1,64 @@ +dbtry($sql); + + if ($this->chk4cron('vucc_grid_file') == 0) { + $data = array( + array( + 'id' => 'vucc_grid_file', + 'enabled' => '0', + 'status' => 'enabled', + 'description' => 'Update TQSL VUCC Grids file', + 'function' => 'index.php/update/update_vucc_grids', + 'expression' => '0 0 1 * *', + 'last_run' => null, + 'next_run' => null + )); + $this->db->insert_batch('cron', $data); + } + } + + public function down() + { + $sql = "DROP TABLE IF EXISTS vuccgrids;"; + $this->dbtry($sql); + + if ($this->chk4cron('vucc_grid_file') > 0) { + $this->db->query("delete from cron where id='vucc_grid_file'"); + } + } + + function dbtry($what) { + try { + $this->db->query($what); + } catch (Exception $e) { + log_message("error", "Something gone wrong while altering a table: ".$e." // Executing: ".$this->db->last_query()); + } + } + + function chk4cron($cronkey) { + $query = $this->db->query("select count(id) as cid from cron where id=?",$cronkey); + $row = $query->row(); + return $row->cid ?? 0; + } + +} diff --git a/application/migrations/262_more_contests.php b/application/migrations/262_more_contests.php new file mode 100644 index 000000000..423737125 --- /dev/null +++ b/application/migrations/262_more_contests.php @@ -0,0 +1,333 @@ + '10-10 Int. 10-10 Day Sprint', 'adifname' => '10-10-SPRINT', 'active' => 1), + array('name' => '10-10 Int. Fall Contest, CW', 'adifname' => '10-10-FALL-CW', 'active' => 1), + array('name' => '10-10 Int. Fall Contest, Digital', 'adifname' => '10-10-FALL-DIGITAL', 'active' => 1), + array('name' => '10-10 Int. Open Season PSK Contest', 'adifname' => '10-10-OPEN-SEASON', 'active' => 1), + array('name' => '10-10 Int. Spring Contest, CW', 'adifname' => '10-10-SPRING-CW', 'active' => 1), + array('name' => '10-10 Int. Spring Contest, Digital', 'adifname' => '10-10-SPRING-DIGITAL', 'active' => 1), + array('name' => '10-10 Int. Summer Contest, SSB', 'adifname' => '10-10-SUMMER-PHONE', 'active' => 1), + array('name' => '10-10 Int. Winter Contest, SSB', 'adifname' => '10-10-WINTER-PHONE', 'active' => 1), + array('name' => 'A1Club AWT', 'adifname' => 'A1CLUB-AWT', 'active' => 1), + array('name' => 'Africa All Mode International DX Contest', 'adifname' => 'ALL-AFRICA', 'active' => 1), + array('name' => 'AGCW QRP/QRP Party', 'adifname' => 'AGCW-QRP', 'active' => 1), + array('name' => 'ANZAC Day Contest', 'adifname' => 'ANZAC', 'active' => 1), + array('name' => 'ARI 40/80 Contest', 'adifname' => '40-80', 'active' => 1), + array('name' => 'ARRL Inter. Digital Contest', 'adifname' => 'ARRL-DIGI', 'active' => 1), + array('name' => 'ARSI VU DX Contest', 'adifname' => 'ARSI-VU-DX', 'active' => 1), + array('name' => 'Atlantic Canada QSO Party', 'adifname' => 'AC-QSO-PARTY', 'active' => 1), + array('name' => 'Australia Day Contest', 'adifname' => 'WIA-AUSTRALIADAY', 'active' => 1), + array('name' => 'Balkan HF Contest', 'adifname' => 'BALKAN-HF', 'active' => 1), + array('name' => 'Baltic Contest', 'adifname' => 'BALTIC-CONTEST', 'active' => 1), + array('name' => 'Bucharest Digital Contest', 'adifname' => 'BUCURESTI-DIGITAL', 'active' => 1), + array('name' => 'Canadian Prairies QSO Party', 'adifname' => 'CP-QSO-PARTY', 'active' => 1), + array('name' => 'Collegiate QSO Party', 'adifname' => 'CQP', 'active' => 1), + array('name' => 'COVID-19 Radio Communication Event', 'adifname' => 'STAYHOME', 'active' => 1), + array('name' => 'CQ Worldwide VHF Digital Contest', 'adifname' => 'CQ-VHF-DIGI', 'active' => 1), + array('name' => 'CQ Worldwide VHF SSB/CW Contest', 'adifname' => 'CQ-VHF-SSBCW', 'active' => 1), + array('name' => 'CQMM DX Contest', 'adifname' => 'CQMMDX', 'active' => 1), + array('name' => 'Croatian DX Contest', 'adifname' => '9A-DX', 'active' => 1), + array('name' => 'DARC Christmas Contest', 'adifname' => 'XMAS', 'active' => 1), + array('name' => 'DIG QSO Party, CW', 'adifname' => 'DIG-QSO-PARTY', 'active' => 1), + array('name' => 'DIG QSO Party, SSB', 'adifname' => 'DIG-QSO-PARTY', 'active' => 1), + array('name' => 'DRCG WW RTTY Contest', 'adifname' => 'DRCG-WW-RTTY', 'active' => 1), + array('name' => 'Dutch PACCdigi Contest', 'adifname' => 'PACCDIGI', 'active' => 1), + array('name' => 'EA RTTY Contest', 'adifname' => 'EARTTY', 'active' => 1), + array('name' => 'EANET Sprint', 'adifname' => 'EANET-SPRINT', 'active' => 1), + array('name' => 'EurAsia HF Championship', 'adifname' => 'EURASIA-CHAMP', 'active' => 1), + array('name' => 'European Union DX Contest', 'adifname' => 'EUDXC', 'active' => 1), + array('name' => 'F9AA Cup, CW', 'adifname' => 'F9AA-CW', 'active' => 1), + array('name' => 'F9AA Cup, PSK', 'adifname' => 'F9AA-DIGI', 'active' => 1), + array('name' => 'F9AA Cup, SSB', 'adifname' => 'F9AA-SSB', 'active' => 1), + array('name' => 'FIRAC HF Contest', 'adifname' => 'FIRAC-CONTEST', 'active' => 1), + array('name' => 'FRAPR 10M Contest', 'adifname' => 'FRAPR-10M', 'active' => 1), + array('name' => 'FT Challenge', 'adifname' => 'FT-CHALLENGE', 'active' => 1), + array('name' => 'GACW WWSA CW DX Contest', 'adifname' => 'WWSA', 'active' => 1), + array('name' => 'Gunung Jati DX Contest', 'adifname' => 'GUNUNGJATI', 'active' => 1), + array('name' => 'HA3NS Sprint Memorial Contest', 'adifname' => 'HA3NS-SPRINT', 'active' => 1), + array('name' => 'Ham Spirit Contest', 'adifname' => 'HAM-SPIRIT', 'active' => 1), + array('name' => 'Ham Spirit Contest, SSB', 'adifname' => 'HAM-SPIRIT-SSB', 'active' => 1), + array('name' => 'HARC Anniversary QSO Party', 'adifname' => 'HARC-QSOP', 'active' => 1), + array('name' => 'Hiram Percy Maxim Birthday Celebration', 'adifname' => 'ARRL-HPM-150', 'active' => 1), + array('name' => 'His Maj. King of Spain Contest, CW', 'adifname' => 'EA-MAJESTAD-CW', 'active' => 1), + array('name' => 'His Maj. King of Spain Contest, SSB', 'adifname' => 'EA-MAJESTAD-SSB', 'active' => 1), + array('name' => 'ICWC Medium Speed Test', 'adifname' => 'ICWC-MST', 'active' => 1), + array('name' => 'IG-RY World Wide RTTY Contest', 'adifname' => 'IG-WW-RY', 'active' => 1), + array('name' => 'INDEXA Worldwide QSO Party', 'adifname' => 'INDEXA-QSOP', 'active' => 1), + array('name' => 'IRTS 2m Counties Contest', 'adifname' => 'IRTS-CONTEST', 'active' => 1), + array('name' => 'IRTS 70cm Counties Contest', 'adifname' => 'IRTS-CONTEST', 'active' => 1), + array('name' => 'IRTS 80m Counties Contest', 'adifname' => 'IRTS-80-CONTEST', 'active' => 1), + array('name' => 'K1USN Slow Speed Test', 'adifname' => 'K1USNSST', 'active' => 1), + array('name' => 'Kalbar Contest', 'adifname' => 'KALBAR CONTEST', 'active' => 1), + array('name' => 'KANHAM Contest', 'adifname' => 'KANHAM', 'active' => 1), + array('name' => 'KCJ Topband Contest', 'adifname' => 'KCJ-TOPBAND', 'active' => 1), + array('name' => 'LABRE DX Contest', 'adifname' => 'LABRE-DX', 'active' => 1), + array('name' => 'LABRE-RS Digi Contest', 'adifname' => 'CQWW-DIGI', 'active' => 1), + array('name' => 'Makrothen RTTY Contest', 'adifname' => 'MAKROTHEN-RTTY', 'active' => 1), + array('name' => 'Malaysia DX Contest', 'adifname' => 'MYDX-SSB-CONTEST', 'active' => 1), + array('name' => 'Marconi Club ARI Loano QSO Party Day', 'adifname' => 'MCD-QSO-PARTY', 'active' => 1), + array('name' => 'Marconi Club ARI Loano Slow CW QSO Party', 'adifname' => 'SLOW-CW-QSO-PARTY', 'active' => 1), + array('name' => 'Marconi Memorial HF Contest', 'adifname' => 'MMC-HF-CW', 'active' => 1), + array('name' => 'Maryland-DC QSO Party', 'adifname' => 'MDC-QSO-PARTY', 'active' => 1), + array('name' => 'Mini-Test 40', 'adifname' => 'MINITEST-40', 'active' => 1), + array('name' => 'Mini-Test 80', 'adifname' => 'MINITEST-80', 'active' => 1), + array('name' => 'NCCC 55th Anniversary Fiesta', 'adifname' => 'NCCC-FIESTA', 'active' => 1), + array('name' => 'NCCC FT4 Sprint', 'adifname' => 'NCCC-SPRINT-FT4', 'active' => 1), + array('name' => 'NCCC Sprint', 'adifname' => 'NCCC-SPRINT-CW', 'active' => 1), + array('name' => 'NCCC Sprint Ladder', 'adifname' => 'NCCC-SPRINT-CW', 'active' => 1), + array('name' => 'North American Meteor Scatter Sprint', 'adifname' => 'VHF-NAMSS', 'active' => 1), + array('name' => 'NRAU 10m Activity Contest', 'adifname' => 'NRAU-10', 'active' => 1), + array('name' => 'NRRL MGM Weekend Contest', 'adifname' => 'NRRL-MGM', 'active' => 1), + array('name' => 'NZART Memorial Contest', 'adifname' => 'MEMORIAL-CONTEST', 'active' => 1), + array('name' => 'Old New Year Contest', 'adifname' => 'RADIO-ONY', 'active' => 1), + array('name' => 'Pajajaran Bogor DX Contest', 'adifname' => 'PBDX-CONTEST', 'active' => 1), + array('name' => 'Popov Memorial Contest', 'adifname' => 'RADIO-POPOV', 'active' => 1), + array('name' => 'Portable Operations Challenge', 'adifname' => 'POC', 'active' => 1), + array('name' => 'RAEM Contest', 'adifname' => 'RAEM', 'active' => 1), + array('name' => 'RCC Cup', 'adifname' => 'RCC-CUP', 'active' => 1), + array('name' => 'RSGB 80m Autumn Series, CW', 'adifname' => 'RSGB-80M-AUT', 'active' => 1), + array('name' => 'RSGB 80m Autumn Series, Data', 'adifname' => 'RSGB-80M-AUT', 'active' => 1), + array('name' => 'RSGB 80m Autumn Series, SSB', 'adifname' => 'RSGB-80M-AUT', 'active' => 1), + array('name' => 'RSGB FT4 Contest', 'adifname' => 'RSGB-FT4', 'active' => 1), + array('name' => 'RSGB FT4 International Activity Day', 'adifname' => 'RSGB-FT4', 'active' => 1), + array('name' => 'RSGB Hope QSO Party', 'adifname' => 'RSGB-HQP', 'active' => 1), + array('name' => 'RTTYOPS Weekend Sprint', 'adifname' => 'RTTYOPS-WEEKEND-SPRINT', 'active' => 1), + array('name' => 'RTTYOPS Weeksprint', 'adifname' => 'RTTYOPS-WEEKSPRINT', 'active' => 1), + array('name' => 'Russian 160-Meter DX Contest', 'adifname' => 'RADIO-160', 'active' => 1), + array('name' => 'Russian PSK WW Contest', 'adifname' => 'RUS-WW-PSK', 'active' => 1), + array('name' => 'Russian RTTY WW Contest', 'adifname' => 'RADIO-WW-RTTY', 'active' => 1), + array('name' => 'Russian WW Digital Contest', 'adifname' => 'RUS-WW-DIGI', 'active' => 1), + array('name' => 'Russian WW MultiMode Contest', 'adifname' => 'RUS-WW-MM', 'active' => 1), + array('name' => 'Russion YL/OM Contest', 'adifname' => 'RADIO-YL-OM', 'active' => 1), + array('name' => 'SARL HF CW Contest', 'adifname' => 'SARL-HF-CW', 'active' => 1), + array('name' => 'SARL HF Digital Contest', 'adifname' => 'SARL-HF-DIGI', 'active' => 1), + array('name' => 'SARL HF Phone Contest', 'adifname' => 'SARL-HF-SSB', 'active' => 1), + array('name' => 'SARTG New Year RTTY Contest', 'adifname' => 'SARTG-NY-RTTY', 'active' => 1), + array('name' => 'SCRY/RTTYOps WW DX RTTY Contest', 'adifname' => 'RTTYOPS-WW-RTTY', 'active' => 1), + array('name' => 'SEC QSO Party', 'adifname' => 'SEC-QSO-PARTY', 'active' => 1), + array('name' => 'Solar Eclipse QSO Party', 'adifname' => 'ECLIPSE-QSO', 'active' => 1), + array('name' => 'South America 10 Meter Contest', 'adifname' => 'SA10M', 'active' => 1), + array('name' => 'South American Integration Contest CW', 'adifname' => 'SACW', 'active' => 1), + array('name' => 'Tennessee State Parks on the Air', 'adifname' => 'TNPOTA', 'active' => 1), + array('name' => 'TESLA Memorial HF CW Contest', 'adifname' => 'TESLA-HF', 'active' => 1), + array('name' => 'Texas State Parks on the Air', 'adifname' => 'TSPOTA', 'active' => 1), + array('name' => 'Tipalayo DX Contest', 'adifname' => 'TIPALAYO DX CONTEST', 'active' => 1), + array('name' => 'Tisza Cup CW Contest', 'adifname' => 'TISZACUP', 'active' => 1), + array('name' => 'TRC Digi Contest', 'adifname' => 'TRC-DIGI', 'active' => 1), + array('name' => 'TRC DX Contest', 'adifname' => 'TRC-DX', 'active' => 1), + array('name' => 'Turkey HF SSB Contest', 'adifname' => 'TA-HF-SSB', 'active' => 1), + array('name' => 'U.S. Islands QSO Party', 'adifname' => 'ISLAND-QSO-PARTY', 'active' => 1), + array('name' => 'UA1DZ Memorial Cup', 'adifname' => 'ALRS-UA1DZ-CUP', 'active' => 1), + array('name' => 'UBA ON Contest, 2m', 'adifname' => 'UBA-ON-2M', 'active' => 1), + array('name' => 'UBA ON Contest, 6m', 'adifname' => 'UBA-ON-6M', 'active' => 1), + array('name' => 'UBA ON Contest, CW', 'adifname' => 'UBA-ON-CW', 'active' => 1), + array('name' => 'UBA ON Contest, SSB', 'adifname' => 'UBA-ON-SSB', 'active' => 1), + array('name' => 'UBA PSK63 Prefix Contest', 'adifname' => 'UBA-PSK63-PREFIX', 'active' => 1), + array('name' => 'UBA Spring Contest, 2m', 'adifname' => 'UBA-SPRING-CONTEST', 'active' => 1), + array('name' => 'UBA Spring Contest, 6m', 'adifname' => 'UBA-SPRING-CONTEST', 'active' => 1), + array('name' => 'UBA Spring Contest, CW', 'adifname' => 'UBA-SPRING-CONTEST', 'active' => 1), + array('name' => 'UBA Spring Contest, SSB', 'adifname' => 'UBA-SPRING-CONTEST', 'active' => 1), + array('name' => 'UFT QRP Contest', 'adifname' => 'UFT-QRP', 'active' => 1), + array('name' => 'UK/EI DX Contest, CW', 'adifname' => 'UKEI-DX', 'active' => 1), + array('name' => 'UK/EI DX Contest, SSB', 'adifname' => 'UKEI-DX', 'active' => 1), + array('name' => 'UKEICC 80m Contest', 'adifname' => 'UKEICC-80M', 'active' => 1), + array('name' => 'Ukrainian DX Classic RTTY Contest', 'adifname' => 'UR-DX-RTTY', 'active' => 1), + array('name' => 'Ukrainian DX DIGI Contest', 'adifname' => 'UR-DX-DIGI', 'active' => 1), + array('name' => 'UN DX Contest', 'adifname' => 'UN-DX', 'active' => 1), + array('name' => 'URC DX RTTY Contest', 'adifname' => 'URCDX', 'active' => 1), + array('name' => 'Vermont QSO Party', 'adifname' => 'VT-QSO-PARTY', 'active' => 1), + array('name' => 'Washington State Salmon Run', 'adifname' => 'WA-SALMON-RUN', 'active' => 1), + array('name' => 'Weekly RTTY Test', 'adifname' => 'WRT', 'active' => 1), + array('name' => 'Worked All Provinces of China DX Contest', 'adifname' => 'WAPC-DX', 'active' => 1), + array('name' => 'World Wide Argentina DX Contest', 'adifname' => 'WWPDX', 'active' => 1), + array('name' => 'World Wide Holyland Contest', 'adifname' => 'WWHC', 'active' => 1), + array('name' => 'Worldwide Sideband Activity Contest', 'adifname' => 'WWSAC', 'active' => 1), + array('name' => 'WW PMC Contest', 'adifname' => 'WW-PMC', 'active' => 1), + array('name' => 'YARC QSO Party', 'adifname' => 'YARC-QSO-PARTY', 'active' => 1), + array('name' => 'YB DX Contest', 'adifname' => 'YB DX CONTEST', 'active' => 1), + array('name' => 'YB DX RTTY Contest', 'adifname' => 'YB-DX-CONTEST', 'active' => 1), + array('name' => 'YLRL YL-OM Contest', 'adifname' => 'YL-OM', 'active' => 1), + array('name' => 'YOTA Contest', 'adifname' => 'YOTA', 'active' => 1), + array('name' => 'Yuri Gagarin International DX Contest', 'adifname' => 'GC', 'active' => 1), + array('name' => 'ZL Sprint', 'adifname' => 'ZL-SPRINT', 'active' => 1), + ); + + foreach ($contests as $contest) { + $exists = $this->db->where('adifname', $contest['adifname']) + ->get('contest') + ->num_rows() > 0; + + if (!$exists) { + $this->db->insert('contest', $contest); + } + } + + } + + public function down() { + + // Remove the contests added in this migration + $contest_names = array( + '10-10-SPRINT', + '10-10-FALL-CW', + '10-10-FALL-DIGITAL', + '10-10-OPEN-SEASON', + '10-10-SPRING-CW', + '10-10-SPRING-DIGITAL', + '10-10-SUMMER-PHONE', + '10-10-WINTER-PHONE', + 'A1CLUB-AWT', + 'ALL-AFRICA', + 'AGCW-QRP', + 'ANZAC', + '40-80', + 'ARRL-DIGI', + 'ARSI-VU-DX', + 'AC-QSO-PARTY', + 'WIA-AUSTRALIADAY', + 'BALKAN-HF', + 'BALTIC-CONTEST', + 'BUCURESTI-DIGITAL', + 'CP-QSO-PARTY', + 'CQP', + 'STAYHOME', + 'CQ-VHF-DIGI', + 'CQ-VHF-SSBCW', + 'CQMMDX', + '9A-DX', + 'XMAS', + 'DIG-QSO-PARTY', + 'DIG-QSO-PARTY', + 'DRCG-WW-RTTY', + 'PACCDIGI', + 'EARTTY', + 'EANET-SPRINT', + 'EURASIA-CHAMP', + 'EUDXC', + 'F9AA-CW', + 'F9AA-DIGI', + 'F9AA-SSB', + 'FIRAC-CONTEST', + 'FRAPR-10M', + 'FT-CHALLENGE', + 'WWSA', + 'GUNUNGJATI', + 'HA3NS-SPRINT', + 'HAM-SPIRIT', + 'HAM-SPIRIT-SSB', + 'HARC-QSOP', + 'ARRL-HPM-150', + 'EA-MAJESTAD-CW', + 'EA-MAJESTAD-SSB', + 'ICWC-MST', + 'IG-WW-RY', + 'INDEXA-QSOP', + 'IRTS-CONTEST', + 'IRTS-CONTEST', + 'IRTS-80-CONTEST', + 'K1USNSST', + 'KALBAR CONTEST', + 'KANHAM', + 'KCJ-TOPBAND', + 'LABRE-DX', + 'CQWW-DIGI', + 'MAKROTHEN-RTTY', + 'MYDX-SSB-CONTEST', + 'MCD-QSO-PARTY', + 'SLOW-CW-QSO-PARTY', + 'MMC-HF-CW', + 'MDC-QSO-PARTY', + 'MINITEST-40', + 'MINITEST-80', + 'NCCC-FIESTA', + 'NCCC-SPRINT-FT4', + 'NCCC-SPRINT-CW', + 'NCCC-SPRINT-CW', + 'VHF-NAMSS', + 'NRAU-10', + 'NRRL-MGM', + 'MEMORIAL-CONTEST', + 'RADIO-ONY', + 'PBDX-CONTEST', + 'RADIO-POPOV', + 'POC', + 'RAEM', + 'RCC-CUP', + 'RSGB-80M-AUT', + 'RSGB-80M-AUT', + 'RSGB-80M-AUT', + 'RSGB-FT4', + 'RSGB-FT4', + 'RSGB-HQP', + 'RTTYOPS-WEEKEND-SPRINT', + 'RTTYOPS-WEEKSPRINT', + 'RADIO-160', + 'RUS-WW-PSK', + 'RADIO-WW-RTTY', + 'RUS-WW-DIGI', + 'RUS-WW-MM', + 'RADIO-YL-OM', + 'SARL-HF-CW', + 'SARL-HF-DIGI', + 'SARL-HF-SSB', + 'SARTG-NY-RTTY', + 'RTTYOPS-WW-RTTY', + 'SEC-QSO-PARTY', + 'ECLIPSE-QSO', + 'SA10M', + 'SACW', + 'TNPOTA', + 'TESLA-HF', + 'TSPOTA', + 'TIPALAYO DX CONTEST', + 'TISZACUP', + 'TRC-DIGI', + 'TRC-DX', + 'TA-HF-SSB', + 'ISLAND-QSO-PARTY', + 'ALRS-UA1DZ-CUP', + 'UBA-ON-2M', + 'UBA-ON-6M', + 'UBA-ON-CW', + 'UBA-ON-SSB', + 'UBA-PSK63-PREFIX', + 'UBA-SPRING-CONTEST', + 'UBA-SPRING-CONTEST', + 'UBA-SPRING-CONTEST', + 'UBA-SPRING-CONTEST', + 'UFT-QRP', + 'UKEI-DX', + 'UKEI-DX', + 'UKEICC-80M', + 'UR-DX-RTTY', + 'UR-DX-DIGI', + 'UN-DX', + 'URCDX', + 'VT-QSO-PARTY', + 'WA-SALMON-RUN', + 'WRT', + 'WAPC-DX', + 'WWPDX', + 'WWHC', + 'WWSAC', + 'WW-PMC', + 'YARC-QSO-PARTY', + 'YB DX CONTEST', + 'YB-DX-CONTEST', + 'YL-OM', + 'YOTA', + 'GC', + 'ZL-SPRINT', + ); + + $this->db->where_in('adifname', $contest_names); + $this->db->delete('contest'); + } +} diff --git a/application/models/Gridmap_model.php b/application/models/Gridmap_model.php index f8ef605d4..e92827b33 100644 --- a/application/models/Gridmap_model.php +++ b/application/models/Gridmap_model.php @@ -2,11 +2,9 @@ class Gridmap_model extends CI_Model { - function get_band_confirmed($band, $mode, $qsl, $lotw, $eqsl, $qrz, $sat, $orbit, $propagation, $logbooks_locations_array = NULL) { - if ($logbooks_locations_array == NULL) { - $this->load->model('logbooks_model'); - $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - } + function get_band_confirmed($band, $mode, $qsl, $lotw, $eqsl, $qrz, $sat, $orbit, $propagation, $dxcc, $grids) { + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); if (!$logbooks_locations_array) { return null; @@ -63,17 +61,20 @@ class Gridmap_model extends CI_Model { $binding[] = $orbit; } + if ($dxcc != 'All') { + if (!empty($grids)) { + $sql .= ' AND substring(COL_GRIDSQUARE,1,4) IN (\'' . implode("','", $grids) . '\')'; + } + } + $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl, $qrz); return $this->db->query($sql, $binding); } - function get_band($band, $mode, $qsl, $lotw, $eqsl, $qrz, $sat, $orbit, $propagation, $logbooks_locations_array = NULL) { - if ($logbooks_locations_array == NULL) { - - $this->load->model('logbooks_model'); - $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - } + function get_band($band, $mode, $qsl, $lotw, $eqsl, $qrz, $sat, $orbit, $propagation, $dxcc, $grids) { + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); if (!$logbooks_locations_array) { return null; @@ -130,15 +131,18 @@ class Gridmap_model extends CI_Model { $binding[] = $orbit; } + if ($dxcc != 'All') { + if (!empty($grids)) { + $sql .= ' AND substring(COL_GRIDSQUARE,1,4) IN (\'' . implode("','", $grids) . '\')'; + } + } + return $this->db->query($sql, $binding); } - function get_band_worked_vucc_squares($band, $mode, $qsl, $lotw, $eqsl, $qrz, $sat, $orbit, $propagation, $logbooks_locations_array = NULL) { - if ($logbooks_locations_array == NULL) { - - $this->load->model('logbooks_model'); - $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - } + function get_band_worked_vucc_squares($band, $mode, $qsl, $lotw, $eqsl, $qrz, $sat, $orbit, $propagation) { + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); if (!$logbooks_locations_array) { return null; @@ -198,18 +202,14 @@ class Gridmap_model extends CI_Model { return $this->db->query($sql, $binding); } - function get_band_confirmed_vucc_squares($band, $mode, $qsl, $lotw, $eqsl, $qrz, $sat, $orbit, $propagation, $logbooks_locations_array = NULL) { - if ($logbooks_locations_array == NULL) { - - $this->load->model('logbooks_model'); - $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - } + function get_band_confirmed_vucc_squares($band, $mode, $qsl, $lotw, $eqsl, $qrz, $sat, $orbit, $propagation) { + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); if (!$logbooks_locations_array) { return null; } - $location_list = "'".implode("','",$logbooks_locations_array)."'"; $binding = []; @@ -300,7 +300,7 @@ class Gridmap_model extends CI_Model { * Get's the worked modes from the log */ function get_worked_modes() { - + $this->load->model('logbooks_model'); $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); @@ -331,4 +331,19 @@ class Gridmap_model extends CI_Model { return $results; } + + function get_countries() { + $sql = 'SELECT distinct vuccgrids.adif, dxcc_entities.name, dxcc_entities.prefix from vuccgrids join dxcc_entities on vuccgrids.adif = dxcc_entities.adif + where name is not null and name != "" order by prefix'; + + return $this->db->query($sql); + } + + function get_grids_for_country($dxcc) { + $gridsql = 'select gridsquare from vuccgrids where adif = ?'; + $gridquery = $this->db->query($gridsql, array($dxcc)); + $gridarray = array_column($gridquery->result_array(), 'gridsquare'); + + return $gridarray; + } } diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 05814813a..9c20d8bc0 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -354,7 +354,7 @@ class Logbook_model extends CI_Model { 'COL_QSL_RCVD_VIA' => $this->input->post('qsl_rcvd_method'), 'COL_QSL_VIA' => $this->input->post('qsl_via'), 'COL_QSLMSG' => $this->input->post('qslmsg'), - 'COL_OPERATOR' => $this->input->post('operator_callsign') ?? $this->session->userdata('operator_callsign'), + 'COL_OPERATOR' => strtoupper(trim($this->input->post('operator_callsign')) ?? $this->session->userdata('operator_callsign')), 'COL_QTH' => $qso_qth, 'COL_PROP_MODE' => $prop_mode, 'COL_IOTA' => $this->input->post('iota_ref') == null ? '' : trim($this->input->post('iota_ref')), @@ -1645,7 +1645,7 @@ class Logbook_model extends CI_Model { 'COL_ANT_EL' => $this->input->post('ant_el') != '' ? $this->input->post('ant_el') : null, 'station_id' => $stationId, 'COL_STATION_CALLSIGN' => $stationCallsign, - 'COL_OPERATOR' => $this->input->post('operator_callsign') ?? $qso->COL_OPERATOR, + 'COL_OPERATOR' => strtoupper(trim($this->input->post('operator_callsign') ?? $qso->COL_OPERATOR)), 'COL_STATE' => $this->input->post('input_state_edit'), 'COL_CNTY' => $uscounty, 'COL_MY_IOTA' => $iotaRef, diff --git a/application/models/Lotw_model.php b/application/models/Lotw_model.php index 777471f1b..952466d37 100644 --- a/application/models/Lotw_model.php +++ b/application/models/Lotw_model.php @@ -42,15 +42,15 @@ class Lotw_model extends CI_Model { function store_certificate($user_id, $callsign, $dxcc, $date_created, $date_expires, $qso_start_date, $qso_end_date, $cert_key, $general_cert) { $data = array( - 'user_id' => $user_id, - 'callsign' => $callsign, - 'cert_dxcc_id' => $dxcc, - 'date_created' => $date_created, - 'date_expires' => $date_expires, - 'qso_start_date' => $qso_start_date, - 'qso_end_date' => $qso_end_date . ' 23:59:59', - 'cert_key' => $cert_key, - 'cert' => $general_cert, + 'user_id' => $user_id, + 'callsign' => $callsign, + 'cert_dxcc_id' => $dxcc, + 'date_created' => $date_created, + 'date_expires' => $date_expires, + 'qso_start_date' => $qso_start_date, + 'qso_end_date' => $qso_end_date . ' 23:59:59', + 'cert_key' => $cert_key, + 'cert' => $general_cert, ); $this->db->insert('lotw_certs', $data); @@ -58,13 +58,13 @@ class Lotw_model extends CI_Model { function update_certificate($user_id, $callsign, $dxcc, $date_created, $date_expires, $qso_start_date, $qso_end_date, $cert_key, $general_cert) { $data = array( - 'cert_dxcc_id' => $dxcc, - 'date_created' => $date_created, - 'date_expires' => $date_expires, - 'qso_start_date' => $qso_start_date, - 'qso_end_date' => $qso_end_date . ' 23:59:59', - 'cert_key' => $cert_key, - 'cert' => $general_cert + 'cert_dxcc_id' => $dxcc, + 'date_created' => $date_created, + 'date_expires' => $date_expires, + 'qso_start_date' => $qso_start_date, + 'qso_end_date' => $qso_end_date . ' 23:59:59', + 'cert_key' => $cert_key, + 'cert' => $general_cert ); $this->db->where('user_id', $user_id); @@ -103,29 +103,49 @@ class Lotw_model extends CI_Model { } } - function lotw_cert_expired($user_id, $date) { - $array = array('user_id' => $user_id, 'date_expires <' => $date); - $this->db->where($array); - $query = $this->db->get('lotw_certs'); + function lotw_cert_expired($user_id, $date) { + $sql = "SELECT * FROM `lotw_certs` WHERE `user_id` = ? AND `date_expires` < ?;"; + $query = $this->db->query($sql, array($user_id, $date)); - if ($query->num_rows() > 0) { - return true; - } else { - return false; - } - } + if ($query->num_rows() > 0) { + return true; + } else { + return false; + } + } - function lotw_cert_expiring($user_id, $date) { - $array = array('user_id' => $user_id, 'DATE_SUB(date_expires, INTERVAL 30 DAY) <' => $date, 'date_expires >' => $date); - $this->db->where($array); - $query = $this->db->get('lotw_certs'); + function lotw_cert_expiring($user_id, $date) { + $sql = "SELECT * FROM `lotw_certs` WHERE `user_id` = ? AND DATE_SUB(date_expires, INTERVAL 30 DAY) < ? AND `date_expires` > ?;"; + $query = $this->db->query($sql, array($user_id, $date, $date)); - if ($query->num_rows() > 0) { - return true; - } else { - return false; - } - } + if ($query->num_rows() > 0) { + return true; + } else { + return false; + } + } + + function lotw_cert_qsoenddate_expired($user_id, $date) { + $sql = "SELECT * FROM `lotw_certs` WHERE `user_id` = ? AND `qso_end_date` < ?;"; + $query = $this->db->query($sql, array($user_id, $date)); + + if ($query->num_rows() > 0) { + return true; + } else { + return false; + } + } + + function lotw_cert_qsoenddate_expiring($user_id, $date) { + $sql = "SELECT * FROM `lotw_certs` WHERE `user_id` = ? AND DATE_SUB(qso_end_date, INTERVAL 30 DAY) < ? AND `qso_end_date` > ?;"; + $query = $this->db->query($sql, array($user_id, $date, $date)); + + if ($query->num_rows() > 0) { + return true; + } else { + return false; + } + } } ?> diff --git a/application/models/Stations.php b/application/models/Stations.php index 5e22bb106..bc7bf9f19 100644 --- a/application/models/Stations.php +++ b/application/models/Stations.php @@ -578,15 +578,16 @@ class Stations extends CI_Model { } public function get_station_power($id) { - $this->db->select('station_power'); + $this->db->select('station_power, station_callsign'); $this->db->where('user_id', $this->session->userdata('user_id')); $this->db->where('station_id', $id); $query = $this->db->get('station_profile'); if($query->num_rows() >= 1) { - foreach ($query->result() as $row) - { - return $row->station_power; - } + $row = $query->row(); // only one result expected + return [ + 'station_power' => $row->station_power, + 'station_callsign' => $row->station_callsign + ]; } else { return null; } diff --git a/application/models/Update_model.php b/application/models/Update_model.php index 28ff993ca..a14fe7450 100644 --- a/application/models/Update_model.php +++ b/application/models/Update_model.php @@ -625,4 +625,82 @@ class Update_model extends CI_Model { return $result; } + function update_vucc_grids() { + // set the last run in cron table for the correct cron id + $this->load->model('cron_model'); + $this->cron_model->set_last_run('vucc_grid_file'); + $mtime = microtime(); + $mtime = explode(" ",$mtime); + $mtime = $mtime[1] + $mtime[0]; + $starttime = $mtime; + + $url = 'https://sourceforge.net/p/trustedqsl/tqsl/ci/master/tree/apps/vuccgrids.dat?format=raw'; + $curl = curl_init($url); + + curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); + curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); + + $response = curl_exec($curl); + + $xml = @simplexml_load_string($response); + + if ($xml === false) { + return "Failed to parse TQSL VUCC grid file XML."; + } + + // Truncate the table first + $this->db->query("TRUNCATE TABLE vuccgrids;"); + + // Loop through elements + $batchSize = 2000; + $vuccdata = []; + $total_inserted = 0; + foreach ($xml->vucc as $vucc) { + $adif = (int)$vucc['entity']; // assuming "entity" attribute is ADIF + $grid = strtoupper(trim((string)$vucc['grid'])); + + if ($adif > 0 && $grid !== '') { + $key = $adif . '-' . $grid; + + // Only add if not already in array + if (!isset($vuccdata[$key])) { + $vuccdata[$key] = [ + 'adif' => $adif, + 'gridsquare' => $grid + ]; + } + + if (count($vuccdata) >= $batchSize) { + $rows = $this->db->insert_batch('vuccgrids', array_values($vuccdata)); + if ($rows !== false) { + $total_inserted += $rows; + } + $vuccdata = []; // clear after insert + } + } + } + + // insert any remaining rows + if (!empty($vuccdata)) { + $rows = $this->db->insert_batch('vuccgrids', array_values($vuccdata)); + if ($rows !== false) { + $total_inserted += $rows; + } + } + + curl_close($curl); + + $mtime = microtime(); + $mtime = explode(" ",$mtime); + $mtime = $mtime[1] + $mtime[0]; + $endtime = $mtime; + $totaltime = ($endtime - $starttime); + + if ($total_inserted > 0) { + return "DONE: This page was created in ".$totaltime." seconds.
" . number_format($total_inserted ) . " Grids saved"; + } else { + return "FAILED: Empty file"; + } + } + } diff --git a/application/models/Winkey.php b/application/models/Winkey.php deleted file mode 100644 index 28a142388..000000000 --- a/application/models/Winkey.php +++ /dev/null @@ -1,49 +0,0 @@ -db->where('user_id', $user_id); - $this->db->where('station_location_id', $station_location_id); - $query = $this->db->get('cwmacros'); - - if ($query->num_rows() > 0) { - return $query->row(); - } else { - return false; - } - } - - public function settings_json($user_id, $station_location_id) - { - $this->db->where('user_id', $user_id); - $this->db->where('station_location_id', $station_location_id); - $query = $this->db->get('cwmacros'); - - if ($query->num_rows() > 0) { - // return $query->row() as json - return json_encode($query->row()); - } else { - // return json with status not found - return json_encode(array('status' => 'not found')); - } - } - - public function save($data) - { - $this->db->where('user_id', $data['user_id']); - $this->db->where('station_location_id', $data['station_location_id']); - $query = $this->db->get('cwmacros'); - - if ($query->num_rows() > 0) { - $this->db->where('user_id', $data['user_id']); - $this->db->where('station_location_id', $data['station_location_id']); - $this->db->update('cwmacros', $data); - } else { - $this->db->insert('cwmacros', $data); - } - } -} - -?> diff --git a/application/views/bandmap/list.php b/application/views/bandmap/list.php index 6ab6a769e..c22e63a53 100644 --- a/application/views/bandmap/list.php +++ b/application/views/bandmap/list.php @@ -67,6 +67,7 @@ + result() as $row) { ?> @@ -236,7 +237,7 @@ - + diff --git a/application/views/dashboard/index.php b/application/views/dashboard/index.php index f60f874d0..0246c2d30 100644 --- a/application/views/dashboard/index.php +++ b/application/views/dashboard/index.php @@ -203,17 +203,22 @@ function getDistance($distance) { session->userdata('user_id')) { ?> - - - - + + + diff --git a/application/views/gridmap/index.php b/application/views/gridmap/index.php index e1c079710..b42950a1a 100644 --- a/application/views/gridmap/index.php +++ b/application/views/gridmap/index.php @@ -1,145 +1,186 @@ +
-

-
- -
- -
+
+ +
+
+
session->flashdata('message')) { ?> -

session->flashdata('message'); ?>

- + +
@@ -155,7 +196,12 @@
+
+
+
+
+ diff --git a/application/views/lotw_views/index.php b/application/views/lotw_views/index.php index a268fae36..ae3e964be 100644 --- a/application/views/lotw_views/index.php +++ b/application/views/lotw_views/index.php @@ -11,7 +11,7 @@
- + num_rows(); ?>
@@ -43,6 +43,7 @@ + result() as $row) { ?> callsign; ?> @@ -60,7 +61,14 @@ if (isset($row->qso_end_date)) { $valid_qso_end = strtotime( $row->qso_end_date ); $new_valid_qso_end = date($this->config->item('qso_date_format'), $valid_qso_end ); - echo $new_valid_qso_end; + $qso_warning_date = date('Y-m-d H:i:s', strtotime($row->qso_end_date.'-30 days')); + if ($current_date > $row->qso_end_date) { + echo "".$new_valid_qso_end.""; + } else if ($current_date <= $row->qso_end_date && $current_date > $qso_warning_date) { + echo "".$new_valid_qso_end.""; + } else { + echo $new_valid_qso_end; + } } else { echo "n/a"; } ?> @@ -72,20 +80,29 @@ date_expires.'-30 days')); $valid_to = strtotime( $row->date_expires ); $new_valid_to = date($this->config->item('qso_date_format'), $valid_to ); - echo $new_valid_to; ?> + if ($current_date > $row->date_expires) { + echo "".$new_valid_to.""; + } else if ($current_date <= $row->date_expires && $current_date > $cert_warning_date) { + echo "".$new_valid_to.""; + } else { + echo $new_valid_to; + } ?> - - date_expires.'-30 days')); ?> - $row->date_expires) { ?> - - date_expires && $current_date > $warning_date) { ?> - + + date_expires && $current_date > $cert_warning_date) { ?> + - + + + $row->qso_end_date) { ?> + QSO end date exceeded + qso_end_date && $current_date > $qso_warning_date) { ?> + diff --git a/application/views/qso/components/winkeysettings.php b/application/views/qso/components/winkeysettings.php index 22241c582..9639f9902 100644 --- a/application/views/qso/components/winkeysettings.php +++ b/application/views/qso/components/winkeysettings.php @@ -1,80 +1,38 @@
-
- -
- -
-
- -
- -
- -
-
- -
- -
- -
- -
-
- -
- -
- -
-
- -
- -
- -
- -
-
- -
- -
- -
-
- -
- -
- -
- -
-
- -
- -
- -
-
- -
- -
- -
- -
-
- -
- -
- -
-
+ +
+ +
+ +
+ +
+ +
+ +
+
+ + +
+ +
diff --git a/application/views/qso/index.php b/application/views/qso/index.php index ec37da3fd..a824da6e5 100644 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -341,7 +341,7 @@ switch ($date_format) { $power = ''; foreach ($stations->result() as $stationrow) { ?> - +
@@ -350,6 +350,7 @@ switch ($date_format) { +
+ +
+
+ + + + + +
+
+ + + + + +
- - + +
+ + + + + +
- + +
+ + +
+ + + +
-
@@ -836,3 +855,7 @@ switch ($date_format) {
+ + diff --git a/application/views/search/cqzones.php b/application/views/search/cqzones.php index 23e13e46f..f6e25f6c2 100644 --- a/application/views/search/cqzones.php +++ b/application/views/search/cqzones.php @@ -28,15 +28,15 @@